text
stringlengths 2
104M
| meta
dict |
---|---|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
#div1{
width: 600px;
height: 600px;
background-color: #acf;
overflow: auto;
}
#div2{
width: 400px;
height: 1000px;
background-color: #6af;
}
</style>
<script>
window.onload = function(){
var div1 = document.getElementById("div1");
var div2 = document.getElementById("div2");
var scrollHeight = document.getElementById("scrollHeight");
var scrollTop = document.getElementById("scrollTop");
var clientHeight = document.getElementById("clientHeight");
scrollHeight.onclick = function(){
alert(div2.scrollHeight);
}
scrollTop.onclick = function(){
alert(div1.scrollTop);
}
clientHeight.onclick = function(){
alert(div1.clientHeight);
}
};
</script>
</head>
<body>
<button id="scrollHeight">scrollHeight</button>
<button id="scrollTop">scrollTop</button>
<button id="clientHeight">clientHeight</button>
<br/>
<div id="div1">
<div id="div2"></div>
</div>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
*{margin:0}
#test{
width: 100px;
height:100px;
background-color: aqua;
}
</style>
<script>
window.onload = function(){
var test = document.getElementById("test");
var func = function(e){
var height = test.currentStyle && test.currentStyle.height || getComputedStyle(test, null)["height"];
if(event.wheelDelta > 0 || event.detail < 0){
test.style.height = parseInt(height) - 10 + 'px';
}else{
test.style.height = parseInt(height) + 10 + 'px';
}
e.preventDefault && e.preventDefault();
return false;
};
test.onmousewheel = func;
addEventListener("DOMMouseScroll", test.onmousewheel);
};
</script>
</head>
<body>
<div id="test"></div>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
*{
margin: 0;
}
</style>
<script>
function deletefunc(){
var tr = this.parentNode.parentNode;
var flag = confirm("是否删除" + tr.firstElementChild.innerHTML + "的信息?");
if(flag){
tr.parentNode.removeChild(tr);
}
return false;
}
window.onload = function(){
var allA = document.getElementsByTagName("a");
for(var i = 0; i < allA.length; i++){
allA[i].onclick = deletefunc;
}
var inputs = document.getElementsByTagName("input");
var submit = document.getElementById("submit");
submit.onclick = function(){
var name = inputs[0].value;
var age = inputs[1].value;
var salary = inputs[2].value;
var list = document.getElementById("list");
var tr = document.createElement("tr");
var td1 = document.createElement("td");
var td2 = document.createElement("td");
var td3 = document.createElement("td");
var td4 = document.createElement("td");
var a = document.createElement("a");
a.innerHTML = "delete";
a.href = "javascript:;";
a.onclick = deletefunc;
td1.innerHTML = name;
tr.appendChild(td1);
td2.innerHTML = age;
tr.appendChild(td2);
td3.innerHTML = salary;
tr.appendChild(td3);
td4.appendChild(a);
tr.appendChild(td4);
tr.innerHTML = "<td>"+name+"</td>"+
"<td>"+age+"</td>"+
"<td>"+salary+"</td>"+
"<td><a href='javascript:;'>delete</a></td>"
var a = tr.getElementsByTagName("a")[0];
a.onclick = deletefunc;
list.appendChild(tr);
}
}
</script>
</head>
<body>
<table id="list">
<tr class="test">
<th>姓名</th>
<th>年龄</th>
<th>薪水</th>
<th></th>
</tr>
<tr class="test">
<td>tom</td>
<td>18</td>
<td>1000</td>
<td><a href="javascript:;">delete</a></td>
</tr>
<tr class="test">
<td>jerry</td>
<td>20</td>
<td>8000</td>
<td><a href="javascript:;">delete</a></td>
</tr>
<tr>
<td>mack</td>
<td>25</td>
<td>10000</td>
<td><a href="javascript:;">delete</a></td>
</tr>
</table>
<br>
<br>
<br>
<table id="operator">
<tr>
<th>添加新员工</th>
</tr>
<tr>
<td>
name: <input type="text" name="name" id="name" />
</td>
</tr>
<tr>
<td>
age: <input type="text" name="age" id="age" />
</td>
</tr>
<tr>
<td>
salary: <input type="text" name="salary" id="salary" />
</td>
</tr>
<tr>
<td>
<button id="submit">提交</button>
</td>
</tr>
</table>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<input type="text" placeholder="number" id="number">
<button id="btn">计算</button>
</body>
<script>
var input = document.getElementById("number");
var btn = document.getElementById("btn");
btn.onclick = function(){
var worker = new Worker("worker.js");
worker.postMessage(input.value);
worker.onmessage = function(event){
alert(event.data);
};
}
</script>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
function fibolachi(n){
return n <=2 ? 1 : fibolachi(n-2) + fibolachi(n-1);
}
onmessage = function(event){
var result = fibolachi(event.data);
postMessage(result);
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>事件模拟</title>
</head>
<style>
#test{
height: 100px;
width: 100px;
background-color: #aaa;
}
</style>
<body>
<div id="test">
点击后触发death事件
</div>
<script>
window.onload = function(){
let test = document.getElementById('test')
test.onclick = function(e){
let event = document.createEvent('CustomEvent')
event.initCustomEvent('death', true, true, {msg: 'u r dead'})
this.dispatchEvent(event)
}
test.addEventListener('death', function(e){
console.log(e, e.detail)
})
}
</script>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
*{
margin: 0px;
padding: 0px;
}
#div1{
width: 530px;
height: 330px;
border: 10px greenyellow solid;
position: relative;
top: 200px;
left: 300px;
overflow: hidden;
}
ul{
position: relative;
left: -5px;
}
li{
list-style: none;
border-left: 5px greenyellow solid;
border-right: 5px greenyellow solid;
float: left;
}
img{
width: 530px;
height: 330px;
}
#dot{
height: 250px;
position: relative;
top: -30px;
}
#dot a{
display: block;
float: left;
width: 10px;
height: 10px;
background-color: red;
opacity: 0.5;
margin: 0 4px;
}
#dot a:hover{
background-color: black;
}
</style>
<script src="./tools/tools.js"></script>
<script>
window.onload = function(){
var ul = document.getElementById("ul");
var dot = document.getElementById("dot");
var a = document.getElementsByTagName("a");
var num = document.getElementsByTagName("img").length;
var index = 0;
var timer = null;
ul.style.width = num * 540 + "px";
dot.style.left = 540/2 - num*18/2 + "px";
a[0].style.backgroundColor = "black";
function setA(func){
move(ul, (-index * 540) -5, 30, 1, function(){
func && func();
for(var i = 0; i < a.length; i++){
a[i].style.backgroundColor = "";
}
a[index].style.backgroundColor = "black";
});
}
function change(){
timer = setInterval(function(){
index++;
index %= 6;
setA(function(){
if(index == 5){
index = 0;
ul.style.left = "-5px";
}
});
}, 3000);
}
function autoChange(){
change();
}
function clickChange(){
setA(function(){
clearInterval(timer);
autoChange();
});
}
autoChange();
dot.onclick = function(e){
e = e || window.event;
var target = e.target;
if(target.nodeName == "A"){
index = parseInt(target.id);
clickChange();
}
};
};
// window.onload = function(){
// var ul = document.getElementById("ul");
// var num = document.getElementsByTagName("li").length;
// var dot = document.getElementById("dot");
// var a = document.getElementsByTagName("a");
// var time = null;
// var ulWidth = 540 * num;
// var index = 0;
// ul.style.width = ulWidth + "px";
// dot.style.left = 530/2 - 18*num/2 + "px";
// a[index].style.backgroundColor = "black";
// var setA = function(){
// for(var i = 0; i < a.length; i++){
// a[i].style.backgroundColor = "";
// a[index].style.backgroundColor = "black";
// }
// }
// var ChangeA = function(){
// index++;
// index = index % num;
// move(ul, -index*540-5, 20, 1, function(){
// if(index == 5){
// index = 0;
// ul.style.left = "-5px";
// }
// setA();
// });
// };
// var autoChange = function(){
// time = setInterval(ChangeA, 3000);
// };
// autoChange();
// dot.onclick = function(e){
// e = e || window.event;
// if(e.target.nodeName == "A"){
// index = parseInt(e.target.id);
// clearInterval(time);
// move(ul, -index*540-5, 20, 1, function(){
// setA();
// autoChange();
// });
// }
// };
// };
</script>
</head>
<body>
<div id="div1">
<ul id="ul">
<li><img src="./img/1.png" alt="无"></li>
<li><img src="./img/2.png" alt="无"></li>
<li><img src="./img/3.png" alt="无"></li>
<li><img src="./img/4.png" alt="无"></li>
<li><img src="./img/5.png" alt="无"></li>
<li><img src="./img/1.png" alt="无"></li>
</ul>
<div id="dot">
<a id="0" href="javascript:;"></a>
<a id="1" href="javascript:;"></a>
<a id="2" href="javascript:;"></a>
<a id="3" href="javascript:;"></a>
<a id="4" href="javascript:;"></a>
</div>
</div>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
#div{
width : 100px;
height : 100px;
background-color: #add;
position: absolute;
}
</style>
<script>
window.onload = function(){
var div = document.getElementById("div");
var speed = 10;
var dir = 0;
setInterval(function(){
switch(dir){
case 37:
div.style.left = div.offsetLeft - speed + "px";
break;
case 38:
div.style.top = div.offsetTop - speed + "px";
break;
case 39:
div.style.left = div.offsetLeft + speed + "px";
break;
case 40:
div.style.top = div.offsetTop + speed + "px";
break;
};
}, 30);
document.onkeydown = function(e){
var e = e || window.event;
if(e.altKey){
speed = 50;
}else{
speed = 10;
}
switch(e.keyCode){
case 37:
dir = 37;
break;
case 38:
dir = 38;
break;
case 39:
dir = 39;
break;
case 40:
dir = 40;
break;
}
};
document.onkeyup = function(e){
e = e || window.event;
if(e.keyCode == 18){
speed = 10;
}else{
dir = 0;
}
};
};
</script>
</head>
<body>
<div id="div"></div>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
<style>
*{
margin: 0;
}
</style>
<script type="text/javascript">
window.onload = function(){
var prev = document.getElementById("prev");
var next = document.getElementById("next");
var imgarr = ["img/1.png", "img/2.png", "img/3.png", "img/4.png", "img/5.png", "img/6.png"];
var index = 0;
var img = document.getElementsByTagName("img")[0];
var info = document.getElementById("info");
info.innerHTML = "总共" + imgarr.length + "张,当前第" + (index + 1) + "张";
prev.onclick=function(){
if(index == 0){
index = imgarr.length - 1;
}else{
index--;
}
img.src = imgarr[index];
info.innerHTML = "总共" + imgarr.length + "张,当前第" + (index + 1) + "张";
}
next.onclick=function(){
if(index == imgarr.length - 1){
index = 0;
}else{
index++;
}
img.src = imgarr[index];
info.innerHTML = "总共" + imgarr.length + "张,当前第" + (index + 1) + "张";
}
var outer = document.getElementById("outer");
console.log(outer.previousElementSibling.id);
}
</script>
</head>
<body>
<p id="info"></p>
<div id="outer">
<img src="img/1.png" alt="hhh">
<button id="prev">上一张</button>
<button id="next">下一张</button>
</div>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript">
function checkfunction(btnstr, func){
var btn = document.getElementById(btnstr);
btn.onclick = func;
}
function isSelected(box, state){
if(box.checked){
if(state < 4){
box.checked = false;
}
}else{
if(state == 4){
box.checked = true;
}
}
}
window.onload=function(){
var items = document.getElementsByName("item");
var state = 0;
var checkallbox = document.getElementById("checkallbox");
items.forEach(function(value){
value.onclick = function(){
value.checked ? state++: state--;
console.log(state);
isSelected(checkallbox, state);
}
});
checkallbox.onclick = function(){
var that = this;
items.forEach(function(value){
value.checked = that.checked;
});
state = that.checked ? 4 : 0;
}
checkfunction("checkall", function(){
items.forEach(function(value){
value.checked = true;
});
state = 4;
checkallbox.checked = true;
});
checkfunction("checkno", function(){
items.forEach(function(value){
value.checked = false;
});
state = 0;
checkallbox.checked = false;
});
checkfunction("checkrev", function(){
var count = 0;
items.forEach(function(value){
value.checked = !value.checked;
if(value.checked) count++;
});
state = count;
isSelected(checkallbox, state);
});
checkfunction("submit", function(){
items.forEach(function(value){
if(value.checked){
alert(value.nextSibling.nodeValue);
}
});
});
var input = document.createElement("input");
input.type="checkbox";
checkallbox.parentNode.insertBefore(input, checkallbox);
}
</script>
</head>
<body>
你爱好的运动是?
<input type="checkbox" id="checkallbox">全选/全不选<br/>
<input type="checkbox" name="item">篮球
<input type="checkbox" name="item">足球
<input type="checkbox" name="item">乒乓球
<input type="checkbox" name="item">羽毛球<br/>
<button id="checkall">全选</button>
<button id="checkno">不选</button>
<button id="checkrev">反选</button>
<button id="submit">提交</button>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var n = 10000;
var half = parseInt(n/2) - 1;
var arr = new Array(half);
for(var i=3; i < n; i+=2){
arr[parseInt(i/2) - 1] = i;
}
console.time("a");
var end=arr[half - 1];
for(var j=0; Math.pow(arr[j], 2)<end ; j++){
for(var k=j + 1; k < half - 1; k++){
if(arr[k] % arr[j] == 0){
arr[k]=0
}
}
}
var cnt=1
for (const i in arr) {
if(i!=0){
console.log(typeof i);
break;
cnt++;
}
}
console.log(cnt)
console.timeEnd("a");
</script>
</head>
<body>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
var getStyle = function(obj, styleName){
return parseInt(window.getComputedStyle && window.getComputedStyle(obj, null)[styleName] || obj.currentStyle[styleName]);
};
var move = function(obj, endPoint, speed, dir, callback){
switch(dir){
case 1:
dir = "left";
break;
case 2:
dir = "top";
break;
default:
dir = "left";
break;
}
clearInterval(obj.time);
var objdir = getStyle(obj, dir);
if(objdir > endPoint){
speed = -speed;
}
obj.time = setInterval(function(){
objdir = getStyle(obj, dir);
obj.style[dir] = objdir + speed + "px";
if(speed < 0){
if(objdir <= endPoint){
obj.style[dir] = endPoint + "px";
clearInterval(obj.time);
callback && callback();
}
}else{
if(objdir >= endPoint){
obj.style[dir] = endPoint + "px";
clearInterval(obj.time);
callback && callback();
}
}
}, 30);
}; | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# http总结
##HTTP1.1与HTTP1.0的区别
1. 优化了缓存机制:增加新的缓存头用来优化缓存
2. 优化了带宽控制:增加了请求资源的range属性,返回为206
3. 增加错误码:能返回更多错误码用来排除错误
4. 长连接:增加keep-alive状态来维持持续连接
5. host头处理:在host头中增加主机名用来应对物理主机存在虚拟机的情况
##SPDY优点
1. 多路复用解决延迟高的问题
2. 设置优先级保证重要请求的速度
3. 压缩header减少请求大小
4. 使用HTTPS加密策略保证安全性
5. 服务器端主动推送
##HTTP2.0与SPDY区别
1. 前者支持明文HTTP传输
2. header头加密算法不同
##HTTP2.0与HTTP1.1区别
1. 使用二进制格式而不是表现形式多样的文本格式
2. 多路复用
3. header压缩
4. 服务器端推送
##HTTP2.0多路复用TCP,HTTP1.1长连接复用TCP,其中HTTP1.1是串行化复用,其中某个请求阻塞会导致后续请求一起被阻塞,而HTTP2.0不会。 | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# AJAX技术
* ajax是浏览器提供的一系列api,可供javascript调用,实现代码控制请求与相应,实现网络编程
## 快速上手
```javascript
let xhr = new XMLHttpRequest() //类似于开启用户代理
//初始化,请求了代理对象
console.log(xhr.readyState) //0, UNSENT
xhr.open('get', '/text.php') //类似于输入地址与方法
//调用了open方法,建立了客户端与服务端的特定端口的连接
console.log(xhr.readyState) //1, OPENED
xhr.send(null) // 类似于按下确认键, 参数为请求体
//由于ajax请求可能需要花费比较长时间来获取响应数据,但是不能让用户等待,因此设计初衷就是异步,即类似用事件的形式
xhr.onreadystatechange = function(){
switch(this.readyState){
case 2:
//已经获取到了响应报文的响应头
console.log(xhr.readyState) //2, HEADERS_RECEIVED
console.log(xhr.getAllResponseHeaders)
console.log(xhr.responseText) //没有数据
break
case 3:
//正在下载响应体中的数据
console.log(xhr.readyState) //3, LOADING
console.log(xhr.responseText) //数据有可能完整也有可能不完整,与响应体大小跟网速有关
break
case 4:
//响应体中的数据下载完成
console.log(xhr.readyState) //4, LOADED
console.log(xhr.responseText) //数据完整
}
}
xhr.onload = function(){ //HTML5, XHR v2.0发布事件
console.log(xhr.readyState) //4
}
```
* `xhr.responseText`永远只会获取字符串形式的响应体
* `xhr.response`根据content-type的变化而变化
## 遵循http协议
```javascript
let xhr = new XMLHttpRequest()
console.log(xhr.readyState)
xhr.open('post', '/text.php')
//响应头中的content-type必须与请求体中的格式相同,否则服务端无法解析
xhr.setRequestHeader('content-type', 'application/x-www-form-urlencoded') //设置响应头
xhr.send('name1=value1&name2=value2') //设置urlencoded的请求体
xhr.onreadystatechange = function(){
if(this.readyState != 4) return
console.log(this.status) //状态码
console.log(this.responseText)
}
```
## 同步与异步
* `xhr.open`的第三个参数是async,默认为true,用来控制xhr是否以异步形式发送请求
* 当以同步形式调用时,javascript会在`xhr.send`执行后直到收到响应为止进行等待
## 响应数据格式
* 影响到客户端的javascript如何对服务端返回的数据进行解析
* 服务端需要设置合理的content-type来决定客户端如何对其进行解析
### XML
* 响应头为application/xml
* 从responseXML中获取,且能通过dom操作来操作xml
### JSON
* 响应头为application/json
## 兼容方案
* 对于IE5/6需要使用兼容方案
`xhr = XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('microsoft.XMLHTTP')`
## jQuery中的封装
### 快速入门
```javascript
//底层接口
$.ajax('text/php', {
type: 'post', //method
dataType: 'json', //响应体格式, 与data参数无关
data: obj, //响应体
beforeSend: function(xhr){
//在open之前执行此回调
},
success: function(res){
//res会自动根据服务端响应的content-type自动转换成对象
//当设置了dataType时,不再由服务端决定而是按照dataType值来转换成对象
}, //成功接收到响应体后回调,即status为200
error: function(xhr){
//当状态码不为200时执行
},
complete: function(xhr){
//与状态码无关
}
})
//get
$.get('test.json', [data], callback)
//post
$.post('test.json', [data], callback)
$.postJson('test.json', [data], callback) //设置dataType="json"
```
#### $(selector).load(url, [data, [callback]])
* 载入远程 HTML 文件代码并插入至 DOM 中。
* 默认使用 GET 方式 - 传递附加参数时自动转换为 POST 方式。jQuery 1.2 中,可以指定选择符,来筛选载入的 HTML 文档,DOM 中将仅插入筛选出的 HTML 代码。语法形如 "url #some > selector"。
### ajax全局事件
* 当指定选择器中有ajax调用时则触发此事件
#### ajaxStart(callback)
#### ajaxSend(callback)
#### ajaxStop(callback)
#### ajaxError(callback)
#### ajaxComplete(callback)
#### ajaxSuccess(callback)
## 同源策略
* 两个url必须协议,域名,端口都相等才属于同源,由于安全问题,默认只有同源的地址才能通过ajax来访问
* 不同源地址之间如果需要相互请求,必须服务端与客户端配合
### 跨域请求
#### 在html中有几个标签可以自动发送请求: img, link, script, iframe
1. img
* 可以发送不同源的请求
* 无法拿到响应结果
2. link
* 可以发送不同源的请求
* 无法拿到响应结果
3. script
* 可以发送不同源的请求
* 无法拿到响应结果
* 但是会将响应数据当做javascript代码进行执行
* 可以利用这种特性来实现访问不同源的数据
4. iframe
* 可以发送不同源的请求
* 无法拿到响应结果
#### 封装JSONP
浏览器代码
```javascript
function jsonp(src, data, callback){
let script = document.createElement('script')
let symbolCode = 'jsonp_' + Date.now() + (Math.random()+'').slice(2)
let arr = []
for(let name in data){
arr.push(`${name}=${data[name]}`)
}
let obj = arr.join('&')
script.src = src + '?'+ obj +'&callback=' + symbolCode
document.body.appendChild(script)
window[symbolCode] = function(res){
delete window[symbolCode] //删除用作jsonp的函数
script.parentNode.removeChild(script) //删除用作jsonp的script标签
callback(res)
}
}
jsonp('http://localhost:4000',{'name': 'aaaa'}, res=>{
console.log(res)
})
```
服务端代码
```javascript
let http = require('http')
let url = require('url')
http.createServer((req, res)=>{
let parsedurl = url.parse(req.url, true)
if(parsedurl.pathname === '/')
res.setHeader('content-type', 'application/javascript')
res.end(`${parsedurl.query.callback}(${JSON.stringify(parsedurl.query)})`)
}).listen(4000, err=>{
if(err){
res.end('500, server error')
console.log('500, server error')
}else{
console.log('running at 4000...')
}
})
```
#### 跨域资源共享CORS(cross origin resouce share)
* IE10及以上或者其他浏览器支持
* 需要开始只需要让服务端增加响应头access-control-allow-origin的值为`*`或者指定来源
* 当跨域请求为复杂请求时,会在正式通信前发出预检请求(preflight), 请求方法为option,服务器只有在这个请求的响应头中增加access-control-allow-origin才会允许跨域,否则浏览器报错 | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# ECMAScript
## 介绍
* 一般来说ECMAScript可以认为是javascript
* javascript对ECMAScript进行了扩展
### javascript组成
* ECMAScript(核心)
* 扩展-->浏览器端
* DOM
* BOM
* 扩展-->服务器端
* NODEJS
## ES版本变化
1. ES5 发布于2009年
2. ES6 发布于2015年
3. ES7 发布于2016年
## 回顾ES5
### 严格模式
#### 开启方式
* 以`use strict`开头来开启严格模式
#### 行为与特性
* 必须以var声明变量
* 自定义函数中的this不能指向window
* 给eval创建作用域
* 对象不能有重名属性
### JSON扩展
* JSON.stringify(obj/arr)
* 将JS对象或数组转换成JSON对象或数组
* JSON.parse(str)
* 将JSON对象或数组转换成JS对象或数组
### Object扩展
* Object.create(prototype,[descriptors])
1. 作用:以第一个参数作为原型创建一个新的对象
2. 为新的对象指定新的属性并修改它的描述
1. value: 指定值
2. writable: 标识此属性是否可修改
3. configurable: 标识此属性是否可删除
4. enumerable: 标识当前属性是否可被for in枚举
```javascript
var obj1 = {}
var obj2 = Obect.create(obj1, {
sex: {
value: '男',
writable: false,
configurable: true,
numerable: true
}
})
```
* Object.defineProperties(prototype,[descriptors])
1. 作用:给第一个对象扩展新属性
2. 为新的对象添加新的属性并修改它的描述
1. get: 获取指定扩展属性时自动调用此函数,惰性加载,只有在触发时才执行此函数
2. set: 修改此属性时自动调用此函数并且将修改的值作为实参传递给此函数
```javascript
var obj1 = {firstname: 'aa', lastname: 'bb'}
var obj2 = Object.defineProperties(obj1, {
fullname: {
get: function(){
return this.firstname + ' ' + this.lastname
},
set: function(data){
this.firstname = data.split(' ')[0]
this.lastname = data.split(' ')[1]
}
}
})
console.log(obj2.fullname) //aa bb
obj2.fullname = "cc dd"
console.log(obj2.fullname)//cc dd
```
* 对象中也有两个隐藏方法set与get,作用与defineProperty相同
```javascript
var obj1 = {firstname: 'aa', lastname: 'bb',
get fullname(){
return this.firstname + ' ' + this.lastname
},
set fullname(data){
this.firstname = data.split(' ')[0]
this.lastname = data.split(' ')[1]
}
}
console.log(obj1.fullname) //aa bb
obj1.fullname = "cc dd"
console.log(obj1.fullname)//cc dd
```
### 数组的扩展
* Array.prototype.indexOf(value)
* 返回value在Array中第一次出现的下标
* Array.prototype.lastIndexOf(value)
* 返回value在Array中第一次出现的下标
* Array.prototype.forEach(function(item, index, arr){})
* 遍历整个数组
* Array.prototype.map(function(item, index){})
* 遍历整个数组并将每个值按照回调函数的return的结果进行修改,返回值为修改好的数组
* Array.prototype.filter(function(item, index){})
* 遍历整个数组并将每个值按照回调函数的return的结果进行过滤,不满足则丢弃,返回值为修改好的数组
### 函数的扩展
* Function.prototype.bind(obj)
* 将函数内的this值修改为obj并将修改好的函数返回, 常用作为回调函数
* Function.prototype.call(obj, para1, para2...)
* 立即调用函数并将函数内的this值修改为obj并将修改好的函数返回, 与apply区别在于参数不同
* Function.prototype.apply(obj, [para1, para2...])
* 立即调用函数并将函数内的this值修改为obj并将修改好的函数返回
## ES6学习
### let
* 作用与var类似, 用于声明变量
* 特点:
* 在块作用域里有效
* 不能重复声明
* 不会预处理, 不会发生提升
* 应用:
* 循环遍历加监听
* 取代var是趋势
### const
* 特点:
* 值不能修改
* 其余与let相同
* 应用:
* 保存不需要修改的数据
### 变量的解构赋值
* 从对象或者数组中提取数据并将其赋值给变量(多个)
* 给对象解构赋值
* `let {a,b} = {a: 'bbb', b: 'ccc'}`
* 按照对象名来进行取值
* 给数组解构赋值
* `let [a,b] = [1, 'aaaa']`
* 按照下标顺序赋值
* 用途:
* 给多个参数赋值
* 应用给函数形参与实参
```javascript
let obj = {username: 'aa', value: 'ccc'}
function foo({username, value}){
console.log(username, value)
}
foo(obj)
```
### 模板字符串
* 简化字符串的拼接
* 使用``对字符串进行拼接
* 变量的部分使用${xxx}代替
### 对象的简写
* 属性值与属性名相同时可以只写属性名
* 函数的function可以省略
### 箭头函数
* 定义匿名函数
```javascript
//箭头函数体左边的情况
//1.没有形参时
let foo = () => console.log(111)
foo()
//2.一个形参且没有形参默认值时(小括号能够省略)
let foo = a => console.log(a)
foo('aa')
//3.两个及两个以上形参时,小括号不能省略
let foo = (a, b) => console.log(a, b)
foo('aa', 'bb')
//箭头函数体右边的情况
//1.函数只有一条语句或者表达式时{}可以省略, 此时会自动返回语句执行结果或者表达式的结果
let foo = (a, b) => a + b
console.log(foo(1,2))//3
//2.函数不止一条语句或者表达式时
let foo = (a, b) => {
a += 'a'
b += 'b'
return a + b
}
console.log(foo(1,2))//'1a2b'
```
* 特点:
* 简洁
* 箭头函数的this与谁调用无关,而是定义时所处对象的this
* 扩展理解
1. 先看箭头函数外层有没有函数,有则为普通函数的this,没有就是window
2. 如果外层也是箭头函数继续重复第一步的操作
### 三点运算符
* 又名Rest可变参数,常用来代替arguments(arguments.callee指函数本身)
* 它的值是真数组,与伪数组arguments不同
```javascript
function foo(...value){
console.log(value)
}
foo(1,2,3,4,5) //1,2,3,4,5
//当可变参数前也声明了形参时会自动从自己里剔除相应数量形参
function foo(a, ...value){
console.log(value)
}
foo(1,2,3,4,5) //2,3,4,5
```
* 扩展用法
```javascript
let a = [1,6]
let b = [2,3,4,5]
a = [1, ...b, 6]
console.log(a) //[1,2,3,4,5,6]
```
### 形参默认值
* 当未传入参数时使用形参里的默认值
```javascript
let foo1 = (a=1) => console.log(a)
let foo2 = a => console.log(a)
foo1() //1
foo2() //undefined
```
### promise对象
* promise对象: 代表了将来某个将要发生的事件(通常是异步操作)
* 有了promise对象,可以将异步操作以同步的流程表达出来,避免了层层嵌套的回调函数
* ES6的Promise是个构造函数,用来生成promise实例
* 参数函数resolve的参数可以是另一个promise,此时当前promise会等待另一个promise状态发生改变时才继续执行
* promise共有三个状态:
* pendding 初始化状态
* fullfilled 成功状态
* rejected 失败状态
* 基本步骤
```javascript
// 1. 创建promise的实例
let url = ''
function getNews(url){
let xmlRequest = new XMLHttpRequest(url)
let promise = new Promise((resolve, reject)=>{
// promise处于初始化状态
xmlRequest.onreadystatechange = ()=>{
if(xmlRequest.readystate === 4){
if(xmlRequest.state === 200){
xmlRequest.open('get', url)
console.log(xmlRequest.responseText)
// 2. 指定进入成功状态时的回调函数的逻辑
resolve(xmlRequest.responseText)
}else{
// 3. 指定进入失败状态时的回调函数的逻辑
reject('失败了')
}
}
}
})
// 返回promise以创建下一条链式调用
return promise
}
getNews(url)
.then((data)=>{
// fullfilled状态,步骤2中的回调函数
let {newUrl} = JSON.parse(data)
// 返回promise以继续创建下一条链式调用
return getNews(newUrl) // 重新创建了新的promise来重复执行函数getNews
}, (error)=>{
// rejected状态,步骤3中的回调函数
console.log(error)
})
.then((data)=>{
// fullfilled状态,步骤2中的回调函数
console.log('完成')
}, (error)=>{
// rejected状态,步骤3中的回调函数
console.log(error)
})
.catch(error=>{ //通常不会给then指定第二个错误回调,而是使用catch方法来捕获错误
console.log(error)
})
.finally(()=>{}) //在执行完then或者catch回调后就执行,本质两者回调中的逻辑交集,发布于ES8
```
### symbol
* 在ES5中由于对象的属性名是个字符串,可能造成命名冲突
* 比如想给别人创建的对象添加新属性时,新属性名可能与原属性名冲突,此时可用symbol解决
* 在ES6中新增加的基本类型
* 表示一个独一无二的值,无法与其他值进行运算包括拼串
* 创建时不使用new运算符,因为它不是对象而是一个原始类型的值
* 不会被for in 与for of遍历到
```javascript
let symbol = Symbol()
console.log(symbol) //symbol()
//可以传参作为它的标识符
let symbol1 = Symbol('one')
console.log(symbol) //symbol(one)
//如果传入参数是一个对象则调用toString方法来作为标识符
let obj = {
toString(){
return 'abc'
}
}
let symbol2 = Symbol(obj)
console.log(symbol) //symbol(abc)
```
### iterator遍历器
* 是一个接口机制,为各种不同的数据结构提供统一的访问机制
* 作用:
* 为各种数据结构提供一种统一简洁的接口
* 使得数据结构能按一定次序排列
* ES6创造一种新的遍历方式for of,带有iterator接口的数据才能被遍历
* 工作原理:
* 创建一个指针对象(遍历器对象),指向数据结构的起始位置
* 调用next方法,指针自动指向数据结构的第一个成员
* 继续调用next方法,指针指向下一个成员直到指向最后一个成员
* 每调用一个next方法返回一个对象包含value与done
* value表示当前的值,done表示是否遍历完成,布尔值
* 当遍历结束时(最后一个值的next)value为undefined,done返回true
```javascript
//模拟遍历器接口
let arr = [1,2,3,4,5]
let iterator = (arr)=>{
let index = 0
return index >= arr.length?{value: arr[index], done: false}:{value: undefined, done: true}
}
```
* 将iterator接口部署到指定数据结构上,可以使用for of遍历
* 数组,字符串,arguments,map容器,set容器自带iterator接口
```javascript
let arr = [1,2,3,4,5]
for(let i of arr){
console.log(i)
}
//1,2,3,4,5
let str = 'abcdefg'
for(let i of str){
console.log(i)
}
//a,b,c,d,f,g
function foo(a,b,c,d){
for(let i of arguments){
console.log(i)
}
}
foo(1,2,3,4)//1,2,3,4
```
* 对对象使用for of时会调用对象内Symbol.iterator的函数
```javascript
//给对象添加模拟遍历器
obj = {
[Symbol.iterator](){
return { index: 0,
next:function(){
return this.index<=3?{value: this.index++, done: false}:{value: undefined, done: true}
}}
}
}
```
### generator函数
* ES6提供的解决异步编程的方案
* 它是个状态机,封装了各个阶段的数据
* 用来生成遍历器对象
* 创建时在function与函数名之间加星号表示generator函数
* 惰性加载,执行next才执行到函数内的yield语句处
```javascript
function* myGenerator(){
console.log('开始执行')
let step1 = yield 'step1'
console.log(step1)
console.log('中断后重新执行')
yield console.log('step2')
console.log('完成')
return 'end'
}
//执行generator函数返回一个遍历器对象, 指向初始位置
let iterator = myGenerator()
//执行next方法使遍历器对象指向第一个yield处,yield语句的表达式结果就是value值
console.log(iterator.next()) //'开始执行' {value: 'step1', done: false}
//执行next方法使遍历器对象指向下一个yield处,yield语句的表达式结果就是value值
//可以给next传递实参,这个实参会赋值给执行此next方法时遍历器对象指向的起始yield语句的返回值,此处就是变量step1
console.log(iterator.next('aaa'))//'aaa' '中断后重新执行' 'step2' {value: 'undefined', done: false}
//继续执行next会使返回的value与函数内return的表达式值相同
console.log(iterator.next())//'完成' {value: 'end', done: true}
```
* 加深generator函数是生成遍历器对象的印象
```javascript
let obj = {
*[Symbol.iterator](){
yield 1
yield 2
yield 3
}
}
for(let i of obj){
console.log(i)
}
```
### async函数
* ES7语法
* 真正意义上解决异步回调,同步流程表达异步操作
* 本质是generator的语法糖
* async函数返回值为promise
```javascript
async function foo(){
await 异步操作
await 异步操作
}
```
* 例子
```javascript
function getNews(url){
let promise = new Promise((resolve, reject)=>{
if(url === 'aaa'){
resolve(url)
}else{
//参数函数的执行不会终止后续逻辑但是由于状态只会转变一次,因此回调需要二选一
resolve(false) //此种回调可以让失败的逻辑交给async函数本身处理
reject('普通函数失败') //此种回调可以让失败逻辑交给async函数的then方法来执行
}
})
return promise
}
async function test(){
let result = await getNews('bbb') //await后的函数只有promise为成功状态才会继续执行
//此处的if判断是建立在上个函数调用resolve的基础上
if(result===false){ //可以借用给resolve传递false来表示promise实际为fullfilled状态
console.log('async函数失败') //针对fullfilled状态需要执行的逻辑
}else{
console.log(result) //成功状态执行的逻辑
}
result = await getNews('aaa')
console.log(result)
return 'async函数成功'
}
//处理异步执行过程中发生的成功或者失败的逻辑
test().then((data)=>{
console.log(data) //成功执行此处,data的值为async函数return的值
},(error)=>{
console.log(error) //失败执行此处
})
```
### class
* 通过class定义类/实现类的继承
* 在类中使用constructor来实现类的属性继承
* 使用函数简写的形式给类添加一个方法
* 子类使用extends继承父类
* 子类在constructor中使用super来调用父类继承的属性
* 子类可以通过父类的方法重写来实现调用自己的方法
```javascript
class Person{
constructor(name, age){ //属性继承
this.name = name
this.age = age
}
getName(){ //创建父类方法
console.log(this.name, this.age)
}
}
class SalaryPerson extends Person{
constructor(name, age, salary){
super(name, age) //继承父类属性
this.salary = salary
}
getName(){ //重写父类方法
console.log(this.name, this.age, this.salary)
}
}
let aPerson = new SalaryPerson('aa', 16,2000)
console.log(aPerson)
```
* 本质是组合继承(构造函数继承+寄生继承)
### 字符串扩展
* `str.includes(str)` 判断是否包含指定字符串
* `str.startWith(str)` 判断是否以指定字符串开头
* `str.endWith(str)` 判断是否以指定字符串结尾
* `str.repeat(count)` 返回重复了指定次数的字符串
### 数值扩展
* 二进制与八进制表示法:0b开头表示二进制,0o表示八进制
* `number.isFinite(i)` 判断是否是有限数
* `number.isNaN(i)` 判断是否是NaN
* `number.parseInt(str)` 字符串转化为整数
* `number.isInteger(i)` 判断是否是整数
* `Math.trunc(i)` 小数转化为整数
### 数组对象的扩展
* `Array.from(v)` 将伪数组转化为真数组
* `Array.of(v1,v2,v3)` 将一系列数据转化为数组
* `Array.find(function(item, index, arr){})` 找到满足条件的第一个值
```javascript
//尝试实现底层
Array.prototype.myfind = function(condition){
for(let i = 0; i < this.length; i++){
if(condition(this[i], i)){
return this[i]
}
}
}
```
* `Array.findIndex(function(item, index, arr){})` 找到满足条件的第一个值的下标
```javascript
//尝试实现底层
Array.prototype.myfindIndex = function(condition){
for(let i = 0; i < this.length; i++){
if(condition(this[i], i)){
return i
}
}
}
```
### 对象的扩展
* `Object.is(v1, v2)` 判断两个数据是否相等,底层是判断字符串
* `Object.assign(target, source, [source, source])` 将源对象的属性添加到目标对象上
* 从ES6开始__proto__可以被操作
### 深度克隆
* 拷贝数据:
* 基本数据类型
* 拷贝后生成一份新的数据,修改新数据不会改变原数据的值
* 对象/数组
* 拷贝后是传递原数据的引用地址,修改新数据会改变原数据的值
* 深拷贝:
* 拷贝的不是引用地址
* 浅拷贝:
* 拷贝的是引用地址
* 几种拷贝方法:
1. 直接赋值 浅拷贝
2. Object.assign() 浅拷贝
3. Array.prototype.concat() 浅拷贝
4. Array.prototype.slice() 浅拷贝
5. JSON.parse(JSON.stringify()) 深拷贝, 但是内容中不能包括函数,否则是null
* 深拷贝的实现要求
* 拷贝的内容里不能有对象/数组
* 深拷贝的实现
```javascript
function clone(target){
let value = null
if(checkedType(target) === 'Object'){
value = {} //如果形参为对象则创建对象字面量
}else if(checkedType(target) === 'Array'){
value = [] //如果形参为数组则创建数组字面量
}else{
return target
}
for(let i in target){ //遍历对象或者数组
value[i] = arguments.callee(target[i]) //递归调用判断对象或者数组中的值
}
return value
function checkedType(obj){
return Object.prototype.toString.call(obj).slice(8, -1) //调用原型上纯净的方法
}
}
```
### set与map容器
#### set容器
* 无序的不可重复的多个value的集合体
* Set(array) 将数组转化为set容器
* set.add()
* set.delete()
* set.has()
* set.clear()
可用来解决数组内数据重复问题
#### map容器
* 无序的key不重复的多个key-value的集合体
* Map(array) 将两维数组转化为map容器
* map.set(key, value)
* map.get(key)
* map.delete(key)
* map.has(key)
* map.clear()
* map.size
## ES7新增
* 指数运算符`**`
* Array.prototype.includes(value) 判断某个值是否在数组内 | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# 初识jQuery
## what
* 一个优秀js函数库
* 使用了jQuery的网站超过90%
* 中大型WEB项目开发首选
* write less, do more
## why
* HTML元素选取(选择器)
* HTML元素操作
* CSS操作
* HTML事件处理
* JS动画效果
* 链式调用(每个方法返回值为this)
* 读写合一(读是针对第一个,写针对是所有)
* 浏览器兼容
* 隐式遍历
* 易扩展插件
* ajax封装
* ...
## how
1. 引入jq库
2. 使用jq文件
* jQuery核心函数: `$/jQuery`
* jQuery核心对象: 执行`$()`返回的对象
* 区别两种js库库文件
* 开发版
* 生产版
* 区别两种引入js库库文件的方式
* 本地引入库
* CDN库远程引入
* 减轻自己服务器的压力
* jQuery的不同版本
* 1.X
* 兼容老版本IE
* 文件更大
* 2.X
* 部分API不支持IE8及以下版本
* 文件小且执行效率高
* 3.X
* 完全不再支持IE8及以下版本
* 提供了一些新的API
* 提供不包含ajax/动画API的版本
# jQuery两把利器
## jQuery核心函数
* 简称: jQuery函数(`$/jQuery`)
* jQuery库向外暴露的只有`$/jQuery`
* 当函数用\$()
* 参数为函数: 当dom加载完成后执行此回调函数
* 参数为选择器字符串:查找匹配的标签并将它封装成jQuery对象
* 参数为dom对象:将dom对象封装成jQuery对象
* 参数为html标签字符串:创建标签对象并将其封装成jQuery对象
```javascript
//点击按钮后获取一个id为msg1的文本框的值并显示
//显示后新增一个文本框到dom树种
$(function(){
var msg1 = $('#msg1');
$('#btn').onclick(function(){
console.log(this); //在jq事件的回调函数中, this值与原生js相同都是dom对象
alert(msg.val());
$('<input type="text" id="msg3">').appendTo('div');
})
});
```
* 当对象用`$.()`
* `$.each`
* `$.trim`
```javascript
//隐式循环遍历数组
var arr = [1,2,3,4,5];
$.each(function(index, item){
console.log('索引:'+index+' 值:' +item);
});
```
## jQuery核心对象
* 简称: jQuery对象
* 得到jQuery对象: 执行jQuery函数后返回的就是对象
### 理解
* jq对象内部包含所有匹配的任意多个dom元素对象的伪数组(可能只有一个元素)
* jq对象拥有许多有用的属性与方法来方便操作dom
### 基本行为
* `size()/length` 返回包含的dom元素对象数量
* `[index]/get(index)` 通过index来查找第index个dom对象
* `each()` 通过传入回调函数来遍历dom对象
```javascript
//读取dom元素方法1
var $buttons = $('button');
$buttons.each(function(index, domele){
console.log(domele.innerHTML);
});
//读取dom元素方法2
var $buttons = $('button');
$buttons.each(function(){
console.log(this.innerHTML); //在回调函数中的this指当前遍历中的dom元素
});
```
* `index()` 返回当前jq对象在所在兄弟元素中的位置下标
## 伪数组
* 是Object对象
* length属性
* 数组下标属性
* 没有数组的特别方法,如foreach, concat等
## 选择器
### $(selector)
* 就是css选择器的格式
* 返回封装好的jq对象
### 基本选择器
`$('#div').css('background', 'red')`
`$('#div').css({background: 'red'})`
### 层次选择器
`$('#div div').css('background', 'red')`
### 过滤选择器
`$('input[name="div1"]').css('background', 'red')`
`$('#div:no(.box)').css({background: 'red'})` //只要class不为box就被选中, 包括没有class
`$('input:gt(0):lt(2)').css('background', 'red')` //多个过滤选择器是按顺序执行不是同时执行,此结果为第2个与第3个元素
`$('input:contains("a")').css('background', 'red')` //选中内容为a的input元素
### 表单选择器
`$(':text:disabled').css('bakcground', 'red')` //选中不可用的单行文本框
`$(':checkbox:checked').css('bakcground', 'red')` //选中已经被选择的多选按钮
## 工具方法
### $.each(obj, fn)
### $.trim(str)
### $.type(obj)
### $.isArray(obj)
### $.isFunction(obj)
### $.parseJSON(JSON) //转化为js对象/数组
## 属性
### $('div').attr('name') //读取name属性
### $('div').attr('name', 'a') //设置name属性
### $('checkbox').prop('checked', true) //设置checked布尔值属性, 设置布尔值必须用prop方法
### $('div').removeAttr('name') //移除name属性
### $('div').addClass('a') //添加class属性
### $('div').removeClass('a') //移除class属性
### $('div>li:last').html() //得到最后一个li的标签体文本
### $('div>li:last').html('<li>aaaaa</li>') //设置最后一个li的标签体文本
# CSS模块
## CSS
### $('#div').css('background') //读取css样式
### $('#div').css('background', 'red')` //设置css样式
### $('#div').css({background: red, width: 30, height: 30}) //设置多个样式
## 位置
### offset([obj])
* 不加参数返回相对页面左上角的偏移量
* 加参数设置偏移量, 必须同时top和left
### position()
* 相对父元素左上角的偏移量
* 不能设置偏移量
* 返回值是有left与right属性的对象
### scrollTop([val])
* 不设置参数获取元素的垂直滚动像素
* 设置参数设置元素的垂直滚动像素
* 在chrome与火狐中, 浏览器滚动条的滚动像素在body上
* 在IE中, 浏览器滚动条的滚动像素在html上
### scrollLeft([val])
* 与垂直滚动类似
## 尺寸
* width()/height() //内容区, 可加参数设置长宽
* innerWidth()/innerHeight() //内容区加内边距
* * outerWidth()/outerHeight() //内容区加内边距加边框
* outerWidth(true)/outerHeight(true) //内容区加内边距加边框加外边距
# 筛选
## 过滤
### $('li').first().css('background', 'red') //li中的第一个jq对象
### $('li').last().css('background', 'red') //li中的最后一个jq对象
### $('li').eq(1).css('background', 'red') //li中的第二个jq对象
### $('li').filter('[title][title="a"]').css('background', 'red') //li中的有title属性且为a的jq对象
### $('li').filter('[title]').filter('[title="a"]').css('background', 'red') //li中的有title属性且为a的jq对象
### $('li').has('span').css('background', 'red') //li的后代元素中至少有一个span子元素的
### $('li').not('[title]').css('background', 'red') //没有title属性的li标签
## 查找
### $('ul').children('span:eq(1)') //ul中的第二个span子元素
### $('ul').find('span:eq(1)') //ul中的第二个span后代元素
### $('ul').parent() //ul的父元素
### $('ul').siblings() //ul的所有兄弟元素
### $('ul').prevAll() //ul的所有在它前面的兄弟元素, 从最近一个开始倒序查找
### $('ul').nextAll() //ul的所有在它后面的兄弟元素
# 文档处理
## 内部插入
### `$('ul').append('<p>a</p>')` //向ul中的最后插入p标签
### `$('<p>a</p>').appendTo($('ul'))` //将p标签插到ul中的最后
### `$('ul').prepend('<p>a</p>')` //向ul中的最前插入p标签
### `$('<p>a</p>').appendTo($('ul'))` //将p标签插到ul中的最前
## 外部插入
### `$('ul').before(htmlString | Element | Array | jQuery)` //向ul的前面插入元素
### `(htmlString | Element | Array | jQuery).insertBefore($('ul'))` //将元素插入到ul标签之前
### `$('ul').after(htmlString | Element | Array | jQuery)` //向ul的后面插入元素
### `(htmlString | Element | Array | jQuery).insertAfter($('ul'))` //将元素插入到ul标签之后
## 替换
### `$('ul').replaceWith('<p>a</p>')` //用p标签替换ul标签
### `$('ul').replaceAll(Selector | jQuery | Array | Element)` //用匹配到的元素替换ul标签
## 移除
### $('ul').empty() //清空ul内部子节点
### $('ul').remove('li') //清空ul内部li标签
# 事件
## 页面载入
* ready(fn)
## 事件处理
* `.event()`
* .on(event, [selector, ][data, ]fn)
* .off([event,][selector, ][fn])
## mouseover与mouseenter的区别
* mouseover对应mouseout
内部有子元素时, 移入子元素会触发父元素的mouseout事件
* mouseenter对应mouseleave
内部有无子元素时没有区别
## 事件委托
* delegate() //老方法
* on() //新方法
## 事件坐标
* event.offsetX //距离当前元素左上角
* event.clientX //距离视图左上角
* event.pageX //距离页面左上角
## 事件相关
* 停止冒泡
stopPropagation()
* 阻止默认行为
preventDefault()
##内置动画
### 改变透明度
* fadeOut([speed][,easing][,fn]) //淡出
* fadeIn([speed][,easing][,fn]) //淡入
* fadeTaggle([speed][,easing][,fn]) //切换淡入淡出
* fadeTo([speed]opacity[,easing][,fn]) //指定透明度
### 改变高度
* slideDown([speed],[easing],[fn]) //收缩
* slideUp([speed][,easing][,fn]) //展开
* slideTaggle([speed][,easing][,fn]) //切换
### 改变透明度和宽高, 默认没有动画
* show([speed],[easing],[fn]) //收缩
* hiden([speed][,easing][,fn]) //展开
* taggle([speed][,easing][,fn]) //切换
### 自定义动画
* animate(params,[speed],[easing],[fn]) //链式调用可以指定先后效果, 在参数中设置'+=n'或者'-=n'是调整属性变化值
## 多库共存
让jQuery将变量$的控制权让渡给别的实现它的库
* jQuery.noConflict([extreme])
```javascript
var
// Map over jQuery in case of overwrite
_jQuery = window.jQuery,
// Map over the $ in case of overwrite
_$ = window.$;
jQuery.noConflict = function( deep ) { //当参数为true时将jQuery也释放
if ( window.$ === jQuery ) {
window.$ = _$;
}
if ( deep && window.jQuery === jQuery ) {
window.jQuery = _jQuery;
}
return jQuery;
};
```
# onload与ready的区别
* onload在图片加载完后执行并且只能绑定一个监听回调
* ready在页面加载完后执行, 比较快并且可以绑定多个监听回调
# 自定义jq插件
## 扩展插件
### 扩展jQuery函数的工具对象
* `$.extend(obj)`
### 扩展jQuery对象的工具对象
* `$.fn.extend(obj)`
## jQuery-validation
### 表单验证
* 参考源码里的例子
* 给标签添加属性来制定验证规则
* 使用$().validate(obj)来开启验证
## jQuery UI
### 大型jQuery插件包含各种子插件
## laydate | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# JS模块化
## 模块化历史
### 原始写法
* 直接将需要声明的变量写在全局中
```javascript
function foo1(){}
function foo2(){}
```
foo1()
foo2()
* 污染全局
### namespace方式
* 将需要声明的变量封装到一个函数中
```javascript
let module = {
foo1(){},
foo2(){}
}
module.foo1()
module.foo2()
```
* 本质是对象,可以随时获取内部数据,不安全
### IIFE方式
* 通过闭包的方式,只暴露想要暴露的数据或方法
```javascript
let Module = (function module(){
var __private = 'save now'
function foo(){}
return {foo: foo}
})()
Module.foo()
Module.__private //undefined
```
* 函数是唯一的local scope
### 引入依赖
* 通过给闭包函数引入参数的形式来传递依赖
```javascript
let Module = (function module($){
var __private = 'save now'
$('#test').hide()
function foo(){}
return {foo: foo}
})($)
```
* 这就是模块模式
* 现代模块化的基石
## 为什么要模块化
1. 现代网页更像一个web app
2. 代码复杂度逐渐上升
3. 需要高解耦性的js文件
4. 需要部署一种最大优化http数量的网站
## 模块化的好处
1. 避免命名冲突
2. 更好的分离,按需加载
3. 更高复用性
4. 高可维护性
## 通过页面引入script的方式
1. 提高了http数量,降低网站性能
2. 引入顺序改变会导致报错
3. 依赖关系模糊
4. 难以维护
## 模块化规范
### commonjs
* 每个文件都可以当做一个模块
* 服务器端模块加载是同步的
* 浏览器端需要提前编译打包
#### 基于服务器端
* 文件目录:
project
|modules
|node_modules
|app.js
|package.json
* 基本语法
1. module.exports
2. exports
3. require
#### 基于浏览器端
* 文件目录:
project
|js
|dist 打包后的文件目录
|src 源码所在目录
|modules
|app.js
|node_modules
|index.html
|package.json
* 使用browerify打包
* npm install -g browerify
* npm install --save-dev browerify
* browerify src.js -o destination.js
### AMD
* 异步模块定义
* 专门用于浏览器端,模块的加载是异步的
#### 基本语法
* 定义没有依赖的模块
```javascript
define(function(){})
```
* 定义有依赖的模块
```javascript
define([module1, module2]function(module1, module2){ //显式声明,依赖注入
return {} //将想要暴露的模块对象直接返回
})
```
* 引入使用模块
```javascript
require([module1, module2]function(module1, module2){})
```
#### 使用
1. 引入[requirejs](http://requirejs.org)
```html
<script data-main="./js/main.js" src="./js/libs/require.js"></script>
```
2. 项目目录:
js
|libs
|require.js
|angular.js
|modules
|module1.js
|module2.js
|main.js
index.html
3. 使用requirejs
```javascript
(function(){
requirejs.config({
baseUrl: 'js/', //设置根目录
paths:{
module1: 'modules/module1', //后缀js会自动添加,所以不能手动加.js后缀
module2: 'modules/module2',
angular: 'libs/angular'
},
shim:{
angular:{
exports: 'angular' //对于原生不支持AMD的将第三方对象暴露给window对象的第三方模块需要手动配置暴露的对象名
}
}
})
requirejs.(['module1', 'module2', 'angular'], (m1, m2, angular)=>{})
})()
```
### ES6模块化规范
* 依赖模块需要编译打包处理
#### 文档结构
project
|js
|src
|build
|dist
|index.html
|.babelrc
#### 编译过程
1. 安装babel-cli babel-reset-es2015 browerify
```
npm install -g babel-cli browerify
npm install --save-dev babel-reset-es2015
```
2. 在项目根目录自定义.babelrc文件
```json
{
"reset": ["es2015"]
}
```
3. 编写es6模块化语法
##### 常规暴露
* 在src文件夹新建module1.js
```javascript
function foo(){
console.log('我是module1')
}
/*
*export foo //单独暴露
*export {foo} //统一暴露
*
*/
```
* 在src文件夹新建main.js
```javascript
/*
*import foo from './module1.js' //单独暴露时
*export {foo} from './module1.js' //统一暴露时
*
*/
foo() //'我是module1'
```
##### 默认暴露
* 在src文件夹新建module1.js
```javascript
function foo(){
console.log('我是module1')
}
/*
*export default foo //引入时可以是任意声明变量来引入暴露出去的数据类型
*/
```
* 在src文件夹新建main.js
```javascript
/*
*import a from './module1.js'
*
*/
a() //'我是module1'
```
4. 在项目根目录使用babel将ES6语法转换成ES5语法
```
babel ./src -d ./build
```
5. 在项目根目录使用browerify将ES5语法中的commonjs转换成普通ES5语法
```
browerify ./build/main.js -o ./dist/bundle.js
```
6. 在index.html中引入最终编译好的js文件
```html
<script src="./js/dist/bundle.js"></script>
``` | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
js输出
document.write 向body中写字符串
console.log 向控制台输出
alert 弹出警告框输出
js编写位置
1.外联文件
<script src="引入的文件位置"></script>
2.内联文件
<script type="text/javascript">
js代码编写的位置
</script>
3.内嵌代码(结构与行为耦合,不使用)
<input type="button" onclick="alert('弹出')"></input>
<a href="javascript:alert('弹出');"></a>
js基本语法
严格区分大小写
语句分号结尾
没有添加分号时浏览器自动添加,但是消耗资源并且可能添加出错
js字面量和变量
字面量即为常量
变量可被字面量赋值
变量声明和赋值可分开或一起
var a;
a = 1;
或者
var a = 1;
js标识符
所有可以自定义的变量都叫做标识符,并且遵循以下规范:
1.只能以字母数字,下划线,$构成
2.不能以数字开头
3.不能使用ES的关键字和保留字
4.一般使用驼峰命名法
标识符以unicode编码表示,因此可以使用UTF-8的所有内容,但是一般只使用英文
js基本数据类型
1.string
2.number
可以表示整数与浮点数
2进制浮点数以分数表示,不准确
NaN与Infinity是数值的字面量,表示非数与无穷
typeof 参数 检测某个值的类型
3.boolean
只有两个值:true false
4.null
表示一个空对象
var a = null;
console.log(typeof a);
结果为object
5.undefined
已经声明的变量未赋值则成为undefined
var a;
console.log(typeof a);
结果为undefined
强制类型转换
1.string
两种办法:a.toString() String()
toString只能用于对象,因此null和undefined无法调用
String()对于Number, String, Boolean来说会调用底层的toString()方法,对于null和undefined会直接进行转换
2.number
三种方法:Number(), parseInt(), parseFloat()
Number():
对于字符串来说如果只包含数字,直接转换成数字,如果包含非数字转换成NaN,如果是""或者" "则转换成0
对于boolean值,true转换成1,false转换成0
对于null,转换成0
对于undefined,转换成NaN
parseInt():
首先将所有内容转换成字符串再开始解析。
从左到右依次解析,需要非整数直接舍去,第一位非整数返回NaN
parseFloat():
与parseInt()相似,只是遇到第一位小数点不会忽略会转换成小数,其余与之相同
3.boolean
一种方法:Boolean()
对于数字:只有0跟NaN会转换成false
对于字符串:只有""会转换成false
对于null和undefined,只会转换成false
进制
16进制在数字前加0x
8进制在数字前加0
在某些浏览器中键入以下代码:
var a = "070";
console.log(parseInt(a));
结果会输出56。因为浏览器将其当做8进制,解决方法是输入第二个参数,强制以10进制输出
parseInt(a, 10);
2进制在数字前加0b
某些浏览器无法解析2进制如IE浏览器,同时也不常用
运算符
运算符有以下种类:typeof,+,-,*,/,%,所有的运算符都不改变原始变量而是返回进行运算后的结果,并且NaN与任何值进行运算结果都为NaN
typeof:
typeof返回一个变量或者字面量的类型,返回值为string
var a = typeof 2;
console.log(a);
console.log(typeof a);
结果为:number与string
+:
数字的加法运算
遇到非number的值,会将其转换成number
遇到string的值,会转换成string然后进行接串操作,可应用于长字符串的换行与隐性string类型转换
其余运算符进行相应数学运算并且在遇到非number值时,会全部转换成number值后再进行运算操作,此特性可用于隐式number类型转换,但还有更简单的方法
var a = "123";
console.log(a / 1);
console.log(typeof (a / 1));
结果为123和number类型
一元运算符
正号+和负号-
两者能够进行相应的数学运算同时在遇到非number的值时会将其强制转换成number值再进行运算,此特性可用于隐式number类型转换
var a = "123";
console.log(+a);
console.log(typeof +a);
结果为123和number类型
自增与自减
++
分为前++(++a)和后++(a++),对于a值来说都是增加1,但是表达式的返回值不同,前++返回新值,后++返回原值
--
特性与自增相同,只是对于a值来说是减少1
逻辑运算符
包括!, &&, ||三种运算符
!:两次取非会得到原值的布尔值,可以利用这个特性进行隐式布尔值转换
var a = "123";
console.log("a = " + !!a);
结果为true,与Boolean(a)相同
&&:两个值都为true结果才为true
||:两个值都为false结果才为false
在JS中&&与||都是属于短路操作,即当一个值满足要求时才会继续执行第二个操作,第一个值不满足要求时不执行第二个操作
当参数不是boolean值时先会将参数转换成boolean值后再按照以上规则输出原值
&&:
当第一个值为true时,返回第二个值
当第一个值为false时,返回第一个值
console.log("123" && "456");
结果为"456"
console.log(NaN && "111");
结果为NaN
||:
当第一个值为false时,返回第二个值
当第一个值为true时,返回第一个值
console.log(NaN || "111");
结果为"111"
console.log("123" || "456");
结果为"123"
赋值运算符
有以下几种:=, +=, -=, /=, *=
var a += 3;
var a = a + 3;
两者等价,对于其他的赋值运算符,与+=规则相同
关系运算符
有以下几种:<, >, <=, >=
有一方为number值时,将非number值转换成number值再进行比较
NaN与任何值进行任何比较结果都为false, 包括NaN本身
console.log(NaN >= NaN);
结果为false
当两方都为string时,按位比较字符编码,因此在两者都为string类型值为数字时进行比较,结果可能不符合预期,可应用于英文名字的排序
console.log("11" > "2");
结果为false
unicode编码
在js中使用时在编码前加\u对编码进行转义输出
console.log("\u0031");
结果为1,编码为16进制
在HTML中使用时以 &#编码; 的格式输出
0
结果为1,编码为10进制
相等运算符
包括==, !=, ===, !==
==, !=
两者类型相同时判断是否相等,类型不同时进行类型转换再判断是否相等,转换成哪种类型无法确定
由于undefined衍生于null,因此两者相等
console.log(undefined == null);
结果为true
NaN与任何值进行运算结果都为false,包括自己
console.log(NaN == NaN);
结果为false
===, !==
除不进行类型转换外,规则与==, !==类似
当两者类型不同时,===直接返回false,!==直接返回true
NaN的规则在此处同样适用
console.log(NaN === NaN);
结果为false
undefined与null在这种运算符下,才会不相等
console.log(undefined === null);
结果为false
三元运算符
语法格式为(表达式)?(语句1):(语句2);
当表达式结果为true时执行语句1,否则执行语句2
当表达式结果为非boolean值时,会转换成boolean值后再对表达式进行判断
逗号运算符
用来分割不同语句,可以同时声明多个变量
运算符优先级
按照优先级表进行先后运算,可以使用()改变优先级
代码块
将多个语句用{}包含起来,这一堆语句称为代码块,它只具有分组的作用,没有其他用途
{
var a = 1;
console.log("a");
}
console.log("a");
结果为1 /n 1
条件判断语句
语法1:满足条件只执行紧接着的第一条语句,后面语句与判断语句无关
if(表达式)
语句1;
语法2:满足条件执行代码块中的代码,代码块外的代码与判断语句无关
if(表达式){
语句1;
语句2;
}
语法3:满足条件执行前一个代码块中的代码,否则执行后一个代码块中的代码
if(表达式){
语句...
}else{
语句...
}
语法4:从上到下依次判断,当满足一个表达式后后面的代码不再执行
if(表达式){
语句...
}else if{
语句...
}else if{
语句...
}else if{
语句...
}else{
语句...
}
语法5:条件判断语句可以嵌套
if(表达式){
语句...
}else{
语句...
if(表达式){
语句...
}
}
条件分支语句
语法:
switch(表达式){
case 值1:
语句...
break;
case 值2:
语句...
break;
case 值3:
语句...
break;
default:
语句...
break;
}
break;语句用来跳出switch语句,当没有此语句时,如果表达式的值满足某个case时,后面的语句都会执行
var a = 1;
switch(a){
case 1:
console.log("1");
case 2:
console.log("2");
default:
console.log("其他");
}
结果为1, 2, 其他
while循环
while语句:
语法1:
while(true){ //1.将表达式写死
if(条件表达式){ //2.当满足某种条件时退出
break;
}
语句...
}
语法2:
var i = 0; //1.初始化变量
while(i < 10){ //2.当不满足条件时退出循环
语句...
i++; //3.更新变量
}
do{}while()语句:
语法:
do{
语句...
}while(表达式)
与while语句的唯一不同是,while语句先对表达式进行判断,当不满足条件时不继续执行后面的代码块,而do{}while()语句是先执行do后面的代码块再判断表达式,不满足时不执行第二次
var i = 11;
while(i <= 10){
console.log(i);
}
结果为无
do{
console.log(i);
}while(i <= 10)
结果为11
for循环
语法:
for(初始化变量; 条件表达式; 更新变量){
}
作用与while循环相同,写法也可与while循环语法2相同,只要初始化变量与更新变量分别写在for循环外部与内部
var a = 0;
for(; a< 10;){
a++;
}
当for循环表达式不写任何内容时则成为死循环
for(;;){
}
break和continue
break; 用来跳出循环或者switch
用在循环语句时跳出最近的循环,不能跳出if语句
continue; 用来跳过当前循环,执行下一次循环
不能跳出if语句
label:在循环语句的前一行使用label语句用来标识某一个循环
两者都可增加参数,参数是循环的标识名,可以跳出所指定的循环
good:
for(var i=1; i<10; i++){
console.log(i);
for(var j=1; j<10; j++){
break good;
}
}
结果只有一个1
bad:
for(var i=1; i<10; i++){
console.log(i);
for(var j=1; j<10; j++){
if(i==2){
continue bad;
}
}
}
结果为1,3,4,5,6,7,8,9
优化程序效率
可以考虑在循环语句中增加break;来提高程序运行效率
使用console.time("字符串标志");来标记一个计时器
使用console.timeEnd("字符串标志");来结束某个计时器并打印出计时器经过的时间
console.time("a");
console.timeEnd("a");
结果是名为a的计时器经过的时间,单位是ms,只能用在浏览器中
对象
对象属于复合数据类型,有三种,分别是:
1.内建对象
由ES标准中内建的对象,在任何的ES实现中都可以使用,如Math, String, Boolean, Number, Function, Object...
2.宿主对象
由js运行的环境所提供的对象,一般指浏览器,如DOM, BOM...
3.自定义对象
由开发人员自定义的对象
创建对象
var obj = new Object();
new所调用的函数是一个构造函数constructor(),构造函数是专门用来创建对象的函数
使用typeof语句会返回object
增加属性
语法:
对象.属性名 = 属性值;
obj.name = "111";
属性名可以不遵循标识符的规范,不遵循规范时需要其他方式来增删查改,但是一般尽量遵守规范,属性值可以是任何数据类型,包括null,undefined,object,当是object时可以无限嵌套
var obj2 = new Object();
obj2.name = "333";
obj.test = obj2;
修改属性
语法:
对象.属性名 = 属性值;
obj.name = "222";
与增加属性方法类似,只是将已有值覆盖
查询属性
语法:
对象.属性名
console.log(obj.name);
结果为222
当对象的属性为另一个对象时.重复使用来获取对象的对象的属性值
console.log(obj.test.name);
结果为"333"
删除属性
语法:
delete 对象.属性
delete obj.name;
console.log(obj.name);
结果为undefined
当查询对象的某个属性不存在时,会返回undefined
当属性名没有遵循标识符规范时需要使用[]来增删查改相应属性,属性名可以是变量或者字符串
语法:
对象[属性名] = 属性值;
obj["123"] = 345; //字符串
var test = "123";
console.log(obj[test]); //变量
结果为345
in语句
用来查询某个对象是否有相应属性名,属性名必须是字符串或者是变量,有则返回true,没有返回false
语法:
属性名 in 对象;
console.log("123" in obj);
结果为true
基本和引用数据类型
在js中,内存分为栈内存和堆内存,因为基本数据大小一般比较小,js专门将这些数据存放在固定的内存范围内即栈内存来保存变量与变量值,而引用数据大小一般较大,js需要创建新内存空间即堆内存来保存对象的内容
当声明变量时,会在栈内存最下层中新建一个变量
取值时按照声明顺序取值
当调用new新建对象时会在堆内存中创建新的内存空间来新建一个对象
由于新建的内存地址不确定,取对象时需要用相应内存地址取用相应的对象
给变量赋值为基本数据类型时,会直接修改栈内存中变量对应的变量值为相应的变量值
给变量赋值为引用数据类型时,会直接修改栈内存中变量对应的变量值为内存地址
两个变量的内存地址指向同一个对象时,修改一个变量的对象的值,另一个变量的对象的值也会发生改变
var obj1 = new Object();
obj.name = "111";
var a = obj1,b = obj1;
a.name = "222";
console.log(b.name);
结果为222
对象字面量
可以使用对象字面量来新建对象,效果与new Object()相同
语法:
{属性名: 属性值, 属性名: 属性值...};
var obj = {name: "a", age: "16", gender: "男"};
属性名可以使用引号包起来,但是一般不使用,当属性名不遵循标识符规范时,需要使用引号包起来,最后一个属性写完后不加逗号
函数
函数也是对象,它具有普通对象具有的所有功能
声明函数:
新建函数对象:
语法:
var func = new Function("需要执行的代码块");
在构造函数中可以加入字符串参数代码使得调用函数时可以直接执行
var func = new Function("console.log(111)");
func();
结果为111
函数声明:
语法:
function func([形参1,形参2, 形参3...]){
语句...
}
函数表达式:
语法:
var func = function([形参1,形参2, 形参3...]){
语句...
}
形参与实参
声明函数时传递的参数叫形参,作用相当于在函数内部声明变量
调用函数时传递的参数叫实参,作用相当于给函数的形参赋值
当实参数量大于形参时,多出来的实参会被忽略
当实参数量小于形参时,未赋值的形参会是undefined类型
实参可以是任意数据类型包括对象与函数,当实参数量过多时,可以考虑将部分实参封装成一个对象传入
将函数当做实参传入另一个函数:
function func1(){
console.log("a");
return "1";
}
function func2(a){
console.log(a);
}
func2(func1); //结果为func1对象本身,结果为func1函数的内容
func2(func1()); //结果为func1的函数返回值,结果为1
返回值
使用return语句可以让函数返回特定的值,此时函数中return后面跟的所有语句都不执行
语法:
return [返回值];
function test(a, b){
return a+b;
}
var result = test(1, 2);
console.log(result);
结果为3
当return后不加参数时,相当于函数返回undefined
函数中不使用return时,也相当于返回undefined
返回值可以是任意类型,包括对象和函数
function func1(){
function func2(){
console.log("func2");
}
return func2;
}
var a = func1();
console.log(a);
结果为func2函数本身的内容
console.log(a()); //与console.log(func1()());相同
结果为"func2"
立即执行函数
语法:
(function([形参1, 形参2...]){
语句...
})([实参1, 实参2...])
当写成以下形式时,js会将前半部分当成代码块,无法识别函数声明
function([形参1, 形参2...]){
语句...
}([实参1, 实参2...])
方法
由于对象的属性可以是任何值,因此也可以将一个函数赋值给一个对象的属性,此时这个函数属性就被叫做方法,需要注意的是,函数与方法只是名称上的不同,其他没有任何区别
var obj = new Object();
obj.name = "111";
obj.callName = function(){
console.log(obj.name);
}
obj.callName();
结果为"111"
调用对象中的函数,被称为调用这个对象的方法
枚举语句
语法:
for(var 声明变量 in 对象){
语句...
}
for(var i in obj){
console.log(i); //i为obj对象的属性名
console.log(obj[i]); //obj[i]为obj对象的属性值
}
对象中有多少个属性,这个循环便会执行多少次
作用域
全局作用域
直接写在script标签中的代码都属于全局作用域,它在打开页面时创建,在关闭页面时销毁
全局作用域中所有的变量可以在页面的任意部分被访问到
var a = 1;
function func1(){
console.log(a);
}
结果为1
全局作用域中所有声明的变量都会被创建成window对象的属性
var a = 1;
console.log(window.a);
结果为1
变量的提前声明
当使用var来声明或者声明并赋值变量时,无论声明位置在何处,声明本身这个语句会在当前script标签中的最顶端被执行
console.log(a);
var a = 1;
结果为undefined而不是报错,因为var a;这条语句已经在代码最顶端被执行过了
console.log(a);
a = 1;
报错,a未被声明
函数的提前声明
无论函数在何处被声明,函数声明本身会在任何代码前被执行
func1();
function func1(){
console.log("1");
}
结果为"1"
但是对于函数表达式来说,由于使用var来声明函数,因此只符合变量提前声明的特性
func1();
var func1 = function(){
console.log("1");
}
结果报错,undefined不是一个函数
函数作用域
函数作用域在函数执行时创建,在执行完毕后销毁,在函数作用域内部与全局作用域相似
当在函数中使用变量时会先向当前作用域查找,没有则向上一级作用域查找,直到全局作用域,如果全局作用域中没有此变量时报错
var a = 1;
function func1(){
function func2(){
console.log(a);
}
func2();
}
func1();
结果为1
在函数作用域中可以访问到全局作用域的变量,反之不成立
function func1(){
var a = 1;
}
console.log(a);
结果为报错,a未定义
在函数作用域中变量声明提前与函数声明提前同样适用(当函数有形参时相当于在函数内部声明了变量)
function func1(){
console.log(a);
var a = 1;
}
func1();
结果为undefined
function func1(){
var a = 1;
func2();
function func2(){
console.log(a);
}
}
结果为1
this
当调用函数时,解析器会隐式传入一个参数this,它是一个对象
1.当以函数的形式调用时,this永远是全局作用域window
2.当以对象的方法调用时,this是调用这个方法的对象
3.当以构造函数调用时,this就是新创建的对象
作用:
var name = 1, obj1 = {name: 2, sayName: func}, obj2 = {name:3, sayName: func};
func(){
console.log(this.name);
}
func();
obj1.sayName();
obj2.sayName();
结果为1, 2, 3
可以使用this来使方法/函数内的值发生变化
创建对象
有几种方法被用来方便地创建对象
instanceof语句来输出对象的类名
工厂方法:
function createPerson(name, age){
var obj = new Object();
obj.name = name;
obj.age = age;
retrun obj;
}
function createDog(name, age){
var obj = new Object();
obj.name = name;
obj.age = age;
retrun obj;
}
var person = createPerson("aaa", 16);
var dog = createDog("bbb", 18);
console.log(instanceof person);
console.log(instanceof dog);
结果都为Object
缺点:无法得知所创建的是一个什么对象,所以出现了构造函数来解决这个问题
构造函数:
function Person(name, age){
this.name = name;
this.age = age;
this.sayName = function(){
console.log(this.name);
}
}
function Dog(name, age){
this.name = name;
this.age = age;
this.sayName = function(){
console.log(this.name);
}
}
var person1 = new Person("aaa", 16);
var person1 = new Person("ccc", 14);
var dog = new Dog("bbb", 18);
console.log(instanceof person1);
console.log(instanceof dog);
结果分别为Person, Dog
构造函数与普通函数在使用上的区别就是是否使用了new,构造函数又被称为类,对类作new操作等到的结果被称为实例
构造函数的执行流程:
1.立即新建1个对象
2.将构造函数的this值赋值为新创建的对象
3.依次执行构造函数内的代码
4.将新建的对象返回
构造函数改进:
按照上述代码编写会在给对象创建方法时重复创建函数,当实例化类次数增加时会浪费大量内存,因此需要将重复创建的方法函数变成只创建一次
console.log(person1.sayName == person2.sayName);
结果为false,证明的确重复创建了函数
可以将方法声明在全局作用域中
function Person(name, age){
this.name = name;
this.age = age;
this.sayName = func;
}
function func(){
console.log(this.name);
}
var person1 = new Person("aaa", 16);
var person2 = new Person("bbb", 18);
console.log(person1.sayName == person2.sayName);
结果为true,证明是同一个函数
但是这种办法会污染全局命名空间并且不够安全,有可能会被其他函数覆盖
原型对象:
每一个类都可以有一个原型对象prototype,它是一个对象,并且这个类的实例会有一个原型属性__proto__,它的值是这个实例的类的原型对象地址
因此修改类的原型对象的属性也会改变这个类的实例的原型属性所指向的那个原型对象
可以利用原型的特性为类开辟出一个新的公共空间让这个类的每一个实例都可以使用这个公共空间的值或者方法而不会污染全局命名空间
function Person(name, age){
this.name = name;
this.age = age;
}
Person.prototype = function(){
console.log(this.name);
}
var person1 = new Person("a",12);
console.log(person1.__proto__ == Person.prototype);
结果为true
所有对象都有原型属性__proto__,由于原型对象也是对象,因此也具有原型属性__proto__
console.log(Person.prototype.__proto__);
结果为object
Object的实例的原型没有原型
var a = new Object();
console.log(a.__proto__.__proto__);
结果为null
所有对象都是Object对象的实例,包括原型对象,因此原型的回溯最多到Object实例的原型为止,也就是原型对象的原型为止
实例中变量查找顺序:
1.先在被实例化的类中的变量之间查找,如果找到则输出,否则进入它的原型对象
2.在类中的原型对象中的变量之间查找,如果找到则输出,否则进入它的原型对象
3.在原型对象的原型中的变量之间查找,如果找到则输出,否则输出undefined
使用in语句来查找属性是否属于某个对象时会向它的原型中查找
如果不想查找原型中的属性,使用hasOwnProperty方法
function Person(){}
Person.prototype.a = 1;
var person = new Person();
person.b = 1;
console.log("a" in person);
console.log(person.hasOwnProperty("a"));
console.log(person.hasOwnProperty("b"));
结果为true, false, true
当在页面中打印一个对象时,实际上输出的是这个对象的valueOf方法的返回值,因此可以通过修改对象的valueOf方法来修改打印对象时的结果
function Person(name){
this.name = name;
}
Person.prototype.valueOf = function(){
return "name = " + this.name;
};
var person = new Person("a");
console.log(person);
结果为name = "a" //根据实际测试,结果与浏览器相关
当将对象强制转换成数字时会首先调用valueOf方法,当此方法返回自己时再调用toString
当对象强制转换成字符串时只调用toString方法
垃圾回收
当创建对象之后对所有这个对象的变量赋值为null时,这个对象就永远无法被操作,这个对象就称为垃圾
js拥有自动的垃圾回收机制,不需要也不能手动地回收垃圾,能做的只有将不再使用的对象赋值为null
数组
数组也是一个对象,与对象的区别在于数组只能通过索引来查找值,并且存储效率要比普通对象更高,所以具有所有对象具有的特性
创建数组
var arr = new Array();
arr具有三个对象属性,constructor(构造函数的引用), length(数组长度), prototype(原型对象的引用)
可以使用:
数组[数组.length] = 值;
来方便地向数组最后一位添加内容
可以通过修改数组长度来删除一些数据
arr[0] = 0;
arr[1] = 1;
arr[2] = 2;
arr[3] = 3;
arr.length = 3;
console.log(arr[3]);
结果为undefined
当访问数组中不存在的数据时,会返回undefined而不是报错
可以使用数组字面量方便地创建数组
语法:[]
var arr = [];
在数组字面量中可以直接加入参数来给数组赋值
var arr = [0, 1, 2, 3];
console.log(arr);
结果为0,1,2,3
同样也能向数组类添加参数来直接给数组赋值
var arr1 = new Array(0, 1, 2, 3);
console.log(arr1);
结果为0,1,2,3
但是当参数只有一个时,结果会有所不同
var arr = [10]; //创建一个第一个值为10的数组
var arr1 = new Array(10); //创建一个长度为10的数组
console.log(arr);
console.log(arr1);
结果分别为10和,,,,,,,,,
数组常用方法
1.push
向数组最后添加一个或多个元素并将数组长度返回
2.pop
删除数组最后一个元素并将该元素返回
3.unshift
向数组开头添加一个或多个元素并将数组长度返回
4.shift
删除数组开头的元素并将该元素返回
5.forEach
按顺序遍历整个数组
支持IE8以上或者其他的浏览器
由自己创建但不由自己调用的函数称为回调函数
语法:
数组.forEach(function(value, index, arr){
});
它会在回调函数中以实参的形式传递3个参数:
1.当前循环中的元素
2.当前循环中的索引
3.调用forEach函数的数组
6.slice
从一个数组中截取特定范围的元素并将这些元素以数组的形式返回,不改变原数组
语法:
数组.slice(start, end);
第一个参数是截取开始的索引,返回数组会包括开始索引的元素
第二个参数是截取结束的索引,返回数组不会包括结束索引的元素
var arr = [0,1,2,3,4,5];
var arr1 = arr.slice(0,4);
console.log(arr1);
结果为0,1,2,3
参数可以是负值,如果为负就是从后往前计数
var arr = [0,1,2,3,4,5];
var arr1 = arr.slice(-3,-1);
console.log(arr1);
结果为3,4
7.splice
删除或者添加元素,直接改变原数组,返回值为删除的元素
语法:
数组.splice(start, number[,元素1, 元素2...]);
第一个参数为从哪个索引开始删除元素
第二个参数为删除几个元素
从第三个参数开始的参数都是是在第一个参数的索引之前添加这些元素
var arr = [0,1,2,3,4,5];
arr.splice(0,1,7,8,9);
console.log(arr);
结果为7,8,9,1,2,3,4,5
8.concat
可以将两个或者多个数组连接成一个数组
不会改变原数组
语法:
数组.concat(任意数据类型[,任意数据类型...]);
var arr = [1,2,3,4];
var result = arr.concat([5,6,7,8],1,"a", false, null, undefined, {});
console.log(result);
结果为1,2,3,4,5,6,7,8,1,"a",false,null,undefined,{}
9.join
将数组中的元素转换成字符串,可以添加参数指定元素之间的连接符,无参数时默认为逗号,
不会改变原数组
语法:
数组.join([字符串]);
var arr = [1,2,3,4];
var result = arr.join(" ");
console.log(result);
结果为"1 2 3 4"
10.reverse
调换数组中元素的排列顺序
会修改原数组,并且修改后的数组与返回值相同
语法:
数组.reverse();
var arr = [1,2,3,4];
var result = arr.reverse()
console.log(result);
console.log(arr);
结果都为4,3,2,1
11.sort
给数组中的元素排序,默认以unicode编码顺序排列,因此直接对数组中的数字排序会产生预料外的结果
可以传递一个回调函数作为sort的参数,回调函数中有两个形参分别表示数组中一前一后的两个元素,具体是哪两个元素需要根据循环确认
函数的返回值决定是否交换这个两个元素,当返回值大于0时交换,小于0时不交换,等于0时认为两个值相等不交换
会直接修改原数组的元素,与方法的返回值相同
语法:
数组.sort([回调函数]);
var arr = [5,3,6,767,34,2];
arr.sort();
console.log(arr);
结果为2,3,34,5,6,767
arr.sort(function(a, b){
return a-b;
});
console.log(arr);
结果为2,3,5,6,34,767
call和apply
函数对象都具有这两个方法,可以向这两个方法中的第一个参数传入一个对象用来修改这个方法的this对象
如果函数对象需要形参
call方法中第二个参数开始依次输入要传递给函数对象的实参
将需要传递的实参封装成一个数组作为apply的第二个参数将实参传递给函数对象
语法:
函数.call(对象[,参数1...]);
函数.apply(对象[,数组]);
var obj = {};
function a(a){
console.log("a = " + a);
console.log(this);
}
a(1);
a.call(obj, 1);
a.apply(obj, [1]);
结果为
window,1
object,1
object,1
arguments
在调用函数时,浏览器还会隐式传递一个参数arguments,它是一个类数组对象,不是数组对象
使用索引来查询调用函数时传入的参数
拥有length属性来表示传入参数的数量
拥有callee属性表示当前指向的函数引用,可以用来编写递归函数
function a(){
console.log(arguments.length);
console.log(arguments[0]);
console.log(arguments[1]);
console.log(arguments.callee);
}
a(1,2);
结果为2,1,2,a函数本身
Date对象
用来操作与时间有关的对象
var date = new Date(); //实例化Date对象的值就是执行这行代码时的时间
var date = new Date("12/11/2016 0:0:0"); //当输入参数时以参数对应的含义输出时间,按照mm/dd/yyyy h:m:s的格式输入
常用方法:
1.getDate() 获取时间的日
2.getDay() 获取时间的星期,值为0-6,从周日计算
3.getMonth() 获取时间的月份,值为0-11,从1月计算
4.getFullYear() 获取时间的年份
5.getTime() 获取时间的时间戳,为格林尼治标准时间1970/1/1 0:0:0开始到特定世界为止经过的毫秒
Date.now(); //执行这行代码时的时间戳,可用来计算一段代码的性能
Math对象
Math对象与其他内建对象不同,它不是构造函数而是一个工具类,不需要实例化,直接使用
语法:
Math.方法();
常用属性:
E 自然对数
PI 圆周率
常用方法:
1.ceil()
向上取整
2.floor()
向下取整
3.round()
四舍五入
4.random()
获取0-1之间的随机数
当想获取x-y之间的随机数时有公式Math.random()*(y-x)+x
5.max()
获取多个数中的最大值
6.min()
获取多个数中的最小值
7.sqrt()
对某个数开根号
8.pow(x, y)
求x的y次幂
包装类
js提供了3个包装类将3种基本数据类型转换成基本数据类型对象,但是在日常开发中不要使用这种方式,因为在转换后进行比较时会产生预期外的结果
1.String
将基本数据类型string转换成string对象
var str = new String("a");
console.log(typeof str);
结果为object
2.Number
将基本数据类型number转换成number对象
var num = new Number(1);
console.log(typeof num);
结果为object
3.Boolean
将基本数据类型boolean转换成boolean对象
var bool = new Boolean(true);
console.log(typeof bool);
结果为object
当对这三种基本数据类型操作包装类中的方法或者属性时,浏览器会临时创建一个基本数据类型对象再调用这些方法,然后再将其转换成基本数据类型
var a = 1;
a.toString();
console.log(typeof a);
结果为string
//执行这两行代码时不会报错,因为实际在对临时创建的基本数据类型对象进行属性赋值操作,语句执行完毕后临时对象就被销毁,因此第二次执行时结果为undefined
a.name = "a";
console.log(a.name);
结果为undefined
String对象
string的底层是用字符数组进行表示的,因此许多数组可以使用的方法在字符串中同样可以使用
var str = "abcdef";
console.log(str[0]);
结果为"a"
常用属性:
length
表示字符串的长度
常用方法:(全都不改变原字符串)
1.charAt()
返回指定位置的字符,与用索引表示相同
2.charCodeAt()
返回指定位置的字符unicode编码
3.fromCharCode()
返回指定unicode编码对应的字符
4.concat()
连接多个字符串,与使用加号+连接字符串相同
5.indexOf()
返回指定字符在字符串中第一次出现的索引,当没有时返回-1
参数:
第一个参数:需要查找的字符
第二个参数:从第几个索引开始进行查找
6.lastIndexOf()
与indexOf相似,但是它返回的是字符在字符串中最后一次出现的索引,没有时返回-1
参数:
第一个参数:需要查找的字符
第二个参数:从第几个索引开始进行查找
7.toUpperCase()
将所有字符转化成大写
8.toLowerCase()
将所有字符转化成大写
9.slice()
截取指定范围内的字符串,与数组中的slice相似
参数:
第一个参数:索引开始处,包括这个索引
第二个参数:索引结束处,不包括这个索引
参数可以是负数,当为负数时从字符串后往前数
不输入第二个参数时,截取第一个参数开始至后面全部的字符串
var str = "abcdef";
var result = str.slice(0,-2);
console.log(result);
结果为"abcd"
10.subString()
与slice相似,不同在于参数为负数时默认输入是0,当第一个参数大于第二个参数时会交换两个参数的位置
var str = "abcdef";
var result = str.subString(1, -3);
结果为"a"
11.subStr()
同样为截取一段字符串,与前两个方法的区别在于参数不同,这个方法不是ES标准,不推荐使用
参数:
第一个参数:索引开始处,包括这个索引
第二个参数:需要截取的字符数量
12.split()
与数组的join方法相反。将字符串以特定方式转换成数组
参数:
第一个参数:将字符串以哪个字符进行拆分充当新数组的元素
var str = "abtcdtef";
var result = str.split("t");
console.log(result);
结果为ab,cd,ef
当参数为空串时,将每个字符都拆分成一个元素存入新数组
正则运算相关的方法:
正则表达式对象
用来匹配字符串是否满足要求
语法:
var reg = new RegExp("正则表达式", "匹配模式");
匹配模式可以是
"i" ----忽略大小写
"g" ----全局匹配
方法:
1.test()
测试指定字符串是否满足正则的匹配要求,满足返回true,否则返回false
正则表达式字面量
语法:
var reg = /正则表达式/匹配模式;
使用字面量更方便,使用构造函数更灵活,因为可以使用变量
正则表达式语法:
1.|
表示或
/a|b/.test("ac"); //true
2.[]
与|含义相同
/[ab]/.test("bc"); //true
3.[^] //忽略,有误
是否含有除了中括号外的内容
/^ab/.test("ab"); //false
4. .
表示任意字符
5.\
表示转义,将特殊符号转化成字符
6.*
表示0个或多个字符
7.+
表示1个或多个字符
8.^
表示开头的某个字符
9.$
表示结尾的某个字符
10.\w
表示任意字母数字_
11.\W
除了任意字母数字_
12.\d
表示任意数字
13.\D
除了任意数字
14.\s
表示空格
15.\S
除了空格
16.\b
表示单词分隔符
17.\B
除了单词分隔符
18.{}
限制字符出现的次数
/^a{3,5}$/.test("aaaaaa"); //false
19.()
将几个字符当做整体
/^(ab){2,3}$/.test("abababab"); //false
常用语法:
[a-z] 小写字母
[A-Z] 大写字母
[A-z] 英文字母
[0-9] 数字
可以使用正则的字符串方法:
1.split()
将字符串以正则表达式作为间断符号拆分成数组
var str = "1a2s3d4f5g6h7jk8";
console.log(str.split(/[1-9]/));
结果为a,s,d,f,g,h,jk
正则不设置匹配模式为g也会全局拆分
2.search()
查询正则表达式中的字符位置,不存在则返回-1,与indexOf相似
var str = "1a2s3d4f5g6h7jk8";
console.log(str.search(/[a-z]/));
结果为0
正则设置匹配模式为g也不会全局匹配
3.match()
返回满足正则表达式匹配的字符
var str = "1a2s3d4f5g6h7jk8";
console.log(str.match(/[a-z]/));
结果为a
如果需要返回全局匹配的结果需要设置匹配模式为g,返回为数组
console.log(str.match(/[a-z]/g));
结果为a,s,d,f,g,h,j,k
4.replace()
将正则表达式匹配到的字符串用新字符串代替
参数:
第一个参数:需要被替换的原字符串,可以用正则表达式
第二个参数:需要替换的新字符串,可以是空串
var str = "1a2s3d4f5g6h7jk8";
console.log(str.replace(/[a-z]/, "!"));
结果为"1!2s3d4f5g6h7jk8"
如果需要返回全局匹配的结果需要设置匹配模式为g
console.log(str.replace(/[a-z]/g, "!"));
结果为"1!2!3!4!5!6!7!!8"
DOM简介
DOM全称document object model
文档
整个HTML文件就是一个文档
对象
HTML文件中的每个节点都在JS中是一个对象
模型
JS使用模型来表示各个对象之间的关系
JS中有宿主对象document,它是window对象的属性,也就是文档对象本身
DOM中的对象又称为节点对象,共有4种节点分别为:
每个节点中都拥有三个属性分别是:
nodeName nodeType nodeValue
文档节点 #document 9 null
元素节点 标签名 1 null
属性节点 属性名 2 属性值
文本节点 #text 3 文本内容
常用属性:
1.body
该属性封装的是body元素对象的引用
2.documentElement
属性值为HTML元素对象
3.all
属性值为当前页面中的所有元素节点的数组
这个属性值本身为undefined,它的typeof值也为undefined
常用方法:
语法:
document.方法();
1.getElementById()
通过ID值获取对应的节点
2.getElementsByTagName()
通过标签名获取一组节点
返回值是一个HTMLCollection,与数组相似,不能使用forEach方法,即使只获取到一个节点时,也封装成HTMLCollection返回
3.getElementsByName()
通过name的值获取一组节点
返回值是一个nodelist,与数组相似,可以使用forEach方法,即使只获取到一个节点时,也封装成nodelist返回
4.getElementsByClassName()
通过class属性获取一组节点
返回值是一个HTMLCollection,与数组相似,不能使用forEach方法,即使只获取到一个节点时,也封装成HTMLCollection返回
仅支持IE8以上
5.querySlector()
通过CSS选择器返回一个节点,当能匹配多个节点时,返回满足匹配的第一个节点
仅支持IE7以上
6.querySlectorAll()
通过CSS选择器返回一组节点
返回值是一个nodelist,与数组相似,可以使用forEach方法,即使只获取到一个节点时,也封装成nodelist返回
仅支持IE7以上
事件
当用户与浏览器进行任何交互时都会产生相应的事件
JS可以通过给事件绑定相应函数来使事件触发时执行相应的函数,相应函数会在执行事件时才会被执行,因此相应函数内部使用的变量可能会与预期不一致
var div = document.getElementByTagName("test");
for(var i = 0; i < div.length; i++){
div[i].onclick = function(){
console.log(i);
}
}
结果永远会是div的长度的值
绑定事件有两种方法:
第一种:
<button id="btn" onclick="alert('a')"></button>
结构与行为耦合,不使用
第二种:
<button id="btn"></button>
<script>
var btn = document.getElementById("btn");
btn.onclick = function(){
alert("a");
}
</script>
常用方式
文档加载顺序
浏览器加载HTML文件时是自上向下加载,因此当js代码写在文档之前时可能需要无法获取到节点的情况
使用window.onload绑定响应函数可以使响应函数内的代码都在整个文档加载完成之后执行
或者将JS代码写在HTML文档的最后来保证文档先于JS代码加载
元素节点
元素节点拥有一个方法和属性来获取它们内部的节点,除了元素的class属性以外,所有的属性都可以以元素节点对象属性的方式获取,class的值需要用className属性来获取,因为class是js中的保留字
常用方法:
1.getElementById()
通过ID值获取当前元素节点内部对应的节点
2.getElementsByTagName()
用来获取当前元素节点内部的特定标签的元素节点
返回值是一个HTMLCollection,与数组相似,不能使用forEach方法,即使只获取到一个节点时,也封装成HTMLCollection返回
3.getElementsByName()
通过name的值获取当前元素节点内部的一组节点
返回值是一个nodelist,与数组相似,可以使用forEach方法,即使只获取到一个节点时,也封装成nodelist返回
4.getElementsByClassName()
通过class属性获取当前元素节点内部的一组节点
返回值是一个HTMLCollection,与数组相似,不能使用forEach方法,即使只获取到一个节点时,也封装成HTMLCollection返回
仅支持IE8以上
5.querySlector()
通过CSS选择器返回当前元素节点内部的一个节点,当能匹配多个节点时,返回满足匹配的第一个节点
仅支持IE7以上
6.querySlectorAll()
通过CSS选择器返回当前元素节点内部的一组节点
返回值是一个nodelist,与数组相似,可以使用forEach方法,即使只获取到一个节点时,也封装成nodelist返回
仅支持IE7以上
常用属性:
innerHTML
获取当前元素节点中的HTML代码
innerText
获取当前元素节点中的文本
childNodes
获取当前元素节点中所有的子节点并以数组形式返回,按照ES标准如果当前元素节点中有空格时也会被包括在内
IE8及以下浏览器没有实现这一标准,因此只会获取到内部的元素节点
children
获取当前元素节点中的所有子元素节点
firstChild
获取当前元素节点中的第一个子节点
firstElementChild
获取当前元素节点中的第一个子元素节点, 仅支持IE8以上
lastChild
获取当前元素节点中的最后一个子节点
lastElementChild
获取当前元素节点中的最后一个子元素节点, 仅支持IE8以上
parentNode
获取当前元素节点的父节点
previousSibling
获取当前元素节点的前一个兄弟节点
previousElementSibling
获取当前元素节点的前一个兄弟元素节点, 仅支持IE8以上
nextSibling
获取当前元素节点的后一个兄弟节点
nextElementSibling
获取当前元素节点的后一个兄弟元素节点, 仅支持IE8以上
当响应函数给某个节点绑定时,这个响应函数中的this就是这个节点
DOM的增删改
常用方法:
1.createElement()
新建一个元素节点,参数是元素节点的标签名
语法:
document.createElement("标签名");
2.createTextNode()
新建一个文本节点,参数是文本节点的内容
语法:
document.createTextNode("文本内容");
3.appendChild()
向一个父节点中添加一个子节点
语法:
父节点.appendChild(子节点);
4.insertBefore()
向一个子节点前添加一个新的节点
语法:
父节点.insertBefore(新节点, 原节点);
5.removeChild()
移除一个子节点
语法:
父节点.removeChild(子节点);
6.replaceChild()
将原节点替换成新节点
语法:
父节点.replaceChild(新节点, 原节点);
由于许多方法都要通过父节点调用对应的方法来操作节点,因此可使用:
子节点.parentNode.removeChild(子节点);
类似的方法来对节点进行直接操作而不需要获取它的父节点
对DOM的增删改操作可以用父节点的innerHTML的字符串操作来代替,由于是整体修改所以这个父节点包括它的子节点绑定的函数都会失效
代码1:
<html>
<head>
</head>
<body>
<div>
<input type="checkbox" id="checkallbox"/>AAAAA
</div>
</body>
</html>
<script>
var input = document.createElement("input");
var checkallbox = document.getElementById("checkallbox");
input.type="checkbox";
checkallbox.parentNode.insertBefore(input, checkallbox);
</script>
代码2
<html>
<head>
</head>
<body>
<div>
<input type="checkbox" id="checkallbox"/>AAAAA
</div>
</body>
</html>
<script>
var div = document.getElementByTagName("div")[0];
div = "<input type='checkbox'/>" + div.innterHTML;
</script>
两部分代码功能基本相同,唯一区别是如果input标签绑定了响应函数,在代码2中会失效
操作样式
在css的属性中如果有用-来间接的情况,在style需要使用驼峰命名法来修改属性名从而设置或者读取对应的样式
1.style
语法:
节点对象.style.属性值
通过这个属性能够修改和读取到节点的内联样式,当节点没有内联样式时获取到的是空字符串
如果在其他地方的css样式中设置了!important,那么通过js操作这个属性会失效
2.currentStyle
此属性只能在IE浏览器中使用并且是只读的,当未给某个节点设置长度值时会返回auto
语法:
节点对象.currentStyle.属性值
3.getComputedStyle()
此方法是window的方法,可以直接使用,而且也是只读的
在获取width属性时当未设置具体样式的情况下,会返回节点对象实际呈现的结果而不是auto
语法:
getComputedStyle(节点对象, 伪元素(常设置为null))[样式名]
此方法支持IE8以上以及其他浏览器
常用属性:
1.clientHeight
获取元素的视图高度,包括元素的内容高度与内边距高度,返回值是一个数字,只读, 在根标签的此属性就是指代视口大小,与此规则无关
2.clientwidth
获取元素的视图宽度,包括元素的内容宽度与内边距宽度,返回值是一个数字,只读, 在根标签的此属性就是指代视口大小,与此规则无关
3.offsetHeight
获取元素的真实高度,包括元素的内容高度,内边距高度与边框高度,当被父元素隐藏或者滚动时不会影响这个值,返回值是一个数字,只读,在IE11以下浏览器中的根标签的此属性就是指代视口大小,与此规则无关
4.offsetWidth
获取元素的真实宽度,包括元素的内容宽度,内边距宽度与边框宽度,当被父元素隐藏或者滚动时不会影响这个值,返回值是一个数字,只读,在IE11以下浏览器中的根标签的此属性就是指代视口大小,与此规则无关
5.offsetParent
获取当前元素的定位父元素,即设置了position的最近父元素,当所有父元素都没有设置时,返回body元素, 但是在除了火狐的浏览器中当position设置为fixed,返回null.
在IE7包括IE7时,position为absolute与relative时返回html,body与html间的margin清除后可看做body. 在IE7以下时当祖先元素开启hasLayout返回最近开启的元素
5.offsetTop
获取当前元素相对于定位父元素的上侧偏移量(相对于offsetParent的内边距),即使父元素自身有偏移量也不改变这个值的大小,返回值是一个数字,只读
6.offsetLeft
获取当前元素相对于定位父元素的左侧偏移量(相对于offsetParent的内边距),即使父元素自身有偏移量也不改变这个值的大小,返回值是一个数字,只读
7.scrollHeight
获取当前元素的真实高度,包括元素的内容高度与内边距高度,当被父元素隐藏或者滚动时不会影响这个值,返回值是一个数字,只读
8.scrollWidth
获取当前元素的真实宽度,包括元素的内容宽度与内边距宽度,当被父元素隐藏或者滚动时不会影响这个值,返回值是一个数字,只读
9.scrollTop
获取当前元素的右侧滚动条滚动的像素,返回值是一个数字,只读
10.scrollLeft
获取当前元素的下侧滚动条滚动的像素,返回值是一个数字,只读
公式:scrollHeight - scrollTop = clientHeight 可以证明滚动条滚动到最底端
11. getBoundingClientRect
基于border-box
获取一个元素四个角的相对位置与高宽, 在IE7及以下没有width与height属性
获取绝对位置可以让相对位置加上滚动的像素
事件对象
当给某个元素对象绑定响应函数后,浏览器在执行这个响应函数后会向这个函数自动传递一个实参,该实参封装了与此事件有关的任何数据
可以给响应函数添加形参来调用这个事件对象
var div = document.getElementByTagName("div")[0];
div.onclick = function(event){
}
IE8及以下浏览器不会传递此实参,因此会无法获取到
IE与chrome浏览器也会将这个实参保存在window.event中,可以用来兼容IE8及以下浏览器
var div = document.getElementByTagName("div")[0];
div.onclick = function(event){
event = event || window.event;
}
浏览器的滚动条在chrome中被认为是documentElement的scrollTop和scrollLeft的值,而在IE与firefox被认为是body的scrollTop和scrollLeft的值
因此可以使用:
var scrollTop = document.body.scrollTop || document.documentElement.scrollTop;
var scrollLeft = document.body.scrollLeft || document.documentElement.scrollLeft;
来兼容三种浏览器
常用属性:
1.clientX
返回触发此事件时鼠标在视图中的X坐标
2.clientY
返回触发此事件时鼠标在视图中的Y坐标
3.pageX
返回触发此事件时鼠标在触发此事件的元素中的X坐标,仅支持IE8以上及其他浏览器
4.pageY
返回触发此事件时鼠标在触发此事件的元素中的Y坐标,仅支持IE8以上及其他浏览器
IE浏览器的浏览器默认行为不能使用return false;来阻止某些浏览器默认行为如文字拖拽
在IE浏览器中可以设置obj.setCapture来让所有的操作都被设置的obj捕获,其他对象就不会执行任何响应函数
同样可以设置document.releaseCapture来取消事件捕获,这个可以与其他浏览器的在响应函数中return false;一起使用来达到取消浏览器默认行为的作用
return false与event.returnValue=false作用相同
对于其他默认行为由于IE不支持event.preventDefault,因此可以使用
event.preventDefault && event.preventDefault();
return false;
来做到兼容所有浏览器
当事件由addEventListener绑定时,不能使用return false取消默认行为而需要event.preventDefault,对于不支持此方法的IE,使用event.returnValue=false
事件冒泡
当某个元素的事件触发时,相同的事件会一层层向这个元素的父元素传递,如果不希望这个元素向外进行事件冒泡有两种方法来取消冒泡
是否传递是根据dom树结构来决定而不是页面上是否包裹,只要是父元素,不管是否与子元素重叠都会将子元素的事件冒泡给父元素
1.event.cancelBubble=true
不属于W3C标准,但是更方便,新版本的chrome与firefox都已经支持
2.event.stopPropogation()
W3C标准,但是IE不支持
示例代码:
<html>
<head>
<style>
#outer{
width: 500px;
height: 500px;
padding: 10px;
border: 20px solid gray;
background-color: blue;
position:relative;
}
#inner{
width: 400px;
height: 400px;
padding: 10px;
border: 20px solid rgb(0, 0, 0);
background-color: green;
position:relative;
}
#content{
width: 300px;
height: 300px;
padding: 10px;
border: 20px solid red;
background-color: yellow;
}
</style>
<script>
window.onload=function(){
var outer = document.getElementById("outer");
var inner = document.getElementById("inner");
var content = document.getElementById("content");
content.onclick = function(event){
alert("content");
};
inner.onclick = function(event){
alert("inner");
event.cancelBubble = true;
};
outer.onclick = function(event){
alert("outer");
};
}
</script>
</head>
<body>
<div id="outer">
<div id="inner">
<div id="content">
</div>
</div>
</div>
</body>
</html>
结果为弹出两个框分别为content与inner
事件委派
当在给节点添加新节点并且需要让这个新节点与其他兄弟节点有同样的响应函数时可以使用事件委派的功能
当事件触发时响应函数的形参属性event.target会指定实际触发此函数的节点
将响应函数绑定到父元素上,并且使用响应函数的形参的属性进行节点判断可以完成新增子节点不需要重新绑定响应函数的功能
<html>
<head>
<script>
window.onload = function(){
var ul = document.getElementByTagName("ul")[0];
as[i].onclick = function(event){
if(event.target.className == "a"){
alert("我是a");
}
};
}
</script>
</head>
<body>
<ul>
<li><a class="a" href="javascript:;">1</a></li>
<li><a class="a" href="javascript:;">2</a></li>
<li><a class="a" href="javascript:;">3</a></li>
<li><a class="a" href="javascript:;">4</a></li>
<li><a class="a" href="javascript:;">5</a></li>
</ul>
</body>
</html>
事件绑定
当对同一个节点的事件重复绑定响应函数时后绑定的函数会覆盖前绑定的函数导致前绑定的函数不会被执行
a.onclick = function(){
console.log(1);
};
a.onclick = function(){
console.log(2);
};
结果为2
使用addEventListener来为节点添加监听函数,响应函数可以绑定多次,并且会按顺序执行,支持IE8以上或者其他的浏览器,响应函数内部的this是节点对象
解绑使用removeEventListener
参数:
--事件名,不带on
--响应函数
--布尔值,决定事件是否在捕获阶段执行,默认为false,在冒泡阶段执行
语法:
对象.addEventListener("", 响应函数, false/true)
想要兼容IE8及以下浏览器时使用attachEvent,同样可以绑定多次,但是顺序为后绑定先执行,响应函数内部的this是window
解绑使用detatchEvent
参数:
--事件名,带on
--响应函数
语法:
对象.addEventListener("", 响应函数)
可以定义一个bind函数来兼容两者
参数:
--需要绑定响应函数的节点对象
--事件名,不带on
--响应函数
function bind(obj, eventStr, func){
obj.addEventListener ? obj.addEventListener(eventStr, func) : obj.attachEvent("on" + eventStr, function(){func.call(obj)});
}
事件传播
浏览器在实现时对于事件传播微软与网景有不同的理解方式
--微软认为事件由子元素向父元素传播
--网景认为事件由父元素向子元素传播
W3C标准实现时参考两种方法给出了事件执行的阶段:
--捕获阶段
事件先从父元素向子元素传递
--目标阶段
捕获阶段完成后事件在目标阶段执行
--冒泡阶段
然后事件再从子元素向父元素传递
当需要设置某个事件在捕获阶段执行时,将addEventListener()的第三个参数设置为true即可,IE8及以下浏览器没有实现捕获阶段所以没有办法设置
一些事件
1.onmousewheel
当鼠标滚轮滑动时触发此事件,事件结果由event.wheelDelta返回向上滚时返回120,向下滚时返回-120,可以只关注正负,同时不被firefox支持
想在firefox中监听此事件需要使用addEventListener("DOMMouseScroll", func)来监听鼠标滚轮的操作,事件结果由event.detail返回,向上滚动时返回-3,向下滚动时返回3
当浏览器中有滚动条时鼠标滚动操作会默认滚动滚动条,在IE与chrome中可以使用return false来取消默认行为,firefox需要使用preventDefault来取消
obj.onmousewheel = function(event){
event = event || window.event;
if(event.wheelDelta > 0 || event.detail <0){
//向上滚动
}else{
//向下滚动
}
};
test.addEventListener && test.addEventListener("DOMMouseScroll", test.onmousewheel, false);
2.键盘事件
只有可以获取焦点的事件或者document绑定键盘事件才可以触发
onkeydown
当一直按着时,事件会被连续触发,当连续触发的时候,第一次和第二次间隔会稍微长一些后面的才会快速触发,为了防止误操作
在文本框键入字母属于文本框的默认行为
事件属性:
event.altKey
event.ctrlKey
event.shiftKey
当这三个键被按下时它们的值会被赋值为true否则为false
3.mouseenter 鼠标移入
4.mouseleave 鼠标移出
5.mouseover 鼠标移入
6.mouseout 鼠标移出
以上四个事件触发机制: 当鼠标移动至绑定监听器的元素或者子元素时就会被触发
区别: 前两者不会冒泡后两者会
BOM
1.Window
代表浏览器窗口并且保存浏览器的全局对象
2.Navigator
代表浏览器信息
由于历史原因大部分属性没有意义,只剩下userAgent可以判断浏览器类型
/chrome/i.test(navigator.userAgent)
/firefox/i.test(navigator.userAgent)
IE11的userAgent中没有IE信息必须使用"ActiveXObject" in window来进行判断
edge仍然可以使用userAgent来判断有无edge
3.Location
代表浏览器地址栏信息
如果直接打印location,则能获取到当前网址栏的信息
修改location属性为一个完整路径或相对路径则页面会直接跳转
--assign()
直接跳转到某个页面,与直接修改location一样
--reload()
用于重新加载当前页面,与刷新按钮一样,传递true作为参数时会强制清空缓存
--replace()
与assign类似但是它不会生成历史记录,无法回退
4.History
代表历史记录,只能前进后退
--length
当次访问的历史次数,关闭浏览器时清零
--back()
回到上一个页面
--forward()
前往下一个页面
--go()
使用整数作为参数来指定需要跳转到的页面
5.Screen
代表用户当前屏幕
这些属性都保存在window中,可以直接使用
定时器
window.setInterval(func, num)
返回值为此定时器的标识
window.clearInterval(定时器标识)
延时调用
window.setTimeout(func, num)
经过num毫秒后调用,只调用一次
json
JSON是一个特定格式的字符串,几乎所有语言都能识别
能够转换成每个语言的对象,主要用于数据交互
javascript object notation
JSON与js对象格式相同但是属性和值必须加引号
JSON分类:
对象
数组
JSON中可以使用的值:
数字
字符串
布尔值
null
对象
数组
JSON ---> js对象
JSON.parse()
使用JSON对象作为参数,返回js对象
js对象 ---> JSON
JSON.stringify()
使用js对象作为参数,返回JSON
兼容IE7及以下使用eval来代替不能使用的JSON.parse(),或者引入JSON2库
eval()
如果执行的字符串中有{},则会被当做代码块,如果不希望被当做代码块被解析,在{}前后使用()
由于效率与安全问题,尽量不要使用
左右查询
对等号左右两边查询即左右查询,右查询没有找到时会直接报错,左查询没有找到时会在全局创建
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# 数据类型
## 基本(值)类型
* string: 任意字符串
* number: 任意数字
* boolean: true/false
* undefined: undefined
* null: null
## 对象类型
* object: 基本对象类型
* function: 特殊对象, 可以执行
* array: 特殊对象, 可通过下标执行, 内部有序
## 判断数据类型
* typeof
返回数据类型的字符串表达
可以判断数值, 字符串, undefined, boolean, function
不能判断null与object与array, 返回都是Object
* instanceof
返回boolean值, 只能判断对象的具体类型, 即是普通对象, 函数还是基本类型
* ===(全等)
可以判断undefined与null, 由于它们的值只有1个
## 相关问题
1. undefined与null的区别
* undefined: 创建了变量未赋值
* null: 创建了变量并赋值, 赋值为null
2. 什么时候赋值为null
* 初始赋值为null, 表明将要赋值为对象
* 最后赋值为null, 让这个变量原来指向的对象被垃圾回收机制回收
3. 严格区分变量类型与数据类型
* 数据类型
基本类型, 对象类型
* 变量类型(内存值类型)
基本类型, 引用类型
# 数据_内存_变量
1. 什么是数据
* 存储在内存中并代表特定信息, 本质是0101...
* 数据特点: 可传递, 可运算
* 内存中所有可操作的目标
* 算数运算
* 逻辑运算
* 赋值
* 运行函数
2. 什么是内存
* 内存条通电后产生可储存数据的临时空间
* 内存产生与消失: 通电产生, 断电消失
* 一块小内存中存在两种数据: 基本数据, 地址值
* 内存两种类型: 栈空间(全局变量或局部变量), 堆空间(对象)
3. 变量
* 可变化的量, 由变量名与变量值组成
* 每个变量都对应一块小内存, 变量名用来查找对应的内存,变量值就是内存中保存的数据
4. 内存, 数据, 变量三者间的关系
* 内存是用来存储数据的临时空间
* 变量是内存的标识
## 相关问题
1. var a = xxx, a内存中保存的是什么
* xxx是基本类型, 保存的是这个基本类型值
* xxx是引用类型,保存的是这个引用类型的内存地址值
* xxx是个变量,保存的是这个变量所存储的值(若是基本类型则就是这个值, 若是引用类型则是这个引用类型的内存地址值)
2. 引用变量赋值问题
* 多个引用变量指向同一个对象, 通过一个变量修改这个对象的值, 另一个变量只能看到修改后的值
* 两个引用变量指向同一个对象,将其中一个变量赋值为新对象, 另一个引用变量仍指向原对象
3. 在函数调用时是值传递还是引用传递
* 理解1: 无论变量类型都是值(基本/地址值)传递
* 理解2: 可能是值传递, 也可能是引用传递(地址值)
4. js如何管理内存
* 内存生命周期
1. 分配小内存空间, 得到它的使用权
2. 存储数据, 可以重复使用
3. 释放小内存空间
4. 释放内存
* 释放内存
1. 局部变量: 函数执行完自动释放
2. 对象: 成为垃圾对象后在某个时间被垃圾处理机制释放
# 对象
1. 什么是对象
* 多个数据的封装体
* 用来保存多个数据的容器
* 一个对象代表现实中的一个事物
2. 为什么要用对象
* 统一管理多个数据
3. 对象的组成
* 属性: 属性名(字符串)与属性值(任意类型)
* 方法: 一种特别的属性(属性值是一个函数)
4. 如何访问对象内部数据
* .属性名 编码简单, 有时无法使用
* [\'属性名\'] 编码复杂, 但能随意使用
5. 什么时候必须使用[\'属性名\']
* 属性名包含特殊字符, 如-. 空格
* 属性名不确定时, 使用的是变量的值
# 函数
1. 什么是函数
* 实现特定功能的n条语句的封装体
* 只有函数可以执行, 其他类型的数据不能执行
2. 为什么要用函数
* 提高代码复用
* 便于阅读交流
3. 如何定义函数
* 函数声明
* 表达式
4. 如何调用(执行)函数
* 直接调用: test()
* 通过对象调用: obj.test()
* new调用: new test()
* test.call/apply(obj): 临时让test函数变成obj的方法进行调用
# 回调函数
1. 什么函数属于回调函数
* 自己定义过的
* 自己没有调用的
* 能被执行的(某个时刻或者某种条件下)
2. 常见的回调函数
* dom事件回调函数-->发生事件的dom元素
* 定时器回调函数-->window
* ajax回调函数-->
* 生命周期回调函数
# IIFE(立即调用函数表达式)
## 形式
```javascript
(function(){
})()
```
## 作用
* 隐藏实现
* 不会污染外部作用域
用法示例:
```javascript
(function(){
var a = 0;
function test(){
console.log(++a);
}
window.$ = function(){
return {test: test};
}
})();
$().test()
//输出为1
```
# this
1. this是什么
* 任何函数本质都是通过某个对象来调用的, 如果没有指定就是window
* 所有函数内部都有一个变量this
* 它的值是调用函数时的当前对象
2. 如何确定this的值
* test() window
* p.test() p
* new test() 新创建的对象
* p.call(obj) obj
# 原型与原型链
## 函数的prototype属性
* 每个函数都有一个prototype, 默认指向一个object空实例对象(原型对象), 但是Object除外, 它的prototype为null
* 原型对象有个constructor, 指向函数对象
```javascript
func.prototype.constructor === func; //true
```
## 显式原型与隐式原型
* 每个函数function都有一个prototype, 即显式原型
* 每个实例对象都有一个__proto__, 即隐式原型
* 能够直接操作prototype但不能直接操作__prototype__(ES6之前)
```javascript
var Func = function(){
};
var func = new Func();
func.__proto__ === Func.prototype //true
```
## 原型链
别名:隐式原型链
作用:查找对象属性(方法)
1. 查找函数自身内部的方法
2. 如果函数自身内部没有这个方法就去找这个函数__proto__内的方法
3. 没有找到就沿着__proto__向上查找
4. Object的显式原型的隐式原型为null, 即原型链的尽头
### 构造函数/原型/实例对象的关系
* 对于每一个函数, 包括Oject构造函数, 都有一个隐式原型指向Function构造函数的显式原型, 即每一个函数都是Function构造函数的实例
* Function也是一个构造函数, 因此它的隐式原型指向它自己的显式原型, 即Function也是自己的实例
* prototype也是一个对象, 因此它的隐式原型指向Oject构造函数的显式原型, 即所有的prototype是Object构造函数的实例
* Object的显式原型也有隐式原型, 由于它已经是原型链的尽头所以值为null
## instance
1. instance是如何判断的
* 表达式: `A instanceof B`
* 如果B函数的显式原型在A函数的原型链上则返回true否则返回false
2. Function是通过new自己产生的实例
### 例子
```javascript
Function instanceof Object //true Function.__proto__.__proto__ === Object.prototype
Object instanceof Object //true Object.__proto__.__proto__ === Object.prototype
Object instanceof Functon //true Object.__proto__ === Function.prototype
Function instanceof Function //true Function.__proto__ === Function.prototype
function foo(){}
Object instanceof foo //false
```
## 面试题
测试题1
```javascript
var A = function(){};
A.prototype.n = 1;
var b = new A();
A.prototype = {
n:2,
m:3
}
var c = new A();
console.log(b.n,b.m,c.n,c.m); //1 undefined 2 3
```
测试题2
```javascript
function F(){}
Object.prototype.a = function(){
console.log("a");
}
Function.prototype.b = function(){
console.log("b");
}
var f = new F();
f.a(); //a
f.b(); //f.b() is not a function
F.a(); //a
F.b(); //b
```
# 执行上下文与执行上下文栈
1. 变量声明提升
* 通过var定义的变量在这行定义语句前就能访问到
* 值: undefined
2. 函数声明提升
* 通过function声明的函数在声明之前就能访问到
* 值: 通过function定义的函数本身
* 先变量提升再函数提升
* 在函数中使用未声明的变量会自动声明成全局变量
3. 执行上下文
1. 代码分类
* 全局代码
* 函数代码
2. 全局执行上下文
* 在执行全局代码前将window确定为全局执行上下文
* 对全局数据进行预处理
* var定义的全局变量-->undefined, 添加为window的属性
* function声明的全局函数-->赋值为这个函数, 将全局函数添加为window的方法
* this-->赋值为window
* 开始执行全局代码
3. 函数执行上下文
* 在调用函数, 准备执行函数体之前, 创建对应的函数执行上下文对象
* 对局部数据进行预处理
* 声明形参变量-->赋值为实参-->添加为执行上下文的属性
* arguments-->赋值为实参列表, 添加为执行上下文属性
* var定义的局部变量-->赋值为undefined, 添加为执行上下文属性
* function声明的函数-->赋值为这个函数本身, 添加为执行上下文方法
* this-->赋值为调用这个函数的对象
* 开始执行函数上下文
4. 执行上下文栈
1. 全局代码执行前, JS引擎会创建一个上下文栈来存储管理执行上下文
2. 在全局执行上下文(window)确定后, 将其添加到栈中
3. 在函数执行上下文创建后, 将其添加到栈中
4. 在当前函数执行完后, 将栈顶对象移除
5. 当所有代码执行完毕后栈中只剩下window
5. 面试题
```javascript
var c = 1;
function c(c){
console.log(c);
}
c(2);
```
# 作用域与作用域链
1. 分类
* 全局作用域
* 函数作用域
* 没有块作用域(ES6有了)
2. 作用
* 隔离变量
## 作用域与执行上下文
* 区别1
* 函数作用域在函数定义时创建而非函数调用时
* 全局执行上下文在全局作用域创建之后, JS代码执行之前创建
* 函数执行上下文在调用函数时, 函数体代码未执行前创建
* 区别2
* 作用域是静态的, 只要函数定义好后就一直存在且不会变化
* 执行上下文是动态的, 调用函数时创建, 函数执行完成后自动销毁
* 联系
* 作用域从属于所在的执行上下文
* 全局作用域-->全局执行上下文
* 函数作用域-->函数执行上下文
## 作用域链
1. 理解
* 多个上下级关系的作用域形成的链的方向是从内向外的
* 查找变量时是沿着作用域链来查找的
2. 查找上一个变量的查找规则
1. 在当前作用域下的上下文中查找对应属性, 有则返回没有进入2
2. 在上一级作用下的上下文中查找对应属性, 有则返回没有进入3
3. 依次执行2直到处在全局作用域中, 在全局上下文中查找对应属性, 有则返回没有报错
# 闭包
1. 如何产生闭包
* 当一个嵌套的内部函数引入了外部函数的变量就产生闭包, 与外部变量的值无关
2. 闭包是什么
* 使用chrome调试, 可以看到的包含了被引用变量的对象Closure
3. 产生闭包的条件
* 函数嵌套
* 内部函数引用了外部函数的数据且已经被定义(函数表达式与函数声明存在区别)
* 外部函数执行
4. 常见闭包
* 将内部函数作为外部函数的返回值进行返回
* 将函数作为一个实参传给另一个函数
5. 闭包的作用
* 外部函数在执行完毕后能使它的内部变量仍然存留在内存中, 即延长了变量的生命周期
* 未成为闭包中的变量会在外部函数执行完毕后被释放
* 让函数外部可以操作到函数内部的数据但并非将变量直接暴露给外部
6. 闭包的生命周期
* 在嵌套的内部函数定义时产生
* 在嵌套的内部函数成为垃圾对象时
7. 闭包的应用
1. 自定义js模块
* 具有特定功能的js文件
* 将所有数据和功能封装到函数内部
* 只向外暴露一个有n个方法的函数或对象
* 模块的使用者, 只需要通过模块暴露的函数或对象来使用模块的功能
```javascript
//方法1
function Mymodule(){
var msg = "My test";
function toUpperCase(){
console.log(msg.toUppercase());
}
function toLowerCase(){
console.log(msg.toLowerCase());
}
return {toUpperCase:toUpperCase, toLowerCase:toLowerCase};
}
var mymodule = Mymodule();
mymodule.toUpperCase();
mymodule.toLowerCase();
//方法2
(function(){
var msg = "My test";
function toUpperCase(){
console.log(msg.toUppercase());
}
function toLowerCase(){
console.log(msg.toLowerCase());
}
window.mymodule1 = {toUpperCase:toUpperCase, toLowerCase:toLowerCase};
})();
mymodule1.toUpperCase();
mymodule1.toLowerCase();
```
8. 闭包的缺点及解决办法
* 缺点
* 函数执行完后函数内的局部变量没有释放, 占用内存时间会变长
* 容易造成内存泄露
* 解决办法
* 尽量不使用闭包
* 尽早释放
9. 内存溢出
* 程序运行时出现错误
* 当程序需要的内存超出内存剩余的内存时
10. 内存泄露
* 占用的内存没有及时释放
* 内存泄露过多容易导致内存溢出
* 常见的内存泄露
* 意外的全局变量
* 没有及时处理的计时器或回调函数
* 闭包
11. 面试题
```javascript
//题目1
var name = "window";
var object = {
name: "object",
fn: function(){
return function(){
console.log(this.name);
}
}
}
object.fn()(); //"window"
var name = "window";
var object = {
name: "object",
fn: function(){
var that = this;
return function(){
console.log(that.name);
}
}
}
object.fn()(); //"object"
//题目2
```
# 对象创建模式
## 方法1: Object构造函数模式
* 套路: 先new来创建空对象, 再动态添加新的属性/方法
* 使用场景: 起始时不知道对象内部的数据
* 问题: 语句太多
```javascript
var obj = new Object();
obj.name = "a";
obj.age = "1";
obj.setname = function(){
this.name = "b";
};
```
## 方法2: 对象字面量模式
* 套路: 使用{}创建空对象, 再动态添加新的属性/方法
* 使用场景: 起始时已知对象内部的数据
* 问题: 如果创建多个对象, 代码会重复
```javascript
var obj = {
name: "a",
age: 1,
setname: function(){
this.name = "b";
}
};
```
## 方法3: 工厂模式
* 套路: 使用工厂函数动态创建对象并返回
* 使用场景: 需要创建多个对象
* 问题: 对象没有具体类型, 都是Object
```javascript
function createPerson(name, age){
var obj = new Object();
obj.name = "a";
obj.age = "1";
obj.setname = function(){
this.name = "b";
};
return obj;
}
```
## 方法4: 自定义构造函数
* 套路: 自定义构造函数, 使用new创建
* 使用场景: 需要创建多个类型确定的对象
* 问题: 如果实例化多次会使同样的方法重复占用内存空间
```javascript
function createPerson(name, age){
this.name = "a";
this.age = "1";
this.setname = function(){
this.name = "b";
};
}
```
## 方法5: 自定义构造函数+原型对象组合使用
* 套路: 自定义构造函数, 使用new创建, 添加方法时使用原型对象来添加
* 使用场景: 需要创建多个类型确定的对象
```javascript
function createPerson(name, age){
this.name = "a";
this.age = "1";
}
createPerson.prototype = {
getname: function(){
this.name = "b";
}
}
```
# 继承模式
## 原型继承
**缺点是如果父函数有一个变量为引用类型, 任意一个实例修改这个变量会导致所有实例的相关属性被修改**
套路:
1. 构造父函数
2. 给父函数的原型添加新方法
3. 构造子函数
4. 使子函数的原型对象成为父函数的实例(关键一步, 此处使原型链能够继承)
5. 给子函数的原型对象添加新方法
```javascript
var sup = function(){
var supP = "sup";
}
sup.prototype.showSup = function(){
console.log(this.supP);
};
var sub = function(){
var subP = "sub";
}
Sub.prototype = new Sup(); //sub.prototype.__proto__ = sup.prototype
console.log(Sub.prototype.constructor); //function sup(){...}, 不符合事实
Sub.prototype.constructor = Sub; //修正constructor属性
Sub.prototype.showSub = function(){
console.log(this.subP);
};
var sub = new Sub();
sub.showSup(); //"sup"
sub/showSub(); //"sub"
```
## 借用构造函数继承(假继承, 没有继承父类型方法)
**缺点是父类有方法时会被创建多次**
套路:
1. 创建父类型构造函数
2. 创建子类型构造函数
3. 在子类型构造函数中使用call/apply调用父类型构造函数
```javascript
var Person = function(name, age){
this.name = name;
this.age = age;
};
var student = function(name, age, price){
Person.call(this, name, age);
this.price = price;
}
var aa= new student('aa',11, 12)
```
## 寄生式继承
**缺点是方法没有放到原型中无法复用**
套路:
1. 创建父类型构造函数
2. 创建子类型构造函数
3. 在子类型构造函数中使用call/apply调用父类型构造函数
```javascript
var Person = function(o){
var obj = Object.create(o); //返回一个隐式原型为o的实例
obj.class = "student";
obj.say = function(){
console.log(this.name);
}
return obj;
};
var aman = {
name: "tom",
age: 16
}
var student = new Person(aman);
```
## 组合继承(借用构造函数继承+原型继承)
**缺点是构造函数执行了两次**
套路:
1. 创建父类型构造函数
2. 创建子类型构造函数
3. 在子类型构造函数中使用call/apply调用父类型构造函数
```javascript
var Person = function(name, age){
this.name = name;
this.age = age;
};
Person.prototype.setName = function(name){
this.name = name;
};
Person.prototype.setAge = function(age){
this.age = age;
};
var Student = function(name, age, price){
Person.call(this, name, age);
this.price = price;
}
Student.prototype = new Person("tom", 12);
Student.prototype.constructor = Student;
Student.prototype.setPrice = function(price){
this.price = price;
};
var student = new Student('aa',1,2)
console.log(student)
```
# 进程与线程
## 进程
* 程序的一次执行, 在内存中占用一片独立的内存空间
## 线程
* 是进程里的一个独立执行单元
* 是程序执行的一个完整的流程
* 是CPU的最小调度
## 相关知识
* 应用程序必须运行在某个进程的某个线程上
* 一个进程中至少有一个运行的线程: 主线程, 进程启动后自动创建
* 一个进程中也可以同时运行多个线程
* 一个进程内的数据可以让其中多个线程共享
* 多个进程之间的数据是相互独立的
* 线程池: 保存多个线程对象的容器, 实现线程对象重复利用
## 比较单线程与多线程
* 多线程优点
* CPU利用效率高
* 多线程缺点
* 创建多线程开销
* 线程间切换开销
* 死锁与状态同步问题
* 单线程优点
* 顺序编程简单易懂
* 单线程缺点
* 效率低
## JS的单线程与多线程
* js单线程运行
* 使用H5的Web Workers可以多线程运行
## 浏览器运行是单线程还是多线程
多线程
## 浏览器运行是单进程还是多进程
有单进程如火狐与老版IE
也有多进程如chrome与新版IE
# 浏览器内核
* 支撑浏览器运行的最核心的程序
* 不同浏览器可能不一样
* chrome, safari: webket
* firefox: Gecko
* IE: Trident
* 内核由多个模块组成
**主线程模块**
* js引擎模块, 负责js的编译与运行
* html, css文档解析模块, 负责页面文本的解析
* DOM/CSS模块, 负责DOM/CSS在内存中的相关处理
* 布局和渲染模块, 负责页面的布局与效果的绘制
* ...
**分线程模块**
* 定时器模块, 负责定时器管理
* 事件响应模块, 负责事件的管理
* 网络请求模块, 负责ajax请求
# 启动定时器
1. 定时器真的是定时执行吗
* 无法保证真正定时执行
* 一般会延迟一点, 也可能延迟很长时间
2. 定时器的回调函数是在分线程执行的吗
* 不是, js是单线程的
3. 定时器如何实现的
* 事件循环模型
# js的单线程执行
1. 如何证明js执行是单线程的
* setTimeout()函数是在主线程执行的
* 定时器回调代码只有在运行栈中的代码全部执行完后才执行
2. 为什么js要用单线程模式而不是多线程模式
* 作为浏览器脚本语言主要用途在于与用户互动及操作DOM, 这决定必须为单线程执行, 否则有严重的同步问题
3. 代码分类
* 初始化代码
* 回调代码
4. js引擎执行代码的基本流程
* 先执行初始化代码, 包含一些特殊代码
* 设置定时器
* 绑定监听
* 发送ajax请求
* 某个时刻后再执行回调代码
**使用alert()能暂停主线程执行与定时器计时**
# 事件循环模型
## 相关概念
* 执行栈
* 浏览器内核
* 回调队列
* 消息队列
* 任务队列
* 事件队列
* 事件轮询(主线程队列与回调队列的事件执行顺序)
* 事件驱动模型(同步与异步的执行)
* 请求响应模型
# H5 Web Workers多线程
## 介绍
* Web Workers是HTML5的多线程解决方案
* 可以将一些大计算量的代码交由Web Workers运行而不冻结用户界面
* 但是子线程完全受主线程控制且不能操作DOM, 因此没有改变JS是单线程的属性
## 使用
* 创建在分线程执行的js函数
* 向主线程的js中发消息并执行回调
## 不足
* 慢
* 不能跨域加载js
* worker内代码不能操作dom
* 不是每个浏览器都支持
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# javascript描述-数据结构与算法
## 什么是数据结构
* 在计算机中存储和组织数据的方式
### 常见的数据结构
* 数组
* 栈
* 列表
* 链表
* 图
* 散列表
* 队列
* 树
* 堆
## 什么是算法
* 有限的指令集,每个指令集不依赖于语言
* 接收一定的输入(有时也不需要输入)
* 产生输出
* 一定在有限步骤后终止
* 总结: 解决问题的方法逻辑
## 数组结构
* js的数组就是api的调用,因此略过
### 此处补充一些其他语言中的数组封装
* 常见语言的数组不能存放不同的数据类型,因此所有在封装时通常存放在数组中的是object类型
* 常见语言的数组的长度不会自动改变(需要扩容操作)
* 常见语言的数组进行中间插入和删除性能比较低
## 栈结构
* 数组是一种线性结构,并且可以在数组的任意位置插入与删除数据
* 有时候为了实现某些功能,必须对这种任意性加以限制
* 而栈和队列是比较常见的受限线性结构
### 栈结构示意图

### 栈结构特点
* 只允许在表的一端进行插入与删除操作,这一端被称为栈顶,另一端被称为栈底
* 向栈顶插入新元素被称为入栈或压栈,它是把新元素放到栈顶元素上使其称为栈顶元素
* 从栈顶删除元素被称为出栈或弹栈,它是把栈顶元素删除掉,使其相邻的元素成为新的栈顶元素
* 先进后出,后进先出
### 栈结构的实现
* 可以通过数组或者链表实现
* 栈有以下常见操作
* push 添加新元素到栈顶
* pop 移除栈顶元素
* peek 查看栈顶元素
* isEmpty 返回布尔值
* size 返回栈中元素数量
* toString 将栈结构以字符串形式返回
```javascript
function Stack(){
this.stack = []
Stack.prototype.push = function(i){
this.stack.push(i)
}
Stack.prototype.pop = function(){
return this.stack.pop()
}
Stack.prototype.peek = function(){
return this.stack[stack.length-1]
}
Stack.prototype.isEmpty = function(){
return this.stack.length===0
}
Stack.prototype.size = function(){
return this.stack.length
}
Stack.prototype.toString = function(){
let str = this.stack.reduce((origin, current)=>{
return origin+=current + ', '
}, '[')
return str.indexOf(',')>0 ? str.replace(/..$/, ']') : str.replace('[','[]')
}
}
```
### 使用栈结构解决实际问题
* 使用栈结构完成十进制到二进制的转换
```javascript
function dec2bin(decnumber){
let stack = new Stack()
while(decnumber>0){
stack.push(decnumber%2)
decnumber = Math.floor(decnumber/2)
}
let bin = ''
while(!stack.isEmpty()){
bin += stack.pop()
}
return bin
}
```
## 队列结构
### 队列结构示意图

### 队列结构特点
* 也是一种受限的线性表,先进先出
* 只能在表的前端进行删除操作
* 只能在表的后端进行插入操作
### 队列结构的实现
* 与栈类似,都有数组与链表结构
* 队列中的常见方法:
* enqueue 进入队列
* dequeue 退出队列
* front 显示队头
* isEmpty 返回布尔值,是否是空队列
* toString 将整个队列以字符串的形式展示
```javascript
function Queue(){
this.queue = []
Queue.prototype.enqueue = function(e){
this.queue.push(e)
}
Queue.prototype.dequeue = function(){
return this.queue.shift()
}
Queue.prototype.front = function(){
return this.queue[0]
}
Queue.prototype.isEmpty = function(){
return this.queue.length === 0
}
Queue.prototype.size = function(){
return this.queue.length
}
Queue.prototype.toString = function(){
let str = ''
str = this.queue.reduce((origin, current)=>origin+=current+', ', '[')
return str.indexOf(',')>0 ? str.replace(/..$/, ']') : str.replace('[','[]')
}
}
```
#### 用队列解决一个示例
* 指定一定数量的参与者围成一个圈与一个特定数字
* 从第一位开始从1开始报数,后面报的数比前一位大一,当报的数字与给定的特定数字相同时出局
* 出局者后一位从1开始重新报数
* 直至只剩最后一位,给出最后一位的名字
```javascript
function passgame(arrList, number){
//将参与者数组封装成一个队列
const queue = new Queue()
arrList.forEach(item=>queue.enqueue(item))
//给定循环的终止条件
while(queue.size()>1){
//开始数数
for(let i = 1; i < number; i++){
queue.enqueue(queue.dequeue())
}
queue.dequeue()
}
return queue.front()
}
```
### 优先级队列
* 在优先级队列中,插入一个数据会考虑该数据的优先级
* 和其他数据的优先级进行比较
* 比较完成后才能得出这个数据在队列中的正确位置
* 每个元素不再只包含一个数据还有这个数据的优先级
* 其余规则与普通队列相同
```javascript
function PriorityQueue(){
this.queue = []
function Element(element, priority){
this.element = element
this.priority = priority
}
PriorityQueue.prototype.enqueue = function(name, priority){
let element = new Element(name, priority)
//队列空时,直接插入
if(this.queue.length === 0){
this.queue.push(element)
}else{
let added = false
//遍历队列直到找到优先级低于当前元素然后插入那个元素之前
for(let i = 0; i < this.queue.length; i++){
if(element.priority < this.queue[i].priority){
added = true
this.queue.splice(i, 0, element)
break
}
}
//遍历完数组还没有插入则直接插入最后
if(!added){
this.queue.push(element)
}
}
}
PriorityQueue.prototype.dequeue = function(){
return this.queue.shift()
}
PriorityQueue.prototype.front = function(){
return this.queue[0]
}
PriorityQueue.prototype.isEmpty = function(){
return this.queue.length === 0
}
PriorityQueue.prototype.size = function(){
return this.queue.length
}
PriorityQueue.prototype.toString = function(){
let str = ''
str = this.queue.reduce((origin, current)=>origin+=current.element+'-'+current.priority+', ', '[')
return str.indexOf(',')>0 ? str.replace(/..$/, ']') : str.replace('[','[]')
}
}
```
## 链表结构
### 数组常用但有许多缺点
* 创建数组需要声明一段连续的存储空间
* 数组的长度固定,要扩容需要重新申请
* 对数组头或内部操作性能耗费较多
### 链表特点
* 不必一次性申请连续空间
* 链表的每个元素由存储元素本身的节点与一个指向下一个元素的引用组成
* 访问任意一个元素需要线性查找
### 链表优点
* 可以充分利用计算机内容灵活的实现动态内存管理
* 不必在创建时就声明大小,可以无限的延伸下去
* 链表在插入和删除操作时,时间复杂度很低O(1), 相对于数组快很多
### 链表示意图

### 链表的封装
```javascript
function LinkedList(){
//用来生成每个节点的实例
function Node(data){
this.data = data
this.next = null
}
//创建链表头
this.head = null
//创建链表长度
this.length = 0
}
```
### 链表常见操作
* append(ele) 往链表末尾插入新数据
* insert(postion,ele) 往指定位置插入新数据
* get(position) 按照指定位置获取数据
* indexOf(ele) 返回指定元素对应的位置, 如果没有此元素则返回-1
* update(position, ele) 更新指定位置的节点
* removeAt(position) 移除指定位置的节点
* remove(ele) 移除指定元素
* isEmplty() 返回布尔值判断是否·为空
* size() 返回链表长度
* toString() //返回链表的字符串表现形式
```javascript
function LinkedList(){
this.head = null
this.length = 0
function Node(data){
this.data = data
this.next = null
}
LinkedList.prototype.append = function(data){
//创建新节点
let newNode = new Node(data)
//当链表没有节点时直接将头指针指向新节点
if(length === 0){
this.head = newNode
}else{
let current = this.head
//遍历链表直到找到链表的末尾节点
while(current.next){
current = current.next
}
//将末尾节点的next指向新节点
current.next = newNode
}
this.length += 1
}
LinkedList.prototype.insert = function(position, data){
//边界检查,越界返回false
if(position < 0 || position > this.length) return false
let newNode = new Node(data)
//如果插入第一个则直接赋值
if(position === 0){
this.head = newNode
}else{
let now = 0
let previous = null
let current = this.head
//遍历链表直到找到position指向的位置然后插入
while(now++ < position){
previous = current
current = current.next
newNode.next = current
previous.next = newNode
}
}
this.length += 1
return true
}
LinkedList.prototype.get = function(position){
//边界检查,越界返回false
if(position < 0 || position > this.length-1){
return false
}
let now = 0
let current = this.head
//遍历链表直到找到position
while(now++ < position){
current = current.next
}
return current.data
}
LinkedList.prototype.indexOf = function(ele){
let current = this.head
let now = 0
//遍历链表直到找到data匹配的position
while(current){
if(current.data === ele) return now
current = current.next
now++
}
return null
}
LinkedList.prototype.update = function(position, data){
//边界检查,越界返回false
if(position < 0 || position > this.length-1){
return false
}
//遍历链表,直到找到position指向的节点
let now = 0
let current = this.head
while(now++ < position){
current = current.next
}
//修改匹配到的节点为指定data
current.data = data
}
LinkedList.prototype.removeAt = function(position){
//边界检查,越界返回false
if(position < 0 || position > this.length-1){
return false
}
//遍历链表,直到找到position指向的节点
let now = 0
let previous = null
let current = head
if(position === 0){
this.head = current.next
}else{
while(now++ < position){
previous = current
current = current.next
}
//删除当前节点
let output = current
previous.next = current.next
}
//减小链表长度
this.length-=1
return output.data
}
LinkedList.prototype.remove = function(data){
//遍历链表,直到找到与data匹配的节点
let previous = null
let current = this.head
while(current){
if(current.data === data){
//判断匹配的是否是第一个节点,是则用head指向它否则进行常规操作
previous ? (previous.next = current.next) : this.head = current.next
//减小链表长度
this.length-=1
return true
}
previous = current
current = current.next
}
return false
}
LinkedList.prototype.isEmpty = function(){
return this.length === 0
}
LinkedList.prototype.size = function(){
return this.length
}
LinkedList.prototype.toString = function(){
let arrlist = []
let current = this.head
while(current){
arrlist.push(current.data)
current = current.next
}
return arrlist.toString()
}
}
```
### 双向链表
* 既可以从头部遍历到尾部
* 也可以从尾部遍历到头部
* 一个节点既有向前链接的引用,也有一个向后链接的引用
#### 双向链表示意图

#### 双向链表的特点
* 使用一个head与tail来分别指向链表的头部和尾部
* 每个节点由三个部分组成: 前一个节点的指针,节点数据,后一个节点的指针
* 双向链表的第一个节点的prev是null,最后一个节点的next是null
#### 双向链表的封装
* 内部封装节点类
* 内部闭包属性有指向头尾的指针
```javascript
function DoublyLinkedList(){
this.head = null
this.tail = null
this.length = 0
function Node(data){
this.prev = null
this.data = data
this.next = null
}
}
```
#### 双向链表的实现
```javascript
function DoublyLinkedList(){
this.head = null
this.tail = null
this.length = 0
function Node(data){
this.prev = null
this.data = data
this.next = null
}
DoublyLinkedList.prototype.append = function(data){
let newNode = new Node(data)
//如果链表为空,则将头指针指向新节点
if(this.length === 0){
this.head = newNode
}else{
//如果链表不为空,则将尾节点的next指向新节点,新节点的prev指向尾节点
this.tail.next = newNode
newNode.prev = this.tail
}
//将尾指针指向新尾节点
this.tail = newNode
this.length++
}
DoublyLinkedList.prototype.insert = function(position, data){
let newNode = new Node(data)
//越界判断
if(position < 0 || position >= this.length) return false
//当链表为空时首尾指针都指向新节点
if(length === 0){
this.head = newNode
this.tail = newNode
}else{
//当向第一个位置插入新节点时,只修改头指针与后一个节点
if(position === 0 ){
this.head.prev = newNode
newNode.next = this.head
this.head = newNode
//当向最后位置插入新节点时,只修改尾指针与前一个节点
}else if(position === this.length){
this.tail.next = newNode
newNode.prev = this.tail
this.tail = newNode
}else{
//普通情况下修改前后节点的prev与next指针
let index = 0
let current = this.head
while(index++ < position){
current = current.next
}
current.prev.next = newNode
newNode.prev = current.prev
newNode.next = current
current.prev = newNode
}
}
//插入结束,长度加一
this.length++
return true
}
DoublyLinkedList.prototype.get = function(position){
//越界判断
if(position < 0 || position > this.length) return null
//当position位于链表前半段时正向遍历,否则反向遍历
let current = this.head
let index = 0
if(position <= this.length/2){
while(index++ < position){
current = current.next
}
}else{
current = this.tail
index = this.length - 1
while(index-- > position){
current = current.prev
}
}
return current.data
}
DoublyLinkedList.prototype.indexOf = function(data){
let current = this.head
let index = 0
//遍历链表直到找到数据相等的那一个节点
while(current){
if(current.data === data) return index
index++
current = current.next
}
//整个链表未找到数据相等的则返回-1
return -1
}
DoublyLinkedList.prototype.update = function(position, data){
let index = 0
let current = this.head
//根据position位于链表前半段还是后半段来决定正向还是反向查找
if(position < index/2){
while(index++ < position){
current = current.next
}
}else{
index = this.length-1
current = this.tail
while(index-- > position){
current = current.prev
}
}
//将查找到的节点重新赋值
current.data = data
}
DoublyLinkedList.prototype.removeAt = function(position){
//越界判断
if(position < 0 || position > this.length) return false
//当链表只有一个节点时,首尾指针置空
let output = null
if(this.length === 1){
output = this.head
this.head = null
this.tail = null
}else{
//当删除的是第一个节点时,需要改变头指针与后一个节点
if(position === 0){
output = this.head
this.head.next.prev = null
this.head = this.head.next
//当删除的是最后一个节点时,需要改变尾指针与前一个节点
}else if(position === this.length-1){
output = this.tail
this.tail.prev.next = null
this.tail = this.tail.prev
//常规情况,前后两个节点都要修改
}else{
let current = this.head
let index = 0
//判断position是在链表前半段还是后半段并就近遍历到指定位置
if(position < index/2){
while(index++ < position){
current = current.next
}
}else{
current = this.tail
index = length - 1
while(index-- > position){
current = current.prev
}
}
output = current
//修改前后节点
let prev = current.prev
let after = current.next
prev.next = after
after.prev = prev
}
}
//方法结束链表总长度减一
this.length--
return output.data
}
DoublyLinkedList.prototype.remove = function(data){
return this.removeAt(this.indexOf(data))
}
DoublyLinkedList.prototype.size = function(){
return this.length
}
DoublyLinkedList.prototype.isEmpty = function(){
return this.length===0
}
DoublyLinkedList.prototype.toString = function(){
let arrlist = []
let current = this.head
while(current){
arrlist.push(current.data)
current = current.next
}
return arrlist
}
DoublyLinkedList.prototype.forwardString = function(){
let arrlist = []
let current = this.head
while(current){
arrlist.push(current.data)
current = current.next
}
return arrlist
}
DoublyLinkedList.prototype.backwardString = function(){
let arrlist = []
let current = this.tail
while(current){
arrlist.push(current.data)
current = current.prev
}
return arrlist
}
}
```
## 集合
* 集合是由无序,不能重复的元素构成
* 本质是特殊的数组,但是不能通过下标访问,相同的对象也只能保存一份
### 封装集合
* 由于要保证相同的对象只能保存一份因此使用对象来实现
* Object.keys返回值就是一个集合
```javascript
function Set(){
this.item = {}
}
```
### 实现集合
* 集合有一些常用方法:
* add(data) 添加新元素
* delete(data) 删除元素
* has(data) 判断是否存在data
* clear() 清除整个集合
* size() 返回元素数量
* values() 返回包含所有元素的数组
```javascript
function Set(){
this.item = {}
Set.prototype.add = function(data){
this.item[data] = data
}
Set.prototype.delete = function(data){
delete this.item[data]
}
Set.prototype.has = function(data){
return this.item.hasOwnProperty(data)
}
Set.prototype.clear = function(){
this.item = {}
}
Set.prototype.size = function(){
return Object.keys(this.item).length
}
Set.prototype.values = function(){
return Object.keys(this.item)
}
}
```
### 集合间操作
* 并集: 对于给定的两个集合,返回一个包含两个集合所有元素的集合
* 交集: 对于给定的两个集合,返回一个包含两个集合共同拥有元素的集合
* 差集: 对于给定的两个集合,返回一个包含出现于第一个集合的元素但没有出现在第二个集合中的元素
* 子集: 验证一个给定集合是不是另一个集合的子集
```javascript
//union
Set.prototype.union = function(setB){
let unionSet = new Set()
let arrA = this.values()
let arrB = setB.values()
arrA.forEach(e=>unionSet.add(e))
arrB.forEach(e=>unionSet.add(e))
return unionSet
}
//intersection
Set.prototype.intersection = function(setB){
let intersectionSet = new Set()
let arrA = this.values()
arrA.forEach(e=>{
if(setB.has(e)) intersectionSet.add(e)
})
return intersectionSet
}
//difference
Set.prototype.difference = function(setB){
let differenceSet = new Set()
let arrA = this.values()
arrA.forEach(e=>{
if(!setB.has(e)) differenceSet.add(e)
})
return differenceSet
}
//subset
Set.prototype.subset = function(setB){
let differenceSet = new Set()
let arrA = this.values()
let isSub = true
arrA.forEach(e=>{
if(!setB.has(e)) isSub = false
})
return isSub
}
```
## 字典
* 数组-集合-字典是编程语言几乎都是带有的数据类型
* 主要特点是一一对应的关系,key-value
* 字典中的key是不可重复并且无序的,但是value是可以重复的
* 字典也可以通过对象与哈希表来实现
* js中的对象与字典很相似,因此不再使用对象来从底层封装实现
### 字典与映射
* 本质是相同的
* 有些编程语言中也将字典称为映射
### 字典与数组
* 字典与数组区别在于查找字典是通过key来实现的,更具有语义化
### 字典与对象
* 在有些语言中字典与对象有比较明显的不同,对象在编译前结构已经确定不可以动态的添加与删除元素,而字典通常是使用哈希表的结构来实现的,可以动态删除与添加元素
* 在js中似乎对象与字典是一样的,因此一开始js没有封装字典这种数据类型,所以完全可以使用对象来代替
## 哈希表
* 它可以提供非常快的增加,删除,查找操作
* 无论多少数据,插入和删除值都是接近常量的时间,即O(1)的时间级
* 速度甚至快于树
* 相对于树编码也简单
* 数据没有顺序,遍历效率比较低
* 数据不能重复
### 字符转数字的方案
#### 字符集
* ASCII: 包括了英文中的所有字符
* ISO-xxxx: 包括了西方的所有字符,根据`-`后面的数字不同也会有一些差异
* GBXXXX: 含有中文的字符集,有GB2312, GBK, GB18030等,包含的汉字依次增多
* unicode: 包括了所有文字的字符集, 有UTF-32, UTF-16, UTF-8等,其中UTF-8是可变字符集
#### 单词转数字
* 存在两种方案
##### 将每个字符的编码相加
* 例如$abc=97+98+99$
* 不同的单词产生的最终结果会发生重复
##### 将每个字符的编码按幂乘相加
* 例如$abc=97\times256^2+98\times256^1+99\times256^0$
* 用来保存结果的数组会过大,且其中有许多空间保存的都是没有意义的单词
##### 哈希化
* 通过取余操作将大数字压缩到小数字
* 但是这种操作会造成重复
* 一般将哈希化后的结果称为hashCode
### 哈希表的概念
* 将大数字转化成较小范围内数字下标的过程叫做哈希化
* 通常会将单词转化成一个大数字,大数字通过哈希化转换成hashCode的过程会封装到一个函数中,这个函数被称为哈希函数
* 最终将数据插入到一个数组中,对整个结构进行封装,就称其为哈希表
### 冲突
* 当通过哈希函数取得一个hashCode时,很有可能这个值的下标所处的位置上已经存放过数据了
* 当发生上述情况时则成为产生了冲突
* 虽然产生冲突的可能性非常小,但是仍旧需要去解决它
* 通常有两种方案来解决这种冲突,分别是:
1. 链地址法
2. 开放地址法
#### 链地址法
* hashCode所对应的下标不再是单一数字,而是保存的一个数组或者链表
* 一般来说产生的冲突可能很小所以数组和链表的效率相似
* 在有些业务中新产生的数据被查找的可能性更大因此需要插入到表头则使用链表是效率更高
* 其他情况两种数据结构都是可行的
* 链地址法示意图:

#### 开放地址法
* 将冲突的数据移动到仍然是空白的空间中
* 根据移动步长的区别也有不同的方法来实现开放地址法
* 开放地址法示意图:

##### 线性探测
* 将步长固定为1,每当发生冲突则自动向后查找空白空间直到找到然后插入
* 通过这种方法实现的话在查找元素时需要注意两个问题
1. 在向后查找元素的过程中,遇到null就要停止查找,返回false
2. 在删除数据时不能置为null,使用其他表示空的内容代替,如-1,否则可能会因第一条规则导致数据永远也无法被找到
* 在插入数据时经常会遇到聚集的问题,即一次性插入一连串数据,这些数据是相邻排列的
* 此时通过线性探测来存放数据就每次都需要跳过一连串空间,会造成性能的降低
##### 二次探测
* 以线性探测中步长的平方来充当步长,即1, 4, 9, 16...
* 查找规则与线性探测类似
* 虽然可能性很低但当许多数据都想插入同一个位置时,就会在查找时需要跳过这一连串的距离
* 同样这种情况会造成性能的降低
##### 再哈希
* 将产生冲突的数据通过另一个哈希函数来决定步长,从而插入指定位置
* 这种方式寻找的新空间一般不会再产生冲突
* 有一种经过验证效果非常好的哈希函数来解决这个问题:
* $step=constant-(key-constant)$
* 其中constant是常量, key是大数字
### 比较链地址法与开放地址法的效率
* 在比较效率前需要通过一个称为装填因子的数来判断哈希表中已有数据量的大小
* $装填因子=总数据项\div表长$
* 通过计算机专家的测试,开放地址法的平均解决冲突所需要探测的次数按指数上升
* 通常二次探测与再哈希效率相似,且两者都比线性探测高
* 链地址法平均解决冲突所需要探测的次数是线性上升
* 因此为了保证哈希表不因为插入了某个数据而造成性能急剧下降,通常都会使用链地址法来解决冲突问题
### 优秀的哈希函数
* 优秀的哈希函数需要尽可能解决以下两个问题:
1. 计算效率
2. 散布的均匀程度
#### 计算效率
* 在减少计算的效率的过程中需要尽可能减少乘除在运算中出现的次数
* 回顾字符转数字那一节中的内容,可以发现在进行幂乘运算的过程乘法的时间复杂度为O(n<sup>2</sup>)
* 通过霍纳法则(秦九韶算法)可以减少多项式中乘法的次数,将原本的算法变成:
* $abc=(((97)\times256+98)\times256+99)$
* 此时乘法的时间复杂度就变成了O(n),可以提升许多性能
#### 散布的均匀程度
* 为了实现这一目标通常会将函数中所有的常数都是用质数来代替
* 通常幂乘的常量置为37
* 详细原理不深入讨论,但这种方案结果可以让整个哈希表在解决冲突的过程中尽可能被遍历,同时也能减少遍历的次数
* 但在某些应用比如java实现maplist不是通过取余数而是通过将key与表长减一的值进行位与操作来得到hashCode
### 哈希函数的实现
```javascript
function HashTable(){
//哈希表总长
this.limit = 7
//表中数据量
this.total = 0
//哈希表数组
this.item = []
//哈希函数
HashTable.prototype.hashFunc = function(key, limit){
//使用unicode编码的幂乘相加计算原始下标,幂乘计算使用霍纳法则简化
let keyvalue = 0
for(let i=0; i<key.length; i++){
keyvalue=keyvalue * 37 + key.charCodeAt(i)
}
//使用取余运算计算hashCode
return keyvalue%limit
}
HashTable.prototype.put = function(key, value){
//根据hashCode找到对应下标的basket修改或者添加数据,此处使用数组实现
let index = this.hashFunc(key, this.limit)
let arr = this.item[index]
if(arr){
//如果basket有内容则按照链地址法
let completed = false
//遍历数组,如果发现重名数据则直接修改
arr.forEach(item=>{
if(key===item[0]){
completed = true
return item[1] = value
}
})
//如果没有重名数据则向数组末尾添加新数据
if(completed){
arr.push([key, value])
this.total++
}else{
//如果basket为null则重新创建数组
this.item[index] = [[key, value]]
this.total++
}
}
HashTable.prototype.get = function(key){
let index = this.hashFunc(key, this.limit)
let basket = this.item[index]
//如果basket为null则没有对应数据
if(basket===undefined){
return null
}else{
//如果有basket, 则遍历basket,遍历完没有对应key则不存在对应数据
for(let i = 0; i < basket.length; i++){
if(key===basket[i][0]) return basket[i][1]
}
return null
}
}
HashTable.prototype.remove = function(key){
let index = this.hashFunc(key, this.limit)
let basket = this.item[index]
//如果basket为null则没有对应数据
if(!basket){
return null
}else{
//如果有basket, 则遍历basket,遍历完没有对应key则不存在对应数据
for(let i = 0; i < basket.length; i++){
if(key===basket[i][0]){
this.total--
return basket.splice(i, 1)
}
}
return null
}
}
HashTable.prototype.size = function(){
return this.total
}
HashTable.prototype.isEmpty = function(){
return this.total===0
}
}
```
### 哈希表的扩容/减容
* 装载因子增加时无论链地址法还是开放地址法,它们的性能都会下降
* 当装载因子大于一定的值时(通常是0.75)有必要对整个哈希表进行扩容
* 当装载因子小于一定的值时(通常是0.25)有必要对整个哈希表进行减容
* 扩容时需要取出所有哈希表中保存的数据并按照根据新表长度计算出的hashCode来存放数据
* 虽然这种操作比较消耗性能,但是为了整体性能考虑,还是有必要进行扩容操作
* 由于为了保证扩容后的表长仍旧为质数,需要实现一个判断值是否为质数的函数
```javascript
//判断是否属于质数的函数
HashTable.prototype.isPrime = function(num){
num = Math.floor(num)
//从3开始判断,因为1,2不是质数
if(num>2){
//从2开始遍历到比num开根号的数,如果能被其中的数整除则为质数
for(let i=2; i<Math.sqrt(num); i++){
if(num%i===0) return false
}
return true
}
return false
}
//哈希表扩容函数
HashTable.prototype.resize = function(size){
//创建变量保存老哈希表数组并重新创建数组给哈希表用来重新保存原数据
let oldItem = this.item
this.item = []
//重新设置哈希表长度,寻找离size最近的素数
this.total = 0
let prime = size
while(!this.isPrime(prime)){
prime++
}
//将哈希表长度设置为这个素数
this.limit = prime
//遍历哈希表数组,当遇到basket为null时跳过,不是时进入basket
for(let i=0; i<this.limit; i++){
let basket = oldItem[i]
if(basket==null) continue
basket.forEach(item=>{
this.put(item[0], item[1])
})
}
}
//重写put, remove函数,增加自动扩容减容功能
HashTable.prototype.put = function(key, value){
//根据hashCode找到对应下标的basket修改或者添加数据,此处使用数组实现
let index = this.hashFunc(key, this.limit)
let arr = this.item[index]
if(arr){
//如果basket有内容则按照链地址法
let completed = false
//遍历数组,如果发现重名数据则直接修改
arr.forEach(item=>{
if(key===item[0]){
completed = true
return item[1] = value
}
})
//如果没有重名数据则向数组末尾添加新数据
if(completed){
arr.push([key, value])
this.total++
//如果超出0.75的重载因子则扩容
if(this.total > this.limit*0.75){
this.resize(this.limit*2)
}
}
}else{
//如果basket为null则重新创建数组
this.item[index] = [[key, value]]
this.total++
//如果超出0.75的重载因子则扩容
if(this.total > this.limit*0.75){
this.resize(this.limit*2)
}
}
}
HashTable.prototype.remove = function(key){
let index = this.hashFunc(key, this.limit)
let basket = this.item[index]
//如果basket为null则没有对应数据
if(!basket){
return null
}else{
//如果有basket, 则遍历basket,遍历完没有对应key则不存在对应数据
for(let i = 0; i < basket.length; i++){
if(key===basket[i][0]){
this.total--
let output = basket.splice(i, 1)
//如果低于0.25的重载因子则减容,但总长度不能小于7
if(this.limit > 7 && this.total < this.limit*0.25){
this.size(this.limit/2)
}
return output
}
}
return null
}
}
```
## 树结构
* 由一个根节点开头,不断向下细分节点的一种结构
### 树结构的抽象

### 树结构的优点
* 树结构并非就是好过其他所有数据结构,因为每种数据结构都自己适合的应用场景
* 但是的确综合了其他数据结构的一些优点,例如增删改快于数组链表,遍历快于哈希表等
* 为了模拟一些应用场景使用树结构更加方便,因为树结构能够表示一对多的关系
* 例如文件结构等
### 树结构的表示
* 将一个树以数据结构的形式表现是有两种形式: 普通表示法,儿子兄弟表示法
#### 普通表示法示意图

#### 儿子兄弟表示法示意图

* 通过将图旋转45度可以发现父节点无论有多少个子节点都可以在数据结构上表现成只有两个节点的树,即二叉树
* 因此二叉树在树结构中是非常重要的一种形式

### 二叉树
* 树中的每个节点最多只能有两个子节点,这样的树就成了二叉树
* 二叉树可以为空,也就是没有任何节点
* 若不为空,则它是由根节点和称为其左子树TL与右子树TR的两个不相交的二叉树组成
#### 二叉树特性
* 第n层的节点个数最多为: $2^{n-1}, n\geq1$
* 深度为k的二叉树总节点数最多为: $2^k-1, k\geq1$
* 对于任何非空二叉树,叶节点树n<sub>0</sub>与度为2的父节点n<sub>2</sub>之间有如下关系: $n_0=n_2+1$
#### 完美二叉树(满二叉树)
* 在二叉树中,除了最下一层的叶节点外每层节点都有2个子节点,就构成了满二叉树
#### 完全二叉树
* 除二叉树最后一层外所有节点度都为2
* 最后一层从左向右的叶节点连续存在
* 完美二叉树是完全二叉树的特殊形式
#### 二叉树的表示方式
* 二叉树存储的常见形式有数组与链表
##### 数组表示
* 使用数组保存完全二叉树时比较方便,因为将完全二叉树按从上到下从左到右的顺序存放时,需要查找的节点的索引与父节点非常相关
* 父节点索引为$n$,若这个节点是父节点的左节点则索引为$2n$, 若是右节点则索引为$2n+1$
* 但是当不是完全二叉树时只能通过填补没有节点的位置强行构成完全二叉树来满足以上规则
* 此时会浪费许多空间,因为很多索引是没有数据的

##### 链表表示
* 可以用来表示任何结构的树且不会造成内存浪费,是常用的来表示树的结构

### 二叉搜索树(BST binary search tree)
* 二叉树的特殊形式,满足以下性质:
* 非空左子树的键值要小于根节点的键值
* 非空右子树的键值要大于根节点的键值
* 左右子树本身也是二叉搜索树
* 这种树的查找效率很高,蕴含了二分查找的思想
#### 二叉搜索树的封装
```javascript
function BinarySearchTree(){
//使用根变量来指向根节点
this.root = null
//封装一个节点,里面有key,左子树指针,右子树指针
function Node(key){
this.key = key
this.left = null
this.right = null
}
}
```
#### 二叉搜索树的实现
* 二叉搜索树有以下常见操作:
* insert(key) 向树中插入新节点
* search(key) 查找指定节点
* inOrderTraversal() 中序遍历树
* preOrderTraversal() 先序遍历树
* postOrderTraversal() 后序遍历树
* min() 获取树中的最大值
* max() 获取树中的最小值
* remove(key) 移除指定节点
* 前驱与后继
* 当删除度为2的节点时有两个重要概念前驱与后继
* 前驱意思是在整个树中键值大小与目标节点最相近的小于目标节点的那个节点
* 后继意思是在整个树中键值大小与目标节点最相近的大于目标节点的那个节点
* 在删除度为2的节点时,本质就是寻找目标节点的前驱或者后继来代替原位置
```javascript
function BinarySearchTree(){
//使用根变量来指向根节点
this.root = null
//封装一个节点,里面有key,左子树指针,右子树指针
function Node(key){
this.key = key
this.left = null
this.right = null
}
BinarySearchTree.prototype.insert = function(key){
let newNode = new Node(key)
//判断根节点是否为空,空则直接插入
if(this.root === null){
this.root = newNode
}else{
//不为空则执行递归函数来将新节点插入相应位置
this.insertNode(this.root, newNode)
}
}
BinarySearchTree.prototype.insertNode = function(root, newNode){
//当root存在时继续递归
if(root !== null){
//当新节点的值大于当前树根节点时
if(newNode.key > root.key){
//如果树根节点有右子树时,将右子树当做新树根节点传入
if(root.right !== null){
this.insertNode(root.right, newNode)
}else{
//如果树根节点的右子树不存在时,将新节点存放于右节点上
root.right = newNode
}
}else{
//当新节点的值小于当前树根节点时
if(root.left !== null){
//如果树根节点有左子树时,将左子树当做新树根节点传入
this.insertNode(root.left, newNode)
}else{
//如果树根节点的左子树不存在时,将新节点存放于左节点上
root.left = newNode
}
}
}
}
BinarySearchTree.prototype.search = function(key){
//如果根节点不存在直接返回null
if(this.root === null){
return false
}else{
//如果存在就遍历整棵树
let current = this.root
//current不存在则跳出循环
while(current !== null){
//遇到键值匹配则存在此数据
if(current.key === key) return true
//当查找的键值小于当前节点的键值则向节点的左边查找否则向右查找
current = current[key < current.key ? 'left': 'right']
}
//如果循环到了树的最深层都没有相应键值则证明不存在这个值
return false
}
}
BinarySearchTree.prototype.inOrderTraversal = function(){
let arr = []
//如果根节点不存在则直接返回
if(this.root === null) return arr
//如果根节点存在则递归遍历树
this.traversalNode('in', this.root, item=>{
arr.push(item)
})
return arr
}
BinarySearchTree.prototype.preOrderTraversal = function(){
let arr = []
//如果根节点不存在则直接返回
if(this.root === null) return arr
//如果根节点存在则递归遍历树
this.traversalNode('pre', this.root, item=>{
arr.push(item)
})
return arr
}
BinarySearchTree.prototype.postOrderTraversal = function(){
let arr = []
//如果根节点不存在则直接返回
if(this.root === null) return arr
//如果根节点存在则递归遍历树
this.traversalNode('post', this.root, item=>{
arr.push(item)
})
return arr
}
BinarySearchTree.prototype.traversalNode = function(order, root, callback){
//root存在才继续执行递归
if(root !== null){
//中序遍历
if(order === 'in'){
//从当前节点的左子树开始继续遍历
this.traversalNode(order, root.left, callback)
//已经从左子树处跳回的那个节点对节点的key进行处理
callback(root.key)
//从当前节点的右子树开始遍历
this.traversalNode(order, root.right, callback)
//前序遍历
}else if(order === 'pre'){
//先对当前节点进行操作
callback(root.key)
//从当前节点的左子树开始继续递归遍历
this.traversalNode(order, root.left, callback)
//从当前节点的右子树开始继续递归遍历
this.traversalNode(order, root.right, callback)
//后序遍历
}else if(order === 'post'){
//从当前节点的左子树开始继续递归遍历
this.traversalNode(order, root.left, callback)
//从当前节点的右子树开始继续递归遍历
this.traversalNode(order, root.right, callback)
//对当前节点进行操作
callback(root.key)
}
}
}
BinarySearchTree.prototype.min = function(){
//二叉搜索树特点中整个树最左边的节点是最小值
let current = this.root
while(current.left !== null){
current = current.left
}
return current.key
}
BinarySearchTree.prototype.max = function(){
//整个树最右边的节点是最大值
let current = this.root
while(current.right !== null){
current = current.right
}
return current.key
}
//移除二叉搜索树中的任意节点,此方法难度较高,将几种移除的可能性提前列出
// 1.移除的节点是叶子节点,即度为0时
// 2.移除的节点只有一个子节点,即度为1时
// 3.溢出的节点有两个子节点,即度为2时
//每种情况下也有多种情形,详细步骤在代码中讨论
BinarySearchTree.prototype.remove = function(key){
//初始化需要使用到的变量
let parrent = null
let current = this.root
let isLeftChild = true
//遍历二叉树直到找到目标节点
while(current !== null){
if(key = current.key) break
//当目标键值小于当前节点键值时向左子树继续查找
if(key < current.key){
parrent = current
current = current.left
isLeftChild = true
}else{
parrent = current
current = current.right
isLeftChild = false
}
}
//当current不是空时则找到了目标节点
if(current !== null){
//此时目标节点会分成3种情况,进行分别讨论
//情况一,度为0
if(current.left === null && current.right === null){
//当根节点的键值满足时直接删除
if(current.key === this.root.key){
this.root = null
}else{
//不是根节点时就是叶子节点,直接删除
//根据目标节点是父节点的左子树还是右子树来决定清空父节点的哪个指针
parrent[isLeftChild ? 'left' : 'right'] = null
}
//当目标节点度为2的情况,此处使用前驱来代替目标节点
}else if(current.left !== null && current.right !== null){
//当前节点为根节点时,直接将前驱当做根节点
if(current.key === this.root.key){
const preNode = this.findPre(current)
preNode.left = current.left
preNode.right = current.right
this.root = preNode
}else{
//当前节点不为根节点时
//根据目标节点是父节点的左子树还是右子树来决定父节点的哪个指针指向前驱节点
const preNode = this.findPre(current)
preNode.left = current.left
preNode.right = current.right
parrent[isLeftChild ? 'left' : 'right'] = preNode
}
}else{
//当目标节点度为1的情况
//当current为根节点时直接将根节点指针指向current的子节点
if(current.key === this.root.key){
this.root = current.left || current.right
}else{
//current不是根节点时将current的子节点代替current的位置
const childNode = current.left || current.right
parrent[isLeftChild ? 'left' : 'right'] = childNode
}
}
return current.key
}else{
//当current为空时则说明没有对应目标节点,返回false
return false
}
}
//返回一个传入参数的前驱节点的函数
BinarySearchTree.prototype.findPre = function(root){
let current = root.left
let preParrent = root
//循环直到搜索到根节点的前驱节点
while(current.right !== null){
preParrent = current
current = current.right
}
//前驱节点还有左子树时
if(current.left !== null){
//如果是根节点的左子树则将前驱节点的左子树赋值给根节点的左子树
//如果不是则用前驱节点的左子树赋值给前驱节点的父节点的右子树
preParrent[current === root.left ? 'left' : 'right'] = current.left
}else{
//没有左子树则直接置空前驱节点的原位置
//如果是根节点的左子树则清空左子树
//如果不是则清空父节点的右子树
preParrent[current === root.left ? 'left' : 'right'] = null
}
//返回前驱节点
return current
}
}
```
#### 二叉搜索树的缺陷
* 二叉搜索树由于查找效率与树的深度有关,因此深度也就决定了查找的效率
* 当连续插入的数据是有序时,在二叉搜索树的规则下,会在数据量不大时仍然生成深度比较高的树
* 甚至在极端情形下会演变成链表,时间复杂度由O(logn)转变成O(n)
* 这种左子树数量与右子树数量严重不相同的情形被称为非平衡树,近似相同称为平衡树
* 由于平衡树的效率要远高于非平衡树,因此有许多算法会尝试将非平衡树转变成平衡树
* 常见的算法包括: AVL树, 红黑树
* 其中红黑树在添加删除元素时效率高于AVL树,因此后者非常少见了
### 红黑树
* 红黑树除了满足二叉搜索树的规则之外还有一些额外的性质:
1. 所有节点都是红色或者黑色的
2. 根节点是黑色的
3. 没有左右子节点的节点必须用黑色的空节点补齐(NIL节点)
4. 每个红色节点的两个子节点都是黑色的(从每个叶子节点到根的路径上不会出现连续的红色节点)
5. 从任一节点到任意叶子节点之间包含的黑色节点数量是相同的
* 根据以上性质能够确保一个关键特性:
* 从根到叶子的最长路径不会超过最短路径的两倍
* 限制了最长路径与最短路径的比例也就保证了这棵树是基本平衡的
* 虽然没有做到绝对平衡,但是可以保证在最坏的情况下依然是高效的
* 由性质推导到特性的过程
* 由性质四可知一条路径不能有连续的红色节点
* 最短路径肯定是只有黑色节点
* 最长路径肯定是红黑节点都有
* 一条路径的起点与终点必定是黑色节点,由性质五即可知最长路径必定小于最短路径的两倍
### 红黑树的变化
* 当给红黑树插入新节点时很可能就不满足红黑树的规则,因此需要让红黑树发生三种变换来使其再次满足规则
* 变色,坐旋转,有旋转
#### 变色
* 当颜色不再满足规则时需要将红色节点变成黑色节点
* 通常新插入的节点都是红色的。有两种原因:
1. 当插入位置是一个黑色节点的子节点时,插入的红色节点可以直接替换黑色节点的NIL节点
2. 根据性质4,如果插入节点黑色的则必定会使所有路径都要增加一个黑色节点
3. 为了尽可能减少操作量所有设定所有新插入的节点为红色
#### 左右旋转
* 左旋转为逆时针旋转,右旋转为顺时针旋转
#### 左右旋转示意图


#### 左旋转规则
* 让根节点成为根节点右子树的左子树,让原根节点右子树的左子树变成原根节点的右子树
* 步骤:
1. 以X作为根节点,将X设置为X的右子节点Y的左子节点b
2. 让b成为X的右子节点
3. 让Y成为根节点
* 右旋转类似,让根节点成为根节点的左子树的右子树
### 红黑树的插入规则
* 将变化情况进行分类可以得出插入新节点后的操作可以分成五种情况
* 设新节点为n, 父节点为p, 父节点的兄弟节点为u, 祖父节点为g
#### 情况一
* n是根节点时
1. 将n变成黑色
#### 情况二
* p为黑色时不需要进行其他变换
#### 情况三
* p为红色且u也为红色时
1. 将p与u变成黑色, 将g变为红色
2. 将g当做新插入节点,递归进行重新判断
#### 情况四
* p为红色,u为黑色且n是p的左节点时
1. 将p变为黑色, 将g变为红色
2. 以g为根节点进行右旋转
3. 将p当做新插入节点,递归进行重新判断
#### 情况五
* p为红色,u为黑色且n是p的右节点时
1. 以p为根节点进行左旋转变成情况四
2. 以g为根节点进行右旋转
3. 将p当做新插入节点,进行递归重新判断
### 红黑树的实现
```javascript
function RedBlackTree(){
this.root = {
pointer: null
}
function Node(node){
this.key = node
this.left = null
this.right = null
this.parent = null
//0表示黑,1表示红,初始化为红
this.color = 1
this.isNIL = false
}
//创建红黑树中的叶子节点,唯一作用就是标识颜色
function NIL(){
this.parent = null
//NIL的颜色必定为黑
this.color = 0
this.isNIL = true
}
RedBlackTree.prototype.insert = function(node){
let current = this.root.pointer
let isleft = true
//初始化新节点及它的两个NIL子节点
const newNode = new Node(node)
const leftChild = new NIL()
const rightChild = new NIL()
//将两个NIL分别置为新节点的左右节点
newNode.left = leftChild
newNode.right = rightChild
//给NIL指定父节点
leftChild.parent = newNode
rightChild.parent = newNode
if(!!current){
//current存在时向下继续查找
while(!current.isNIL){
if(newNode.key < current.key){
//保存下可能成为parent的节点
const parent = current
current = current.left
isleft = true
}else{
//保存下可能成为parent的节点
const parent = current
current = current.right
isleft = false
}
}
//循环结束则current指向了应该插入的位置
current.parent[isleft ? 'left' : 'right'] = newNode
newNode.parent = current.parent
}else{
//current不存在时说明是新树,直接将新节点置为根节点
this.root.pointer = newNode
newNode.parent = this.root
}
//修改树结构以适应红黑树定义
this.applyRule(newNode)
}
//获取node节点的uncle节点
RedBlackTree.prototype.getUncle = function(node){
const grand = node.parent.parent
const parent = node.parent
return grand[(parent === grand.left) ? 'right' : 'left']
}
RedBlackTree.prototype.flipColor = function(node, color){
if(color === 'black'){
node.color = 0
return true
}else if(color === 'red'){
node.color = 1
return true
}
return false
}
RedBlackTree.prototype.applyRule = function(n){
//n不存在时退出递归
if(!n) return
//初始化节点n的父节点p,祖父节点g,叔叔节点u
const p = n.parent
let g = null
let u = null
//p不存在时不初始化g,u
if(!!p){
g = p.parent
//g不存在时不初始化u
if(!!g){
u = this.getUncle(n)
}
}
//情况一,n是根节点时直接将颜色置为黑色
if(n === this.root.pointer){
this.flipColor(n, 'black')
}else if(p.color === 0){
//情况二,p是黑色时,无需修改
}else if(p.color === 1 && u.color === 1){
//情况三,p,u是红色,将p,u置为黑色,g置为红色
this.flipColor(p, 'black')
this.flipColor(u, 'black')
this.flipColor(g, 'red')
//以现g为新n递归向上修改新树的结构以匹配红黑树规则
this.applyRule(g)
}else if(p.color === 1 && u.color ===0 && n === p.left){
//情况四, p是红色,u是黑色,n是p的左节点
//将p置为黑色,g置为红色
this.flipColor(p, 'black')
this.flipColor(g, 'red')
//以g为根进行右旋转
this.rightRotate(g)
//旋转完后原p成为现g,以现g为新n递归向上修改新树的结构以匹配红黑树规则
this.applyRule(p)
}else{
//情况五, p是红色,u是黑色,n是p的右节点
//将p置为黑色,g置为红色
this.flipColor(p, 'black')
this.flipColor(g, 'red')
//以p为根进行左旋转就变成了情况四
this.leftRotate(p)
//以g为根进行右旋转
this.rightRotate(g)
//旋转完后原n成为现g,以现g为新n递归向上修改新树的结构以匹配红黑树规则
this.applyRule(n)
}
}
RedBlackTree.prototype.leftRotate = function(root){
//获取根节点的右节点
const right = root.right
//获取右节点的左节点
const leftOfRight = right.left
//获取根节点的父节点
const parent = root.parent
//根节点的父节点是根节点的指针时特殊操作
if(parent === this.root){
parent.pointer = right
}else{
//获取根节点在父节点哪个位置
const isleft = (root === parent.left) ? true : false
//让右节点代替根节点的位置
parent[isleft ? 'left' : 'right'] = right
}
right.parent = parent
//让根节点成为右节点的左节点
right.left = root
root.parent = right
//让右节点的左节点成为根节点的右节点
root.right = leftOfRight
leftOfRight.parent = root
}
RedBlackTree.prototype.rightRotate = function(root){
//获取根节点的左节点
const left = root.left
//获取左节点的右节点
const rightOfLeft = left.right
//获取根节点的父节点
const parent = root.parent
//根节点的父节点是根节点的指针时特殊操作
if(parent === this.root){
parent.pointer = left
}else{
//获取根节点在父节点哪个位置
const isleft = (root === parent.left) ? true : false
//让右节点代替根节点的位置
parent[isleft ? 'left' : 'right'] = left
}
left.parent = parent
//让根节点代替左节点的右节点的位置
left.right = root
root.parent = left
//让左节点的右节点成为根节点的左节点
root.left = rightOfLeft
rightOfLeft.parent = root
}
//层次遍历
RedBlackTree.prototype.levelTraversal = function(handler){
//创建队列来辅助层次遍历
const queue = new Queue()
//将根节点压入队列
queue.enqueue(this.root.pointer)
//队列空时
while(queue.size() > 0){
const current = queue.dequeue()
if(current===null) return
if(current.isNIL) continue
handler(current.key)
queue.enqueue(current.left)
queue.enqueue(current.right)
}
}
}
```
### 关于红黑树的删除问题
* 二叉搜索树的删除操作比较
* 红黑树的插入操作也比较复杂
* 红黑树的删除操作是将二叉搜索树的删除操作与红黑树的插入操作进行结合难度非常高
* 具体步骤过于繁杂但是基于一个思想仍然可以考虑清楚,即在每种删除情况中考虑被删节点的颜色即可
## 图论
* 在计算机程序设计中图结构也非常重要
### 什么是图
* 图结构是一种与树结构有些相似的数据结构
* 图论是数学上的一个分支,并且在数学的概念中,树是图的一种
* 它以图为研究对象,研究顶点与边组成的图形的数学理论和方法
* 主要研究的目的是找寻事物之间的关系,顶点表示事物,边表示事物间的关系
### 图的现实案例
* 人与人之间的关系网
* 地图线路
* 村庄间的关系网
### 图结构的特点
* 由图的一些案例可知这种关系无法通过树来模拟,因此图的重要性不言而喻
* 图包含两个基本概念:
* 一组顶点,通常用V来表示顶点的集合
* 一组边,通常用E来表示边的集合
* 边是顶点与顶点之间的连线
* 边可以是有向也可以是无向的
### 图结构的相关术语
1. 顶点
* 上面的章节已经提到过,表示图中的节点
2. 边
* 表示两个顶点间的连线
3. 相邻顶点
* 由一条边连接在一起的节点叫相邻顶点
4. 度
* 表示一个顶点的相邻顶点的数量
5. 路径
* 路径就是顶点V1, V2, V3...的一个连续序列
* 简单路径
* 不包含重复顶点的路径叫简单路径
* 回路
* 第一个顶点与最后一个顶点相同的路径叫回路
6. 无向图
* 边没有方向的图
7. 有向图
* 边有方向的图
8. 带权图
* 表示边有一定的权重
* 权重可以是任意意义,包括时间,价格等
9. 无权图
* 表示任意边没有权重
### 图结构的表示
* 表示图一般有两种表示方式分别为邻接矩阵与邻接表
#### 邻接矩阵
* 邻接矩阵可以让每个节点与一个整数相关联,这个整数就是节点在数组中下标
* 可以通过一个二维数组来表示图的结构
##### 邻接矩阵示意图

##### 邻接矩阵的问题
* 当图为稀疏图时这个二维数组许多的空间都会被赋值为0
* 被赋值为0的边是没有意义的,会浪费大量的计算机存储空间
#### 邻接表
* 邻接表由一个顶点以及跟这个顶点相邻的其他顶点列表组成
* 列表有许多方式可以存储: 数组,链表,哈希表
##### 邻接表示意图

##### 邻接表缺点
* 使用邻接矩阵可以很方便的计算每个顶点的出度(自己指向其他顶点的数量)与入度(其他顶点指向自己的数量)
* 而使用邻接表计算入度非常麻烦,但是也能够实现
* 如果需要计算入度需要创建一个逆邻接表,但是开发中入度的使用比较少见
### 图结构的封装
```javascript
function Graph(){
//用来保存顶点的数组结构
this.vertexes = []
//用来保存边的字典结构,js中直接用对象代替
this.edge = {}
}
```
### 图结构的实现
* 在图中一般有一些常用方法:
1. setVertex(v) 传入一个参数v,字符串,用来表示顶点名
2. setEdge(v1, v2) 传入两个参数,分别表示两个顶点名
3. toString() 打印整个图的结构,以A->B,C,D的形式表示图内的关系
4. BFS(v, handler) 传入一个v作为起点进行广度优先搜索
5. DFS(v, handler) 传入一个v作为起点进行深度优先搜索
```javascript
function Graph(){
//用来保存顶点的数组结构
this.vertexes = []
//用来保存边的字典结构,js中直接用对象代替
this.edge = {}
Graph.prototype.setVertex = function(v){
//保存顶点,并在邻接表中生成一个数组
this.vertexes.push(v)
this.edge[v] = []
}
Graph.prototype.setEdge = function(v1, v2){
//顶点判断,此处实现无向图,因此没有对应的两个顶点则返回false
if(this.edge.hasOwnProperty(v1) && this.edge.hasOwnProperty(v1)){
//在邻接表中v1对应的位置压入要互相形成边的v2
this.edge[v1].push(v2)
//在邻接表中v2对应的位置压入要互相形成边的v1
this.edge[v2].push(v1)
return true
}
return false
}
Graph.prototype.toString = function(){
//遍历邻接表中的顶点
let result = ''
for(key in this.edge){
result += `${key} -> `
this.edge[key].forEach(item=>{
result += `${item} `
})
result += '\n'
}
return result
}
Graph.prototype.initializeColor = function(){
//创建一个字典保存每个顶点的颜色用于遍历,每次遍历前初始化颜色为白色表示没有访问也没有探索过
//颜色使用数字表示,白-0,灰-1,黑-2
this.color = {}
this.vertexes.forEach(item=>{
this.color[item] = 0
})
}
}
```
### 图的遍历
* 图的遍历意味着要将图的每个顶点访问一次,并且不能有重复的访问
* 有两种算法可以对图进行遍历
* 广度优先搜索(Breadth-first-search BFS)
* 深度优先搜索(Depth-first-search DFS)
* 两种遍历算法都要指定一个入口节点
* 为了记录顶点是否被访问过,使用三种状态来反应他们的状态
1. 白色:表示该顶点还没有被访问过
2. 灰色:表示该顶点被访问过但没有被探索过
3. 黑色:表示该顶点被访问过且被探索过
#### 广度优先搜索思路
* 广度优先算法会从指定的第一个顶点开始遍历图,先访问其相邻顶点
* 对树结构的层次遍历也可以使用这种思想
* 实现思路
1. 创建一个队列Q
2. 将V标注为被发现的(灰色),并将V送入Q
3. 如果Q非空执行以下步骤
1. 将V从Q中取出
2. 将V标注为灰色
3. 将V所有所有未被访问过的邻接点(白色),加入到队列中
4. 将V标注为黑色
##### 示意图

##### 实现
```javascript
Graph.prototype.BFS = function(v, handler){
//初始化颜色
this.initializeColor()
//创建队列来保存访问的顶点
let queue = new Queue()
//将第一个顶点压入队列
queue.enqueue(v)
//将第一个顶点置为灰色表示访问但未探索过
this.color[v] = 1
while(queue.size() > 0){
let current = queue.dequeue()
//判断当前取出的顶点有没有被探索过,探索过则取队列中下一个顶点
if(this.color[current] === 2){
continue
}
//将从队列取出的顶点置为黑色表示访问且探索过
this.color[current] = 2
//执行回调函数并传入顶点名作为参数
handler(current)
//将与取出的顶点相连的顶点都压入队列并将没有访问过的顶点置为灰色
this.edge[current].forEach(item=>{
queue.enqueue(item)
if(this.color[item] === 0){
this.color[item] = 1
}
})
}
}
```
#### 深度优先搜索思路
* 先随机寻找一条路径,走到路径的尽头再回过头来找另外的路径,直到走完所有路径
* 与树的先序遍历思想类似
* 可以使用栈也可以使用递归来实现
##### 示意图

##### 实现
```javascript
Graph.prototype.DFS = function(v, handler){
//初始化顶点颜色
this.initializeColor()
//执行递归
this.DFSPerVertex(v, handler)
}
Graph.prototype.DFSPerVertex = function(v, handler){
//已经探索过的节点退出递归
if(this.color[v] === 2){
return
}
//探索当前节点并将当前节点置为黑色
this.color[v] = 2
//执行回调
handler(v)
//访问与当前探索的顶点相连的其他顶点
this.edge[v].forEach(item=>{
//没有访问过的顶点置为灰色,访问过的顶点不再访问
if(this.color[item] === 0){
this.color[item] = 1
DFSPerVertex(item, handler)
}
})
}
```
## 大O表示法
* 计算机中粗略估计算法效率的方法被称为大O表示法
* 在数据量变化时,算法的效率会随之发生改变
* 通常使用算法速度是如果跟着数据量变化的来表示算法的性能
### 常见的大O表示形式
* O(1) 常数的
* O(log(n)) 对数的
* O(n) 线性的
* O(nlog(n)) 线性和对数乘积
* O(n<sup>2</sup>) 平方的
* O(2<sup>n</sup>) 指数的
### 推导大O表示法
1. 从常量1代替所有加法中的常量
2. 只保留最高次数项
3. 去掉最高次数项的常数首项
## 排序算法
* 笔试中经常出现
* 一旦将数据放置在某个数据结构中存储起来后很有可能根据需求对数据进行排序
* 这里介绍五种排序算法:
* 简单排序
* 冒泡排序
* 选择排序
* 插入排序
* 复杂排序
* 希尔排序
* 快速排序
### 排序前的准备工作
* 为了方便排序算法的测试先封装一个列表结构,在列表中实现各种排序算法
```javascript
function ArrList(){
this.arr = []
ArrList.prototype.insert = function(v){
this.arr.push(v)
}
ArrList.prototype.toString = function(){
return this.arr.join(' ')
}
ArrList.prototype.swap = function(p1, p2){
let temp = this.arr[p1]
this.arr[p1] = this.arr[p2]
this.arr[p2] = temp
}
}
```
### 冒泡排序
* 效率最低但最简单的算法
#### 算法示意图

#### 算法思路
1. 从一个列表的最前端开始
2. 比较先一个值与后一个值的大小
3. 如果先一个值大就交换位置
4. 交换位置后从列表的下一个位置开始继续判断
5. 循环步骤1-4,次数为n, n的初始值为length-1,每次循环完后n=n-1直到n为0
6. 循环步骤1-5,次数为列表长度length-1次
7. 完成排序
* 每次完成1-5的步骤必定会有一个最大值被移动到列表末端与冒泡动作相似,所以叫冒泡排序
#### 算法实现
```javascript
ArrList.prototype.bubbleSort = function(){
for(let j = this.arr.length-1; j > 0; j--){
for(let i = 0; i < j; i++){
if(this.arr[i] > this.arr[i+1]){
this.swap(i, i + 1)
}
}
}
}
```
#### 算法时间复杂度
* 查找效率O(n<sup>2</sup>)
* 交换效率O(n<sup>2</sup>)
### 选择排序
* 是冒泡排序的一种改进
* 改善了冒泡排序中即便已经找到最大值后面还会按照冒泡的规则去交换两数的情况
* 减少了交换代码执行的次数
#### 算法示意图

#### 算法思路
1. 将数组中第一个值的索引保存到变量index中
2. 从头到尾遍历数组n(length-1)次,每次遇到当前值大于index指向的值时,将当前值得索引保存到index中
3. 交换数组位置处于n的值与index指向的值
4. 重复步骤1-3,n=n-1,依次类推直到n=1
#### 算法实现
```javascript
ArrList.prototype.selectionSort = function(){
for(let j = 0; j < this.arr.length-1; j++){
//用index保存最小值的索引,初始值是数组第一个值
let index = j
for(let i = j + 1; i < this.arr.length; i++){
//遇到值比index小时将index变成那个值的索引
if(this.arr[index] > this.arr[i]){
index = i
}
}
//将最小值放在数组最前面
this.swap(j, index)
}
}
```
#### 算法时间复杂度
* 查找效率O(n<sup>2</sup>)
* 交换效率O(n), 优化了冒泡排序的交换次数
### 插入排序
* 另一种与冒泡排序完全不同的排序思路
* 效率是简单排序中最高的
* 引入了局部有序的概念,从而才使查找次数降低
#### 算法示意图

#### 算法思路
1. 默认只有一个值时属于局部有序
2. 索引index指向数组第二个值,此时左边可以认为局部有序
3. 将index指向的值插入左边局部有序的合理位置,使其仍然局部有序,然后index加一
4. 重复步骤1-3直到index值为length退出排序
#### 算法实现
```javascript
ArrList.prototype.insertionSort = function(){
//从数组第二个值开始遍历,因为第一个值被认为局部有序
for(let j = 1; j < this.arr.length; j++){
//保存当前分隔有序区域与无序区域的那个值
const current = this.arr[j]
//从后向前遍历有序区,将用来分隔的值插入有序区合适位置使其仍然有序
for(let i = j - 1; i >= 0; i--){
//current小于有序区中的当前遍历值时, 将这些值向后移动一格
if(current < this.arr[i]){
this.arr[i+1] = this.arr[i]
//遍历完有序区,有序区第一个值仍然比current大则直接将current放在有序区第一个位置
if(i === 0){
this.arr[0] = current
}
}else{
//current大于有序区中的当前遍历值时,则说明找到了待插入位置,插入即可
this.arr[i+1] = current
break
}
}
}
}
```
#### 算法时间复杂度
* 交换与查找的时间相加跟前两种排序算法的查找时间相同
* 查找效率O(n<sup>2</sup>/2)
* 交换效率O(n<sup>2</sup>/2)
### 希尔排序
* 基于插入排序进行改的算法
* 改善了最后几次在插入排序中需要插入的值需要去遍历局部有序的数组很多次才能找到合适位置的情况
* 刚发明时首次让排序算法时间复杂度低于O(n<sup>2</sup>)
#### 算法示意图

#### 算法思路
1. 以固定的方式生成一系列gap的数组
2. 对于每一个gap执行步骤3-4
3. 以固定的间隔gap来将数组中的数字分组
4. 使用插入排序来将每组的数字进行排序
5. 完成排序
#### 算法实现
```javascript
ArrList.prototype.shellSort = function(){
//保存间隔
let gap = Math.floor(this.arr.length/2)
while(gap > 0){
//遍历所有的分组
for(let k = 0; k < this.arr.length-gap; k++){
//对每个分组进行插入排序
//从每个分组的第二个数字开始向右遍历,各个数字之间间隔为gap
for(let i = k + gap; i < this.arr.length; i += gap){
//获取当前遍历的数字当做待插入元素
let current = this.arr[i]
//将待插入数字插入部分有序区
for(let a = i - gap; a >= k; a -= gap){
//待插入数字大于部分有序区的数字时则需要将当前部分有序区的数字移向后一个格
if(current < this.arr[a]){
this.arr[a + gap] = this.arr[a]
//如果到了当前分组的第一个数字都没有遇到比current小的,则直接将current赋值给分组的第一个数字
if(a === k){
this.arr[a] = current
}
}else{
//待插入数字大于部分有序区的数字时则到了可插入位置然后插入
this.arr[a + gap] = current
break
}
}
}
}
//每次循环将间隔减少一半
gap = Math.floor(gap/2)
}
}
```
#### 算法时间复杂度
* 希尔排序的gap选值会影响算法的时间复杂度
* 在原始算法中以length/2为开始的gap,之后每次减半直到变成1,最终成为普通的插入排序
* 最坏的情况下才会到达O(n<sup>2</sup>/2),其余情况都会小于这个效率
### 快速排序
* 快速排序在大多数情况下速度都是高于其他排序的,甚至快于希尔排序
* 因此快速排序是排序中的最好选择
#### 算法示意图

#### 算法思想
1. 从数组中挑选一个数字
2. 让数组中其他数字小于它的放在它的左边
3. 让数组中其他数字大于它的放在它的右边
4. 分别在左右两边的数组中重复1-3步骤直到任意一边没有数字了停止排序
#### 快速排序枢纽
* 在快速排序中充当基准的那个数被称为枢纽
* 枢纽的选择会很大影响快速排序的效率
* 通常有以下选择方案:
1. 永远选择数组中的第一个数字
2. 从数组中随机选择一个数字
3. 选择数组中最前,最后,正中三个数字中的中位数
* 第三种效率是最高也是最常用的
#### 算法思路
1. 从数组中选中一个合适的枢纽
2. 将枢纽与数组中最后一个值交换位置
3. 使用left与right两个指针分别指向数组的最左边和倒数第二个数(需要判断left是否在right左边)
5. 使用left与right从当前位置分别向中间遍历数组
6. 当left遇到比枢纽大的值或者遇到right时停下
7. right是遇到比枢纽大的值才停下时
* 交换left与right指向的值的位置
8. 如果是left与right相遇才停下时将left或者right指向的值与枢纽交换位置
9. 重复4-6步骤直到进入步骤7
10. 对枢纽左边的部分和右边的部分重复1-8步骤
#### 算法实现
```javascript
ArrList.prototype.swap = function(p1, p2){
let temp = this.arr[p1]
this.arr[p1] = this.arr[p2]
this.arr[p2] = temp
}
//获取中间数字的索引并将首中尾按小到大的顺序排序
ArrList.prototype.middleNum = function(first, last){
const center = Math.floor((first + last)/2)
let middle = first
//冒泡排序
if(this.arr[first] > this.arr[center]){
this.swap(first, center)
}
if(this.arr[center] > this.arr[last]){
this.swap(center, last)
}
if(this.arr[first] > this.arr[center]){
this.swap(first, center)
}
return center
}
ArrList.prototype.quickSort = function(){
const left = 0
const right = this.arr.length-1
//快速排序递归入口
this.quick(left, right)
}
ArrList.prototype.quick = function(left, right){
//如果left与right左右顺序有错则退出递归
if(left >= right) return
//获取中位数索引并将三个数排好序
let center = this.middleNum(left, right)
//使left指向数组的最左边的位置
let l = left
//使right指向数组最右边-1的位置,因为中位数无需判断
let r = right-1
//将中位数与数组最后一个数交换位置,准备对中位数左边的值进行分类
this.swap(center, right)
//不断循环直到中位数靠左的数字全部分好类
while(true){
//移动left指针直到指向的值大于中位数
while(this.arr[l] < this.arr[right] && r > l){
l++
}
//移动right指针直到指向的值小于中位数
while(this.arr[r] > this.arr[right] && r > l){
r--
}
//如果是left与right位置仍然正确才交换left指向的值与right指向的值
if(l < r){
this.swap(l, r)
}else{
break
}
}
//让中位数回到正确的位置
this.swap(right, l)
//对此时中位数的左右分别递归分类
this.quick(left, l-1)
this.quick(l+1, right)
}
```
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
# JS模块化
## 模块化历史
### 原始写法
* 直接将需要声明的变量写在全局中
```javascript
function foo1(){}
function foo2(){}
foo1()
foo2()
```
* 污染全局
### namespace方式
* 将需要声明的变量封装到一个函数中
```javascript
let module = {
foo1(){},
foo2(){}
}
module.foo1()
module.foo2()
```
* 本质是对象,可以随时获取内部数据,不安全
### IIFE方式
* 通过闭包的方式,只暴露想要暴露的数据或方法
```javascript
let Module = (function module(){
var __private = 'save now'
function foo(){}
return {foo: foo}
})()
Module.foo()
Module.__private //undefined
```
* 函数是唯一的local scope
### 引入依赖
* 通过给闭包函数引入参数的形式来传递依赖
```javascript
let Module = (function module($){
var __private = 'save now'
$('#test').hide()
function foo(){}
return {foo: foo}
})($)
```
* 这就是模块模式
* 现代模块化的基石
## 为什么要模块化
1. 现代网页更像一个web app
2. 代码复杂度逐渐上升
3. 需要高解耦性的js文件
4. 需要部署一种最大优化http数量的网站
## 模块化的好处
1. 避免命名冲突
2. 更好的分离,按需加载
3. 更高复用性
4. 高可维护性
## 通过页面引入script的方式
1. 提高了http数量,降低网站性能
2. 引入顺序改变会导致报错
3. 依赖关系模糊
4. 难以维护
## 模块化规范
### commonjs
* 每个文件都可以当做一个模块
* 服务器端模块加载是同步的
* 浏览器端需要提前编译打包
#### 基于服务器端
* 文件目录:
```
project
|---modules
|---node_modules
|---app.js
|---0package.json
```
* 基本语法
1. module.exports
2. exports
3. require
#### 基于浏览器端
* 文件目录:
```
project
|---js
|---dist 打包后的文件目录
|---src 源码所在目录
|---modules
|---app.js
|---node_modules
|---index.html
|---package.json
```
* 使用browerify打包
* npm install -g browserify
* npm install --save-dev browserify
* browerify src.js -o destination.js
### AMD
* 异步模块定义
* 专门用于浏览器端,模块的加载是异步的
* **没有文件作用域,在define与require函数外部共用全局作用域**
#### 基本语法
* 定义没有依赖的模块
```javascript
define(function(){})
```
* 定义有依赖的模块
```javascript
define([module1, module2],function(module1, module2){ //显式声明,依赖注入
return {} //将想要暴露的模块对象直接返回
})
```
* 引入使用模块
```javascript
require([module1, module2],function(module1, module2){})
```
#### 使用
1. 引入[requirejs](http://requirejs.org)
```html
<script data-main="./js/main.js" src="./js/libs/require.js"></script>
```
2. 项目目录:
```
.js
|---libs
|---require.js
|---angular.js
|---modules
|---module1.js
|---module2.js
|---main.js
|---index.html
```
3. 使用requirejs
```javascript
(function(){
requirejs.config({
baseUrl: 'js/', //设置根目录
paths:{
module1: 'modules/module1', //后缀js会自动添加,所以不能手动加.js后缀
module2: 'modules/module2',
angular: 'libs/angular'
},
shim:{
angular:{
exports: 'angular' //对于原生不支持AMD的将第三方对象暴露给window对象的第三方模块需要手动配置暴露的对象名
}
}
})
requirejs(['module1', 'module2', 'angular'], (m1, m2, angular)=>{})
})()
```
### ES6模块化规范
* 依赖模块需要编译打包处理
#### 文档结构
```
project
|---js
|---src
|---build
|---dist
|---index.html
|---.babelrc
```
#### 编译过程
1. 安装babel-cli babel-reset-es2015 browerify
```
npm install -g babel-cli browerify
npm install --save-dev babel-preset-es2015
```
2. 在项目根目录自定义.babelrc文件
```json
{
"presets": ["es2015"]
}
```
3. 编写es6模块化语法
##### 常规暴露
* 在src文件夹新建module1.js
* `export`命令规定的是对外的接口,必须与模块内部的变量建立一一对应关系,因此单独暴露时不能只传递变量名
```javascript
export function foo(){ //单独暴露
console.log('我是module1')
}
/*
*export {foo} //统一暴露
*
*/
```
* 在src文件夹新建main.js
```javascript
/*
*import foo from './module1.js' //单独暴露时
*import {foo} from './module1.js' //统一暴露时
*
*/
foo() //'我是module1'
```
##### 默认暴露
* 在src文件夹新建module1.js
```javascript
function foo(){
console.log('我是module1')
}
/*
*export default foo //引入时可以是任意声明变量来引入暴露出去的数据类型
*/
```
* 在src文件夹新建main.js
```javascript
/*
*import a from './module1.js'
*
*/
a() //'我是module1'
```
4. 在项目根目录使用babel将ES6语法转换成ES5语法
```
babel ./src -d ./build
```
5. 在项目根目录使用browerify将ES5语法中的commonjs转换成普通ES5语法
```
browerify ./build/main.js -o ./dist/bundle.js
```
6. 在index.html中引入最终编译好的js文件
```html
<script src="./js/dist/bundle.js"></script>
``` | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
<script src="node_modules/requirejs/require.js"></script>
<script>
requirejs.config({
baseUrl: 'js/',
paths:{
test1: 'test1',
test2: 'test2'
}
})
requirejs(['test1'], test1=>{
test1.test1SayHello()
test1.test2SayHello()
})
</script>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
define([],()=>{
function sayHello(){
console.log('this is test2')
}
return {sayHello}
}) | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
define(['test2'], test2=>{
function sayHello(){
console.log('this is test1')
}
return {
test2SayHello: test2.sayHello,
test1SayHello: sayHello
}
}) | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
<script src="js/entry.js"></script>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
function sayHello() {
console.log('this is test2');
}
exports.default = sayHello; | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
'use strict';
var _test = require('./test2');
var _test2 = _interopRequireDefault(_test);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
(function sayHello() {
console.log('this is test1');
})();
(0, _test2.default)(); | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
function sayHello(){
console.log('this is test2')
}
export default sayHello | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
import test2SayHello from './test2'
(function sayHello(){
console.log('this is test1')
})()
test2SayHello() | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
'use strict';
var _test = require('./test2');
var _test2 = _interopRequireDefault(_test);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
(function sayHello() {
console.log('this is test1');
})();
(0, _test2.default)();
},{"./test2":2}],2:[function(require,module,exports){
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
function sayHello() {
console.log('this is test2');
}
exports.default = sayHello;
},{}]},{},[1]);
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
<script src="js/entry.js"></script>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
function sayHello(){
console.log('this is test2')
}
module.exports = {
sayHello
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
var test2 = require('./test2')
console.log('this is test1')
console.log(test2.sayHello()) | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
var test2 = require('./test2')
console.log('this is test1')
console.log(test2.sayHello())
},{"./test2":2}],2:[function(require,module,exports){
function sayHello(){
console.log('this is test2')
}
module.exports = {
sayHello
}
},{}]},{},[1]);
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const {resolve} = require('path')
const webpack = require('webpack')
const htmlWebpackPlugin = require('html-webpack-plugin')
const addAssetHtmlWebpackPlugin = require('add-asset-html-webpack-plugin')
const workboxWebpackPlugin = require('workbox-webpack-plugin')
module.exports = {
entry: {
index: './src/js/index.js',
main: './src/js/main.js'
},
output: {
filename: './js/[name].[contenthash].js',
path: resolve(__dirname, 'build')
},
module: {
rules: [
{
oneOf: [
{
test: /\.less$/,
use: ['style-loader', 'css-loader', 'less-loader']},
{
test: /\.js$/,
exclude: /node_modules/,
use: [{
loader: 'babel-loader',
options: {
cacheDirectory: true,
presets: [
['@babel/preset-env', {
useBuiltIns: 'usage',
corejs: 3
}]
]
}
}, {
loader: 'eslint-loader',
options: {
fix: true
}
}]
},
{
test: /\.html$/,
loader: 'html-loader'
}
]
}
]
},
plugins: [
new htmlWebpackPlugin({
template: './src/index.html'
}),
new webpack.DllReferencePlugin({
manifest: resolve(__dirname, 'dll/manifest.json')
}),
new addAssetHtmlWebpackPlugin({
filepath: resolve(__dirname, 'dll/*.dll.js'),
outputPath: 'dll',
publicPath: 'dll'
}),
new workboxWebpackPlugin.GenerateSW({
clientsClaim: true,
skipWaiting: true
})
],
mode: 'production',
optimization: {
splitChunks: {
chunks: 'all'
}
},
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const {resolve} = require('path')
const webpack = require('webpack')
module.exports = {
entry: {
jquery: ['JQUERY']
},
output: {
filename: './[name].dll.js',
path: resolve(__dirname, 'dll'),
library: '[name]_[hash]'
},
plugins: [
new webpack.DllPlugin({
name: '[name]_[hash]',
path: resolve(__dirname, 'dll/manifest.json')
})
],
mode: 'production'
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>webpack</title>
</head>
<body>
<h1 id="title">hello webpack</h1>
<button id="btn">按钮</button>
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
body,html {
margin: 0;
padding: 0;
background-color: #aaa;
#title {
color: white;
}
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const add = (a, b) => a + b;
console.log('加载add.js 成功');
export default { add };
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
import '../less/index.less';
import $ from 'jquery';
import exec from './common';
exec();
console.log('加载index.js 成功');
$(() => {
$('#btn').click(() => {
import('./print').then(({ print }) => {
print('点击');
});
});
});
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const exec = () => console.log('加载common.js');
export default exec;
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
console.log('加载main.js');
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js').then((ans) => console.log(`registed: ${ans}`))
.catch((err) => {
console.log(`register err: ${err}`);
});
});
}
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
import exec from './common';
exec();
const print = (val) => console.log(val);
console.log('加载print.js 成功');
export default { print };
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const {resolve} = require('path')
const htmlWebpackPlugin = require('html-webpack-plugin')
const miniCssExtractPlugin = require('mini-css-extract-plugin')
const optimizeCSSAssetsWebpackPlugin = require('optimize-css-assets-webpack-plugin')
const commonCssConfig = [miniCssExtractPlugin.loader, 'css-loader', {
loader: 'postcss-loader',
options: {
plugins: () => [require('postcss-preset-env')]
}
}]
// process.env.NODE_ENV = 'production'
module.exports = {
entry: './src/js/index.js',
output: {
filename: 'js/bundle.js',
path: resolve(__dirname, 'build')
},
module: {
rules: [
{
test: /\.css$/,
use: commonCssConfig
}, {
test: /\.less$/,
use: [...commonCssConfig, 'less-loader']
}, {
test: /\.js$/,
exclude: /node_modules/,
use: [{
loader: 'babel-loader',
options: {
presets: [
['@babel/preset-env', {
useBuiltIns: 'usage',
corejs: 3,
}]
]
}
}, {
loader: 'eslint-loader',
options: {
fix: true
}
}]
}, {
test: /\.(png|jpg|gif|jpeg)$/,
loader: 'url-loader',
options: {
limit: 8*1024,
outputPath: 'img'
}
}, {
test: /\.html/,
loader: 'html-loader'
},{
exclude: /\.(js|css|less|png|gif|jpg|jpeg|html)$/,
loader: 'file-loader',
options: {
outputPath: 'assets'
}
}
]
},
plugins: [new htmlWebpackPlugin({
template: resolve(__dirname, 'src/index.html'),
minify: true,
filename: 'index.html'
}), new miniCssExtractPlugin({
filename: 'css/main.css'
})],
mode: 'production'
}
//, new optimizeCSSAssetsWebpackPlugin() | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>webpack</title>
</head>
<body>
<h1 id="title">hello, webpack</h1>
<span class="iconfont icon-add-cart"></span>
<span class="iconfont icon-auto"></span>
<span class="iconfont icon-data"></span>
<span class="iconfont icon-rmb"></span>
<div id="test1"></div>
<div id="test2"></div>
<img src="./img/angular.jpg" alt="angular">
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
@font-face {font-family: "iconfont";
src: url('../assets/iconfont.eot?t=1589789058056'); /* IE9 */
src: url('../assets/iconfont.eot?t=1589789058056#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAQ0AAsAAAAACMAAAAPnAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDMgqEYIQaATYCJAMUCwwABCAFhG0HRhukB8gOJaHAwABgQAFgBF9rn/1mZve25h8gyfOQREVFsUIWBssnEpVno1KehYnL8b+pB6RZBlSdmVWVivmAQOJ0L0zU7av/czltbAtsfjvLae3tHfUCjA8ooDG2LZCAC6QsQW8Yu4k4jP0EqkXdYacy88tBowDDAnHPoONAEzMpJdWhE9qcuQXiNdjp0nj8EoBX7vvjL4SFBiRNBjD2zI0MLbA/Pr5NJYa1DFNPcSDuzwFpERn7QCGe5LruIfzUPkI1vqdyBFSdJP34+Ob/W+JtaksLpmxFmgr/8AhJVogWQGU/OOKUZefEGCH48R8h8ZNQctWprOTG7NWAikF8AfAP0Kzz41tZKJsqmlap3NRqT2ZDf7rvxPXeFVU9smfPB3hzqD0JNWi+DbnmCIYNX+iZG1zw0YUbqV4OMPRg4ur5w+atItdsGL5RCDeqpcsdK4EME9y6VX77dsXdu1WUz7xzp1IQTwB9CSipuG9iOQUVFvRtxCgWS2VyhdDlj/vsvuxfY19Ht7WfeNiret4+kp5wwKcWq5yzhiQxrourbD/q9gcVXE3ruKXHuQ9OF8nwbb75Mfnf8qPz/aaV+1x0enCux5GCSwqu8n/cico55+Z0m03FrfBYGUfBjTXpLtC7EUZX+vl8cmyFN52XrE66mgS33rJW58krcEQMWbt2CIHwFZOdrazL+NM7puDziUuXiPn4lB2nd7nPJS6eU89pZUpu9+qVa7nSt8wNVh69tGb9F/bftH84tJ3d/s//8OfV6y+tXA25Tx0m3/O7N8Wh5+Mej+cAN9a/p1MMV71uRmKXF0+/BTQWuFtm+nrN8PTNTGgPvi+72lPR7O1feXksKs9lc/OgH3BA/oAfAyDfxT8CkKfjnsv4s3/jO765rpzU5JjwW0OpAL6/44e7pqJdupOoLf4TxDXriikF5qbotVikhxunvWdVMnIV/1nfqCf9aCZqVxI6EyEkfRYg66zjC3kfGj0H0OocQrUna3HPGIQQpTWwazQDYdhWSAZ9hGzYZXwhP4bGpM/QGg4CqrPhumbPZhjINCRyiqhl+P6MQZCtErIqpFddKup6mzkUlbqsShHZDFEmNCgkmc0SrSLqY4Ktjy5MUSRGQrKFyWQOE81mmWlGslEUlCC9ojTHBQdLeQ8KEmQLkE5CRByFSIvB649hIJBZSbS5gky9vpRIpzczDipBNfgriRAbQ+uMUEFCauCzVNZaqHPpbNOHThiFQuIHSRCZBSOTdYjMMCVjNOf3MhIJFEH0LRLN4gRzjaS6qqDxNZZrjIEK3KcJHCMwFWaHqaFc7q3IKi2ncASy8BpOq+0hcEgBAAA=') format('woff2'),
url('../assets/iconfont.woff?t=1589789058056') format('woff'),
url('../assets/iconfont.ttf?t=1589789058056') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('../assets/iconfont.svg?t=1589789058056#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-auto:before {
content: "\e6eb";
}
.icon-data:before {
content: "\e6f9";
}
.icon-rmb:before {
content: "\e703";
}
.icon-add-cart:before {
content: "\e742";
}
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
.bg(){
background-size: contain;
background-repeat: no-repeat;
height: 200px;
width: 200px;
}
html, body {
margin: 0;
padding: 0;
background-color: #aaa;
#title{
color: white;
}
#test1{
background-image: url(../img/react.png);
.bg()
}
#test2{
background-image: url(../img/vue.jpg);
.bg()
}
.grid {
display: flex;
backface-visibility: visible;
}
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
import '../css/iconfont.css';
import '../less/main.less';
const func = (a, b) => a + b;
console.log(func(2, 3));
const promise = new Promise((resovle) => {
setTimeout(() => {
console.log(promise);
resovle('complete');
}, 3000);
});
promise.then((val) => {
console.log(val);
});
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>webpack</title>
</head>
<body>
<h1 id="title">hello, webpack</h1>
<span class="iconfont icon-auto"></span>
<span class="iconfont icon-data"></span>
<span class="iconfont icon-rmb"></span>
<span class="iconfont icon-add-cart"></span>
<div class="test1"></div>
<div class="test2"></div>
<div class="test3"></div>
<img src="./src/angular.jpg" alt="angular">
</body>
</html> | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const {resolve} = require('path')
const htmlWebpackPlugin = require('html-webpack-plugin')
const webpack = require('webpack')
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: resolve(__dirname, 'build')
},
module: {
rules: [{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}, {
test: /\.less$/,
use: ['style-loader', 'css-loader', 'less-loader']
}, {
test: /\.(png|jpg|jpeg)$/,
loader: 'url-loader',
options: {
limit: 8 * 1024,
name: '[hash:10].[ext]'
}
},{
test: /\.html$/,
loader: 'html-loader'
},{
exclude: /\.(js|html|jpg|png|jpeg|css|less)$/,
loader: 'url-loader',
options: {
limit: 8*1024,
name: '[hash:10].[ext]'
}
}]
},
plugins: [new htmlWebpackPlugin({
template: resolve(__dirname, 'index.html')
//HMR相关, 在优化开发环境配置中讲述
}), new webpack.HotModuleReplacementPlugin()],
mode: 'development',
//source map相关, 在优化开发环境配置中讲述
devtool: 'eval-source-map',
devServer: {
//指定服务器根目录
contentBase: './src',
open: true,
hot: true
}
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
html, body {
margin: 0;
background-color: #ffa;
#title {
color: white;
}
.test1 {
width: 100px;
height: 100px;
background-image: url(./vue.jpg);
background-repeat: no-repeat;
background-position: 0 0;
background-size: contain;
}
.test2 {
width: 120px;
height: 100px;
background-image: url(./angular.jpg);
background-repeat: no-repeat;
background-position: 0 0;
background-size: contain;
}
.test3 {
width: 100px;
height: 100px;
background-image: url(./react.png);
background-repeat: no-repeat;
background-position: 0 0;
background-size: contain;
}
}
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
@font-face {font-family: "iconfont";
src: url('iconfont.eot?t=1589789058056'); /* IE9 */
src: url('iconfont.eot?t=1589789058056#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAQ0AAsAAAAACMAAAAPnAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDMgqEYIQaATYCJAMUCwwABCAFhG0HRhukB8gOJaHAwABgQAFgBF9rn/1mZve25h8gyfOQREVFsUIWBssnEpVno1KehYnL8b+pB6RZBlSdmVWVivmAQOJ0L0zU7av/czltbAtsfjvLae3tHfUCjA8ooDG2LZCAC6QsQW8Yu4k4jP0EqkXdYacy88tBowDDAnHPoONAEzMpJdWhE9qcuQXiNdjp0nj8EoBX7vvjL4SFBiRNBjD2zI0MLbA/Pr5NJYa1DFNPcSDuzwFpERn7QCGe5LruIfzUPkI1vqdyBFSdJP34+Ob/W+JtaksLpmxFmgr/8AhJVogWQGU/OOKUZefEGCH48R8h8ZNQctWprOTG7NWAikF8AfAP0Kzz41tZKJsqmlap3NRqT2ZDf7rvxPXeFVU9smfPB3hzqD0JNWi+DbnmCIYNX+iZG1zw0YUbqV4OMPRg4ur5w+atItdsGL5RCDeqpcsdK4EME9y6VX77dsXdu1WUz7xzp1IQTwB9CSipuG9iOQUVFvRtxCgWS2VyhdDlj/vsvuxfY19Ht7WfeNiret4+kp5wwKcWq5yzhiQxrourbD/q9gcVXE3ruKXHuQ9OF8nwbb75Mfnf8qPz/aaV+1x0enCux5GCSwqu8n/cico55+Z0m03FrfBYGUfBjTXpLtC7EUZX+vl8cmyFN52XrE66mgS33rJW58krcEQMWbt2CIHwFZOdrazL+NM7puDziUuXiPn4lB2nd7nPJS6eU89pZUpu9+qVa7nSt8wNVh69tGb9F/bftH84tJ3d/s//8OfV6y+tXA25Tx0m3/O7N8Wh5+Mej+cAN9a/p1MMV71uRmKXF0+/BTQWuFtm+nrN8PTNTGgPvi+72lPR7O1feXksKs9lc/OgH3BA/oAfAyDfxT8CkKfjnsv4s3/jO765rpzU5JjwW0OpAL6/44e7pqJdupOoLf4TxDXriikF5qbotVikhxunvWdVMnIV/1nfqCf9aCZqVxI6EyEkfRYg66zjC3kfGj0H0OocQrUna3HPGIQQpTWwazQDYdhWSAZ9hGzYZXwhP4bGpM/QGg4CqrPhumbPZhjINCRyiqhl+P6MQZCtErIqpFddKup6mzkUlbqsShHZDFEmNCgkmc0SrSLqY4Ktjy5MUSRGQrKFyWQOE81mmWlGslEUlCC9ojTHBQdLeQ8KEmQLkE5CRByFSIvB649hIJBZSbS5gky9vpRIpzczDipBNfgriRAbQ+uMUEFCauCzVNZaqHPpbNOHThiFQuIHSRCZBSOTdYjMMCVjNOf3MhIJFEH0LRLN4gRzjaS6qqDxNZZrjIEK3KcJHCMwFWaHqaFc7q3IKi2ncASy8BpOq+0hcEgBAAA=') format('woff2'),
url('iconfont.woff?t=1589789058056') format('woff'),
url('iconfont.ttf?t=1589789058056') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('iconfont.svg?t=1589789058056#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-auto:before {
content: "\e6eb";
}
.icon-data:before {
content: "\e6f9";
}
.icon-rmb:before {
content: "\e703";
}
.icon-add-cart:before {
content: "\e742";
}
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
import './index.css'
import './index.less'
import './iconfont.css'
import print from './print'
let add = (a, b) => a+b
console.log('加载index.js')
console.log(add(2,3))
console.log(add(4,3))
print()
if(module.hot) {
module.hot.accept('./print.js', () => {
console.log('启动print.js HMR')
})
} | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
html, body {
margin: 0;
background-color: #ffa;
}
| {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
const print = () => {
console.log('执行print')
}
console.lo('加载print.js成功1')
export default print | {
"repo_name": "chuyueZhang/frontEndLearning",
"stars": "333",
"repo_language": "JavaScript",
"file_name": "print.js",
"mime_type": "text/plain"
} |
HooToo-Tripmate-HT-TM02-OpenWRT
===============================
Patches, files and instructions to install OpenWRT on the HT-TM02
REQUIREMENTS and INSTRUCTIONS
==================
WARRANTY
We should all know this but it's worth mentioning...These materials are strictly experimental and provided for educational and recreational purposes only. There is no warranty of any kind. Modifying any piece of equipment is risky and can
damage your devices and related equipment rendering them unusable (bricking). You do so at your own risk. For support the best place to go is the openwrt wiki and online forum (http://openwrt.org)
Ok, on with the show....
REQUIREMENTS
- A reasonably sized USB Flash stick (preferrably a nice, clean, new >=1gb one)
- PC - any OS and browser
- Ethernet cable
INSTRUCTIONS
Note: There are much more detailed instructions and answers to questions on the openwrt.org forum in this thread:
https://forum.openwrt.org/viewtopic.php?id=53014 . I update that regularly and suggest using the instructions there rather than these.
To install OpenWRT on the TM02 we need to replace the factory UBoot bootloader with one more compatible with the OpenWRT partitioning scheme. The hard way to do this is to solder a 3v USB<->Serial cable to the board, setup a tftp server and replace it using tftp, then reboot and us that to burn the OpenWRT sysupgrade image to the correct MTD partition using tftp. That's how I did it the first time.
Since then, I created an OpenWRT image that's compatible with the HooToo factory GUI software. In OpenWRT parlance this is called the "factory" image. Now it's easy to do the conversion/upgrade and it shouldn't take more than 10-15 minutes. Here's the process....
1. Connect the TM02 to power with it's mode switch in the AP mode. That's the switch selection that has the icon with an image of the world connected to a network. Wait for it to boot up as indicated by it showing up as an AP in your wifi scan. Connect to it. The password is "11111111".
2. Once you are connected, open your browser and browse to the IP address 10.10.10.254 . The Hootoo GUI should appear. Bypass the setup wizard by closing it's popup window.
3. Insert a USB flash memory stick (preferrably an empty one you can dedicate to this purpose) into the TM02. Wait for the popup window confirming that the TM02 has recognized the stick. Make sure the stick is properly mounted by clicking on the "Explore" menu item and viewing the directory of the stick.
4. Now go to the "System" menu, select the firmware upgrade menu item, and then upgrade the TM02 using the "openwrt-ramips-rt305x-ht-tm02-squashfs-factory-r42649.bin" file from the "ramips_openwrt" directory of this repository
(https://github.com/wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT)
5. WAIT until the timer popup times out before disconnecting the TM02 power as it takes time to write and verify the entire on-board flash MTD.
6. Connect an ethernet cable between your PC and the TM02. Set your PC for DHCP and then power-on the TM02. If the upgrade worked, you'll see both LED's light up. That's the new UBoot. When it starts to boot the kernel they will go out. After about 30 seconds it should be booted into OpenWRT. Later, you can configure the LED's to do something more useful.
7. LUCI should be up and running so browse to 192.168.1.1 and configure as needed. This install uses the Chaos Calmer snapshot r42649 and works fine for everything I've been doing. However, if you wish to upgrade to the latest trunk development revision you can obtain an "upgrade" binary from openwrt.org here: http://downloads.openwrt.org/snapshots/trunk/ramips/generic/openwrt-ramips-rt305x-ht-tm02-squashfs-sysupgrade.bin . Be aware that the trunk snapshots are bleeding edge and may contain random bugs so, unless you have some specific reason to move to a later snapshot you may avoid problems by sticking with r42649 for now.
INITIAL CONFIGURATION
OpenWRT is initially configured as an Internet access device (i.e. routed client bridge) so you should be able to add the wifi interface (WWAN) and associate with your wifi network. Relayd is already present so you may want to create that interface as well. I'm using a TM02 freshly upgraded as a client bridge with relayd as I write this.
SUPPORT ISSUES
A few people have flagged issues that they couldn't complete step 7 because they couldn't find the openwrt trunk or that they couldn't load kernel modules. My assumption (perhaps wrong) is that those attempting this install would use openwrt.org as a resource and there is an excellent wiki and forum there as well as a "Downloads" link on the main page. I strongly suggest one read the HT-TM02 thread in the forum as an adjunct to this GitHub page (link below).
Useful links:
OpenWRT main page http://openwrt.org
OpenWRT wiki http://wiki.openwrt.org
HT-TM02 thread https://forum.openwrt.org/viewtopic.php?id=53014
As has been written by many wise men "search is your friend" and the "search" function on the openwrt.org website is most definitely your friend!
I've provided the link for the sysupgrade binary for step 7. Keep in mind that this is bleeding edge development software that get's revised frequently - sometimes injecting bugs. I've found revision r42649 to be very stable so upgrading to the latest trunk revision isn't necessarily a requirement and opkg can be configured to download packages from r42649.
WHAT HAPPENS DURING THE UPGRADE AND WHY YOU NEED A USB FLASH STICK
The TM02 with the factory software doesn't have enough RAM to untar/ungzip and assemble the complete TM02 flash MTD image for the upgrade so it requires a USB flash stick to use as workspace. So does the new loader. Having a clean USB flash stick plugged in is required.
The first thing the loader does is shutdown various services that might interfere with the flashing process and perhaps free up some RAM. Then it creates a complete backup of the factory flash MTD device written to your USB flash stick. It copys the entire TM02 MTD device as one file as well as each partition seperately to seperate files. The files are named appropriately and will be under the "HT_FLASH" directory on the stick. You can use this to revert back to factory if you wish. I'll writeup some instructions later for this.
Next the loader seperates the OpenWRT sysupgrade image and the new UBoot image from the overall upgrade file and ungzips and untars them. Then it assembles a new MTD device flash image which includes the new UBoot, the original factory "config" and "factory" MTD partitions, and the new OpenWRT sysupgrade image. This is then written to the TM02 MTD. A copy of this is also written to your flash stick as "openwrt.bin". Once that's all done it executes a "reboot" command. (Note:This doesn't appear to happen. Probably because the MTD has been completely overwritten as well as various services have been shutdown and removed from RAM.)
Ron Curry (Wingspinner)
LEGAL
The files on this site and these instructions are licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License
http://creativecommons.org/licenses/by-sa/3.0/ . OpenWRT sources and binarys are subject to the licensing requirements of OpenWRT.org. Some files may fall under other types of licenses.
No proprietary source code, binary files, or other proprietary intellectual property is included on this site to the best of our knowledge. Please notify us if you find otherwise and we will take appropriate action.
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
OpenWRT Flash Images for HT-TM02
================================
- openwrt-ramips-rt305x-ht-tm02-squashfs-factory-r42649.bin
This is the original "factory" image I released and have described in previous instructions.
It includes:
wpad-mini \
kmod-ledtrig-netdev kmod-ledtrig-timer kmod-leds-gpio kmod-ledtrig-default-on \
kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-net usbutils \
kmod-scsi-core kmod-scsi-generic kmod-fs-ext4 \
kmod-usb-storage kmod-usb-storage-extras block-mount \
kmod-usb-serial kmod-usb-serial-ftdi kmod-gpio-button-hotplug \
kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-utf8 luci luci-mod-admin-full \
kmod-app-samba luci-theme-openwrt luci-proto-relay relayd nano \
fstools
It has Luci, USB storage, Samba, USB-serial support and some others to make a fairly
complete system for experimentation. This is a "factory" image meaning you must use it
with the original HooToo firmware. It will remove the HooToo firmware and replace it
with OpenWRT revision 42649.
- openwrt-ramips-rt305x-ht-tm02-squashfs-factory-r44945-ws.bin
This is the same as above except with the latest (as of this writing 03-23-2015)
OpenWRT trunk revision software.
- openwrt-ramips-rt305x-ht-tm02-squashfs-factory-r44945-basic.bin
This is a basic image based the latest (as of this writing 03-23-2015)
OpenWRT trunk revision software with no additional packages for those who want to
start from scratch.
- packages-r44945
This is the complete set of packages for this revision. Download these for future use.
Please check instructions for how to use these here:
https://forum.openwrt.org/viewtopic.php?pid=248596#p248596 | {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: luci-app-firewall
Version: svn-r10532-1
Depends: libc, firewall
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 64415
Filename: luci-app-firewall_svn-r10532-1_ramips_24kec.ipk
Size: 65234
MD5Sum: c9c470a1a07d7e28dd5995e9dff89f2d
SHA256sum: 1f8124ddc469a71c35243c4534a1a547c6c2b1bcf6e1f2b4c9afe0ad3de70ace
Description: Firewall and Portforwarding application
Package: luci-base
Version: svn-r10532-1
Depends: libc, lua, libuci-lua, libubus-lua
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141319
Filename: luci-base_svn-r10532-1_ramips_24kec.ipk
Size: 142246
MD5Sum: 210dcfbca2fcbc3e9bf796eee6ea6688
SHA256sum: cdaee951cb9a9123631c88747ea88cf7f2eb1c26f28f5873da54344949cc7e83
Description: LuCI core libraries
Package: luci-lib-nixio
Version: svn-r10532-1
Depends: libc, luci-base
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29307
Filename: luci-lib-nixio_svn-r10532-1_ramips_24kec.ipk
Size: 29942
MD5Sum: 2eb09638e1cc59d04356ebc1eb857451
SHA256sum: 4992ec26dfd8adcd7cba63d24d798f7f52674e1a6f74eb807fa2b9387e358153
Description: NIXIO POSIX library
Package: luci-mod-admin-full
Version: svn-r10532-1
Depends: libc, luci-base
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67049
Filename: luci-mod-admin-full_svn-r10532-1_ramips_24kec.ipk
Size: 67863
MD5Sum: 375ed242de8436420feb7c37029b8a0b
SHA256sum: 5282034b380ce98d86d66e2a0befa81bea72d55aa4621688ad3ecb3b9548706c
Description: LuCI Administration - full-featured for full control
Package: luci-proto-ppp
Version: svn-r10532-1
Depends: libc
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3001
Filename: luci-proto-ppp_svn-r10532-1_ramips_24kec.ipk
Size: 3713
MD5Sum: 891983464c6a7e52aa35619139f2f675
SHA256sum: 5c2d59187bacfc285b36cf884bd8d22c61555664148a8ff1e7ceedd9c210a788
Description: Support for PPP/PPPoE/PPPoA/PPtP
Package: luci-proto-relay
Version: svn-r10532-1
Depends: libc, relayd
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2202
Filename: luci-proto-relay_svn-r10532-1_ramips_24kec.ipk
Size: 2936
MD5Sum: 9873e1142aabb235f230b043f22e48fd
SHA256sum: e37d61b4fa225ae2f461e27963f99fd57594c52ac17407045c9abb8392458d7b
Description: Support for relayd pseudo bridges
Package: luci-theme-bootstrap
Version: svn-r10532-1
Depends: libc
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12797
Filename: luci-theme-bootstrap_svn-r10532-1_ramips_24kec.ipk
Size: 13514
MD5Sum: ef988773ff9ae2ec80d33935ae78fc98
SHA256sum: 008ed876282ea6f66602718af2390ed879dcd3b53fa93fff2122accb4dde0775
Description: Bootstrap Theme (default)
Package: luci
Version: svn-r10532-1
Depends: libc, uhttpd, uhttpd-mod-ubus, luci-mod-admin-full, luci-theme-bootstrap, luci-app-firewall, luci-proto-ppp, libiwinfo-lua, luci-lib-nixio
Source: feeds/luci/contrib/package/luci
Section: luci
Maintainer: LuCI Development Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: luci_svn-r10532-1_ramips_24kec.ipk
Size: 926
MD5Sum: 4d9ac051bc2d05fb56ca9c305782ed9d
SHA256sum: 67ece4343e548873f42b16a553efd2443cb7ac5450d6a8eac5698a27399451da
Description: Standard OpenWrt set including full admin with ppp support and the default OpenWrt theme
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: base-files
Version: 156-r42649
Depends: libc, netifd, procd, jsonfilter
Source: package/base-files
Section: base
Architecture: ramips_24kec
Installed-Size: 35193
Filename: base-files_156-r42649_ramips_24kec.ipk
Size: 36103
MD5Sum: 8e9102368f81e895f12a6cb4d554badf
SHA256sum: 092057be33f736c99a5143fac8bcd58834a8044b422412562dd90a9ec72cd611
Description: This package contains a base filesystem and system scripts for OpenWrt.
Package: block-mount
Version: 2014-06-22-e0430f5c62f367e5a8e02755412977b02c3fc45e
Depends: libc, ubox, libubox, libuci
Source: package/system/fstools
License: GPLv2
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17162
Filename: block-mount_2014-06-22-e0430f5c62f367e5a8e02755412977b02c3fc45e_ramips_24kec.ipk
Size: 17935
MD5Sum: cc7b7dbde47e249d0392c85b59b631ad
SHA256sum: 893708db1f4e61ec8019e5c567a4f7eb1318522b6863a2f87d4be10b4d0b2d3b
Description: Block device mounting and checking
Package: busybox
Version: 1.22.1-2
Depends: libc
Source: package/utils/busybox
License: GPLv2 BSD-4c
LicenseFiles: LICENSE archival/libarchive/bz/LICENSE
Section: base
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 233161
Filename: busybox_1.22.1-2_ramips_24kec.ipk
Size: 232871
MD5Sum: dac627c76b8859599114cfbc1d35b6c4
SHA256sum: d8e5315584e8702a3e99c0d502d3fb44aad37db10f8aef0a8f5d76e0aeac197c
Description: The Swiss Army Knife of embedded Linux.
It slices, it dices, it makes Julian Fries.
Package: dnsmasq
Version: 2.71-5
Depends: libc
Source: package/network/services/dnsmasq
License: GPLv2
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 94337
Filename: dnsmasq_2.71-5_ramips_24kec.ipk
Size: 95048
MD5Sum: 454b7ded5b8eb279b675610be54aac7e
SHA256sum: 65fc95cf5c9a8ce2bf837cf704f0d79de26e6d003e475cfe9f3ed4923cab3f55
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
Package: dropbear
Version: 2014.65-2
Depends: libc
Source: package/network/services/dropbear
License: MIT
LicenseFiles: LICENSE libtomcrypt/LICENSE libtommath/LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 81648
Filename: dropbear_2014.65-2_ramips_24kec.ipk
Size: 82485
MD5Sum: a6f7909acccaa0f67d9a76e1e2174089
SHA256sum: bc0a094a42b7c49ad16178c43fb10258232684b5acb160fea9fe5a133db5547a
Description: A small SSH2 server/client designed for small memory environments.
Package: firewall
Version: 2014-09-19
Depends: libc, libubox, libubus, libuci, libip4tc, libip6tc, libxtables, kmod-ipt-core, kmod-ipt-nat
Source: package/network/config/firewall
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60356
Filename: firewall_2014-09-19_ramips_24kec.ipk
Size: 61042
MD5Sum: 0920fde79bc47b7f0bb5d9b178ebecd6
SHA256sum: 4297725114de00135b08386e66ccc5f94cc2d12e4371dab3984d368129e08232
Description: This package provides a config-compatible C implementation of the UCI firewall.
Package: fstools
Version: 2014-06-22-e0430f5c62f367e5a8e02755412977b02c3fc45e
Depends: libc, ubox
Source: package/system/fstools
License: GPLv2
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16784
Filename: fstools_2014-06-22-e0430f5c62f367e5a8e02755412977b02c3fc45e_ramips_24kec.ipk
Size: 17525
MD5Sum: 2198e923156e006e699c829f508ceabe
SHA256sum: 39e00cb6930792e0ae52b9d68796c4b689ba61dc4acab114728f7ea734f65908
Description: OpenWrt filesystem tools
Package: hostapd-common
Version: 2014-06-03-1
Depends: libc
Source: package/network/services/hostapd
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4380
Filename: hostapd-common_2014-06-03-1_ramips_24kec.ipk
Size: 5125
MD5Sum: 9fc262b11d5cfff0396d643bc7cb837b
SHA256sum: 11b315bb6f798d466b924230eee878164dc40e66b84eef942518388c4e322357
Description: hostapd/wpa_supplicant common support files
Package: ip6tables
Version: 1.4.21-1
Depends: libc, kmod-ip6tables, iptables
Source: package/network/utils/iptables
Section: net
Architecture: ramips_24kec
Installed-Size: 214
Filename: ip6tables_1.4.21-1_ramips_24kec.ipk
Size: 904
MD5Sum: 0c4dc97d283fa4d1da4aeabc47afa406
SHA256sum: 1cdbca8f6239a378988ff4a2150287fdff6f47132e2bd77be8988bfc0488ebc9
Description: IPv6 firewall administration tool
Package: iptables
Version: 1.4.21-1
Depends: libc, kmod-ipt-core, libip4tc, libip6tc, libxtables
Source: package/network/utils/iptables
Section: net
Architecture: ramips_24kec
Installed-Size: 49610
Filename: iptables_1.4.21-1_ramips_24kec.ipk
Size: 50385
MD5Sum: df96a034351ec23f2da38d646231d23f
SHA256sum: 5c8783eeb978309f7187764f01a035a34da2e3154f117f1e2768f158b1c5d020
Description: IP firewall administration tool.
Matches:
- icmp
- tcp
- udp
- comment
- conntrack
- limit
- mac
- mark
- multiport
- set
- state
- time
Targets:
- ACCEPT
- CT
- DNAT
- DROP
- REJECT
- LOG
- MARK
- MASQUERADE
- REDIRECT
- SET
- SNAT
- TCPMSS
Tables:
- filter
- mangle
- nat
- raw
Package: iw
Version: 3.15-1
Depends: libc, libnl-tiny
Source: package/network/utils/iw
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42682
Filename: iw_3.15-1_ramips_24kec.ipk
Size: 43459
MD5Sum: 1df08bdc2a06cfe530f468291a559af6
SHA256sum: b0d27401e8bcdbf866231e7b410f50fb2fc2a1f0fa603d73431b1860ec2f5fad
Description: cfg80211 interface configuration utility
Package: iwinfo
Version: 51
Depends: libc, libiwinfo
Source: package/network/utils/iwinfo
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5786
Filename: iwinfo_51_ramips_24kec.ipk
Size: 6518
MD5Sum: 71755dc76767123c862d55d2822d17d3
SHA256sum: dad0f009146300fafa8eb30ca0977e3081aa40796b6763d791bbf092106c658e
Description: Command line frontend for the wireless information library.
Package: jshn
Version: 2014-08-04-dffbc09baf71b294185a36048166d00066d433b5
Depends: libc, libjson-c, libubox, libblobmsg-json
Source: package/libs/libubox
License: ISC BSD-3c
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5419
Filename: jshn_2014-08-04-dffbc09baf71b294185a36048166d00066d433b5_ramips_24kec.ipk
Size: 6225
MD5Sum: e670b70a446977e95cd192f4ab9f58d6
SHA256sum: 074c9c40123d9d53cc1e70645d545dcde5e40b3d98d11ec80dd8f2ecacd26e6f
Description: Library for parsing and generating JSON from shell scripts
Package: jsonfilter
Version: 2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9
Depends: libc, libubox, libjson-c
Source: package/utils/jsonfilter
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7976
Filename: jsonfilter_2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9_ramips_24kec.ipk
Size: 8758
MD5Sum: 2c28a0e11215b8a1e0d794f8a165ebf3
SHA256sum: 29db38aca9f78b0bc3c2d138d43d0f9191da5df47e6873b2a78c7fee34362fee
Description: OpenWrt JSON filter utility
Package: kmod-cfg80211
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), iw
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 110417
Filename: kmod-cfg80211_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 110954
MD5Sum: 7f3c2e3c44a2e93743e9194cc74a34c8
SHA256sum: 917281723d528bc120fccf135c8c3019e93b481fdf3e4cbbd921f39a344978d1
Description: cfg80211 is the Linux wireless LAN (802.11) configuration API.
Package: kmod-crypto-aes
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-aes_3.14.18-1_ramips_24kec.ipk
Size: 852
MD5Sum: c08ac637daf185eb445777cb6d4de2b9
SHA256sum: 3891bb19ee7c6e5f28d38a13c289aef189c01532be5efcc43319922c34fb1de1
Description: AES cipher CryptoAPI module
Package: kmod-crypto-arc4
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1224
Filename: kmod-crypto-arc4_3.14.18-1_ramips_24kec.ipk
Size: 2006
MD5Sum: 6034635a32a042b8a1a26b5957ba1736
SHA256sum: 1e61dda320b6a3f99baea9af4dbaaa336d5975b4ecf0d51b6b4da69b6298bb5b
Description: ARC4 (RC4) cipher CryptoAPI module
Package: kmod-crypto-core
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7085
Filename: kmod-crypto-core_3.14.18-1_ramips_24kec.ipk
Size: 7882
MD5Sum: 9b492026511fbdb5195bc3c7b9fa0862
SHA256sum: 7eaa0fcd2f3093a2a4a2f723995fee179d31edc95cf4e6daeae85c3fa1252d3a
Description: Core CryptoAPI modules
Package: kmod-eeprom-93cx6
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1576
Filename: kmod-eeprom-93cx6_3.14.18-1_ramips_24kec.ipk
Size: 2361
MD5Sum: 2429f3542101c864b3e228d58512f02c
SHA256sum: 6381b629b045790ef3fb01b6c860a102d0080e39f4050b311d8aa6e5a70d8b24
Description: Kernel module for EEPROM 93CX6 support
Package: kmod-fs-vfat
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 37238
Filename: kmod-fs-vfat_3.14.18-1_ramips_24kec.ipk
Size: 37919
MD5Sum: 5cebef8403485df9d8a71dc0d790f5d0
SHA256sum: 52d3b978b21871a54af496302b360766aa6bd8043b11e8b61873b0a311b113f0
Description: Kernel module for VFAT filesystem support
Package: kmod-gpio-button-hotplug
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/gpio-button-hotplug
Section: kernel
Architecture: ramips_24kec
Installed-Size: 5242
Filename: kmod-gpio-button-hotplug_3.14.18-1_ramips_24kec.ipk
Size: 6133
MD5Sum: 4bf76c65fc8987cb66db94ba171df0e9
SHA256sum: 5662302e6dbf898f83708b977c67e94013473b6e19f2387bffbb198c697fa191
Description: This is a replacement for the following in-kernel drivers:
1) gpio_keys (KEYBOARD_GPIO)
2) gpio_keys_polled (KEYBOARD_GPIO_POLLED)
Instead of generating input events (like in-kernel drivers do) it generates
uevent-s and broadcasts them. This allows disabling input subsystem which is
an overkill for OpenWrt simple needs.
Package: kmod-ip6tables
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nf-ipt6, kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4340
Filename: kmod-ip6tables_3.14.18-1_ramips_24kec.ipk
Size: 5092
MD5Sum: 1ba1cf38db898c8d5264eb7e1300ed72
SHA256sum: 306630ec1fcc7ad3a38fbec173c38c4e93e1fe7dba84085d21778d48fa563b82
Description: Netfilter IPv6 firewalling support
Package: kmod-ipt-conntrack
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-ipt-core, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4655
Filename: kmod-ipt-conntrack_3.14.18-1_ramips_24kec.ipk
Size: 5454
MD5Sum: 3af1c5abd49776c0d245547c67fcd583
SHA256sum: 9b1ef5afe32d109652b4cedd2a6b60314e0f1c3580c2142df301db4760e1ffb5
Description: Netfilter (IPv4) kernel modules for connection tracking
Includes:
- conntrack
- defrag
- iptables_raw
- NOTRACK
- state
Package: kmod-ipt-core
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nf-ipt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 17467
Filename: kmod-ipt-core_3.14.18-1_ramips_24kec.ipk
Size: 18276
MD5Sum: 76ef2f043439d099f4dbcfe0753cd071
SHA256sum: 36dd8e87be9374125fe134618d3a66bdedb37716637712a4354ff2fb60b4bf72
Description: Netfilter core kernel modules
Includes:
- comment
- limit
- LOG
- mac
- multiport
- REJECT
- TCPMSS
Package: kmod-ipt-nat
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-ipt-core, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4358
Filename: kmod-ipt-nat_3.14.18-1_ramips_24kec.ipk
Size: 5107
MD5Sum: d5b62e43ac622a97d89c78d2e04d5cf7
SHA256sum: 10667cd91bc6c7f6bec2cb7b765f72926e224bce7ae5e3836f452d85cbc35927
Description: Netfilter (IPv4) kernel modules for basic NAT targets
Includes:
- MASQUERADE
Package: kmod-ipv6
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 153916
Filename: kmod-ipv6_3.14.18-1_ramips_24kec.ipk
Size: 154040
MD5Sum: 7b7be91ed6bae2c34d93acca9f46830a
SHA256sum: e77ded6b11b69664f7705213d9a7b9ab4bf3071bf4823a6bef7312c6482ad144
Description: Kernel modules for IPv6 support
Package: kmod-leds-gpio
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2746
Filename: kmod-leds-gpio_3.14.18-1_ramips_24kec.ipk
Size: 3485
MD5Sum: 003c8d786896ef9746568a94eaf17e36
SHA256sum: e8a9c3db10a6be21fe808a6506e0893751dd865f87f58663ce59733baca4ab7d
Description: Kernel module for LEDs on GPIO lines
Package: kmod-ledtrig-default-on
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-ledtrig-default-on_3.14.18-1_ramips_24kec.ipk
Size: 872
MD5Sum: 27d58ed386e5341a49baa36a133bd2cf
SHA256sum: 4285966d103c2f377716611008ef2292077c8549088b3e5281bb1d4b2f8abcb2
Description: Kernel module that allows LEDs to be initialised in the ON state
Package: kmod-ledtrig-netdev
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-ledtrig-netdev_3.14.18-1_ramips_24kec.ipk
Size: 862
MD5Sum: bb06abba17bb3d5b135c1a968d805493
SHA256sum: d8d58f9926a19d8a0de030d6dd054ee7fe5577896d9f814eb50b54a22968e92b
Description: Kernel module to drive LEDs based on network activity
Package: kmod-ledtrig-timer
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-ledtrig-timer_3.14.18-1_ramips_24kec.ipk
Size: 872
MD5Sum: de7fdde07e5c5492e6fa499b96f296f5
SHA256sum: 76a07073d9d1c9138c61e6a45e5d809415d480e0a520c69e9752dfa127bc1cf1
Description: Kernel module that allows LEDs to be controlled by a programmable timer
via sysfs
Package: kmod-lib-crc-ccitt
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1325
Filename: kmod-lib-crc-ccitt_3.14.18-1_ramips_24kec.ipk
Size: 2095
MD5Sum: 3822023301b807845cd2da30cb253801
SHA256sum: bca8117e9b63f6e5f6c5cd567b9d14f8daaaf3d72c1de81a387e97b3943b5d8a
Description: Kernel module for CRC-CCITT support
Package: kmod-lib-crc-itu-t
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1331
Filename: kmod-lib-crc-itu-t_3.14.18-1_ramips_24kec.ipk
Size: 2102
MD5Sum: e315ac648a84e9520f9f28bfbe2ebab8
SHA256sum: 2d9d775438a2c221868a55f7fe2c9c77acc2d7f7e402d3b81c2808aa1d6373a3
Description: Kernel module for CRC ITU-T V.41 support
Package: kmod-mac80211
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-crypto-core, kmod-crypto-arc4, kmod-crypto-aes, kmod-cfg80211, hostapd-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 199402
Filename: kmod-mac80211_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 199051
MD5Sum: c36464a0cd5932567b4857131dcb949b
SHA256sum: deb1bc782ae506ead672a79d342e88c8e4ce1e908b33c8a8157729ac94aea010
Description: Generic IEEE 802.11 Networking Stack (mac80211)
Package: kmod-nf-conntrack6
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-ipv6, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8835
Filename: kmod-nf-conntrack6_3.14.18-1_ramips_24kec.ipk
Size: 9598
MD5Sum: c275aea101d2de7e9308c9e74f22a305
SHA256sum: 3b5c659cda5d58a4414db50e5e033533106355a96f52663766e272caa4f91110
Description: Netfilter IPv6 connection tracking
Package: kmod-nf-conntrack
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 34596
Filename: kmod-nf-conntrack_3.14.18-1_ramips_24kec.ipk
Size: 35392
MD5Sum: 690b8887be80d99a718da4182e9221e5
SHA256sum: 84f8393f0c0e8a32fb1244729f4476c9adb08523c3e367ca9d08659b6b56ab67
Description: Netfilter connection tracking
Package: kmod-nf-ipt6
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nf-ipt, kmod-nf-conntrack6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7398
Filename: kmod-nf-ipt6_3.14.18-1_ramips_24kec.ipk
Size: 8161
MD5Sum: e49ede99f30d589fc6ba657fb87c6cbf
SHA256sum: dc551ac2f3522e54322cfa7ce763514f9ee795c43f5d2cb0d8288b9287b0b67e
Description: Ip6tables core
Package: kmod-nf-ipt
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14418
Filename: kmod-nf-ipt_3.14.18-1_ramips_24kec.ipk
Size: 15103
MD5Sum: 83fd229951263246cc5cbb9787b33662
SHA256sum: aec0410f9541fda00d2e75d3859c730df838a830db30a174cc64a9f44d3f295f
Description: Iptables core
Package: kmod-nf-nat
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nf-conntrack, kmod-nf-ipt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9133
Filename: kmod-nf-nat_3.14.18-1_ramips_24kec.ipk
Size: 9910
MD5Sum: d7f89aca11d3c1321fb03884b456c32d
SHA256sum: d3fb3a6c5de7acd459edbec93eab72399ebdedf1e47a72927b401592dbe4d95c
Description: Netfilter NAT
Package: kmod-nf-nathelper
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8008
Filename: kmod-nf-nathelper_3.14.18-1_ramips_24kec.ipk
Size: 8820
MD5Sum: 495b95ec03ec085288fb10fee6502fb8
SHA256sum: fcc8a7cf38679ee9b1283e28cf5f5ad42a85e9c2cb50cb952c4734052b7176ce
Description: Default Netfilter (IPv4) Conntrack and NAT helpers
Includes:
- ftp
- irc
- tftp
Package: kmod-nls-base
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3129
Filename: kmod-nls-base_3.14.18-1_ramips_24kec.ipk
Size: 3882
MD5Sum: d374245722decaef5d41d22ee49dcb46
SHA256sum: 8d8df094cba9c0525f5e140f26c333854e07dfcf52beaa5c40a5342fc1047c18
Description: Kernel module for NLS (Native Language Support)
Package: kmod-nls-cp437
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2070
Filename: kmod-nls-cp437_3.14.18-1_ramips_24kec.ipk
Size: 2847
MD5Sum: c0f6aa195cc83e29ea20b41d29c2147d
SHA256sum: f00ccb3f565dbef358b878debdf582a1a8e02b335ca1e386ce5fad6ebf03f7b6
Description: Kernel module for NLS Codepage 437 (United States, Canada)
Package: kmod-nls-iso8859-1
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1698
Filename: kmod-nls-iso8859-1_3.14.18-1_ramips_24kec.ipk
Size: 2483
MD5Sum: 8528aca27b8af0f045d5f4d32e1f7127
SHA256sum: 29b4b1dab42121ff3ca46e1a15fce8204044925e44e8f0e07332cc073cf7d533
Description: Kernel module for NLS ISO 8859-1 (Latin 1)
Package: kmod-nls-utf8
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 995
Filename: kmod-nls-utf8_3.14.18-1_ramips_24kec.ipk
Size: 1758
MD5Sum: a4f998e294e756d7010d221c8815c323
SHA256sum: 6a064a2f6480a6b65ba4a823110418238e57798508740f6e4a5f28789e94ef8c
Description: Kernel module for NLS UTF-8
Package: kmod-ppp
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-lib-crc-ccitt, kmod-slhc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20121
Filename: kmod-ppp_3.14.18-1_ramips_24kec.ipk
Size: 20900
MD5Sum: 58a463c065135208f53bc0854c7702ab
SHA256sum: c97d18924bd761197b0228a4940e26090f478347a281a37f0eb264b420eb6085
Description: Kernel modules for PPP support
Package: kmod-pppoe
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-ppp, kmod-pppox
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6285
Filename: kmod-pppoe_3.14.18-1_ramips_24kec.ipk
Size: 7095
MD5Sum: a484068b46f17451d40e690a3e38b49d
SHA256sum: 41f0b931f1a76f9e24cbadeb301929a8054688d5203ec74f04d53f49b30a4db5
Description: Kernel module for PPPoE (PPP over Ethernet) support
Package: kmod-pppox
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1570
Filename: kmod-pppox_3.14.18-1_ramips_24kec.ipk
Size: 2346
MD5Sum: 8116e0bc01310e52c42b6d411a9833b6
SHA256sum: 643c5d73a252607dd8ffa4b92c2aee0a305ec799e6e4738ddf33dcb3661524a0
Description: Kernel helper module for PPPoE and PPTP support
Package: kmod-rt2800-lib
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-rt2x00-lib, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38087
Filename: kmod-rt2800-lib_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 38185
MD5Sum: cb6f7119ab32d9d1e15dd97f4af25da5
SHA256sum: d4d5bb0d4faa4ac56ed52533c29f5af5a419e1b877de0494085dc15ebdae0094
Description: Ralink Drivers for RT2x00 cards (rt2800 LIB)
Package: kmod-rt2800-mmio
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-rt2800-lib, kmod-rt2x00-mmio
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4215
Filename: kmod-rt2800-mmio_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 4986
MD5Sum: 6bab87578820150f66d0677220c4a993
SHA256sum: 08a0c14894b411cb3d91298103b35a6a168892a064ecad4373eaf605fda163d2
Description: Ralink Drivers for RT2x00 cards (RT28xx/RT3xxx MMIO)
Package: kmod-rt2800-soc
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-rt2800-mmio, kmod-rt2800-lib
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4003
Filename: kmod-rt2800-soc_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 4794
MD5Sum: 4299a7038f0d89de72f3403a2f5218bd
SHA256sum: 4f09e969df04f854363d5aaaf4291bbf4c84dfad8b6b44508e4c884a4418db94
Description: Ralink Drivers for RT2x00 cards (RT28xx/RT3xxx SoC)
Package: kmod-rt2x00-lib
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-mac80211, kmod-lib-crc-itu-t
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20863
Filename: kmod-rt2x00-lib_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 21603
MD5Sum: 14a0a18c5ce22c0e5218e5aedf328ade
SHA256sum: b450d6cac9c5a62b55ea44e88487f802ddd0e34e46da6662aef9186a8e8b5898
Description: Ralink Drivers for RT2x00 cards (LIB)
Package: kmod-rt2x00-mmio
Version: 3.14.18+2014-05-22-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-rt2x00-lib, kmod-eeprom-93cx6
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1942
Filename: kmod-rt2x00-mmio_3.14.18+2014-05-22-1_ramips_24kec.ipk
Size: 2741
MD5Sum: eaa7e425d1312a69fa3cb8849b81e29d
SHA256sum: 1d396143136b4b44d03420ffeb286b482973e31de00da8e31ade764ce59e29df
Description: Ralink Drivers for RT2x00 cards (MMIO)
Package: kmod-scsi-core
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 73423
Filename: kmod-scsi-core_3.14.18-1_ramips_24kec.ipk
Size: 73796
MD5Sum: ae00403ec6c393d8674fe3a8f0298690
SHA256sum: 3b7d65e4bf8af6d4a06c005fafb7daa3744f033893a505a1261c6416ac7eceaa
Description: SCSI device support
Package: kmod-scsi-generic
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-scsi-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15000
Filename: kmod-scsi-generic_3.14.18-1_ramips_24kec.ipk
Size: 15734
MD5Sum: dd3d77f41dcd5ea879083f398fa40ff4
SHA256sum: e6b87383e6a5f414d11f2340ee18bde679a205db26b371970b7bbe4995c86fed
Description: Kernel support for SCSI generic
Package: kmod-slhc
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-lib-crc-ccitt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3372
Filename: kmod-slhc_3.14.18-1_ramips_24kec.ipk
Size: 4150
MD5Sum: b37ac3a9c9322b54b9ac9caf3c95379c
SHA256sum: a28ea4aeb474f1ebe7cbb683064e68f58a761a1e973d0cef5e09f8486ecea93d
Description: Serial Line Header Compression
Package: kmod-usb-core
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 71677
Filename: kmod-usb-core_3.14.18-1_ramips_24kec.ipk
Size: 72226
MD5Sum: cfff3af5edb6a0d9126100170bf07732
SHA256sum: aba29f63ddf8e1d0bc025d494e2ddf01f58cdda0978f224c7cb4e8c68b8834a4
Description: Kernel support for USB
Package: kmod-usb-ohci
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16963
Filename: kmod-usb-ohci_3.14.18-1_ramips_24kec.ipk
Size: 17720
MD5Sum: c8497103783248b4f880dbb5fd2d7bb8
SHA256sum: 705a8c99b47762084ad5ee0862775710d1d49f83dd5c25e2bcec43dec6493a3f
Description: Kernel support for USB OHCI controllers
Package: kmod-usb-serial-ftdi
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10157
Filename: kmod-usb-serial-ftdi_3.14.18-1_ramips_24kec.ipk
Size: 10849
MD5Sum: 0b54ccd924deb028e10be3e8707f3117
SHA256sum: 2bda0f7f38467fe63899c12b208986a6309c56061d38ea559ff1a1762a14dc47
Description: Kernel support for FTDI USB-to-Serial converters
Package: kmod-usb-serial
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12734
Filename: kmod-usb-serial_3.14.18-1_ramips_24kec.ipk
Size: 13495
MD5Sum: cf1720c623d98854346df9fc4b250024
SHA256sum: 92df7426df14ac4da379d152f7f51a597653d10fd50e3ba5063d4362fe20ddf6
Description: Kernel support for USB-to-Serial converters
Package: kmod-usb-storage-extras
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-usb-storage
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 29347
Filename: kmod-usb-storage-extras_3.14.18-1_ramips_24kec.ipk
Size: 30146
MD5Sum: 7523c431e7db01a89b15c6dd3d8068aa
SHA256sum: 9757d9f70386677a8232accf236164eeae56de0e63c4195a50ed682578c21ba2
Description: Say Y here if you want to have some more drivers,
such as for SmartMedia card readers
Package: kmod-usb-storage
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-scsi-core, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20764
Filename: kmod-usb-storage_3.14.18-1_ramips_24kec.ipk
Size: 21138
MD5Sum: fd8e19c0565476db7029d14d28ca9059
SHA256sum: 12946f2f6c8ae43cbabe1cfa7857ad105347c4b0e99128b04ac19b6c39ecc100
Description: Kernel support for USB Mass Storage devices
Package: kmod-usb2
Version: 3.14.18-1
Depends: kernel (=3.14.18-1-22d955a3a14c316ed6c91aaac9331312), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 23525
Filename: kmod-usb2_3.14.18-1_ramips_24kec.ipk
Size: 24231
MD5Sum: bba1640227c7006a001feb52a9ed542a
SHA256sum: 637dbd2de8f01bf7ca002e399bca89ed85c50d11abf0dd707d5abe8f27cbefca
Description: Kernel support for USB2 (EHCI) controllers
Package: libblobmsg-json
Version: 2014-08-04-dffbc09baf71b294185a36048166d00066d433b5
Depends: libc, libjson-c, libubox
Source: package/libs/libubox
License: ISC BSD-3c
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3727
Filename: libblobmsg-json_2014-08-04-dffbc09baf71b294185a36048166d00066d433b5_ramips_24kec.ipk
Size: 4508
MD5Sum: ee4e2951712956c80c589afb19bfb75e
SHA256sum: 9d70e46ce085ecab50f622d82ed403e2c486f8383835e4810918b44f22ffccb1
Description: blobmsg <-> json conversion library
Package: libgcc
Version: 4.8-linaro-1
Source: package/libs/toolchain
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31589
Filename: libgcc_4.8-linaro-1_ramips_24kec.ipk
Size: 32289
MD5Sum: 6c1868e8960416c59b35405fbfb2bcbd
SHA256sum: 510e41593bb6fb4901cb29e03f7db0403e53c7155c1fc64e3d77eb4d0e6a079e
Description: GCC support library
Package: libip4tc
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
Section: libs
Architecture: ramips_24kec
Installed-Size: 10185
Filename: libip4tc_1.4.21-1_ramips_24kec.ipk
Size: 10852
MD5Sum: d2b3e10b70ac7ccefaf9284021d72114
SHA256sum: 584bba410c7d18daac42b9c2bc66d1e53234fd4d70a1c1d89fef56bf14ea20db
Description: IPv4 firewall - shared libiptc library
Package: libip6tc
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
Section: libs
Architecture: ramips_24kec
Installed-Size: 10575
Filename: libip6tc_1.4.21-1_ramips_24kec.ipk
Size: 11273
MD5Sum: e77eb2d44d7fc218c1cfcf6f020b7960
SHA256sum: 3a6bc1c5b28f3ba0ee803b9484d8ad6ad644517be01fc1eb967c58a0c3275d5e
Description: IPv6 firewall - shared libiptc library
Package: libiwinfo-lua
Version: 51
Depends: libc, libiwinfo, liblua
Source: package/network/utils/iwinfo
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5580
Filename: libiwinfo-lua_51_ramips_24kec.ipk
Size: 6281
MD5Sum: b9cd7ffcfd85eb0294dd844c13e37e70
SHA256sum: 634e27ed48b549bfa7781f3fcb92c07667609fb88ffc4643ad18b1d0d95a7d74
Description: This is the Lua binding for the iwinfo library. It provides access to all enabled
backends.
Package: libiwinfo
Version: 51
Depends: libc, libnl-tiny
Source: package/network/utils/iwinfo
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22365
Filename: libiwinfo_51_ramips_24kec.ipk
Size: 23119
MD5Sum: a061a9e20f769bd74fc7fc046b2c56c5
SHA256sum: c00209e9bc76cf586734c13288768f6ac145520695bdff8352c511b3d6147fe3
Description: Wireless information library with consistent interface for proprietary Broadcom,
madwifi, nl80211 and wext driver interfaces.
Package: libjson-c
Version: 0.11-2
Depends: libc
Source: package/libs/libjson-c
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12884
Filename: libjson-c_0.11-2_ramips_24kec.ipk
Size: 13627
MD5Sum: a382f82c9ea784a163e86079ab48e93a
SHA256sum: 691d617fcbb85d70c13d71a20f9e86627db39e1ba4db2b81340dfc52123a1fce
Description: This package contains a library for javascript object notation backends.
Package: libjson-script
Version: 2014-08-04-dffbc09baf71b294185a36048166d00066d433b5
Depends: libc, libubox
Source: package/libs/libubox
License: ISC BSD-3c
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5219
Filename: libjson-script_2014-08-04-dffbc09baf71b294185a36048166d00066d433b5_ramips_24kec.ipk
Size: 5971
MD5Sum: 43d97cc800a91ef15ce3f2c67d54a4c5
SHA256sum: be4016228955625cd1c40cf8b62dfb84b1e4eec72e3fa2939d9e0cf08e999776
Description: Minimalistic JSON based scripting engine
Package: liblua
Version: 5.1.5-1
Depends: libc
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 72972
Filename: liblua_5.1.5-1_ramips_24kec.ipk
Size: 73529
MD5Sum: b3603d95e0a40a2f8a7d27566618175f
SHA256sum: c31fb72bd5e83500cf7c0360ed486a1823444dfe122290001b4c21f508268814
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua shared libraries, needed by other programs.
Package: libnl-tiny
Version: 0.1-3
Depends: libc
Source: package/libs/libnl-tiny
License: GPLv2 LGPLv2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12967
Filename: libnl-tiny_0.1-3_ramips_24kec.ipk
Size: 13708
MD5Sum: 5a726f7a846e78c51531f2b04868404d
SHA256sum: e2a3c54519a9cb2820a9efba1b692e5473f18d9a8e32e14c610a1b76cd8542e5
Description: This package contains a stripped down version of libnl
Package: libubox
Version: 2014-08-04-dffbc09baf71b294185a36048166d00066d433b5
Depends: libc
Source: package/libs/libubox
License: ISC BSD-3c
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15409
Filename: libubox_2014-08-04-dffbc09baf71b294185a36048166d00066d433b5_ramips_24kec.ipk
Size: 16126
MD5Sum: 6ead49e4c30f91962adbc3e37c2555dc
SHA256sum: edca085012a31193d64453bc9189b3313dbeb1951e1be0ff7f03661ad62a5618
Description: Basic utility library
Package: libubus-lua
Version: 2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3
Depends: libc, libubus, liblua
Source: package/system/ubus
License: LGPLv2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5580
Filename: libubus-lua_2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3_ramips_24kec.ipk
Size: 6351
MD5Sum: e51d792aa993f628cc008647987d14e3
SHA256sum: f4a858a84655f24ef3bbef484a25bdad96787644d51c869a417a794b096712ef
Description: Lua binding for the OpenWrt RPC client
Package: libubus
Version: 2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3
Depends: libc, libubox
Source: package/system/ubus
License: LGPLv2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9078
Filename: libubus_2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3_ramips_24kec.ipk
Size: 9817
MD5Sum: 0c4395be0529fc3a9a5e8162ead2176f
SHA256sum: f7e9e9c99c9d7926b06972cbeeee8f122ea44ddc23eb880aa192419dc357404e
Description: OpenWrt RPC client library
Package: libuci-lua
Version: 2014-04-11.1-1
Depends: libc, libuci, liblua
Source: package/system/uci
License: LGPLv2.1 GPLv2
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6286
Filename: libuci-lua_2014-04-11.1-1_ramips_24kec.ipk
Size: 7013
MD5Sum: d3aec12fd3bb9af46933d945afdc3d73
SHA256sum: 850aaa4f0d55037f6dc4b928b7ea65cb1295ab5a130ed5cbde0dfb835cec46b3
Description: Lua plugin for UCI
Package: libuci
Version: 2014-04-11.1-1
Depends: libc, libubox
Source: package/system/uci
License: LGPLv2.1 GPLv2
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16573
Filename: libuci_2014-04-11.1-1_ramips_24kec.ipk
Size: 17349
MD5Sum: 084914d02275af5868dd0d30b7d34660
SHA256sum: 3b915bf278d9988352700fcec4b29c913629810115abb8261e187a253a1a8293
Description: C library for the Unified Configuration Interface (UCI)
Package: libxtables
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
Section: libs
Architecture: ramips_24kec
Installed-Size: 17136
Filename: libxtables_1.4.21-1_ramips_24kec.ipk
Size: 17823
MD5Sum: 9b2a5a9edf9f3a4f8dad032e47ebe724
SHA256sum: 6a8e8ab02e72a0ed1ceed3ef8e1d7f9a5fbdefc8ee98ec66c62a1a1629ddb372
Description: IPv4/IPv6 firewall - shared xtables library
Package: lua
Version: 5.1.5-1
Depends: libc, liblua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4642
Filename: lua_5.1.5-1_ramips_24kec.ipk
Size: 5472
MD5Sum: a75e5bdcdd83c602da8721d134f3aab4
SHA256sum: 30c642158f0895eaf9f84cdc9ffdb5262c66216df36bd0d7d37575d6f49940be
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua language interpreter.
Package: mtd
Version: 20
Depends: libc, libubox
Source: package/system/mtd
License: GPLv2 GPLv2+
Section: utils
Architecture: ramips_24kec
Installed-Size: 12186
Filename: mtd_20_ramips_24kec.ipk
Size: 12901
MD5Sum: d5a6d73554b567a0a32a1a0bc78ac851
SHA256sum: c1f087b85263900ace5e729152469c285f4b72a490a3d15db768b12177d46efc
Description: This package contains an utility useful to upgrade from other firmware or
older OpenWrt releases.
Package: netifd
Version: 2014-09-08-46c569989f984226916fec28dd8ef152a664043e
Depends: libc, libuci, libnl-tiny, libubus, ubus, ubusd, jshn, libubox
Source: package/network/config/netifd
License: GPLv2
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58281
Filename: netifd_2014-09-08-46c569989f984226916fec28dd8ef152a664043e_ramips_24kec.ipk
Size: 58853
MD5Sum: f78ed70918c412c36c995943d5fe3e32
SHA256sum: 54adfd35271c62e59448cb6856f055ebda28292b44cdb9d893e38d10aadde02f
Description: OpenWrt Network Interface Configuration Daemon
Package: odhcp6c
Version: 2014-08-25-0300fe7589a1701361735ac068e4b57bb1a1896f
Depends: libc, kmod-ipv6
Source: package/network/ipv6/odhcp6c
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22634
Filename: odhcp6c_2014-08-25-0300fe7589a1701361735ac068e4b57bb1a1896f_ramips_24kec.ipk
Size: 23386
MD5Sum: b637d7cb960aba1128badf2ad21a0664
SHA256sum: 81fa9c2e13159bf44c67e7bbef792305fe8356b28996574d9376ee26941e4ea1
Description: Embedded DHCPv6-client for OpenWrt
Package: odhcpd
Version: 2014-08-23-24452e1e3e9adfd9d8e183db1aa589f77727f5a7
Depends: libc, libubox, libuci, libubus
Source: package/network/services/odhcpd
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30607
Filename: odhcpd_2014-08-23-24452e1e3e9adfd9d8e183db1aa589f77727f5a7_ramips_24kec.ipk
Size: 31417
MD5Sum: 0bd7570f4bd6926b4182a5af35bd5322
SHA256sum: e76d5022e4a57347de4e1d9767981de7f925fdd98c9aaa14c039d72e90b2d418
Description: odhcpd is a daemon for serving and relaying IP management protocols to
configure clients and downstream routers. It tries to follow the RFC 6204
requirements for IPv6 home routers.
odhcpd provides server services for DHCP, RA, stateless and stateful DHCPv6,
prefix delegation and can be used to relay RA, DHCPv6 and NDP between routed
(non-bridged) interfaces in case no delegated prefixes are available.
Package: opkg
Version: 9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7
Depends: libc
Source: package/system/opkg
License: GPLv2
LicenseFiles: COPYING
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56305
Filename: opkg_9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7_ramips_24kec.ipk
Size: 57236
MD5Sum: 04df9c10a0cc726db6382e3d86166c07
SHA256sum: c8cd5d8dccd11ba2fd41a5599cf62570eefd4e6c0448bd684297bd41992ec3ed
Description: Lightweight package management system
opkg is the opkg Package Management System, for handling
installation and removal of packages on a system. It can
recursively follow dependencies and download all packages
necessary to install a particular package.
opkg knows how to install both .ipk and .deb packages.
Package: ppp-mod-pppoe
Version: 2.4.7-2
Depends: libc, kmod-pppoe
Source: package/network/services/ppp
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9515
Filename: ppp-mod-pppoe_2.4.7-2_ramips_24kec.ipk
Size: 10254
MD5Sum: bf07381b7382098f22ced8d3aa02e435
SHA256sum: 8ee20da45a13a526084e097e0dc0bbb5cc9b5562cadbd3dd3ec646de19d8e431
Description: This package contains a PPPoE (PPP over Ethernet) plugin for ppp.
Package: ppp
Version: 2.4.7-2
Depends: libc, kmod-ppp
Source: package/network/services/ppp
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106276
Filename: ppp_2.4.7-2_ramips_24kec.ipk
Size: 106986
MD5Sum: ae1bf21fb0fc12288a5e4b8166f6a47d
SHA256sum: 3a292e984c4705c2af06ba5cd137bb486c17bc9a7afee77e88ab08ef343cc20b
Description: This package contains the PPP (Point-to-Point Protocol) daemon.
Package: procd
Version: 2014-09-15-c1a558f7d0c1e6c1ffa5a47d557a7b45205eef1d
Depends: libc, ubusd, ubus, libjson-script, ubox, libubox, libubus
Source: package/system/procd
License: GPLv2
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33647
Filename: procd_2014-09-15-c1a558f7d0c1e6c1ffa5a47d557a7b45205eef1d_ramips_24kec.ipk
Size: 34283
MD5Sum: 45ac2cd8261487dacab362b34cc9255c
SHA256sum: 84051147e302485d638882857258fc535edb474d180c3e755ee16e3ffd6e8607
Description: OpenWrt system process manager
Package: relayd
Version: 2014-06-29-8b20ffae06b9b7fcc6fb52d3b8a80b45ed424e39
Depends: libc, libubox
Source: package/network/services/relayd
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9867
Filename: relayd_2014-06-29-8b20ffae06b9b7fcc6fb52d3b8a80b45ed424e39_ramips_24kec.ipk
Size: 10621
MD5Sum: dd2074f92b656f164e67127e0234067f
SHA256sum: 7dc735a130049125339e07a418b0eef1765632eff801ac21d5968d8af1da51d7
Description: Transparent routing / relay daemon
Package: swconfig
Version: 10
Depends: libc, libuci, libnl-tiny
Source: package/network/config/swconfig
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7825
Filename: swconfig_10_ramips_24kec.ipk
Size: 8587
MD5Sum: 332424537d31d82edad3c108cc74a8a1
SHA256sum: 598b85ca8a1dffae600c49b8d08e608a9eb6f4331c09a3ffa2901db09206d97a
Description: Switch configuration utility
Package: ubox
Version: 2014-09-16-5c45b560bc8c9e13682269ed963a8a4a65959518
Depends: libc, libubox, ubusd, ubus, libubus, libuci
Source: package/system/ubox
License: GPLv2
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23314
Filename: ubox_2014-09-16-5c45b560bc8c9e13682269ed963a8a4a65959518_ramips_24kec.ipk
Size: 24050
MD5Sum: 673b4a5ed03066adfdf21fdf933f7a58
SHA256sum: 6f14064842d4b2a9fe6debc60896a6625a559f8686b281f19aeafe47248a3add
Description: OpenWrt system helper toolbox
Package: ubus
Version: 2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3
Depends: libc, libubus, libblobmsg-json, ubusd
Source: package/system/ubus
License: LGPLv2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4090
Filename: ubus_2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3_ramips_24kec.ipk
Size: 4836
MD5Sum: eee7aa29601f309c080fd7d0df3a7ad3
SHA256sum: ebcc9cfad9b1422678eca0f5c880e7c13fd971520ef619cf383ba996a79a7b61
Description: OpenWrt RPC client utility
Package: ubusd
Version: 2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3
Depends: libc, libubox
Source: package/system/ubus
License: LGPLv2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7617
Filename: ubusd_2014-09-17-4c4f35cf2230d70b9ddd87638ca911e8a563f2f3_ramips_24kec.ipk
Size: 8408
MD5Sum: c6734dd047d39c3f8dba032d6c5892d5
SHA256sum: 4829d1189a0d15e2bf7cc1f209c2d4df2c7efc6ac43e4ff05cddf427758008da
Description: OpenWrt RPC daemon
Package: uci
Version: 2014-04-11.1-1
Depends: libc, libuci
Source: package/system/uci
License: LGPLv2.1 GPLv2
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6817
Filename: uci_2014-04-11.1-1_ramips_24kec.ipk
Size: 7615
MD5Sum: fec79227d99f2bcdc9459f772ef982bb
SHA256sum: b4d4cf1371c39ac19e9fc067fe75e9c6375d9f6556e876ef518539047ee50ce1
Description: Utility for the Unified Configuration Interface (UCI)
Package: uhttpd-mod-ubus
Version: 2014-08-25-dabd7dea6445aaa0e5b8d9add1872fa7393b3a85
Depends: libc, uhttpd, libubus, libblobmsg-json
Source: package/network/services/uhttpd
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5964
Filename: uhttpd-mod-ubus_2014-08-25-dabd7dea6445aaa0e5b8d9add1872fa7393b3a85_ramips_24kec.ipk
Size: 6783
MD5Sum: 732cd642e7142657bffa429349e82a17
SHA256sum: a35eed0d0aa7a848a3eb288a51870facfb0907eff1d461d18e2543fc21ecaedd
Description: The ubus plugin adds a HTTP/JSON RPC proxy for ubus and publishes the
session.* namespace and procedures.
Package: uhttpd
Version: 2014-08-25-dabd7dea6445aaa0e5b8d9add1872fa7393b3a85
Depends: libc, libubox
Source: package/network/services/uhttpd
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21013
Filename: uhttpd_2014-08-25-dabd7dea6445aaa0e5b8d9add1872fa7393b3a85_ramips_24kec.ipk
Size: 21848
MD5Sum: 7dee831340e4164ba39765de59d27c6e
SHA256sum: e522b1a10b7395ef5331bac1045514ed2404f2b410bb7becfc2eabdf35d70b52
Description: uHTTPd is a tiny single threaded HTTP server with TLS, CGI and Lua
support. It is intended as a drop-in replacement for the Busybox
HTTP daemon.
Package: wpad-mini
Version: 2014-06-03-1
Depends: libc, libnl-tiny, libubus
Source: package/network/services/hostapd
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 211642
Filename: wpad-mini_2014-06-03-1_ramips_24kec.ipk
Size: 212091
MD5Sum: 0899aa4b01fe7d3350f1401d280bbb52
SHA256sum: 9302cb87c9ebe1a61de82655172960111ef47a899317fd5bea4300204c62cba9
Description: This package contains a minimal IEEE 802.1x/WPA Authenticator and Supplicant (WPA-PSK only).
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: 6in4
Version: 21-1
Depends: libc, kmod-ipv6, kmod-sit
Source: package/network/ipv6/6in4
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: all
Installed-Size: 1618
Filename: base/6in4_21-1_all.ipk
Size: 2429
MD5Sum: 794593e6c93bdce580c75434f6aa138c
SHA256sum: 782dba9209ed34b12cf40189426cfb0dfc6b67d4f0650af60b91a593009c4f09
Description: Provides support for 6in4 tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: 6rd
Version: 9-1
Depends: libc, kmod-ipv6, kmod-sit
Source: package/network/ipv6/6rd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: all
Installed-Size: 3171
Filename: base/6rd_9-1_all.ipk
Size: 3944
MD5Sum: 4733f242ab251f09b0121236639fd810
SHA256sum: 7e5ffb10051580e66e9424e1e9b547e76233b4838ed234e611df9a9b35e48848
Description: Provides support for 6rd tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: 6to4
Version: 12-1
Depends: libc, kmod-ipv6, kmod-sit
Source: package/network/ipv6/6to4
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: all
Installed-Size: 1099
Filename: base/6to4_12-1_all.ipk
Size: 1909
MD5Sum: d98a0cb88d840c3b527baaebd1abf9f2
SHA256sum: 3d4098e7771266573d30fa2a327cbcec237a15d3ee6fc5d8984a5f0c4d7f10a5
Description: Provides support for 6to4 tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: agetty
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 13768
Filename: base/agetty_2.25.2-4_ramips_24kec.ipk
Size: 14535
MD5Sum: 4d0426eb7a335856507a3e786db37c35
SHA256sum: ac5609668b83e27c2860a4bcdb6b429d6d2cfa011a4dace64de46b1dcefe16a1
Description: agetty opens a tty port, prompts for a login name and invokes the
/bin/login command
Package: ar
Version: 2.24-3
Depends: libc, zlib, libbfd
Source: package/devel/binutils
License: GPL-3.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24659
Filename: base/ar_2.24-3_ramips_24kec.ipk
Size: 25319
MD5Sum: c8bf07ed394447e6f67e5a463aa8178a
SHA256sum: 9bff5efca684856f5cc3dc88d09fe477e00aa2b2dfbb869137d5935db93f8c73
Description: ar
Package: arptables
Version: 0.0.4-1
Depends: libc, kmod-arptables
Source: package/network/utils/arptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 20381
Filename: base/arptables_0.0.4-1_ramips_24kec.ipk
Size: 21081
MD5Sum: 2fd9fabd86bba08f30c78f28e53dc831
SHA256sum: 08fa8c9e53cbbbcc7c007d70a4e274590c6f23cddf714c853af5ed6611e43ec5
Description: ARP firewalling software
Package: atm-aread
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2221
Filename: base/atm-aread_2.5.2-5_ramips_24kec.ipk
Size: 2917
MD5Sum: 22d84e8b58826022bec3d8df99620ddc
SHA256sum: e0cecd109d728063654b789ea5565d6ed878368ae958a2e92ef13020fb6a2b1b
Description: Linux ATM tool aread.
Package: atm-atmaddr
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2360
Filename: base/atm-atmaddr_2.5.2-5_ramips_24kec.ipk
Size: 3081
MD5Sum: 6a57c63fccceafb8a387c5f5305a015a
SHA256sum: 2052bcbc55d409232d06bca6c7a779c83468fb08f927cceab7fb91425d5a1f56
Description: Linux ATM tool atmaddr.
Package: atm-atmdiag
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2107
Filename: base/atm-atmdiag_2.5.2-5_ramips_24kec.ipk
Size: 2825
MD5Sum: 1c36fde44c24d6e842c8d3afeb34431d
SHA256sum: caa21d8854437b175486019582f1fb74162f43b792909a0b697c0a8e2a22a336
Description: Linux ATM tool atmdiag.
Package: atm-atmdump
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 3112
Filename: base/atm-atmdump_2.5.2-5_ramips_24kec.ipk
Size: 3834
MD5Sum: f7ee2ec32c25817a221f5a424c015c27
SHA256sum: 990f1378f9c06bfb9d048cfab8afa9ffc259f8a84a2c6c99fb699b10f913131f
Description: Linux ATM tool atmdump.
Package: atm-atmloop
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2532
Filename: base/atm-atmloop_2.5.2-5_ramips_24kec.ipk
Size: 3237
MD5Sum: 54846b3e0eb3d387e370300540de175c
SHA256sum: 0608aadb52f6ac2903ec5c173d1b51f122c2b848639cd826576aa3666240a1ae
Description: Linux ATM tool atmloop.
Package: atm-atmsigd
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 70205
Filename: base/atm-atmsigd_2.5.2-5_ramips_24kec.ipk
Size: 70649
MD5Sum: 760d1d5b4a72a1c8d9b94aff975e72c7
SHA256sum: 38a7920123ba473987dfc08ace91f34a09037f1efac212f3812ab78a69fdd050
Description: Linux ATM tool atmsigd.
Package: atm-atmswitch
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2644
Filename: base/atm-atmswitch_2.5.2-5_ramips_24kec.ipk
Size: 3363
MD5Sum: 7e7ca15c932c6bfec902203302d2e0c1
SHA256sum: b774278cec530ae1acd8a6159de0b4ddf7dee08030a913725d878d7d06d0107f
Description: Linux ATM tool atmswitch.
Package: atm-atmtcp
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 7981
Filename: base/atm-atmtcp_2.5.2-5_ramips_24kec.ipk
Size: 8703
MD5Sum: df94bd95d24d2b14c3f5c51b99f7fb6b
SHA256sum: 8fb7d943b9aee356c0bc2be64330171131e52c0925c068f8e5962ce4faeffede
Description: Linux ATM tool atmtcp.
Package: atm-awrite
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2104
Filename: base/atm-awrite_2.5.2-5_ramips_24kec.ipk
Size: 2816
MD5Sum: c079356662e968857557b0c4165dc9af
SHA256sum: 79bbf8655a14259dd731c32be8e1dfbcb17f05ab1fca63933c03ab9184b122ff
Description: Linux ATM tool awrite.
Package: atm-bus
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 18558
Filename: base/atm-bus_2.5.2-5_ramips_24kec.ipk
Size: 19241
MD5Sum: 13bf8ed2366b990c3e380c25a1640d9d
SHA256sum: 28db480658826ec7566f506da24e7f1bc3ff527c2940493b3cca21e2f390d5bc
Description: Linux ATM tool bus.
Package: atm-debug-tools
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 228264
Filename: base/atm-debug-tools_2.5.2-5_ramips_24kec.ipk
Size: 228182
MD5Sum: e2bffe75a6addf0db22132aaa5bd18e8
SHA256sum: cdc2f964e39a665bb08712fda578a6ee994d859d2a1ea227cfafc63945f2f535
Description: This package contains the Linux ATM debugging tools.
Package: atm-diagnostics
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 6613
Filename: base/atm-diagnostics_2.5.2-5_ramips_24kec.ipk
Size: 7254
MD5Sum: 2e6cf091cf327e30f7dcea95adb697ca
SHA256sum: 52191ac7c41e71189509e82ce0cf6cb094968ce8d95a77b5b2f9833365e5e165
Description: This package contains the Linux ATM diagnostics.
Package: atm-esi
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2275
Filename: base/atm-esi_2.5.2-5_ramips_24kec.ipk
Size: 2980
MD5Sum: e3493e78578c77aa84a7bb4926a6268a
SHA256sum: 3f6a1048b535cfb24ee77bff687f6dfb938019a4ae0318e4c2dad4c1e8438500
Description: Linux ATM tool esi.
Package: atm-ilmid
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 21824
Filename: base/atm-ilmid_2.5.2-5_ramips_24kec.ipk
Size: 22519
MD5Sum: e987ca57c687dd4bd5b7100de54b04ca
SHA256sum: d53a27823a41acb17d2214b28ea63512219101f7faf43e1f0ec9e21bcfa53396
Description: Linux ATM tool ilmid.
Package: atm-ilmidiag
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2314
Filename: base/atm-ilmidiag_2.5.2-5_ramips_24kec.ipk
Size: 3032
MD5Sum: 1fdeaa1903eb5262d9741818f42a91f0
SHA256sum: 0c480a5b37eb1dad66153d6f25b44a64d2fb96af67609d1d60c7fd2ced7e787d
Description: Linux ATM tool ilmidiag.
Package: atm-lecs
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 10377
Filename: base/atm-lecs_2.5.2-5_ramips_24kec.ipk
Size: 11072
MD5Sum: cf7c8012b016a323a3ebf38b208cf215
SHA256sum: d01d8a49d44b293b79ed4cf5622532ca4b847085fe047384db31a7d2eaea485b
Description: Linux ATM tool lecs.
Package: atm-les
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 21749
Filename: base/atm-les_2.5.2-5_ramips_24kec.ipk
Size: 22399
MD5Sum: 11a51f0f355f985f4937a344a39189f4
SHA256sum: 3845f85f42e89db4a458bff34f1fab67bb73260f9d96d977507c5c88e8dcfbc6
Description: Linux ATM tool les.
Package: atm-mpcd
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 12504
Filename: base/atm-mpcd_2.5.2-5_ramips_24kec.ipk
Size: 13232
MD5Sum: e68e92f9e7509fc52f2206cd607b4c17
SHA256sum: 0dbc9fd1d0458e064772433f800fcafd093173d5313555a5cd8724734b02bf70
Description: Linux ATM tool mpcd.
Package: atm-saaldump
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 25371
Filename: base/atm-saaldump_2.5.2-5_ramips_24kec.ipk
Size: 25935
MD5Sum: 3a00b271a281232eaf9179579bdc862a
SHA256sum: 1a6c427bd1eecc41709f7f66eb5906a3ddbbbce12ab03e67f86cbedf100ee512
Description: Linux ATM tool saaldump.
Package: atm-sonetdiag
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2596
Filename: base/atm-sonetdiag_2.5.2-5_ramips_24kec.ipk
Size: 3316
MD5Sum: f8f23fd3ca5e586aff80226817715788
SHA256sum: 9f5fee6d3b7f7f621b6c142779a8905deaae5a26f8ca801b24bbb5c544c35ae4
Description: Linux ATM tool sonetdiag.
Package: atm-svc_recv
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2459
Filename: base/atm-svc_recv_2.5.2-5_ramips_24kec.ipk
Size: 3169
MD5Sum: 5d234b7f9ab721a1ea336d052bf9b37a
SHA256sum: 193c6eab7102c11f32dc87ffd92605f0365c07c8a71aa475720faefe0e03bf51
Description: Linux ATM tool svc_recv.
Package: atm-svc_send
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2178
Filename: base/atm-svc_send_2.5.2-5_ramips_24kec.ipk
Size: 2892
MD5Sum: 68f211b53bb6b00887d6e5e2dac400ad
SHA256sum: 2633e399cbf87a1182c0fc7587d1aa9a56394e83f672478c538051b7d5b1cfc3
Description: Linux ATM tool svc_send.
Package: atm-tools
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 17502
Filename: base/atm-tools_2.5.2-5_ramips_24kec.ipk
Size: 18189
MD5Sum: a24f44c6fa9fb9e5d034bc272d4237b3
SHA256sum: 4380cc37adcc416f698e5ebd4dd76d5053b9e924101f9672108965f47e77b7f3
Description: This package contains the Linux ATM tools.
Package: atm-ttcp_atm
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 8112
Filename: base/atm-ttcp_atm_2.5.2-5_ramips_24kec.ipk
Size: 8801
MD5Sum: 2ba68d852293bb629329b3763a8102c0
SHA256sum: c27bd0093e5cc9a7a628fada568ffaf1b90365b860984e35186fc3106cc6d0b4
Description: Linux ATM tool ttcp_atm.
Package: atm-zeppelin
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 18423
Filename: base/atm-zeppelin_2.5.2-5_ramips_24kec.ipk
Size: 19114
MD5Sum: d432875cb8cb48e4299607731b9bf0fe
SHA256sum: c44bea7cedb721d8f21a9009697cf492efed5a7eb9f7cf075536718af452a03d
Description: Linux ATM tool zeppelin.
Package: authsae
Version: 2014-06-09-8531ab158910a525d4bcbb3ad02c08342f6987f2
Depends: libc, libopenssl, libconfig, libnl-tiny
Source: package/network/services/authsae
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61052
Filename: base/authsae_2014-06-09-8531ab158910a525d4bcbb3ad02c08342f6987f2_ramips_24kec.ipk
Size: 61620
MD5Sum: 937e843956a773b7f9ba36bb4be21eb0
SHA256sum: 527bf91c26ede3a21a21135a78c2e30865ddb570d54cc9db72d300c5614328ef
Description: 80211s mesh security
Package: badblocks
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 9464
Filename: base/badblocks_1.42.4-2_ramips_24kec.ipk
Size: 10153
MD5Sum: 46098e026d38bce7012d077d1972dd41
SHA256sum: 75ef96b94bc16d3c05a6e59f0aff7096387694ef9366f9831c18b489b4042e53
Description: Ext2 Filesystem badblocks utility
Package: base-files
Version: 157-r44915
Depends: libc, netifd, procd, jsonfilter
Source: package/base-files
License: GPL-2.0
Section: base
Architecture: ramips_24kec
Installed-Size: 36413
Filename: base/base-files_157-r44915_ramips_24kec.ipk
Size: 37318
MD5Sum: 8c8fdd07c0925a0f6bc82f4cc5705e51
SHA256sum: 2361504d102cd0d7cc713a6f2a5a5fea69d78afa4fc22c53a6de2e4f0059305e
Description: This package contains a base filesystem and system scripts for OpenWrt.
Package: binutils
Version: 2.24-3
Depends: libc, objdump, ar
Source: package/devel/binutils
License: GPL-3.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 988790
Filename: base/binutils_2.24-3_ramips_24kec.ipk
Size: 979181
MD5Sum: 8706aec550d598b2ab0e9b3cd4504d6a
SHA256sum: 56aa39c979aa898ea8a9f8bc5524741947d35a41d54d64b8c924b24f117b08cb
Description: The Binutils package contains a linker, an assembler, and other tools for handling object files
Package: blkid
Version: 2.25.2-4
Depends: libc, libblkid, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 27379
Filename: base/blkid_2.25.2-4_ramips_24kec.ipk
Size: 28146
MD5Sum: 9e2154937f0daeefdc4c228fd9d8ab2a
SHA256sum: 41f3de235af7dc5c6fc0af2555a9868832d30630dfca77827801cb2330fa2302
Description: The blkid program is the command-line interface to working with the libblkid
library.
Package: block-mount
Version: 2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974
Depends: libc, ubox, libubox, libuci
Source: package/system/fstools
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17578
Filename: base/block-mount_2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974_ramips_24kec.ipk
Size: 18367
MD5Sum: 91b3f4ee3b6b53328ba3af3f1fa3d8ea
SHA256sum: 761b86409f574d2148f3a395e39a9e4ad3457c72d2de12005f39b8fc0c2c7507
Description: Block device mounting and checking
Package: br2684ctl
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 4465
Filename: base/br2684ctl_2.5.2-5_ramips_24kec.ipk
Size: 5171
MD5Sum: 04c5d26c084c9c5842ffb40d799e6f47
SHA256sum: 5e274621fed7cfefeca7186fe794f931656714780088297beeece82e05b46d3a
Description: Support for AAL5 encapsulation (RFC-1483/RFC-2684) over ATM.
Package: busybox
Version: 1.22.1-6
Depends: libc
Source: package/utils/busybox
License: GPL-2.0
LicenseFiles: LICENSE archival/libarchive/bz/LICENSE
Section: base
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 231000
Filename: base/busybox_1.22.1-6_ramips_24kec.ipk
Size: 230961
MD5Sum: ad0a74f8f68f8bb0541d3fbeeb4b7924
SHA256sum: 5f1687cef5b5d428ff49a64941328118ca47cb01f9027ffa3d0e727d59547661
Description: The Swiss Army Knife of embedded Linux.
It slices, it dices, it makes Julian Fries.
Package: ca-certificates
Version: 20141019
Depends: libc
Source: package/system/ca-certificates
Section: base
Architecture: ramips_24kec
Installed-Size: 176193
Filename: base/ca-certificates_20141019_ramips_24kec.ipk
Size: 176915
MD5Sum: f77c327a50b957fb9f1edb61d3d1e486
SHA256sum: 6beb4526f6dbbf4ae6c64d5a4eea80e5de7e700ea0c76c6c68ee07025eda6d5f
Description: System CA certificates
Package: cal
Version: 2.25.2-4
Depends: libc, libncurses
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 14561
Filename: base/cal_2.25.2-4_ramips_24kec.ipk
Size: 15298
MD5Sum: f2d6b67ae6942de3bc9f3162011e72ee
SHA256sum: 419a18cf7936d36091470e6eb255d881609a4035a49797775793c04800bceec4
Description: cal displays a simple calendar
Package: cfdisk
Version: 2.25.2-4
Depends: libc, libblkid, libncurses, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 91668
Filename: base/cfdisk_2.25.2-4_ramips_24kec.ipk
Size: 92400
MD5Sum: b57ea43c0fe24173d87b179afabd8d1f
SHA256sum: 352bbd714c746b467d8e7e2f9987414e940f3dbb73715dec0c18410e96680c56
Description: cfdisk is a curses-based program for partitioning any hard disk drive
Package: chat
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9056
Filename: base/chat_2.4.7-5_ramips_24kec.ipk
Size: 9831
MD5Sum: 2384fc5fa5dea12d2265286e5ff4239d
SHA256sum: 765809626103a41ba0f29b25d9857715d11c45287ce7eb9553151237d0251720
Description: This package contains an utility to establish conversation with other PPP servers
(via a modem).
Package: comgt-directip
Version: 0.32-25
Depends: libc, comgt, kmod-usb-serial, kmod-usb-serial-sierrawireless, kmod-usb-net, kmod-usb-net-sierrawireless
Source: package/network/utils/comgt
License: GPL-2.0+
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1533
Filename: base/comgt-directip_0.32-25_ramips_24kec.ipk
Size: 2326
MD5Sum: eedbff8dd6b0ced653a37472e110a90a
SHA256sum: e25a03db6925d5ef11336b891d08975dda3eb43e2b751d750058f3bec3ef041d
Description: Sierra Wireless Direct-IP support
Package: comgt-ncm
Version: 0.32-25
Depends: libc, comgt, wwan
Source: package/network/utils/comgt
License: GPL-2.0+
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2046
Filename: base/comgt-ncm_0.32-25_ramips_24kec.ipk
Size: 2773
MD5Sum: b25683b5df72ffe2325ba4db7af12143
SHA256sum: caf251cd73f2a49a486f77dfa4baf9fe23443535289318e622ad790b0f192ae3
Description: NCM 3G/4G Support
Package: comgt
Version: 0.32-25
Depends: libc, chat
Source: package/network/utils/comgt
License: GPL-2.0+
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20729
Filename: base/comgt_0.32-25_ramips_24kec.ipk
Size: 21541
MD5Sum: 24d0841f3905ff11ed00f39ed587cd28
SHA256sum: dba150b91115794b61e7794233657e6865eb14c9c8a9474dd19ef61d3f5bc556
Description: comgt is a scripting language interpreter useful for establishing
communications on serial lines and through PCMCIA modems as well as GPRS
and 3G datacards.
Package: conntrack-tools
Version: 1.0.0-1
Depends: libc, libnetfilter-conntrack
Source: package/network/utils/conntrack-tools
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89804
Filename: base/conntrack-tools_1.0.0-1_ramips_24kec.ipk
Size: 90177
MD5Sum: d4d8c513185841cb73a0027468df3000
SHA256sum: 1f780ceebac666667be124f1338db77fef3707a9403e8d60f4d7da0fa667538c
Description: The conntrack-tools are a set of free software userspace tools for Linux
that allow system administrators interact with the Connection Tracking
System, which is the module that provides stateful packet inspection for
iptables. The conntrack-tools are the userspace daemon conntrackd and the
command line interface conntrack.
Package: curl
Version: 7.40.0-3
Depends: libc, libcurl
Source: package/network/utils/curl
License: MIT
LicenseFiles: COPYING
Section: net
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38166
Filename: base/curl_7.40.0-3_ramips_24kec.ipk
Size: 38965
MD5Sum: f88ebc288f80fe094e2cc2abdc1eb80f
SHA256sum: 90c069d8406cab6ddd8540afbcfcf5da973c4a4e40138377203829a64fce52ae
Description: A client-side URL transfer utility
Package: debugfs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 62141
Filename: base/debugfs_1.42.4-2_ramips_24kec.ipk
Size: 62829
MD5Sum: d625a53399284bc623d0c42d03394f86
SHA256sum: b6e9b75e5fdb82c981d888d02ac8e4826231b7eee2bf8d9ad0a4046e8e631c60
Description: Ext2 Filesystem debugger
Package: dmesg
Version: 2.25.2-4
Depends: libc, librt
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 17084
Filename: base/dmesg_2.25.2-4_ramips_24kec.ipk
Size: 17886
MD5Sum: 7a008f78c40325aa7dc5d6abc5b6da9b
SHA256sum: 0cf909db13b3aaf368b19ad8419efdb5d0055c8736f06413db1e6a0ad1b8cb81
Description: dmesg is used to examine or control the kernel ring buffer
Package: dnsmasq-dhcpv6
Version: 2.72-4
Depends: libc, kmod-ipv6
Source: package/network/services/dnsmasq
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 115434
Filename: base/dnsmasq-dhcpv6_2.72-4_ramips_24kec.ipk
Size: 115965
MD5Sum: f97dce1b876521febdf8d2f5bf1c0cde
SHA256sum: 02c45415abac1bb2483b812d2be48cab81955a61d43e05251525e3a4f8bdcdb0
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
This is a variant with DHCPv6 support
Package: dnsmasq-full
Version: 2.72-4
Depends: libc, libnettle, kmod-ipv6, kmod-ipt-ipset
Source: package/network/services/dnsmasq
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 136457
Filename: base/dnsmasq-full_2.72-4_ramips_24kec.ipk
Size: 137101
MD5Sum: d80634cb5632f9dee1e0629335f495ec
SHA256sum: a5caa80efc4130d157e095b215e46f5ac57ac1019129579875e43c591a0e2a3f
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
This is a fully configurable variant with DHCPv6, DNSSEC, Authroitative DNS and
IPset support enabled by default.
Package: dnsmasq
Version: 2.72-4
Depends: libc
Source: package/network/services/dnsmasq
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 95267
Filename: base/dnsmasq_2.72-4_ramips_24kec.ipk
Size: 95996
MD5Sum: 72afc49d2413b557fbb16bea7367427d
SHA256sum: ba2979d223f108f9b52c73327405bd34af63778fc3a7a8dd1f95e3ea4c64ef0c
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
Package: dropbear
Version: 2014.65-2
Depends: libc
Source: package/network/services/dropbear
License: MIT
LicenseFiles: LICENSE libtomcrypt/LICENSE libtommath/LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 81689
Filename: base/dropbear_2014.65-2_ramips_24kec.ipk
Size: 82060
MD5Sum: 9f10e0b54b3ad5d3e07f49e12632348d
SHA256sum: 8b3a98e401913d03bf239bdbf699756415cde6f61d05cbb520fab5d9d3842525
Description: A small SSH2 server/client designed for small memory environments.
Package: dropbearconvert
Version: 2014.65-2
Depends: libc
Source: package/network/services/dropbear
License: MIT
LicenseFiles: LICENSE libtomcrypt/LICENSE libtommath/LICENSE
Section: utils
Architecture: ramips_24kec
Installed-Size: 23894
Filename: base/dropbearconvert_2014.65-2_ramips_24kec.ipk
Size: 24586
MD5Sum: aabe7f3d1c8d3e80cb281cd36c632ae8
SHA256sum: 3d2db5fced6df1c87a2f0bd2d82be881af30a14d1319323bcb740e2d1f651954
Description: Utility for converting SSH keys
Package: ds-lite
Version: 4-1
Depends: libc, kmod-ipv6, kmod-ip6-tunnel
Source: package/network/ipv6/ds-lite
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: all
Installed-Size: 974
Filename: base/ds-lite_4-1_all.ipk
Size: 1780
MD5Sum: e08490a25e8b67a5191b38bcd41c9271
SHA256sum: 1c97c410259da2b91782071427003414ca13d021d14e1619ccf3bd78388a2dac
Description: Provides support for Dual-Stack Lite in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: dumpe2fs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 7004
Filename: base/dumpe2fs_1.42.4-2_ramips_24kec.ipk
Size: 7734
MD5Sum: 05863a4e4bfbb30e13996e66e911f81c
SHA256sum: 8be3054cf4b3b893881770aba9c64a154bb83c78c77e0d9829457d86ece4f1d5
Description: Ext2 Filesystem information dumping utility
Package: e2freefrag
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 3907
Filename: base/e2freefrag_1.42.4-2_ramips_24kec.ipk
Size: 4586
MD5Sum: 818e41328b94a67755d201f2ace21e65
SHA256sum: d4dd19b7c399d0cc9e2bec86869ab512309f331367c612f9f4b57064ae93abb7
Description: Ext2 Filesystem free space fragmentation information utility
Package: e2fsprogs
Version: 1.42.4-2
Depends: libc, libuuid, libext2fs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 175129
Filename: base/e2fsprogs_1.42.4-2_ramips_24kec.ipk
Size: 175499
MD5Sum: 6c1451f5b57a586ca3d43f7a5156b252
SHA256sum: 64bdc8424efb003b0bc7843a478c126c49842f37e5133d1bbfb571098454a11b
Description: This package contains essential ext2 filesystem utilities which consists of
e2fsck, mke2fs and most of the other core ext2 filesystem utilities.
Package: ead
Version: 1
Depends: libc
Source: package/network/services/ead
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48404
Filename: base/ead_1_ramips_24kec.ipk
Size: 49166
MD5Sum: 3370ee1603cca4df502dddcdcaef108f
SHA256sum: 7548f2f724921b64e813bfc0bcfe29ab5f86d6acca41d791d4449cd782281c85
Description: Provides remote access to your device even if IP and firewall
configuration settings are defunct
Package: eapol-test
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 212165
Filename: base/eapol-test_2014-10-25-1_ramips_24kec.ipk
Size: 212758
MD5Sum: 49094654efba70cd8471b43af2157258
SHA256sum: 19dc2ed55c853bfc57f6ea115094f3f3690f4c4d48fa1408ad8e23d5ac7e6f3d
Description: 802.1x authentication test utility
Package: ebtables-utils
Version: 2.0.10-4-3
Depends: libc, kmod-ebtables, ebtables
Source: package/network/utils/ebtables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 3533
Filename: base/ebtables-utils_2.0.10-4-3_ramips_24kec.ipk
Size: 4332
MD5Sum: 0295e963411d53c169b54b3b90a71bdf
SHA256sum: 0a5ce6934ed7edbf41fdfcdbaa2a3ad57f4742a1c556ce13697268a23df390f6
Description: The ebtables program is a filtering tool for a bridging firewall. The
filtering is focussed on the Link Layer Ethernet frame fields. Apart
from filtering, it also gives the ability to alter the Ethernet MAC
addresses and implement a brouter.
Package: ebtables
Version: 2.0.10-4-3
Depends: libc, kmod-ebtables
Source: package/network/utils/ebtables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 58554
Filename: base/ebtables_2.0.10-4-3_ramips_24kec.ipk
Size: 59443
MD5Sum: ba862c0127aea1fec5062892d2f40864
SHA256sum: 6a91b54985dd75b94802575a77c23f7a35beba24de4af3ff8d4d67d4dfdc5530
Description: The ebtables program is a filtering tool for a bridging firewall. The
filtering is focussed on the Link Layer Ethernet frame fields. Apart
from filtering, it also gives the ability to alter the Ethernet MAC
addresses and implement a brouter.
Package: fconfig
Version: 20080329-1
Depends: libc
Source: package/boot/fconfig
Section: utils
Architecture: ramips_24kec
Installed-Size: 6898
Filename: base/fconfig_20080329-1_ramips_24kec.ipk
Size: 7645
MD5Sum: 9f4873a5addf443b92ed50e6827bfdfd
SHA256sum: 99238ce1a675648521ca986f37bce838f4cf417c5ec67b4a6cd46c0eeb28b51d
Description: displays and (if writable) also edits the RedBoot configuration.
Package: fdisk
Version: 2.25.2-4
Depends: libc, libblkid, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 97550
Filename: base/fdisk_2.25.2-4_ramips_24kec.ipk
Size: 98327
MD5Sum: b3e343ec15a35f94ce000d43367986f7
SHA256sum: 03c27c51b47347b987413cd0ffb18699a3823be3392ed6741abb034ffed4af04
Description: a menu-driven program for creation and manipulation of partition tables
Package: filefrag
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 4616
Filename: base/filefrag_1.42.4-2_ramips_24kec.ipk
Size: 5291
MD5Sum: 1ff8c1fa14d1ecbd1da29dd6eb0b559f
SHA256sum: dea127958c200e8562b31afc8bd09be3488a5a04664be6cfab7a112da75a827c
Description: Ext2 Filesystem file fragmentation report utility
Package: findfs
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 2454
Filename: base/findfs_2.25.2-4_ramips_24kec.ipk
Size: 3292
MD5Sum: bc6af9cfcfd294b9628d1d0063168e79
SHA256sum: 05d0684bbf733d5edf9189cf704fc4336875e4ae0edef9c7431a4cd8cf7d784b
Description: findfs will search the disks in the system looking for a filesystem which has
a label matching label or a UUID equal to uuid
Package: firewall
Version: 2015-02-26
Depends: libc, libubox, libubus, libuci, libip4tc, libip6tc, libxtables, kmod-ipt-core, kmod-ipt-nat
Source: package/network/config/firewall
License: ISC
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60455
Filename: base/firewall_2015-02-26_ramips_24kec.ipk
Size: 61031
MD5Sum: df6473f7fef45f229b7d9d32610e028c
SHA256sum: a35c71f532efccfedae85411e27ef0bb9d29337b62c87b1be7fb527fb49efe26
Description: This package provides a config-compatible C implementation of the UCI firewall.
Package: flock
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 7559
Filename: base/flock_2.25.2-4_ramips_24kec.ipk
Size: 8385
MD5Sum: 975e5cc3210c64a403d2d7c3be878e7d
SHA256sum: 2161447be96f50e71f600be0f38adadecdd0fd1e717ad4a99395bbf48a93c360
Description: manages flock locks from within shell scripts or the command line
Package: fstools
Version: 2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974
Depends: libc, ubox
Source: package/system/fstools
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16884
Filename: base/fstools_2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974_ramips_24kec.ipk
Size: 17672
MD5Sum: 8eac2471d4684229ec756804711ec6bd
SHA256sum: c7541860ef213261c581076c3c546e1b3f156e5bcab5a03df374cfa7918a9486
Description: OpenWrt filesystem tools
Package: fuse-utils
Version: 2.9.3-1
Depends: libc, libfuse
Source: package/utils/fuse
License: LGPLv2.1 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: utils
Architecture: ramips_24kec
Installed-Size: 13687
Filename: base/fuse-utils_2.9.3-1_ramips_24kec.ipk
Size: 14443
MD5Sum: 8949ed151d57920eedbc27bcce13f5c4
SHA256sum: 2785d6e2e62c81a3ea80776447a325c5c9b7c675074a93f97795333a3321c417
Description: FUSE (Filesystem in UserSpacE)
This package contains the FUSE utilities.
- fusermount
- ulockmgr_server
Package: gdb
Version: 7.8-1
Depends: libc, libthread-db, zlib, libreadline, libncurses, zlib
Source: package/devel/gdb
License: GPL-3.0+
Section: devel
Architecture: ramips_24kec
Installed-Size: 1714220
Filename: base/gdb_7.8-1_ramips_24kec.ipk
Size: 1707930
MD5Sum: 2c12c18a3a6438002ce0a095832c5306
SHA256sum: 983a277a0316fa74623042e9b84d84f3dcbfe7fb06c61fee095f4528c467dbbe
Description: GDB, the GNU Project debugger, allows you to see what is going on `inside'
another program while it executes -- or what another program was doing at the
moment it crashed.
Package: gdbserver
Version: 7.8-1
Depends: libc, libthread-db, zlib
Source: package/devel/gdb
License: GPL-3.0+
Section: devel
Architecture: ramips_24kec
Installed-Size: 110759
Filename: base/gdbserver_7.8-1_ramips_24kec.ipk
Size: 111072
MD5Sum: fbd49b87f0c68cde5e663097b2860472
SHA256sum: d3fc00a5feb90322ab307d993cb53e5c48db6092ee68d36a4279c7e5fd77369f
Description: GDBSERVER is a program that allows you to run GDB on a different machine than the
one which is running the program being debugged.
Package: genl
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6790
Filename: base/genl_3.19.0-1_ramips_24kec.ipk
Size: 7565
MD5Sum: 771c739c0e234fc89143ac9dacc05fa2
SHA256sum: e2b3ff43f59bdaaf737a88bb5c963032bea0f6330500fcc7ab19049859be851d
Description: General netlink utility frontend
Package: getopt
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 4839
Filename: base/getopt_2.25.2-4_ramips_24kec.ipk
Size: 5642
MD5Sum: 554c5188b640bef17e5e82ffd8e0c046
SHA256sum: 555b0cbd1bf26f7c24d85938f759ab020a932e6277a4c747e584d324ec8b4534
Description: getopt is used to break up (parse) options in command lines for easy parsing
by shell procedures, and to check for legal options
Package: gre
Version: 1-3
Depends: libc
Source: package/network/config/gre
License: GPL-2.0
Section: net
Maintainer: Hans Dedecker <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1320
Filename: base/gre_1-3_ramips_24kec.ipk
Size: 2091
MD5Sum: d07ef869446db7ff034861e8afa1b82c
SHA256sum: 8562dbcebe94bb71c91805303b7467ba7b463ff1643718bafbd674410fc5735f
Description: Generic Routing Encapsulation config support (IPv4 and IPv6) in /etc/config/network.
Package: hostapd-common-old
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4827
Filename: base/hostapd-common-old_2014-10-25-1_ramips_24kec.ipk
Size: 5610
MD5Sum: 500705fb564519926bc445e368b5c296
SHA256sum: fc0440cd4bfa491797e15d5486b7d4ba2a31bee628dc3d1bb348a7b092ad4ece
Description: hostapd/wpa_supplicant common support files (legacy drivers)
Package: hostapd-common
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4582
Filename: base/hostapd-common_2014-10-25-1_ramips_24kec.ipk
Size: 5337
MD5Sum: 99689e955385dbcc65f476213ebc9f46
SHA256sum: 1c8cea8d13170f024997b1d6458177d17379da30e9bfc7446f8e89ecdbe7b0c3
Description: hostapd/wpa_supplicant common support files
Package: hostapd-mini
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141880
Filename: base/hostapd-mini_2014-10-25-1_ramips_24kec.ipk
Size: 142225
MD5Sum: fe4c6add71763983dcb2a70cbca3a6c2
SHA256sum: d125fab47b9ed765649650128ab8a7f3a629a044901a34c5be541bfa4722a9cd
Description: This package contains a minimal IEEE 802.1x/WPA Authenticator (WPA-PSK only).
Package: hostapd-utils
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16100
Filename: base/hostapd-utils_2014-10-25-1_ramips_24kec.ipk
Size: 16863
MD5Sum: 0d8a8f9fbd64f89b76964cae06e7fcd2
SHA256sum: a9cded84ccb4192cfd469a2005c52eb204022f1b55bc4b92c02bc820615058b1
Description: This package contains a command line utility to control the
IEEE 802.1x/WPA/EAP/RADIUS Authenticator.
Package: hostapd
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 241920
Filename: base/hostapd_2014-10-25-1_ramips_24kec.ipk
Size: 242358
MD5Sum: a793915bd5b6b015f475c1f95b249ed8
SHA256sum: 9644a057c5021f82bc104f98fcb619e7c841f3dc63b19bb5f860861b91ff0bd1
Description: This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS
Authenticator.
Package: hwclock
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 16665
Filename: base/hwclock_2.25.2-4_ramips_24kec.ipk
Size: 17457
MD5Sum: 8b0cc332dc3095492c1baa59b86e20c9
SHA256sum: a8345bbf5f92de21e10f58e6a52e3d8fd23d371a173461dafa932778fb04bbfb
Description: hwclock is a tool for accessing the Hardware Clock
Package: iconv
Version: 1.11.1-1
Depends: libc, libiconv-full, libcharset
Source: package/libs/libiconv-full
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10076
Filename: base/iconv_1.11.1-1_ramips_24kec.ipk
Size: 10822
MD5Sum: 0dd0b55db61882479ae1b45930cd5aa0
SHA256sum: e44da2a7dc67953b05576a57bf32de5a406d2373e9250d554c707610ea6c3c3a
Description: Character set conversion utility
Package: iftop
Version: 1.0pre2-1
Depends: libc, libpcap, libncurses, libpthread
Source: package/network/utils/iftop
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20071
Filename: base/iftop_1.0pre2-1_ramips_24kec.ipk
Size: 20931
MD5Sum: bd8f5ad2359d6995af1d750a00c64820
SHA256sum: f4cca2d23c26775b912f130c59c70107dcbd3c0fc67dc6b0420aa5d12767ec3f
Description: iftop does for network usage what top(1) does for CPU usage. It
listens to network traffic on a named interface and displays a
table of current bandwidth usage by pairs of hosts. Handy for
answering the question 'why is our ADSL link so slow?'.
Package: igmpproxy
Version: 0.1-8
Depends: libc
Source: package/network/services/igmpproxy
License: GPL-2.0+
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14653
Filename: base/igmpproxy_0.1-8_ramips_24kec.ipk
Size: 15471
MD5Sum: dcc2b888066158fb292c5d85f2953aa1
SHA256sum: 3bf25c858f1cf5be5758dc811f2326fca64c9949f78384eac19986d989ea11c1
Description: IGMPproxy is a simple dynamic Multicast Routing Daemon using
only IGMP signalling (Internet Group Management Protocol).
Package: ip-bridge
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17945
Filename: base/ip-bridge_3.19.0-1_ramips_24kec.ipk
Size: 18712
MD5Sum: 5624e98187225bb800ce31a6946eda62
SHA256sum: d2b4c15c57f8469b92046a9328e153bbc37448319a03d7938a24385037b7ae80
Description: Bridge configuration utility from iproute2
Package: ip-full
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 111947
Filename: base/ip-full_3.19.0-1_ramips_24kec.ipk
Size: 112591
MD5Sum: 09d10fc66dfef40fb33542a483aa8847
SHA256sum: feeb018700c40d8489e2b61c80efe1811fdf6427db2e0340bb52af49a6252498
Description: Routing control utility (Full)
Package: ip6tables-extra
Version: 1.4.21-1
Depends: libc, ip6tables, kmod-ip6tables-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10235
Filename: base/ip6tables-extra_1.4.21-1_ramips_24kec.ipk
Size: 10929
MD5Sum: 42473c1208bbef19b3e6e63ee119328c
SHA256sum: 18c711721f7fd0da9c48657a29d21e72fb8bf84a143d0d543db94baa25cac3b0
Description: IPv6 header matching modules
Package: ip6tables-mod-nat
Version: 1.4.21-1
Depends: libc, ip6tables, kmod-ipt-nat6
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 1850
Filename: base/ip6tables-mod-nat_1.4.21-1_ramips_24kec.ipk
Size: 2565
MD5Sum: 6d31fc264407c39f4dec4e37623c7a68
SHA256sum: 4bc6c34f148ced9307d037f9c250d08b8d09a1c5b728bba106f654104c247077
Description: iptables extensions for IPv6-NAT targets.
Package: ip6tables
Version: 1.4.21-1
Depends: libc, kmod-ip6tables, iptables
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 214
Filename: base/ip6tables_1.4.21-1_ramips_24kec.ipk
Size: 913
MD5Sum: 184486046befef543eb5d9dbc460e323
SHA256sum: 623fe09e3b72f57f0241911f36fbd170a00600de5551fb43436c50d8a8626698
Description: IPv6 firewall administration tool
Package: ip
Version: 3.19.0-1
Depends: libc, libnl-tiny
Conflicts: ip-full
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74845
Filename: base/ip_3.19.0-1_ramips_24kec.ipk
Size: 75567
MD5Sum: 5b12722957d7245104c87d990e27d6d4
SHA256sum: bb30504941d9fd01fa2ebeead055706b40f18a5d26cab3535e82ddabe81a459f
Description: Routing control utility (Minimal)
Package: iperf-mt
Version: 2.0.5-1
Depends: libc, uclibcxx, libpthread
Source: package/network/utils/iperf
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25945
Filename: base/iperf-mt_2.0.5-1_ramips_24kec.ipk
Size: 26611
MD5Sum: 59a402754f37c7ece75295c6b4bf38d0
SHA256sum: cdfa141aaf002d62a8bdd93e7c7bb83755e4bd93dde87d9c01cb0974cf9d27d8
Description: Iperf is a modern alternative for measuring TCP and UDP bandwidth
performance, allowing the tuning of various parameters and
characteristics.
This package is built with multithread support.
Package: iperf3
Version: 3.0.11-1
Depends: libc
Source: package/network/utils/iperf3
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33700
Filename: base/iperf3_3.0.11-1_ramips_24kec.ipk
Size: 34500
MD5Sum: 763e0fc238c26399213e5ec0ddcac6f5
SHA256sum: 40a6277c8f8315ea2b9682d694d751cdbe7b379f8bb0ca4f3026e9b264eac1aa
Description: Iperf is a modern alternative for measuring TCP and UDP bandwidth
performance, allowing the tuning of various parameters and
characteristics.
Package: iperf
Version: 2.0.5-1
Depends: libc, uclibcxx
Source: package/network/utils/iperf
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24834
Filename: base/iperf_2.0.5-1_ramips_24kec.ipk
Size: 25612
MD5Sum: 31aa9d6c3bf838c25f4a1b61b8019fc8
SHA256sum: 1c54a41ae5ac5a0762224c8a04ecf4a78e8268c711fafa9592e196534c627377
Description: Iperf is a modern alternative for measuring TCP and UDP bandwidth
performance, allowing the tuning of various parameters and
characteristics.
This package is built with single thread support.
Package: ipip
Version: 1-1
Depends: libc, kmod-ipip
Source: package/network/config/ipip
License: GPL-2.0
Section: net
Maintainer: Hans Dedecker <[email protected]>
Architecture: ramips_24kec
Installed-Size: 819
Filename: base/ipip_1-1_ramips_24kec.ipk
Size: 1568
MD5Sum: b2608895c4483d4dc11a4ea8fd3bbe2d
SHA256sum: 6b7247bf56c32aebd9ec33d423a5944e0fb7621a8027b87b3290da2a29a07aea
Description: IP in IP Tunnel config support in /etc/config/network.
Package: ipset-dns
Version: 2013-05-03-6be3afd819a86136b51c5ae722ab48266187155b
Depends: libc, libmnl
Source: package/network/services/ipset-dns
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4401
Filename: base/ipset-dns_2013-05-03-6be3afd819a86136b51c5ae722ab48266187155b_ramips_24kec.ipk
Size: 5450
MD5Sum: 7783331830dd8ed9ae6b5c2b17bde207
SHA256sum: 6ff13bcd7de4071cc83331c56f0b49875fe65cefa21b64459c7ee1d21b78e60b
Description: The ipset-dns daemon is a lightweight DNS forwarding server that adds all
resolved IPs to a given netfilter ipset. It is designed to be used in
conjunction with dnsmasq's upstream server directive.
Practical use cases include routing over a given gateway traffic for
particular web services or webpages that do not have a priori predictable
IP addresses and instead rely on dizzying arrays of DNS resolutions.
Package: ipset
Version: 6.24-1
Depends: libc, kmod-ipt-ipset, libmnl
Source: package/network/utils/ipset
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 70069
Filename: base/ipset_6.24-1_ramips_24kec.ipk
Size: 70363
MD5Sum: f1c7f896642ebf24eed3a79250115680
SHA256sum: 911a4a1a0663df0723a7bb3b9dba26e30992dd5b8c04422fc70a960e08987a7c
Description: IPset administration utility
Package: iptables-mod-account
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-account
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2156
Filename: base/iptables-mod-account_2.5-1_ramips_24kec.ipk
Size: 2925
MD5Sum: c12ecbcfd002db3623c236c3782773a7
SHA256sum: 4820f9c720bc1b7b8d4ba6bf108876810e9d929cffea9211c12b13248761a622
Description: ACCOUNT iptables extension
Package: iptables-mod-chaos
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-chaos
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1662
Filename: base/iptables-mod-chaos_2.5-1_ramips_24kec.ipk
Size: 2427
MD5Sum: 144f807d64957cfc7419b81eaeae772c
SHA256sum: 93ad8a0ace7708218cde63a4fa245250a8d807765ff2ef9b28c831d374155401
Description: CHAOS iptables extension
Package: iptables-mod-cluster
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-cluster
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2015
Filename: base/iptables-mod-cluster_1.4.21-1_ramips_24kec.ipk
Size: 3067
MD5Sum: 70da05de38edb05f3ddcfc5b8e57ed3f
SHA256sum: 610c720cbba3aa4535cc37d27e958abc6f0d0201234f02691b8103e8f41ae935
Description: iptables extensions for matching cluster.
Netfilter (IPv4/IPv6) module for matching cluster
This option allows you to build work-load-sharing clusters of
network servers/stateful firewalls without having a dedicated
load-balancing router/server/switch. Basically, this match returns
true when the packet must be handled by this cluster node. Thus,
all nodes see all packets and this match decides which node handles
what packets. The work-load sharing algorithm is based on source
address hashing.
This module is usable for ipv4 and ipv6.
If you select it, it enables kmod-ipt-cluster.
see `iptables -m cluster --help` for more information.
Package: iptables-mod-clusterip
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-clusterip
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2316
Filename: base/iptables-mod-clusterip_1.4.21-1_ramips_24kec.ipk
Size: 3191
MD5Sum: bfd177a49d54e7082cfcf9accdf1acbe
SHA256sum: d8ad72feb9c6c04f9732c8566da9c6b5d03107df972539592eec0d8098da9abe
Description: iptables extensions for CLUSTERIP.
The CLUSTERIP target allows you to build load-balancing clusters of
network servers without having a dedicated load-balancing
router/server/switch.
If you select it, it enables kmod-ipt-clusterip.
see `iptables -j CLUSTERIP --help` for more information.
Package: iptables-mod-condition
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-condition
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1758
Filename: base/iptables-mod-condition_2.5-1_ramips_24kec.ipk
Size: 2518
MD5Sum: 4b6dc7d7d517134549fa83c7c0e7970e
SHA256sum: 3eb11d7b6d577ab395161eea2848cd245a4924a13b3ca670096a142a1a86b894
Description: Condition iptables extension
Package: iptables-mod-conntrack-extra
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-conntrack-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 9264
Filename: base/iptables-mod-conntrack-extra_1.4.21-1_ramips_24kec.ipk
Size: 10072
MD5Sum: 4e3c68619033d4aa22db713503b755cb
SHA256sum: 6ab53b95e157dc290bd37dfe54def901f54aff61eb72ef5b6db26e5d2f4624e4
Description: Extra iptables extensions for connection tracking.
Matches:
- connbytes
- connlimit
- connmark
- recent
- helper
Targets:
- CONNMARK
Package: iptables-mod-delude
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-delude
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1321
Filename: base/iptables-mod-delude_2.5-1_ramips_24kec.ipk
Size: 2085
MD5Sum: 64a76025ad4ca279df17694780b5e995
SHA256sum: dd4d429dbb8ab58c780baf0340384384211aae1d439c961c21451a246d822b3a
Description: DELUDE iptables extension
Package: iptables-mod-dhcpmac
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-dhcpmac
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2038
Filename: base/iptables-mod-dhcpmac_2.5-1_ramips_24kec.ipk
Size: 2797
MD5Sum: b05cf4da6c7ba05cfd2fe5d289820455
SHA256sum: c6c27d70ff3ba163c662eddba4e9bf248608888a996b95ac5e93c2f26328ac0c
Description: DHCPMAC iptables extension
Package: iptables-mod-dnetmap
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-dnetmap
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2797
Filename: base/iptables-mod-dnetmap_2.5-1_ramips_24kec.ipk
Size: 3567
MD5Sum: 11aa2bd4148c2f7341f409ebe13b5d39
SHA256sum: 68881a1af436ab09a00d89cc5b962f524b17529f944b13a542689dfec805e95e
Description: DNETMAP iptables extension
Package: iptables-mod-extra
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 8180
Filename: base/iptables-mod-extra_1.4.21-1_ramips_24kec.ipk
Size: 8956
MD5Sum: 7ec412cc298c89243974359344f224bc
SHA256sum: 20c4bb8335d52ae975d631c31db829df2ee8f98ba4059b77c958442e3065db1c
Description: Other extra iptables extensions.
Matches:
- addrtype
- condition
- owner
- physdev (if ebtables is enabled)
- pkttype
- quota
Package: iptables-mod-filter
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-filter
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 11762
Filename: base/iptables-mod-filter_1.4.21-1_ramips_24kec.ipk
Size: 12534
MD5Sum: 59a87f23a0e54c534a5155a53653770b
SHA256sum: 3e07491cb62b2319200ffdf2fc5d7d87b40aaf93a17932d3d56d127634663e87
Description: iptables extensions for packet content inspection.
Includes support for:
Matches:
- layer7
- string
Package: iptables-mod-fuzzy
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-fuzzy
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1856
Filename: base/iptables-mod-fuzzy_2.5-1_ramips_24kec.ipk
Size: 2611
MD5Sum: 68c38c4b665b4d725327e04c42416ba7
SHA256sum: f7e91f6e2e750def5c7b60d2c91b49158998a39cb705fc22f153d438fb1fc152
Description: fuzzy iptables extension
Package: iptables-mod-geoip
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-geoip
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3218
Filename: base/iptables-mod-geoip_2.5-1_ramips_24kec.ipk
Size: 3975
MD5Sum: 7d7f399e437f360b41bcf1b01272400c
SHA256sum: b446c1b4cc83cdba839b86aced22147cf198078f7d4d78406ece3d015e108b3c
Description: geoip iptables extension
Package: iptables-mod-hashlimit
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-hashlimit
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 5240
Filename: base/iptables-mod-hashlimit_1.4.21-1_ramips_24kec.ipk
Size: 5967
MD5Sum: 7c38cd122ad85e6bb0011275c38f7c0f
SHA256sum: 92736569136922311fbd82d62a7c9bd11f4441714d79d5ec6c86f022d170b7b8
Description: iptables extensions for hashlimit matching
Matches:
- hashlimit
Package: iptables-mod-iface
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-iface
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2901
Filename: base/iptables-mod-iface_2.5-1_ramips_24kec.ipk
Size: 3665
MD5Sum: 4a6e2ce4008409889c37bba2e1d11762
SHA256sum: 0054520ec265b5e2fa2d4c15fd1be8b0072c4a69c3dd33c5422b1ca14f2c98aa
Description: iface iptables extension
Package: iptables-mod-ipmark
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-ipmark
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2246
Filename: base/iptables-mod-ipmark_2.5-1_ramips_24kec.ipk
Size: 3010
MD5Sum: dd668536e41737b7e8966f1e82a3e692
SHA256sum: b7f9d8510358515e5b867b71e32fc0dd8a17a1bbc7442c77cbc54cf785cbe3c5
Description: IPMARK iptables extension
Package: iptables-mod-ipopt
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-ipopt
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 12698
Filename: base/iptables-mod-ipopt_1.4.21-1_ramips_24kec.ipk
Size: 13440
MD5Sum: c48d5395ca8280b70143496aa6e0fea5
SHA256sum: 2a6d0d9027ca577835110b24c4b82c9d6e6d845977d5724fffcb93ff292c9210
Description: iptables extensions for matching/changing IP packet options.
Matches:
- dscp
- ecn
- length
- statistic
- tcpmss
- unclean
- hl
Targets:
- DSCP
- CLASSIFY
- ECN
- HL
Package: iptables-mod-ipp2p
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-ipp2p
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2713
Filename: base/iptables-mod-ipp2p_2.5-1_ramips_24kec.ipk
Size: 3471
MD5Sum: 864b00c9c27004b921f7585c35b6cab7
SHA256sum: 06b528817405afa498d01a2e6d99d17cadb711e494fc27ddb1efc1042db6d117
Description: IPP2P iptables extension
Package: iptables-mod-iprange
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-iprange
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2991
Filename: base/iptables-mod-iprange_1.4.21-1_ramips_24kec.ipk
Size: 3692
MD5Sum: 6687615633e45d1a253bc64a9912bae6
SHA256sum: cf0b4a83189ca2d6bc3f2bc39713d252301607e85c3e32bcc7f8ee24af69b1e6
Description: iptables extensions for matching ip ranges.
Matches:
- iprange
Package: iptables-mod-ipsec
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-ipsec
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 5455
Filename: base/iptables-mod-ipsec_1.4.21-1_ramips_24kec.ipk
Size: 6157
MD5Sum: f3ae6c1189e5b0de1b1d871dc99ef6ba
SHA256sum: 56ffbb1f647a5f8eb771732cbe70c1437717b5ac82bfcf057f1fb575683c95dd
Description: iptables extensions for matching ipsec traffic.
Matches:
- ah
- esp
- policy
Package: iptables-mod-ipv4options
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-ipv4options
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2355
Filename: base/iptables-mod-ipv4options_2.5-1_ramips_24kec.ipk
Size: 3110
MD5Sum: 9e456a8c6dfb61a792c4ad3422514d6b
SHA256sum: 51a18e3e9231e186976d03c014a2c2441cc0a970eacf59ee382d70b5a7b4b646
Description: ipv4options iptables extension
Package: iptables-mod-led
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-led
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2091
Filename: base/iptables-mod-led_1.4.21-1_ramips_24kec.ipk
Size: 2843
MD5Sum: cfd5b39843fcd13fc866a74e327a1174
SHA256sum: 908acd9fb0500a9456ef5b781642c2013a8f2a21a4e2b78631ddad5e62fedaa5
Description: iptables extension for triggering a LED.
Targets:
- LED
Package: iptables-mod-length2
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-length2
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2339
Filename: base/iptables-mod-length2_2.5-1_ramips_24kec.ipk
Size: 3106
MD5Sum: f238868ef15384605ec2ab905059e55b
SHA256sum: 227b2683cb3a19e0c448ae8fa723d28c9008dea030d38678bc10613a38d2ad17
Description: length2 iptables extension
Package: iptables-mod-logmark
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-logmark
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2035
Filename: base/iptables-mod-logmark_2.5-1_ramips_24kec.ipk
Size: 2799
MD5Sum: 986b550da848244ae8861b525b83786c
SHA256sum: 4db225e52dd3e8d2f3e30b0aba028f6df5f59be7d9d2d30a6763ee26152d7504
Description: LOGMARK iptables extension
Package: iptables-mod-lscan
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-lscan
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1703
Filename: base/iptables-mod-lscan_2.5-1_ramips_24kec.ipk
Size: 2458
MD5Sum: e1f4b4519c8d57f372ee0a0854681cad
SHA256sum: cd97ca5a979b783151bf782d955c7051a8a4e9b71a99df7cf49b69959a6ec5a2
Description: lscan iptables extension
Package: iptables-mod-lua
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-lua
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2524
Filename: base/iptables-mod-lua_2.5-1_ramips_24kec.ipk
Size: 3289
MD5Sum: d825daf12fa0b630b1733af6bf1a5c49
SHA256sum: ff271bebec7120835deb2bbd1967b5a37f41be48fea7d2fee276dc20456bd06b
Description: Lua PacketScript iptables extension
Package: iptables-mod-nat-extra
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-nat-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2495
Filename: base/iptables-mod-nat-extra_1.4.21-1_ramips_24kec.ipk
Size: 3223
MD5Sum: e13ff24dbd15a94862e15a8a0dc168c8
SHA256sum: 87b7c0c99d89455d7acde5ac47459647b5c0bd2621dc51fa222be6a02265c2be
Description: iptables extensions for extra NAT targets.
Targets:
- MIRROR
- NETMAP
Package: iptables-mod-nflog
Version: 1.4.21-1
Depends: libc, iptables, kmod-nfnetlink-log, kmod-ipt-nflog
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 1877
Filename: base/iptables-mod-nflog_1.4.21-1_ramips_24kec.ipk
Size: 2658
MD5Sum: 319686e283efb96a07addeb700bc040c
SHA256sum: d222855cdb8a4ae618572bb75d803cc3bc8c85c2d69aa6dd28c612393e6ca7e8
Description: iptables extension for user-space logging via NFNETLINK.
Includes:
- libxt_NFLOG
Package: iptables-mod-nfqueue
Version: 1.4.21-1
Depends: libc, iptables, kmod-nfnetlink-queue, kmod-ipt-nfqueue
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2249
Filename: base/iptables-mod-nfqueue_1.4.21-1_ramips_24kec.ipk
Size: 3033
MD5Sum: 1fb2349d6235e65dac0bf08e77c3034d
SHA256sum: 7c01a78e737714da5042ad33d6f43fc87223cb3f0520c5454ef63d4fe402fa52
Description: iptables extension for user-space queuing via NFNETLINK.
Includes:
- libxt_NFQUEUE
Package: iptables-mod-psd
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-psd
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2038
Filename: base/iptables-mod-psd_2.5-1_ramips_24kec.ipk
Size: 2798
MD5Sum: 34423260c3f8f372d98b4041e8189a01
SHA256sum: e1e28f8552290352a1f727069f7659d7cd78fdee2dcea34b70380e2881b4449e
Description: psd iptables extension
Package: iptables-mod-quota2
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-quota2
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2176
Filename: base/iptables-mod-quota2_2.5-1_ramips_24kec.ipk
Size: 2932
MD5Sum: aa1f1fd0b3cf04932d1ec2eced0fdf7d
SHA256sum: eeb6018f120d1db40bccf15b2cb7fe6ccd56c97d337a6103558b525225885bd8
Description: quota2 iptables extension
Package: iptables-mod-sysrq
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-sysrq
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1320
Filename: base/iptables-mod-sysrq_2.5-1_ramips_24kec.ipk
Size: 2078
MD5Sum: 7d903cda2acad8cfa039a5c4a59f8a70
SHA256sum: f88c2fbdff1be0e1299c0fbcd19e2a129c4628e78b041712c3c87422f8dff775
Description: SYSRQ iptables extension
Package: iptables-mod-tarpit
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-tarpit
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1703
Filename: base/iptables-mod-tarpit_2.5-1_ramips_24kec.ipk
Size: 2460
MD5Sum: 0f80373c1296684d853aa1fe9036e3ad
SHA256sum: 885300bf221c9beeff15fc797b1a64585e91b536469e873f45313e8c1f61ca1f
Description: TARPIT iptables extension
Package: iptables-mod-tee
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-tee
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 1767
Filename: base/iptables-mod-tee_1.4.21-1_ramips_24kec.ipk
Size: 2508
MD5Sum: 997eb71e86767c73e497fb6fe975fb27
SHA256sum: 49a4c24c5d092c229167b8c9874671a868060ed88d97dd0d33a542165ac6d33a
Description: TEE iptables extensions.
Targets:
- TEE
Package: iptables-mod-tproxy
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-tproxy
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2911
Filename: base/iptables-mod-tproxy_1.4.21-1_ramips_24kec.ipk
Size: 3648
MD5Sum: ba6bb87a1c489ed7a63592834aa29e6b
SHA256sum: 3cd11e956fa2c732f98b51e107e775c3e8ab89221b254f10f4e22141d45f1d5e
Description: Transparent proxy iptables extensions.
Matches:
- socket
Targets:
- TPROXY
Package: iptables-mod-u32
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-u32
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2939
Filename: base/iptables-mod-u32_1.4.21-1_ramips_24kec.ipk
Size: 3682
MD5Sum: 3e1eafd0dc68a63d1336d5aaf8cad399
SHA256sum: 03afec4f83bd0ca983bec3a01ebfd172b7f866fb1fea0efe845ed079f88fdea5
Description: U32 iptables extensions.
Matches:
- u32
Package: iptables-mod-ulog
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-ulog
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 160
Filename: base/iptables-mod-ulog_1.4.21-1_ramips_24kec.ipk
Size: 891
MD5Sum: 1415e87dcccfa08cb5e6b2f1112041fa
SHA256sum: a88272f4cf8ff83bf2589d28462e75b329fb24aa6f03c52ff5ffb2fa8aad879b
Description: iptables extensions for user-space packet logging.
Targets:
- ULOG
Package: iptables
Version: 1.4.21-1
Depends: libc, kmod-ipt-core, libip4tc, libip6tc, libxtables
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 49760
Filename: base/iptables_1.4.21-1_ramips_24kec.ipk
Size: 50538
MD5Sum: e9c56a2bc2ebbef3a43d9e61b8bfe9eb
SHA256sum: b757a2a5e2a1982e82785c934983f6072f610c7b33d197b47dd680302b920115
Description: IP firewall administration tool.
Matches:
- icmp
- tcp
- udp
- comment
- conntrack
- limit
- mac
- mark
- multiport
- set
- state
- time
Targets:
- ACCEPT
- CT
- DNAT
- DROP
- REJECT
- LOG
- MARK
- MASQUERADE
- REDIRECT
- SET
- SNAT
- TCPMSS
Tables:
- filter
- mangle
- nat
- raw
Package: iptaccount
Version: 2.5-1
Depends: libc, iptables, iptables-mod-account
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4885
Filename: base/iptaccount_2.5-1_ramips_24kec.ipk
Size: 5617
MD5Sum: 60dc4533c1aa639a85d1790ac3ee9e6d
SHA256sum: 7e50e59af3671c902f45ec404f15ce970acc7856b1750cbf11e5e2b7e0e462f8
Description: iptables-mod-account control utility
Package: iputils-arping
Version: 20101006-1
Depends: libc, libsysfs
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5725
Filename: base/iputils-arping_20101006-1_ramips_24kec.ipk
Size: 6465
MD5Sum: 55e4634cdbdc8c55ec2ad7010ec73422
SHA256sum: 7459905a06c467fe30c754c692a5d95d5126802be2749d4458f4eded884efcc9
Description: Program arping from iputils.
Sends ARP REQUEST to a neighbour host.
Package: iputils-clockdiff
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4773
Filename: base/iputils-clockdiff_20101006-1_ramips_24kec.ipk
Size: 5503
MD5Sum: 9753f7d160b09ad9a31a3f1c2429283c
SHA256sum: e489d7c661dc5c03b89409ed4659b17daad165210ea0a78420d66cd6c38f5c9f
Description: Program clockdiff from iputils.
Measures clock difference between hosts.
Package: iputils-ping6
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13088
Filename: base/iputils-ping6_20101006-1_ramips_24kec.ipk
Size: 13879
MD5Sum: 74751cff0177c2ebf51879a4188bda82
SHA256sum: 50d68d846b309591f0422bd2a318bf264bdc4e332a7ad2e52747211beb438a7d
Description: Program ping6 from iputils.
Sends ICMP ECHO_REQUEST to network hosts (IPv6).
Package: iputils-ping
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14885
Filename: base/iputils-ping_20101006-1_ramips_24kec.ipk
Size: 15615
MD5Sum: 80a2e9532ea92f6854101fadff4ac943
SHA256sum: 34d1dbf42b3ea7c80119efa87c1d4280272a6292822be2e54684f92c426eb953
Description: Program ping from iputils.
Sends ICMP ECHO_REQUEST to network hosts (IPv4).
Package: iputils-tftpd
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5158
Filename: base/iputils-tftpd_20101006-1_ramips_24kec.ipk
Size: 5883
MD5Sum: d45b74d01707a9cc284115c7289fdb4f
SHA256sum: 418e85994d987014b6b954b2e8d2838d466fb0e5c1c5178903e6b267fad3b552
Description: Program tftpd from iputils
Trivial File Transfer Protocol server.
Package: iputils-tracepath6
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4709
Filename: base/iputils-tracepath6_20101006-1_ramips_24kec.ipk
Size: 5462
MD5Sum: 12cd28d87990fe6822ecb16c61d744da
SHA256sum: 3e4bd72e88e7ae4fe59d810ee2ea85d7670a3d8c79a96369b853002a7d9ea952
Description: Program tracepath6 from iputils.
Traces path to a network host discovering MTU along this path (IPv6).
Package: iputils-tracepath
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4185
Filename: base/iputils-tracepath_20101006-1_ramips_24kec.ipk
Size: 4942
MD5Sum: 076f6897c62079f588ca9a60b93203db
SHA256sum: cec7f3466f9f53391d518c6328979c4becccd4d432a4974c523c803a24788652
Description: Program tracepath from iputils.
Traces path to a network host discovering MTU along this path (IPv4).
Package: iputils-traceroute6
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5938
Filename: base/iputils-traceroute6_20101006-1_ramips_24kec.ipk
Size: 6664
MD5Sum: 3206f0458d478990a39485a6fdd9f4ee
SHA256sum: 6f1cebd1c839863b02310afaa182a51751e34891243ad36bba2485b203d1b7ef
Description: Program traceroute6 from iputils.
Traces path to a network host (IPv6).
Package: iw
Version: 3.17-1
Depends: libc, libnl-tiny
Source: package/network/utils/iw
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43324
Filename: base/iw_3.17-1_ramips_24kec.ipk
Size: 44036
MD5Sum: 137530cf62c005a60dd43251d1464a42
SHA256sum: d0d76b82f2f1a36b81062cc8cfde4c44c4216e6806406e379d468daee785a6d1
Description: cfg80211 interface configuration utility
Package: iwcap
Version: 1
Depends: libc
Source: package/network/utils/iwcap
License: Apache-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4682
Filename: base/iwcap_1_ramips_24kec.ipk
Size: 5580
MD5Sum: bea7992baf682ed8857f03833b849a82
SHA256sum: 0358eded3ab43d92a0bfcc9340d2c4a9d86010db954df031670b10bbb0d725ed
Description: The iwcap utility receives radiotap packet data from wifi monitor interfaces
and outputs it to pcap format. It gathers recived packets in a fixed ring
buffer to dump them on demand which is useful for background monitoring.
Alternatively the utility can stream the data to stdout to act as remote
capture drone for Wireshark or similar programs.
Package: iwinfo
Version: 2015-01-04-c9fd399316003040825dfbd9700488b621bd990e
Depends: libc, libiwinfo
Source: package/network/utils/iwinfo
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5950
Filename: base/iwinfo_2015-01-04-c9fd399316003040825dfbd9700488b621bd990e_ramips_24kec.ipk
Size: 6743
MD5Sum: 2216417ed771cdfee5a6fc4e7a9fb7a4
SHA256sum: cd18f76ab07b76d5c857103ffffc6f48d854d945a6b7d2faa1197c9c84227095
Description: Command line frontend for the wireless information library.
Package: jshn
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libjson-c, libubox, libblobmsg-json
Source: package/libs/libubox
License: ISC
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5502
Filename: base/jshn_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 6308
MD5Sum: e27fe58207ddeab53605e6e68ebc741a
SHA256sum: c106c7031c030f367d906453b9548a33de01ddc31b62f60003ea246082c4fdd9
Description: Library for parsing and generating JSON from shell scripts
Package: jsonfilter
Version: 2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9
Depends: libc, libubox, libjson-c
Source: package/utils/jsonfilter
License: ISC
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8085
Filename: base/jsonfilter_2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9_ramips_24kec.ipk
Size: 8897
MD5Sum: 9f42107ea15952ca2f7e62803c417223
SHA256sum: 54e1157cad0e4f94517218d8ad696509f0196ba5d7157758e099ba0c84e938a7
Description: OpenWrt JSON filter utility
Package: kmod-6lowpan-iphc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: base/kmod-6lowpan-iphc_3.18.9-1_ramips_24kec.ipk
Size: 861
MD5Sum: ee74360767993c5567bb2d402e7e467c
SHA256sum: 9bbbc61b501865059764f50e383f2eee2b563c9139c5b9a82dece5c3a6c03116
Description: Shared 6lowpan code for IEEE 802.15.4 and Bluetooth.
Package: kmod-8021q
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 184
Filename: base/kmod-8021q_3.18.9-1_ramips_24kec.ipk
Size: 923
MD5Sum: b67a0269b5045d0dabf5e0566c3f3418
SHA256sum: 52b8bfb14c8814a3ad3caecb0699d8a5a9a61f3218bb1ad79e50f98395eac907
Description: Kernel module for 802.1Q VLAN support
Package: kmod-ac97
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: base/kmod-ac97_3.18.9-1_ramips_24kec.ipk
Size: 840
MD5Sum: 4b8185444f6c5db7a96ccc499436d9ae
SHA256sum: 937c1f69cd744d8a4f5f7d0d2295e0b70544d513d53129f870d93c35c0fe48aa
Description: The ac97 controller
Package: kmod-aoe
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21967
Filename: base/kmod-aoe_3.18.9-1_ramips_24kec.ipk
Size: 22633
MD5Sum: cb375f217c165b9f641cfc77877c71d5
SHA256sum: b3465943b176bd1d79ff3a5095c100f0c4d8ab8329035e730a3eb1f89d3c07c0
Description: Kernel support for ATA over Ethernet
Package: kmod-appletalk
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-llc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18432
Filename: base/kmod-appletalk_3.18.9-1_ramips_24kec.ipk
Size: 19208
MD5Sum: 27866a107b9d3da4302ffc33780ec4a5
SHA256sum: 88e90fbe1d3c769a69ad1d15dc62f6c2ce05498708c8f56f8bd1b348f2ee8f96
Description: Kernel module for AppleTalk protocol.
Package: kmod-arptables
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8107
Filename: base/kmod-arptables_3.18.9-1_ramips_24kec.ipk
Size: 8882
MD5Sum: 6d15898825b31ade5d6c44f5f9b34f7d
SHA256sum: f3dda48794b6d1cf592f294bf642e8c177074d650b1dfc049786e62138c308fc
Description: Kernel modules for ARP firewalling
Package: kmod-ath9k-common
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ath
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123562
Filename: base/kmod-ath9k-common_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 121457
MD5Sum: 1d3ca7b7a556d3182a2f96f06d86f41a
SHA256sum: 2fa9ccdc4df8ebb8a5d747f1d1c2798352ad6964fcb0d7c0f861a89a392784bb
Description: Atheros 802.11n wireless devices (common code for ath9k and ath9k_htc)
Package: kmod-ath9k-htc
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ath9k-common, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94843
Filename: base/kmod-ath9k-htc_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 95175
MD5Sum: a5016615e63cda6b8a7ab8773107bd39
SHA256sum: b76e64722d44ffe44a41f50bbd83bfe07e326f9c76358a3ab97dee551a7a451a
Description: This module adds support for wireless adapters based on
Atheros USB AR9271 and AR7010 family of chipsets.
Package: kmod-ath
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12549
Filename: base/kmod-ath_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 13230
MD5Sum: 2d735791f55a330ee15ee7bbda993b26
SHA256sum: c93acf00fbe20969dfefb6cf4bf2ea51fffa9cda1b1d7cdd82c0ba50fb160128
Description: This module contains some common parts needed by Atheros Wireless drivers.
Package: kmod-atm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 26538
Filename: base/kmod-atm_3.18.9-1_ramips_24kec.ipk
Size: 27227
MD5Sum: 21d6859515d511945e0960d6fd7ca1b8
SHA256sum: 837928c5e4854b0269dbb58e5629d31ad3be85edd0d0040b889984bba1ccafbc
Description: Kernel modules for ATM support
Package: kmod-atmtcp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3860
Filename: base/kmod-atmtcp_3.18.9-1_ramips_24kec.ipk
Size: 4607
MD5Sum: 40ddb25ff213c9f27342bf729246bb02
SHA256sum: aa05390ea79ca5fa597d1ed8f9fdc7cf4181c531b7f4c0285f54fd4d8f9a07dc
Description: Kernel module for ATM over TCP support
Package: kmod-ax25
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc16
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 31689
Filename: base/kmod-ax25_3.18.9-1_ramips_24kec.ipk
Size: 32388
MD5Sum: 92eeb274dfec09cda05a81fdee5a2cc2
SHA256sum: 6053fce536f12c83eaabcba9ca68ef1d44a72affae10315c8dd0fa1aa0eeab59
Description: Kernel modules for AX25 support
Package: kmod-block2mtd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3512
Filename: base/kmod-block2mtd_3.18.9-1_ramips_24kec.ipk
Size: 4232
MD5Sum: da2c627a97f1e94008d1c3b5b92c4dab
SHA256sum: fb5cf56daef61bf52aee71e511f11bad96b8c8f4ed6ead34e49294d181b8fcf8
Description: Block device MTD emulation
Package: kmod-bluetooth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-crypto-hash, kmod-6lowpan-iphc, kmod-lib-crc16, kmod-hid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 184516
Filename: base/kmod-bluetooth_3.18.9-1_ramips_24kec.ipk
Size: 184778
MD5Sum: c4aec8ced4fa85e722d43ce86e9c891c
SHA256sum: 968a4dfca085db8865d9808552a49c5f9cf39a58ffa19db2f03d30c82ee1d6fb
Description: Kernel support for Bluetooth devices
Package: kmod-bluetooth_6lowpan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-bluetooth
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10354
Filename: base/kmod-bluetooth_6lowpan_3.18.9-1_ramips_24kec.ipk
Size: 11150
MD5Sum: 3ba0471af8a3d1156e11ce8aa16d3f68
SHA256sum: 12654af468561677267c7eec0dd4defdea69685f89c615dc51a7a4c9943498b2
Description: Kernel support for 6LoWPAN over Bluetooth Low Energy devices
Package: kmod-bonding
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 54184
Filename: base/kmod-bonding_3.18.9-1_ramips_24kec.ipk
Size: 54782
MD5Sum: 5016ad9066f9efaa89d1dc275450b5c9
SHA256sum: 0addc3422eb5fa9bcb0d4ce8c6214863d6f1c5cbf45faddc0e0183fe723bc3e1
Description: Kernel module for NIC bonding.
Package: kmod-brcmfmac
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211, kmod-brcmutil, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 572273
Filename: base/kmod-brcmfmac_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 572813
MD5Sum: ed32b170df75f7e383ad757a9b2f3e25
SHA256sum: d58d9178f390df747cf86eba7d6bb23bf26f2cb338dce62f013069211981ac6c
Description: Kernel module for Broadcom IEEE802.11n USB Wireless cards
Package: kmod-brcmutil
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3651
Filename: base/kmod-brcmutil_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 4446
MD5Sum: ed6180670bcedee117a4da946de181ac
SHA256sum: 5053565ed58f97eabf5b40a569e526d9976e93f9946f1cb88310a8a3ac5214fd
Description: This module contains some common parts needed by Broadcom Wireless drivers brcmsmac and brcmfmac.
Package: kmod-bridge
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-stp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 187
Filename: base/kmod-bridge_3.18.9-1_ramips_24kec.ipk
Size: 931
MD5Sum: 9ab619c9669723121513c21b243416f2
SHA256sum: 8f2b7fb136f7c9da9c38a91febd83702ce835a5e4296bb78a89c03ff6c7bf94b
Description: Kernel module for Ethernet bridging.
Package: kmod-button-hotplug
Version: 3.18.9-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/button-hotplug
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2872
Filename: base/kmod-button-hotplug_3.18.9-3_ramips_24kec.ipk
Size: 3643
MD5Sum: a6ce5a7f33af63983e4cdb61f7d53870
SHA256sum: 6ce2f962f5bccb5ab048edc5a256c69e4d62b0ec839fde5af2ba8c406d902782
Description: Kernel module to generate button uevent-s from input subsystem events.
If your device uses GPIO buttons, see gpio-button-hotplug.
Package: kmod-can-bcm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8186
Filename: base/kmod-can-bcm_3.18.9-1_ramips_24kec.ipk
Size: 9020
MD5Sum: a81582b94d7d2ade2d8e433241884bff
SHA256sum: 578d6155776ee75f474f26d9a7cde506856f3ab541bf69a54cb327d67e5ce6b3
Description: The Broadcast Manager offers content filtering, timeout monitoring,
sending of RTR frames, and cyclic CAN messages without permanent user
interaction.
Package: kmod-can-c-can-platform
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can-c-can, kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2663
Filename: base/kmod-can-c-can-platform_3.18.9-1_ramips_24kec.ipk
Size: 3600
MD5Sum: a836b6860c46cdb98c939a43a0c29c07
SHA256sum: ef12ec0d1dfee3f3876cd4b02b9c9b19ec994f952138df52d59085f34ed91d0c
Description: This driver adds support for the C_CAN/D_CAN chips connected
to the "platform bus" (Linux abstraction for directly to the
processor attached devices) which can be found on various
boards from ST Microelectronics (http://www.st.com) like the
SPEAr1310 and SPEAr320 evaluation boards & TI (www.ti.com)
boards like am335x, dm814x, dm813x and dm811x.
Package: kmod-can-c-can
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5054
Filename: base/kmod-can-c-can_3.18.9-1_ramips_24kec.ipk
Size: 5811
MD5Sum: 909f250f1c37368ff90e16dac37dba5a
SHA256sum: 857b371c3a6dc3984e5757b7c2a2b4c1815f55dac81632dda38db99fd8569903
Description: This driver adds generic support for the C_CAN/D_CAN chips.
Package: kmod-can-gw
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5106
Filename: base/kmod-can-gw_3.18.9-1_ramips_24kec.ipk
Size: 5866
MD5Sum: 69af942290440930ba69d7ea2660b312
SHA256sum: 1db228dff00a59281346187dd9829356d4cd0596416423d5f36dc9c60ba8da93
Description: The CAN Gateway/Router is used to route (and modify) CAN frames.
Package: kmod-can-raw
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4666
Filename: base/kmod-can-raw_3.18.9-1_ramips_24kec.ipk
Size: 5431
MD5Sum: e3ef337fd09acfcf3b1ca59fdf9765df
SHA256sum: 69e1b98ebff3b2afd7111f18bb13d244c27115c6d79ad91da0d321a6097ae9a4
Description: The raw CAN protocol option offers access to the CAN bus via
the BSD socket API.
Package: kmod-can-slcan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4424
Filename: base/kmod-can-slcan_3.18.9-1_ramips_24kec.ipk
Size: 5251
MD5Sum: 3d17fde8b1fe6018b253032223884aab
SHA256sum: b975a408ea02853c7900e731c9d5840deac9d809f596995ab06c347dec7176d0
Description: CAN driver for several 'low cost' CAN interfaces that are attached
via serial lines or via USB-to-serial adapters using the LAWICEL
ASCII protocol.
Package: kmod-can-usb-8dev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5768
Filename: base/kmod-can-usb-8dev_3.18.9-1_ramips_24kec.ipk
Size: 6567
MD5Sum: aa7aa116e418b128c8ff2599792e6bdd
SHA256sum: 85693b0cd69abdf37c07248035ebc3f471087686edcc5ae3ea7e1a5768eeeebc
Description: This driver supports the USB2CAN interface
from 8 devices (http://www.8devices.com).
Package: kmod-can-usb-ems
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5626
Filename: base/kmod-can-usb-ems_3.18.9-1_ramips_24kec.ipk
Size: 6461
MD5Sum: 7c10fdde91b5d0b56d2d1ab0829ccf8a
SHA256sum: 49dd7efee299b6242b100a5ccb4d00f910a606c15e9513414c6b63e5ce422fdf
Description: This driver is for the one channel CPC-USB/ARM7 CAN/USB interface
from EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
Package: kmod-can-usb-esd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6181
Filename: base/kmod-can-usb-esd_3.18.9-1_ramips_24kec.ipk
Size: 7051
MD5Sum: dd6a65797538d84847feacd477388686
SHA256sum: f5af06accc46f54cb9ae153519d8ad5832540c3cb99624b65e1993f8ba98ba11
Description: This driver supports the CAN-USB/2 interface
from esd electronic system design gmbh (http://www.esd.eu).
Package: kmod-can-usb-kvaser
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7951
Filename: base/kmod-can-usb-kvaser_3.18.9-1_ramips_24kec.ipk
Size: 8754
MD5Sum: 047c04df32554d163288a37d1af80f95
SHA256sum: 580d5b09773a4eecd442a4cf0a00bb42a5b81849d369441a5940882baad510cf
Description: This driver adds support for Kvaser CAN/USB devices like Kvaser
Leaf Light.
Package: kmod-can-usb-peak
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12603
Filename: base/kmod-can-usb-peak_3.18.9-1_ramips_24kec.ipk
Size: 13406
MD5Sum: 68f497a822e0f0de466303d2e17961f4
SHA256sum: edf0f4f1c8f755a247aaa4101dceb704fd560d68a6b6c8146827dd89ac9af5f5
Description: This driver supports the PCAN-USB and PCAN-USB Pro adapters
from PEAK-System Technik (http://www.peak-system.com).
Package: kmod-can-vcan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1664
Filename: base/kmod-can-vcan_3.18.9-1_ramips_24kec.ipk
Size: 2478
MD5Sum: f0b15601b205a9a4c323830b8f2a203e
SHA256sum: 651ddddabd8153bde6116e47c9228fdb9b3a7e1600bf951f1c47a49ab2b5206d
Description: Similar to the network loopback devices, vcan offers a
virtual local CAN interface.
Package: kmod-can
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14452
Filename: base/kmod-can_3.18.9-1_ramips_24kec.ipk
Size: 15144
MD5Sum: b5d020e2d3fe044aef9f2a125e1e6956
SHA256sum: b83443b4855bf50c36fef6edc5ab21f4b7b732a82e576591da18ea16e8c8b5b3
Description: Kernel module for CAN bus support.
Package: kmod-capi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20822
Filename: base/kmod-capi_3.18.9-1_ramips_24kec.ipk
Size: 21582
MD5Sum: a6518fdee4a0da1a920c848504510ec6
SHA256sum: 2a6a97c85395d8dae4b981dbf111e4320ffbf99bea6576df793e341d1ccf21a5
Description: Kernel module for basic CAPI (ISDN) support
Package: kmod-carl9170
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211, kmod-ath, kmod-usb-core, kmod-input-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58800
Filename: base/kmod-carl9170_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 59505
MD5Sum: 8605daceadd9b7d0c9216908fad91ac1
SHA256sum: 8dde6bb2730e2cd25bffecdc259125e0ec2545f3225676fb04062bd43d7d03d5
Description: Driver for Atheros AR9170 USB sticks
Package: kmod-cfg80211
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), iw
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 117611
Filename: base/kmod-cfg80211_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 118184
MD5Sum: d166043213f0e94d25b0e774da1b93bd
SHA256sum: d1b78d28673d2124f2454cf72837f4d51359000e2e72b98600322842bba85c9f
Description: cfg80211 is the Linux wireless LAN (802.11) configuration API.
Package: kmod-crypto-aead
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3705
Filename: base/kmod-crypto-aead_3.18.9-1_ramips_24kec.ipk
Size: 4452
MD5Sum: 45d1a94512320282dd0a073126eec5c2
SHA256sum: e96258eca9e27e6df734a63378c91465be1e293f7834c6f65afb0d5eb9972fb6
Description: CryptoAPI AEAD support
Package: kmod-crypto-aes
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 199
Filename: base/kmod-crypto-aes_3.18.9-1_ramips_24kec.ipk
Size: 947
MD5Sum: fba35e427dd61e06ec7b8fbef55003bd
SHA256sum: c79163bab27eb3dda2e3ff1fd5ebbefe5ca9884251315c947aa7cc04340e01ee
Description: AES cipher CryptoAPI module
Package: kmod-crypto-arc4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1263
Filename: base/kmod-crypto-arc4_3.18.9-1_ramips_24kec.ipk
Size: 2055
MD5Sum: 936dd4ca63750edaef794819cc098dba
SHA256sum: 0167ff873683ec6dc6ccca2342208c4bbde18e3e7395112d009e209179199df7
Description: ARC4 (RC4) cipher CryptoAPI module
Package: kmod-crypto-authenc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4284
Filename: base/kmod-crypto-authenc_3.18.9-1_ramips_24kec.ipk
Size: 5028
MD5Sum: 8099416d75c13c72b298e977e0a54f81
SHA256sum: 75f0ee59827280451cd0b7cc1723cf9152c43891e706f1ab673e7f2013e79e70
Description: Combined mode wrapper for IPsec
Package: kmod-crypto-cbc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2018
Filename: base/kmod-crypto-cbc_3.18.9-1_ramips_24kec.ipk
Size: 2816
MD5Sum: f153ea5279d3b19dbd76dfc5b1e3a4af
SHA256sum: e6e34b4dc51ccfa0f7eb82aa60a369040e0713a627c1e59493c60d8ffca8b979
Description: Cipher Block Chaining CryptoAPI module
Package: kmod-crypto-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7278
Filename: base/kmod-crypto-core_3.18.9-1_ramips_24kec.ipk
Size: 8043
MD5Sum: 483f17bc441f3dc6f0ac8ded6d90c325
SHA256sum: 358fb0811a37f8eb0aeda43e79eab3181c3bbc43b020303e84be621d5f1e70ae
Description: Core CryptoAPI modules
Package: kmod-crypto-crc32c
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1035
Filename: base/kmod-crypto-crc32c_3.18.9-1_ramips_24kec.ipk
Size: 1804
MD5Sum: 5762b0a5c82fee4d1d5de8cbdfac7125
SHA256sum: 2b2812d1184e268d7a65097cd25c6365ed489b3276d192fbfe09a66810461ea4
Description: CRC32c CRC module
Package: kmod-crypto-ctr
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-seqiv, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2760
Filename: base/kmod-crypto-ctr_3.18.9-1_ramips_24kec.ipk
Size: 3517
MD5Sum: afd53a5c6919bc9ee098ab126812aa1f
SHA256sum: 870a4618c1e62938646a787f669e0d3d6a78d1b421bf26911c41b0e89d59e9fc
Description: Counter Mode CryptoAPI module
Package: kmod-crypto-deflate
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-zlib, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1441
Filename: base/kmod-crypto-deflate_3.18.9-1_ramips_24kec.ipk
Size: 2224
MD5Sum: 682ca4ff2b8045e8f53a1c23a90cfeb0
SHA256sum: a8afe2e0f77950337331e7e2270a07ca4c79f91f88f5811e8a98c39d64cbecba
Description: Deflate compression CryptoAPI module
Package: kmod-crypto-des
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8371
Filename: base/kmod-crypto-des_3.18.9-1_ramips_24kec.ipk
Size: 8936
MD5Sum: d3a5494525b85dc322d26dd8fff28a26
SHA256sum: 318539e79eb8e39236fb25b4991e5b3a653c5ba640a31a0fbf976762db4441a7
Description: DES/3DES cipher CryptoAPI module
Package: kmod-crypto-ecb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1587
Filename: base/kmod-crypto-ecb_3.18.9-1_ramips_24kec.ipk
Size: 2383
MD5Sum: fd02e35c1c38492ebe5cf6bf9d43c21b
SHA256sum: 09f91d451a9dda0cc3f73036afd1004b7c13a958dd2aa461130e909d732a1669
Description: Electronic CodeBook CryptoAPI module
Package: kmod-crypto-fcrypt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3747
Filename: base/kmod-crypto-fcrypt_3.18.9-1_ramips_24kec.ipk
Size: 4506
MD5Sum: db53cd355de6b9a20760f3a734f31ec3
SHA256sum: afece54a8bd6e2a0a0eb21a83c08a974961971c519e3bbe111915d394f96005d
Description: FCRYPT cipher CryptoAPI module
Package: kmod-crypto-gcm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-ctr, kmod-crypto-ghash, kmod-crypto-null, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7202
Filename: base/kmod-crypto-gcm_3.18.9-1_ramips_24kec.ipk
Size: 7988
MD5Sum: c447bad807bbe06579958236ebead0d0
SHA256sum: 2c33b930bc623d3595fb2a2499da3faacdc68d545b271b3bd6985befc1c38e1d
Description: GCM/GMAC CryptoAPI module
Package: kmod-crypto-gf128
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4234
Filename: base/kmod-crypto-gf128_3.18.9-1_ramips_24kec.ipk
Size: 5009
MD5Sum: 50756bc06e2f0c9a45bbd5f9f7d6b60d
SHA256sum: a06377520b37b102fbc68702c49123ecfe2d09abbd64a421dc20ea8abc090a71
Description: GF(2^128) multiplication functions CryptoAPI module
Package: kmod-crypto-ghash
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-gf128, kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1396
Filename: base/kmod-crypto-ghash_3.18.9-1_ramips_24kec.ipk
Size: 2192
MD5Sum: d3cae3c2fa6004066563aa00236cfd21
SHA256sum: 1703c81c62b2d08856bb30cee73964ea7314774fc8178eeb0e373265c5352cc3
Description: GHASH digest CryptoAPI module
Package: kmod-crypto-hash
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6383
Filename: base/kmod-crypto-hash_3.18.9-1_ramips_24kec.ipk
Size: 7159
MD5Sum: 68170ec62c12e3d8eefb6d4b1a2c564d
SHA256sum: 5704b8da65416c4e0435761585088fb3bb20fbed3880457fd81a6dc26149fd23
Description: CryptoAPI hash support
Package: kmod-crypto-hmac
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2099
Filename: base/kmod-crypto-hmac_3.18.9-1_ramips_24kec.ipk
Size: 2883
MD5Sum: f1550d0bb6a143ae8590065aaeb0dd19
SHA256sum: 1dc09fbdd841c09d1a374aa3bc5e8e1308b7279d1743ecb0d38c8dff4c1430fa
Description: HMAC digest CryptoAPI module
Package: kmod-crypto-hw-geode
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-crypto-hw-geode_3.18.9-1_ramips_24kec.ipk
Size: 863
MD5Sum: 3e61d5683f7844f569c5fd3ab74ba37a
SHA256sum: 3d679b7abe86a8d343032cb0e9095688bc157bcb78980fb611c99ea92f75c33a
Description: AMD Geode hardware crypto module
Package: kmod-crypto-hw-hifn-795x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-random-core, kmod-crypto-manager, kmod-crypto-core, kmod-crypto-des
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-crypto-hw-hifn-795x_3.18.9-1_ramips_24kec.ipk
Size: 880
MD5Sum: 41b28790e3b506675986698a5bffd541
SHA256sum: 8d284a9858e5eea0fc90d176823130074ce95ef7758c4006ff29942aa792a5a0
Description: HIFN 795x crypto accelerator
Package: kmod-crypto-hw-padlock
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aes, kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-crypto-hw-padlock_3.18.9-1_ramips_24kec.ipk
Size: 881
MD5Sum: 35c85ac44ff242af57f9edb37e187cb5
SHA256sum: 1734433d30503f3dfb1affadcfc674f123ca80661c14a034171c0a6d23fa0dd0
Description: VIA PadLock ACE with AES/SHA hw crypto module
Package: kmod-crypto-hw-talitos
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aes, kmod-crypto-manager, kmod-crypto-hash, kmod-random-core, kmod-crypto-authenc, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-crypto-hw-talitos_3.18.9-1_ramips_24kec.ipk
Size: 906
MD5Sum: 41b2c46d1f290285c14ed72766fe7225
SHA256sum: 7c01bf7f2c09c30fe12da94115d825c9e6548c656a02f76ceb3da2fe2f07e8d8
Description: Freescale integrated security engine (SEC) driver
Package: kmod-crypto-iv
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-rng, kmod-crypto-wq, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3722
Filename: base/kmod-crypto-iv_3.18.9-1_ramips_24kec.ipk
Size: 4470
MD5Sum: e4d52009b9620bd82e53b13c0db5af49
SHA256sum: 7c6ca3f5e4339c5ad45e463f1adc2af28af8b78533557fdee0f4cae635863536
Description: CryptoAPI initialization vectors
Package: kmod-crypto-manager
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aead, kmod-crypto-hash, kmod-crypto-pcompress, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-crypto-manager_3.18.9-1_ramips_24kec.ipk
Size: 863
MD5Sum: 3a691133250a84517962af25e8d4cafe
SHA256sum: 52158b28c7642b37b05ec3f694aa08c159f030bf80a62d40e10aeae1f6985f94
Description: CryptoAPI algorithm manager
Package: kmod-crypto-md4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2183
Filename: base/kmod-crypto-md4_3.18.9-1_ramips_24kec.ipk
Size: 2945
MD5Sum: 9d7be0a4bd8f6c006ad8f7e76b3ada2b
SHA256sum: 56b6d7faf56fffab285bf8d6426322ba391f01ce688ad746ce9347ed53136363
Description: MD4 digest CryptoAPI module
Package: kmod-crypto-md5
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1308
Filename: base/kmod-crypto-md5_3.18.9-1_ramips_24kec.ipk
Size: 2095
MD5Sum: e92413140e38ca8f96dbdfa20b53cfeb
SHA256sum: 9a40c68d07f9e869038165a2b7635c576f30391bc01286e99539bc981b136950
Description: MD5 digest CryptoAPI module
Package: kmod-crypto-michael-mic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1412
Filename: base/kmod-crypto-michael-mic_3.18.9-1_ramips_24kec.ipk
Size: 2207
MD5Sum: 671ec93f7c3e7bde7c7474a9d3ea4249
SHA256sum: d8a7a5168845eb15cb312e709e24972ef8ef7c5f3506bbd8c43314c239c05ae0
Description: Michael MIC keyed digest CryptoAPI module
Package: kmod-crypto-misc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104750
Filename: base/kmod-crypto-misc_3.18.9-1_ramips_24kec.ipk
Size: 100808
MD5Sum: f15018d731c2c9a0fe21407cb580dc0b
SHA256sum: 93e05f79c6aa088f104be5bea8223a02622b1e60464bb00113d7014304205c2e
Description: Other CryptoAPI modules
Package: kmod-crypto-null
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-manager
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1274
Filename: base/kmod-crypto-null_3.18.9-1_ramips_24kec.ipk
Size: 2057
MD5Sum: 926c58a7648c6b4b7e324d7e31326293
SHA256sum: 9149efcb52ab4e77f2227effb498282b4894f40ff60df9988c4b4d6ed81132a1
Description: Null CryptoAPI module
Package: kmod-crypto-ocf
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 31400
Filename: base/kmod-crypto-ocf_3.18.9-1_ramips_24kec.ipk
Size: 32057
MD5Sum: 75d6d891269a201be22b90197495ea9d
SHA256sum: 3c82da7bddb7de4e9e8876e61fb83981fa214d43da38c55f05accff7d6a7d17e
Description: OCF modules
Package: kmod-crypto-pcbc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1838
Filename: base/kmod-crypto-pcbc_3.18.9-1_ramips_24kec.ipk
Size: 2641
MD5Sum: 6039aaeb018b990ff16eea666235db38
SHA256sum: 9bf273b75e697ff7806ecc6cbf851cf3d0133c3075761fa3c12fec650655bee5
Description: Propagating Cipher Block Chaining CryptoAPI module
Package: kmod-crypto-pcompress
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-crypto-pcompress_3.18.9-1_ramips_24kec.ipk
Size: 857
MD5Sum: 355369f5bda0c1e38a78b8805e004e8c
SHA256sum: ae8a45742be2963154ceb201b3fd7336651f49984304a554865178e79f41d9de
Description: CryptoAPI Partial (de)compression operations
Package: kmod-crypto-rng
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2111
Filename: base/kmod-crypto-rng_3.18.9-1_ramips_24kec.ipk
Size: 2861
MD5Sum: f34e7d8ab6bca5e8003e0194c615c387
SHA256sum: d85b46f8f2c8142472b1c816f3b8cfbcc2d19d992963a8770ba3a47a640f9f2f
Description: CryptoAPI random number generation
Package: kmod-crypto-seqiv
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aead, kmod-crypto-rng, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2075
Filename: base/kmod-crypto-seqiv_3.18.9-1_ramips_24kec.ipk
Size: 2840
MD5Sum: 24f1f8ea38de3c17f4ae4e185cfd0aee
SHA256sum: 4431da3628d758c9931552a99031f2187c08f3be58aa48ff8c44c2673ccbaf00
Description: CryptoAPI Sequence Number IV Generator
Package: kmod-crypto-sha1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1536
Filename: base/kmod-crypto-sha1_3.18.9-1_ramips_24kec.ipk
Size: 2316
MD5Sum: 522a672a333b6e131abbe7f869dabfe9
SHA256sum: eee15ec48178a62b18295fd198c1879a696590d86425ea5ae90724d9ff32a43d
Description: SHA1 digest CryptoAPI module
Package: kmod-crypto-sha256
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4465
Filename: base/kmod-crypto-sha256_3.18.9-1_ramips_24kec.ipk
Size: 5224
MD5Sum: 6c161b6ff275ad920507bfdef2e60b59
SHA256sum: 908398586ea9ab39f5dbd118af9460b5ef287057ce7a7aeaf3a98c9b5c0bf524
Description: SHA224 SHA256 digest CryptoAPI module
Package: kmod-crypto-test
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-manager
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15174
Filename: base/kmod-crypto-test_3.18.9-1_ramips_24kec.ipk
Size: 15811
MD5Sum: f1672247f144d9799a437f163877cffc
SHA256sum: 36b6778a06cf9c9576f296b1d50f1ef599bc0f034134d662ca53b9b8f6873274
Description: Test CryptoAPI module
Package: kmod-crypto-user
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8912
Filename: base/kmod-crypto-user_3.18.9-1_ramips_24kec.ipk
Size: 9715
MD5Sum: 227d77270c66886ade63585b91289a6a
SHA256sum: 2e641da206159dd8dee2de12bf74515ccc7f746bab13f039dabffd1d6b1e007d
Description: CryptoAPI userspace interface
Package: kmod-crypto-wq
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 908
Filename: base/kmod-crypto-wq_3.18.9-1_ramips_24kec.ipk
Size: 1680
MD5Sum: 985edd1d6242eaad9dace6990e66fda3
SHA256sum: 6474d0c3cf76c19f578766a0c14ccf0a72648f489fcbc66bf60f4500e083f3cc
Description: CryptoAPI work queue handling
Package: kmod-crypto-xts
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-gf128, kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2458
Filename: base/kmod-crypto-xts_3.18.9-1_ramips_24kec.ipk
Size: 3205
MD5Sum: ee1e3f24e0fa09b875e21273fc8edd09
SHA256sum: 8f2b566c03ba7290cccba01b88dbf942c9d3b618e5af2c8373faef68d1d21687
Description: XTS cipher CryptoAPI module
Package: kmod-dm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 72761
Filename: base/kmod-dm_3.18.9-1_ramips_24kec.ipk
Size: 73450
MD5Sum: 38e77e1468bf83a6b4b24dca3c8732e1
SHA256sum: ee008fb1072a003606ca2cd5786d03455f21af9a595449162bc22078818fc858
Description: Kernel module necessary for LVM2 support
Package: kmod-dnsresolver
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3879
Filename: base/kmod-dnsresolver_3.18.9-1_ramips_24kec.ipk
Size: 4609
MD5Sum: 03827e677b644b0bc7454521c8d3e921
SHA256sum: 6115df6bd61d73bc6aaf2a33b40f893465fd3bd63e84572637b0c423a01f73ad
Description: In-kernel DNS Resolver
Package: kmod-dummy
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1872
Filename: base/kmod-dummy_3.18.9-1_ramips_24kec.ipk
Size: 2642
MD5Sum: 4bae67a938b1d83849e076f7bb723a96
SHA256sum: 8fb58d22c4a8c0e31b4c8585605943f52bfbae7cf91165452a33628c933ba2f7
Description: The dummy network device
Package: kmod-ebtables-ipv4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ebtables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3848
Filename: base/kmod-ebtables-ipv4_3.18.9-1_ramips_24kec.ipk
Size: 4646
MD5Sum: e2c10ae6950d09d3b1311270b4138f93
SHA256sum: 1b7c230d2bd1876bf32d656c51e7d8453f6367f7c3683ca002f8c72c49048773
Description: This option adds the IPv4 support to ebtables, which allows basic
IPv4 header field filtering, ARP filtering as well as SNAT, DNAT targets.
Package: kmod-ebtables-ipv6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ebtables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1596
Filename: base/kmod-ebtables-ipv6_3.18.9-1_ramips_24kec.ipk
Size: 2424
MD5Sum: c2ab367ff83faabfab56178a47885586
SHA256sum: 63a0ff0fb2bd015e80255e0ae564df1aa5cc178651f4dd2d31c9310ee93bb1ba
Description: This option adds the IPv6 support to ebtables, which allows basic
IPv6 header field filtering and target support.
Package: kmod-ebtables-watchers
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ebtables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2809
Filename: base/kmod-ebtables-watchers_3.18.9-1_ramips_24kec.ipk
Size: 3586
MD5Sum: 76f6edc47b7fb3bcc449d0c44c94950b
SHA256sum: 5d022e51e54315dd50ad6fcd7fd59c7ae541f0e104ee8a559659ee438c2f1145
Description: This option adds the log watchers, that you can use in any rule
in any ebtables table.
Package: kmod-ebtables
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-bridge
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16761
Filename: base/kmod-ebtables_3.18.9-1_ramips_24kec.ipk
Size: 17611
MD5Sum: 936891c4befd80abaa79e8813ece285f
SHA256sum: 1a8028793c99f389fefc70e3a6ca39eb0c119d96a52108b9d49a1f7a56fa307b
Description: ebtables is a general, extensible frame/packet identification
framework. It provides you to do Ethernet
filtering/NAT/brouting on the Ethernet bridge.
Package: kmod-eeprom-93cx6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1600
Filename: base/kmod-eeprom-93cx6_3.18.9-1_ramips_24kec.ipk
Size: 2384
MD5Sum: cfbb0676639170fda42299590aaf1e81
SHA256sum: ac48b8aab95994183b6b3c5e6bcab06204fb205e9feaeabe4fab3d171ee9f2f0
Description: Kernel module for EEPROM 93CX6 support
Package: kmod-eeprom-at24
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4023
Filename: base/kmod-eeprom-at24_3.18.9-1_ramips_24kec.ipk
Size: 4769
MD5Sum: 59bb774b7b9d7fbe879bdf618e243e69
SHA256sum: 7605ef9ce82d096e920df8930b838cb7b2749e2a7a44361bddf73c753920dfb1
Description: Kernel module for most I2C EEPROMs
Package: kmod-eeprom-at25
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3452
Filename: base/kmod-eeprom-at25_3.18.9-1_ramips_24kec.ipk
Size: 4189
MD5Sum: 379fbe8b03533c2ff732b609b051981d
SHA256sum: 9a7769fe9d64e13d4d1786d5b999b180fbfbe3952de9a4dc48cb1567a7ff57d6
Description: Kernel module for most SPI EEPROMs
Package: kmod-fs-afs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rxrpc, kmod-dnsresolver, kmod-fs-fscache
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 46275
Filename: base/kmod-fs-afs_3.18.9-1_ramips_24kec.ipk
Size: 46999
MD5Sum: 9995e8b78d9c7c4431e9f0511ec9c342
SHA256sum: 74b807a0b226c1fbde2210485c70d0c9160d8f60c8da9974d3d2f8fad8e865e0
Description: Kernel module for Andrew FileSystem client support
Package: kmod-fs-autofs4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13400
Filename: base/kmod-fs-autofs4_3.18.9-1_ramips_24kec.ipk
Size: 14138
MD5Sum: e1f4331a57f14a8ea3cba49052a927d2
SHA256sum: 54221578f07b1d34f3c24daddee39246faf14afb5b3de1887c2f8f61d67788a6
Description: Kernel module for AutoFS4 support
Package: kmod-fs-btrfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc32c, kmod-lib-lzo, kmod-lib-zlib, kmod-lib-raid6, kmod-lib-xor
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 458994
Filename: base/kmod-fs-btrfs_3.18.9-1_ramips_24kec.ipk
Size: 458734
MD5Sum: c15e3cd47dc10ce3a1489bad733bdeb2
SHA256sum: 1e1b69fb1e673bcacaaf08a616a5e1d53d8468f255316421eb5e80a576594355
Description: Kernel module for BTRFS support
Package: kmod-fs-cifs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base, kmod-crypto-arc4, kmod-crypto-hmac, kmod-crypto-md5, kmod-crypto-md4, kmod-crypto-des, kmod-crypto-ecb, kmod-crypto-sha256
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 110535
Filename: base/kmod-fs-cifs_3.18.9-1_ramips_24kec.ipk
Size: 110247
MD5Sum: 02afe5e8b864a255f5a37a887d10c964
SHA256sum: 72bd75c8735beebd81578df8f3eeaa4678b363b733e440480cb46945ddc3de2a
Description: Kernel module for CIFS support
Package: kmod-fs-configfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11316
Filename: base/kmod-fs-configfs_3.18.9-1_ramips_24kec.ipk
Size: 12052
MD5Sum: 258e611d7e4880e3c652ec914f512005
SHA256sum: 2f4c571d941918ae0f8eb6f18639ef7d9125a87c49c7d527b240db9d9a4a22e6
Description: Kernel module for configfs support
Package: kmod-fs-cramfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-zlib
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4813
Filename: base/kmod-fs-cramfs_3.18.9-1_ramips_24kec.ipk
Size: 5562
MD5Sum: 7306d1765458d529e6ed7215ffc25018
SHA256sum: d43be828cf74df0460ada75bc28234aa250b1e7cbc4e147b93b5ed9714840074
Description: Kernel module for cramfs support
Package: kmod-fs-exportfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2753
Filename: base/kmod-fs-exportfs_3.18.9-1_ramips_24kec.ipk
Size: 3507
MD5Sum: 1f28433f7ef74cb0427c3974da4807d1
SHA256sum: 628ebed1fb60bfd89206a758a8c546308d2c374e722f51f8f235a70a4e77ad84
Description: Kernel module for exportfs. Needed for some other modules.
Package: kmod-fs-ext4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc16, kmod-crypto-hash
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 220170
Filename: base/kmod-fs-ext4_3.18.9-1_ramips_24kec.ipk
Size: 220259
MD5Sum: 0db512034481f45311fd0d1705b22829
SHA256sum: 32ba0f0f68505c8ec16009b61ff8ffec47958080ce9b9609afd1846c20ae6f82
Description: Kernel module for EXT4 filesystem support
Package: kmod-fs-f2fs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 76662
Filename: base/kmod-fs-f2fs_3.18.9-1_ramips_24kec.ipk
Size: 77112
MD5Sum: a4a39cdc6b0c1ac723d21a8cb6b5b7ba
SHA256sum: db2bd0a586001298573f538358814d89da43f238ec3ff9e8e72dca66780462ec
Description: Kernel module for F2FS filesystem support
Package: kmod-fs-fscache
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 24879
Filename: base/kmod-fs-fscache_3.18.9-1_ramips_24kec.ipk
Size: 25486
MD5Sum: 5ac8dd624421484f34ba3e675995ba03
SHA256sum: c8dfe27a4185ada74b2fa323662c4be4922fad0c99ad0cca5187b72d82bf3b38
Description: General filesystem local cache manager
Package: kmod-fs-hfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 28050
Filename: base/kmod-fs-hfs_3.18.9-1_ramips_24kec.ipk
Size: 28727
MD5Sum: 428291c78c0ede5ffc240625a5760ff5
SHA256sum: 1eb960dc45f16668c57a50955247ed1dfacdf7235aed70f24abd2720606a0b8d
Description: Kernel module for HFS filesystem support
Package: kmod-fs-hfsplus
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base, kmod-nls-utf8
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 55572
Filename: base/kmod-fs-hfsplus_3.18.9-1_ramips_24kec.ipk
Size: 56167
MD5Sum: d1e9ff334541621f9f019601ef16679c
SHA256sum: b15e822cb8a3cee1560332274e503d2eb5ae36539270841cf8fe26774c587188
Description: Kernel module for HFS+ filesystem support
Package: kmod-fs-isofs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-zlib, kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14921
Filename: base/kmod-fs-isofs_3.18.9-1_ramips_24kec.ipk
Size: 15665
MD5Sum: cda8743ae8de65502535b28d1975d7ed
SHA256sum: 5503db8f407b7422cb68b647cc94d7da8e38e82da9f97fabca690105beba1d10
Description: Kernel module for ISO9660 filesystem support
Package: kmod-fs-jfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 92427
Filename: base/kmod-fs-jfs_3.18.9-1_ramips_24kec.ipk
Size: 92989
MD5Sum: 885b3ec9408e8269793afa51eb4e3aa6
SHA256sum: 600d13842b352447c15b908a2aaeaa2889647b3a745f65462a11fcfe9be22185
Description: Kernel module for JFS support
Package: kmod-fs-minix
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14629
Filename: base/kmod-fs-minix_3.18.9-1_ramips_24kec.ipk
Size: 15385
MD5Sum: c8a0d651573a4b291bf68b7e33b82eb7
SHA256sum: 5e197b11ec9c0f203cc8c35ded4a070ac7c0db4dd19d451e27e611d10e0c3c44
Description: Kernel module for Minix filesystem support
Package: kmod-fs-msdos
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-vfat, kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4692
Filename: base/kmod-fs-msdos_3.18.9-1_ramips_24kec.ipk
Size: 5451
MD5Sum: 634de9b893e40a181ee7d500bc393ee9
SHA256sum: ce97be11a604bbd68cd7f0b12ca686831e62109b2a7fcc455bc0fe41ca944ea0
Description: Kernel module for MSDOS filesystem support
Package: kmod-fs-nfs-common
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 111460
Filename: base/kmod-fs-nfs-common_3.18.9-1_ramips_24kec.ipk
Size: 112012
MD5Sum: 5ddc21c3ba059d7605d2ba13ac90e157
SHA256sum: 40ca9de88570484209d4b3056d312500ad6f10944e0fdfac2c0d5ba3f6313ad7
Description: Common NFS filesystem modules
Package: kmod-fs-nfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-nfs-common, kmod-dnsresolver
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 71494
Filename: base/kmod-fs-nfs_3.18.9-1_ramips_24kec.ipk
Size: 72169
MD5Sum: 1a9cf5615f90dc3dabe891e669e86678
SHA256sum: b8c096a82ef0dccf9e0eeb0debe2c6f81d49b6ce8d527f84154d142bf43a403e
Description: Kernel module for NFS support
Package: kmod-fs-nfsd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-nfs-common, kmod-fs-exportfs
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 43233
Filename: base/kmod-fs-nfsd_3.18.9-1_ramips_24kec.ipk
Size: 43985
MD5Sum: d0964e257d1d6cc1fdd8897b720a2fc9
SHA256sum: 4fb2ddfe5fc9c9922acaf95423b59c41c89c59d09d9562f15d7f89182633433c
Description: Kernel module for NFS kernel server support
Package: kmod-fs-ntfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 53896
Filename: base/kmod-fs-ntfs_3.18.9-1_ramips_24kec.ipk
Size: 54385
MD5Sum: 425344f6cba92d556547e905fd698e40
SHA256sum: 878e005f808e00e32a5d57a5f511f25dd4c4ef17dc058eb89bf6e9486a554899
Description: Kernel module for NTFS filesystem support
Package: kmod-fs-reiserfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 117149
Filename: base/kmod-fs-reiserfs_3.18.9-1_ramips_24kec.ipk
Size: 117281
MD5Sum: 0e9910fbf4a67fceb2d01e1a0e1ebe72
SHA256sum: e5ff2da800fd03cfa4b59aae2ec23b1bf4ebc50c98c7313dbc38984f6ce4bfbf
Description: Kernel module for ReiserFS support
Package: kmod-fs-udf
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-itu-t, kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 48593
Filename: base/kmod-fs-udf_3.18.9-1_ramips_24kec.ipk
Size: 49234
MD5Sum: d658a085d07b6f0f5d89fd56fa8abc80
SHA256sum: df261a560d0c141dfe96fd282697f7ccd3e648fff5e17168329c7c73355d57ae
Description: Kernel module for UDF filesystem support
Package: kmod-fs-vfat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 38056
Filename: base/kmod-fs-vfat_3.18.9-1_ramips_24kec.ipk
Size: 38771
MD5Sum: 594c33078ec018093382dd209bfc2728
SHA256sum: 81631007f2ed9af4cb5ed73458262c129db857b9260690a2d3cea721ba4a2315
Description: Kernel module for VFAT filesystem support
Package: kmod-fs-xfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-exportfs, kmod-lib-crc32c
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 271373
Filename: base/kmod-fs-xfs_3.18.9-1_ramips_24kec.ipk
Size: 271137
MD5Sum: ac79ebdfa5febf8352da1c2d094fd04c
SHA256sum: 3b156d9024ef76c3c2f9c00a544a2c4bf0564c5660119ff7e5b6fa8f9516e8a4
Description: Kernel module for XFS support
Package: kmod-fuse
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 43447
Filename: base/kmod-fuse_3.18.9-1_ramips_24kec.ipk
Size: 44153
MD5Sum: c337e2b5290803391422cf30dffcf18c
SHA256sum: 5c589fe15fb90307ca76da7b342dd961181c611d35f3a71d0b802e874fbab9e9
Description: Kernel module for userspace filesystem support
Package: kmod-gigaset
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-isdn4linux, kmod-lib-crc-ccitt, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 50188
Filename: base/kmod-gigaset_3.18.9-1_ramips_24kec.ipk
Size: 51025
MD5Sum: af743a0b6b9f4a23de5d2e517f0210d2
SHA256sum: 59c8c39c7a357491fedbd0402c60198e0d2af2ae7bd3c115539dd2241719f1e7
Description: This driver supports the Siemens Gigaset SX205/255 family of
ISDN DECT bases, including the predecessors Gigaset 3070/3075
and 4170/4175 and their T-Com versions Sinus 45isdn and Sinus
721X.
Package: kmod-gpio-beeper
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1373
Filename: base/kmod-gpio-beeper_3.18.9-1_ramips_24kec.ipk
Size: 2179
MD5Sum: 0881f64e030a2eb9e876d633e6523413
SHA256sum: b904c2f974860ae7f2c9ec4634783b04a73a5519e4f4f56b53d4bb7da9d5d5f3
Description: This enables playing beeps through an GPIO-connected buzzer
Package: kmod-gpio-button-hotplug
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/gpio-button-hotplug
Section: kernel
Architecture: ramips_24kec
Installed-Size: 5205
Filename: base/kmod-gpio-button-hotplug_3.18.9-1_ramips_24kec.ipk
Size: 6089
MD5Sum: 0f2d201e632d0e3265615667ff759ab3
SHA256sum: faf4f7b656a8c76be8d2bd471bc13e07465be70e6a5a2b91caec577195dbfa47
Description: This is a replacement for the following in-kernel drivers:
1) gpio_keys (KEYBOARD_GPIO)
2) gpio_keys_polled (KEYBOARD_GPIO_POLLED)
Instead of generating input events (like in-kernel drivers do) it generates
uevent-s and broadcasts them. This allows disabling input subsystem which is
an overkill for OpenWrt simple needs.
Package: kmod-gpio-dev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-gpio-dev_3.18.9-1_ramips_24kec.ipk
Size: 868
MD5Sum: dc64fc1c369d0f6311fab94c644a1ad9
SHA256sum: 09ded9638a9976c40c8686b3dc355eaca87ed702cb61a35ebe99305ecb95da50
Description: Kernel module to allows control of GPIO pins using a character device.
Package: kmod-gpio-mcp23s08
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5739
Filename: base/kmod-gpio-mcp23s08_3.18.9-1_ramips_24kec.ipk
Size: 6527
MD5Sum: 5cc3a2a3a70973bccaa01bc282a1011e
SHA256sum: 0f3aecdd183252c47f03a8439d9267f820222587f9e30b8bdd23c463ce3531ac
Description: Kernel module for Microchip MCP23xxx SPI/I2C I/O expander
Package: kmod-gpio-nxp-74hc164
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-gpio-nxp-74hc164_3.18.9-1_ramips_24kec.ipk
Size: 865
MD5Sum: 0a23dfda5e8ab6a6a543fffed1ddad64
SHA256sum: da353df139dece369515bbdde1e0f1c9fdf16e0b379160c299352f4c1f45c234
Description: Kernel module for NXP 74HC164 GPIO expander
Package: kmod-gpio-pca953x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3209
Filename: base/kmod-gpio-pca953x_3.18.9-1_ramips_24kec.ipk
Size: 4030
MD5Sum: a668434bdddf3c32d830436308462139
SHA256sum: dda3ed15014898fdd6a6981e2a6a150e5a33457498f4275de4f3b71ca8cfbe83
Description: Kernel module for MAX731{0,2,3,5}, PCA6107, PCA953{4-9}, PCA955{4-7},
PCA957{4,5} and TCA64{08,16} I2C GPIO expanders
Package: kmod-gpio-pcf857x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2967
Filename: base/kmod-gpio-pcf857x_3.18.9-1_ramips_24kec.ipk
Size: 3755
MD5Sum: 905151bc9e194b73b81fbfc9e1013f28
SHA256sum: 4d79bb8c7d319c94ec2545a018beabe5fa01973c2f01bde35d5f1b9ef251c3e5
Description: Kernel module for PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders
Package: kmod-gre6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel, kmod-ip6-tunnel
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10769
Filename: base/kmod-gre6_3.18.9-1_ramips_24kec.ipk
Size: 11583
MD5Sum: 409c6fca91b664630d1c1526f90fcde8
SHA256sum: 827b59d5d9af32994c3018638a9809d41b5e6b7caf51d53d3e4a83ee8788554e
Description: Generic Routing Encapsulation support over IPv6
Package: kmod-gre
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7714
Filename: base/kmod-gre_3.18.9-1_ramips_24kec.ipk
Size: 8502
MD5Sum: 75a80b05cd293bb8c425e5587a43bf3e
SHA256sum: 4c1547eed3718f140bfc0ec8b2a384f140cf76aad0d29b9af7f46aa103910fa8
Description: Generic Routing Encapsulation support
Package: kmod-hfcmulti
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-misdn
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-hfcmulti_3.18.9-1_ramips_24kec.ipk
Size: 898
MD5Sum: d446fe1b1cde61e04c5a67472a1b52a5
SHA256sum: 0a6202587b597f6a993d49d65c3b9abc7bb46591a2a7cafa9510c7fa72cc377b
Description: Kernel modules for Cologne AG's HFC multiport cards (HFC-4S/8S/E1)
using the mISDN V2 stack
Package: kmod-hfcpci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-misdn
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-hfcpci_3.18.9-1_ramips_24kec.ipk
Size: 886
MD5Sum: 72b4a0256bf716656827fa8e89e0bfa5
SHA256sum: e85ae0b5ff16f70844570a22b9c454a61c33fd990304c80d40f4214f33db9ded
Description: Kernel modules for Cologne AG's HFC pci cards (single port)
using the mISDN V2 stack
Package: kmod-hid-generic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 826
Filename: base/kmod-hid-generic_3.18.9-1_ramips_24kec.ipk
Size: 1582
MD5Sum: bb58805d220ffb9efa1b1d442d50ffd6
SHA256sum: 6cb2a2686314be5810d82cdb08ab84a51003c6c227ac35eeffb665d0070bf57c
Description: Generic HID device support
Package: kmod-hid
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 41963
Filename: base/kmod-hid_3.18.9-1_ramips_24kec.ipk
Size: 42296
MD5Sum: 602c2d2c6585eac17773027f51ad96a9
SHA256sum: 7a05922b6e2d4838ebb3166b646fdc9739a050129afb4f49734102ec9694f412
Description: Kernel modules for HID devices
Package: kmod-hwmon-adt7410
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3672
Filename: base/kmod-hwmon-adt7410_3.18.9-1_ramips_24kec.ipk
Size: 4444
MD5Sum: fcfe26c8e8391d658cf0462eb8d9cd42
SHA256sum: 7b704babf73c6f2bb1cd0da54848deb13430fcaf89de5b2acc5f3dc7d77b62aa
Description: Kernel module for ADT7410/7420 I2C thermal monitor chip
Package: kmod-hwmon-adt7475
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core, kmod-hwmon-vid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8896
Filename: base/kmod-hwmon-adt7475_3.18.9-1_ramips_24kec.ipk
Size: 9678
MD5Sum: a4305cd6af5e42291a695ca221f607dc
SHA256sum: 9adb06df9773d45328b17537035fe8fc597fac08b3470b34b7bd44d6981c6f27
Description: Kernel module for ADT7473/7475/7476/7490 thermal monitor chip
Package: kmod-hwmon-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2136
Filename: base/kmod-hwmon-core_3.18.9-1_ramips_24kec.ipk
Size: 2916
MD5Sum: 5a3230fd034c5e9058c8caf7a41c68a8
SHA256sum: 5753cd87d9c9b50ee713f7fb9a23d589919f03b2154930e2cc5ac247727eefad
Description: Kernel modules for hardware monitoring
Package: kmod-hwmon-gpiofan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3684
Filename: base/kmod-hwmon-gpiofan_3.18.9-1_ramips_24kec.ipk
Size: 4441
MD5Sum: 707a3b149f05d361eac1139f1fe381ed
SHA256sum: 86abf80cf746df07e5e2881cd45568556e84d634af169d0980a45c690bc92ff1
Description: Kernel module for GPIO controlled FANs
Package: kmod-hwmon-gsc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2542
Filename: base/kmod-hwmon-gsc_3.18.9-1_ramips_24kec.ipk
Size: 3304
MD5Sum: 9912faa755df8832630cd0506f8b760b
SHA256sum: d2c2683554fe58f19a19d46215a4a9f8272d843c96a27517106f50fe779bc6b4
Description: Kernel module for the Gateworks System Controller chips.
Package: kmod-hwmon-ina2xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2192
Filename: base/kmod-hwmon-ina2xx_3.18.9-1_ramips_24kec.ipk
Size: 2982
MD5Sum: ba13bff5c9144afcd6086112782916e5
SHA256sum: e4977d88d7be65167b51bcbcf775f75805567d6c75369b3e3c8244b733e12638
Description: Kernel module for ina2xx dc current monitor chips
Package: kmod-hwmon-lm63
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5784
Filename: base/kmod-hwmon-lm63_3.18.9-1_ramips_24kec.ipk
Size: 6547
MD5Sum: ec7d777062757e5edf9d83f2496750ad
SHA256sum: 01e4aa923b17c2e1a02a1e7d60b4d80889dd513605890872e23cb94e5ac6cce8
Description: Kernel module for lm63 and lm64 thermal monitor chip
Package: kmod-hwmon-lm75
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2946
Filename: base/kmod-hwmon-lm75_3.18.9-1_ramips_24kec.ipk
Size: 3683
MD5Sum: 96755957635d33a27f0adc4ddb38a115
SHA256sum: 4e7109aaee61e854ef485b27a390eadcd9ba02ec5b68fcc9bb7e841319f4769b
Description: Kernel module for lm75 thermal monitor chip
Package: kmod-hwmon-lm77
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2745
Filename: base/kmod-hwmon-lm77_3.18.9-1_ramips_24kec.ipk
Size: 3505
MD5Sum: 7496961d32b51edebc9372dfac6e3e3e
SHA256sum: 1f607487f98919e86eca7f9dfc0c893dd43bab89df7ddaaf96ef7e029045efb2
Description: Kernel module for LM77 thermal monitor chip
Package: kmod-hwmon-lm85
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core, kmod-hwmon-vid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7850
Filename: base/kmod-hwmon-lm85_3.18.9-1_ramips_24kec.ipk
Size: 8625
MD5Sum: 8bb03a3f8335ce5315e194e0fad273c3
SHA256sum: 5661bc46006de58219855ec35f49a6f1787fc4f371835be1a775be12c37477e2
Description: Kernel module for LM85 thermal monitor chip
Package: kmod-hwmon-lm90
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7385
Filename: base/kmod-hwmon-lm90_3.18.9-1_ramips_24kec.ipk
Size: 8155
MD5Sum: bf0603d8acc7a8a2e47998bd17395941
SHA256sum: a2ef766daa673a32ba57f9ba3c7112a9d5de2720dc003fb624eb8c5538a763f8
Description: Kernel module for LM90 thermal monitor chip
Package: kmod-hwmon-lm92
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2901
Filename: base/kmod-hwmon-lm92_3.18.9-1_ramips_24kec.ipk
Size: 3650
MD5Sum: bc24e59ca8ca2d1695d1b9b989a00d9d
SHA256sum: 318f0acaa526a96fab6b71243f545d6367fb43c8244bcded026dfeee19bee182
Description: Kernel module for LM92 thermal monitor chip
Package: kmod-hwmon-lm95241
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2798
Filename: base/kmod-hwmon-lm95241_3.18.9-1_ramips_24kec.ipk
Size: 3558
MD5Sum: 275232d32a6ef96310e2c183a8d01a51
SHA256sum: 0af34b63ecf39d0700a695b2a6f99de85adc0ecf7399f1a3e92b15676141d027
Description: Kernel module for LM95241 thermal monitor chip
Package: kmod-hwmon-pwmfan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-hwmon-pwmfan_3.18.9-1_ramips_24kec.ipk
Size: 858
MD5Sum: a79caf4e82b22c89baed0b74f0bc76bd
SHA256sum: 8c767388ea20241157362d32fc42ad53451a5c740f3a9f6003804576d34fb9e1
Description: Kernel module for PWM controlled FANs
Package: kmod-hwmon-sht21
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1651
Filename: base/kmod-hwmon-sht21_3.18.9-1_ramips_24kec.ipk
Size: 2465
MD5Sum: fef0b071275fba9b283a8185d9eab1d2
SHA256sum: 6d5bb169af6eb25947703a6080f38459f17823da3b5b5082fc248ab9b09743d1
Description: Kernel module for Sensirion SHT21 and SHT25 temperature and humidity sensors chip
Package: kmod-hwmon-tmp421
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2622
Filename: base/kmod-hwmon-tmp421_3.18.9-1_ramips_24kec.ipk
Size: 3409
MD5Sum: 15a33e26fc8c9ff8f2e9fd7d45068aa4
SHA256sum: 49bd3c224a4d501868efb2f7b2135b59b21753868127c28d24c381db75718a14
Description: Kernel module for the Texas Instruments TMP421 and compatible chips.
Package: kmod-hwmon-vid
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1436
Filename: base/kmod-hwmon-vid_3.18.9-1_ramips_24kec.ipk
Size: 2233
MD5Sum: e6201749a12b59790078db206a3c8ab4
SHA256sum: 88987b3f7eb532685634ce463ab764cc2d0dff8efae823926ed837dd2af99602
Description: VID/VRM/VRD voltage conversion module for hardware monitoring
Package: kmod-i2c-algo-bit
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3558
Filename: base/kmod-i2c-algo-bit_3.18.9-1_ramips_24kec.ipk
Size: 4321
MD5Sum: 330c81df01a1ecdc24554c703aa6f158
SHA256sum: b440e38cdf03261ce4d5ebf062383ed883a8f82a0904b2152e4926787a30661a
Description: Kernel modules for I2C bit-banging interfaces
Package: kmod-i2c-algo-pca
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4170
Filename: base/kmod-i2c-algo-pca_3.18.9-1_ramips_24kec.ipk
Size: 4914
MD5Sum: 7643628b440e0e44a1eaf86f01855c87
SHA256sum: 0b5d92fb8f334cbbb16721ea8b24be05198376e7cf58d08313d8d4bf944f4013
Description: Kernel modules for I2C PCA 9564 interfaces
Package: kmod-i2c-algo-pcf
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3211
Filename: base/kmod-i2c-algo-pcf_3.18.9-1_ramips_24kec.ipk
Size: 3968
MD5Sum: a8ed745836fbe58159d11bfafbbfe420
SHA256sum: cb0b5382337fd2f96dacda4f18da764db61e3736425bb322e1a7253644678a70
Description: Kernel modules for I2C PCF 8584 interfaces
Package: kmod-i2c-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16218
Filename: base/kmod-i2c-core_3.18.9-1_ramips_24kec.ipk
Size: 16921
MD5Sum: ef74f31f9e4208bb4ab62eaf1d4919ed
SHA256sum: 46072bd0b159427d80e465eb309fb87ae1c53e4cb48fa7e3e565311937ca5bbd
Description: Kernel modules for I2C support
Package: kmod-i2c-gpio-custom
Version: 3.18.9-2
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core, kmod-i2c-gpio
Source: package/kernel/i2c-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 1654
Filename: base/kmod-i2c-gpio-custom_3.18.9-2_ramips_24kec.ipk
Size: 2416
MD5Sum: 3d29648225d42fafd0d507a3eea00524
SHA256sum: e6ce666e7b957af343b7dd3329cdd69f3dc2cf3001d6665ebeeb7fb5bbebeab0
Description: Kernel module for register a custom i2c-gpio platform device.
Package: kmod-i2c-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-algo-bit
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2574
Filename: base/kmod-i2c-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3369
MD5Sum: 8ac86c25b88802010f09d36a6e2f8efd
SHA256sum: c05f678297b92be93ccbb8df671e818cfbe5245ea032aec373ccad785898295b
Description: Kernel modules for a very simple bitbanging I2C driver utilizing the
arch-neutral GPIO API to control the SCL and SDA lines.
Package: kmod-i2c-mux-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-mux
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2963
Filename: base/kmod-i2c-mux-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3716
MD5Sum: a88a7f3b6871379d89d62b330e7b1e8e
SHA256sum: b67fe2c00741cda88e923decd4dbb2b1e8ac745e38613003e938f7abd73c0069
Description: Kernel modules for GENERIC_GPIO I2C bus mux/switching devices
Package: kmod-i2c-mux-pca9541
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-mux
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2139
Filename: base/kmod-i2c-mux-pca9541_3.18.9-1_ramips_24kec.ipk
Size: 2933
MD5Sum: 61166cdef36332e3789e663be46613cb
SHA256sum: 40d4ca56a0ed18e8eeb066e52872155204a90aee40ffbebfaa2e0cb0302adc96
Description: Kernel modules for PCA9541 I2C bus mux/switching devices
Package: kmod-i2c-mux-pca954x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-mux
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2065
Filename: base/kmod-i2c-mux-pca954x_3.18.9-1_ramips_24kec.ipk
Size: 2863
MD5Sum: 397f3af6e5263fc93fd2678fed526da6
SHA256sum: c3a7c020f7d09064990ca9b2be5ad37d50049b35b9d893949f9a45c9f4ee1c37
Description: Kernel modules for PCA954x I2C bus mux/switching devices
Package: kmod-i2c-mux
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1832
Filename: base/kmod-i2c-mux_3.18.9-1_ramips_24kec.ipk
Size: 2626
MD5Sum: afe48bc3325a9d7f7413f465541405f5
SHA256sum: 03eb6a74d6f508a87e818d5a1a2b4cfbaff1a1ef34c94f3ed8fc9d3913e6b81a
Description: Kernel modules for I2C bus multiplexing support
Package: kmod-i2c-ralink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2350
Filename: base/kmod-i2c-ralink_3.18.9-1_ramips_24kec.ipk
Size: 3089
MD5Sum: d03855de26809b0dbcce1231efab0aa2
SHA256sum: a4c6b773cb594a49432770ebacc0381bbd0a81f7b4edbd27d78aa6a634ce7103
Description: Kernel modules for enable ralink i2c controller.
Package: kmod-i2c-tiny-usb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2410
Filename: base/kmod-i2c-tiny-usb_3.18.9-1_ramips_24kec.ipk
Size: 3215
MD5Sum: 408fcc9a2914ba9cf9a051ce91e16199
SHA256sum: 931f49b72a55e183ed34858314ca93ca5eb1ac618b4a8c97d50e0afe27e56c2c
Description: Kernel module for the I2C Tiny USB adaptor developed
by Till Harbaum (http://www.harbaum.org/till/i2c_tiny_usb)
Package: kmod-ifb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2838
Filename: base/kmod-ifb_3.18.9-1_ramips_24kec.ipk
Size: 3567
MD5Sum: fcca79f9827934a535ed63ef3ddc02dc
SHA256sum: 2b2bc0e7498e9bd0ab9ca3f481e36a222964d4a924be56bc67203a733ca8b9ed
Description: The Intermediate Functional Block
Package: kmod-iio-ad799x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core, kmod-iio-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3827
Filename: base/kmod-iio-ad799x_3.18.9-1_ramips_24kec.ipk
Size: 4599
MD5Sum: b2e2ba204d4a57e371a38393cb6e0ba0
SHA256sum: 0b9d8aaf5d8dbed60340f95265f0863672408097bfc818c72d20edbf3a0cf672
Description: support for Analog Devices:
ad7991, ad7995, ad7999, ad7992, ad7993, ad7994, ad7997, ad7998
i2c analog to digital converters (ADC).
Package: kmod-iio-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 23409
Filename: base/kmod-iio-core_3.18.9-1_ramips_24kec.ipk
Size: 24204
MD5Sum: 0f5be034e90cc47d81f1b635a685a06b
SHA256sum: 57140a96921e5e1402b33373b52bd470384b73617f3c5c4a2cdb95d88f3ef943
Description: The industrial I/O subsystem provides a unified framework for
drivers for many different types of embedded sensors using a
number of different physical interfaces (i2c, spi, etc)
Package: kmod-iio-dht11
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iio-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2782
Filename: base/kmod-iio-dht11_3.18.9-1_ramips_24kec.ipk
Size: 3611
MD5Sum: 95e7cffc490c4e3f2cae2960be8d2de3
SHA256sum: f1913ed9ba09f1c38f4a84bec9c82888af5551d4bff07a028ad1e36b034f7d36
Description: support for DHT11 and DHT22 digitial humidity and temperature sensors
attached at GPIO lines. You will need a custom device tree file to
specify the GPIO line to use.
Package: kmod-ikconfig
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 22763
Filename: base/kmod-ikconfig_3.18.9-1_ramips_24kec.ipk
Size: 23549
MD5Sum: 24dc332dd72d9280a2ff59a8fa31367d
SHA256sum: 11a350eb5c2d6b6d1df13363fa7f23e15ca28b500fc9baa58074ec73818c0d6a
Description: Kernel configuration via /proc/config.gz
Package: kmod-input-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16939
Filename: base/kmod-input-core_3.18.9-1_ramips_24kec.ipk
Size: 17670
MD5Sum: 0b428b2697d4031ba46ca142002c4661
SHA256sum: 6c403dc5ee8eae5322c2dc24a3a79aa9ce003d0bb11090ca133bddde6610922c
Description: Kernel modules for support of input device
Package: kmod-input-evdev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6711
Filename: base/kmod-input-evdev_3.18.9-1_ramips_24kec.ipk
Size: 7526
MD5Sum: 827100e5850d64637ee355d6eb976eec
SHA256sum: 27caafe6a20b6b37ec720cd2eadac00646e3e6db87678b26a271a21a203f58ff
Description: Kernel modules for support of input device events
Package: kmod-input-gpio-encoder
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2726
Filename: base/kmod-input-gpio-encoder_3.18.9-1_ramips_24kec.ipk
Size: 3466
MD5Sum: e7a1d328dd1bad92330b634998eea66b
SHA256sum: 2f5d0b920b8d0de18a5ad188ced917bf9b738a5b97f79ed1220ec51768e6f073
Description: GPIO rotay encoder
Package: kmod-input-gpio-keys-polled
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-polldev, kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3049
Filename: base/kmod-input-gpio-keys-polled_3.18.9-1_ramips_24kec.ipk
Size: 3913
MD5Sum: 053cf9bb48c4890774f0bdec1f3cfd4e
SHA256sum: 4a0e8b7d1f460984cb99a6b62bc41761b9d3fe4a1d33351c58fac45137e19438
Description: Kernel module for support polled GPIO keys input device
See also gpio-button-hotplug which is an alternative, lower overhead
implementation that generates uevents instead of kernel input events.
Package: kmod-input-gpio-keys
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4838
Filename: base/kmod-input-gpio-keys_3.18.9-1_ramips_24kec.ipk
Size: 5708
MD5Sum: 6c6509b04ffcf018eb91e4a011a790a8
SHA256sum: a0b95243496adf32c8840492988ce166a993c6b23f52f34b022b675b0ef3f689
Description: This driver implements support for buttons connected
to GPIO pins of various CPUs (and some other chips).
See also gpio-button-hotplug which is an alternative, lower overhead
implementation that generates uevents instead of kernel input events.
Package: kmod-input-joydev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5588
Filename: base/kmod-input-joydev_3.18.9-1_ramips_24kec.ipk
Size: 6359
MD5Sum: 2e5cac12026b29fe5b29ff4fbed6b34c
SHA256sum: ca9326f1a86be35014455543ae21b7869a7ae91ff7268380011ba31c57d17971
Description: Kernel module for joystick support
Package: kmod-input-matrixkmap
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2025
Filename: base/kmod-input-matrixkmap_3.18.9-1_ramips_24kec.ipk
Size: 2802
MD5Sum: 5bfad1faacde8b04bbee4dc40f26ef71
SHA256sum: e1fbd730ea4d0922bdfdc49bf582cce913bf9a5382c876a735aca30fef4f7bb6
Description: Input matrix devices support
Package: kmod-input-polldev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2291
Filename: base/kmod-input-polldev_3.18.9-1_ramips_24kec.ipk
Size: 3076
MD5Sum: de650cd38618ff084de0c8086f35e442
SHA256sum: d500e8c5248691a2e694330765e2c6c6931938c11ceb25206bc49ec58e6753e6
Description: Kernel module for support of polled input devices
Package: kmod-ip6-tunnel
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12206
Filename: base/kmod-ip6-tunnel_3.18.9-1_ramips_24kec.ipk
Size: 12949
MD5Sum: 7ba10a408f84d040df984165ee18cf0b
SHA256sum: 484d73f3d56438a7a9974463f3b0dc5518b55ff7b8fd15315f634f778f2badb8
Description: Kernel modules for IPv6-in-IPv6 and IPv4-in-IPv6 tunnelling
Package: kmod-ip6tables-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ip6tables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4356
Filename: base/kmod-ip6tables-extra_3.18.9-1_ramips_24kec.ipk
Size: 5110
MD5Sum: aa2ae5aa39628f4939d5e2862b40e102
SHA256sum: 6684d8912388eaf0e138b8ad40dda85f1d168194f0a76a930285a7e180f85e0e
Description: Netfilter IPv6 extra header matching modules
Package: kmod-ip6tables
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-ipt6, kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8162
Filename: base/kmod-ip6tables_3.18.9-1_ramips_24kec.ipk
Size: 8941
MD5Sum: cf37026f00939bdb5284d824bce850da
SHA256sum: ae93ab4ef9d94fc2a746d8a9204bcfaeeca5abf09427437498b371cfae799282
Description: Netfilter IPv6 firewalling support
Package: kmod-ipip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iptunnel, kmod-iptunnel4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3551
Filename: base/kmod-ipip_3.18.9-1_ramips_24kec.ipk
Size: 4297
MD5Sum: c46526fe4d3b13466518cb811156e569
SHA256sum: a30b2965bb41d1fad6d4e686fd459a58cd1111f10e15de4da39b5eaa18c89091
Description: Kernel modules for IP-in-IP encapsulation
Package: kmod-ipoa
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6707
Filename: base/kmod-ipoa_3.18.9-1_ramips_24kec.ipk
Size: 7518
MD5Sum: 29a93b897c9010b06979fcc1fcc920d7
SHA256sum: fb5a2b1db8771d5c71cb5ace08af40f16c71d63820d0ac564ab67b3f6743cf9c
Description: Kernel modules for IPoA (IP over ATM) support
Package: kmod-ipsec4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipsec, kmod-iptunnel4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11916
Filename: base/kmod-ipsec4_3.18.9-1_ramips_24kec.ipk
Size: 12719
MD5Sum: 61f66bc394f1bcf3e94f72a07d15e48b
SHA256sum: 83c2a30ddc39877be115ae5d8426d67bc89a4a51ee31e45d140dc8ffbbb663c5
Description: Kernel modules for IPsec support in IPv4.
Includes:
- ah4
- esp4
- ipcomp4
- xfrm4_mode_beet
- xfrm4_mode_transport
- xfrm4_mode_tunnel
- xfrm4_tunnel
Package: kmod-ipsec6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipsec, kmod-iptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12894
Filename: base/kmod-ipsec6_3.18.9-1_ramips_24kec.ipk
Size: 13686
MD5Sum: 25ec6544e30f51873f2d75702fdd7697
SHA256sum: e44b951a2ef377badd15866101fdfe948dcc8f240483ad75eeb6fa914dfdec6a
Description: Kernel modules for IPsec support in IPv6.
Includes:
- ah6
- esp6
- ipcomp6
- xfrm6_mode_beet
- xfrm6_mode_transport
- xfrm6_mode_tunnel
- xfrm6_tunnel
Package: kmod-ipsec
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-authenc, kmod-crypto-iv, kmod-crypto-des, kmod-crypto-hmac, kmod-crypto-md5, kmod-crypto-sha1, kmod-crypto-deflate, kmod-crypto-cbc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 32821
Filename: base/kmod-ipsec_3.18.9-1_ramips_24kec.ipk
Size: 33640
MD5Sum: 971ba429e7c9f29b031d149a56aa4e6c
SHA256sum: ad0f74b6ef5716b38db28631b7d2b481f84565a88993be5e67e9a0ef25143347
Description: Kernel modules for IPsec support in both IPv4 and IPv6.
Includes:
- af_key
- xfrm_ipcomp
- xfrm_user
Package: kmod-ipt-account
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6776
Filename: base/kmod-ipt-account_3.18.9+2.5-1_ramips_24kec.ipk
Size: 7607
MD5Sum: 7bd5ac41320bcd8a70d48e5eacfe1365
SHA256sum: b2756e696f832cd297ef5c9ed0862bad02c9f5680d9a09142630e341fb164334
Description: ACCOUNT netfilter module
Package: kmod-ipt-chaos
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables, kmod-ipt-delude, kmod-ipt-tarpit
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2326
Filename: base/kmod-ipt-chaos_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3114
MD5Sum: f47dbdf88fffff047e5fc9a85fbb6bfc
SHA256sum: 66e2396c75b03ca0674105c40ba4a56c93dd7b92b6ec8add399f405476814e38
Description: CHAOS netfilter module
Package: kmod-ipt-cluster
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1511
Filename: base/kmod-ipt-cluster_3.18.9-1_ramips_24kec.ipk
Size: 2591
MD5Sum: d1ee4fe5e87fc4281e2195379359a507
SHA256sum: 67f33d0140f3fe0ab9499bd177a18ec924f368f67136a48bcca138f407b12346
Description: Netfilter (IPv4/IPv6) module for matching cluster
This option allows you to build work-load-sharing clusters of
network servers/stateful firewalls without having a dedicated
load-balancing router/server/switch. Basically, this match returns
true when the packet must be handled by this cluster node. Thus,
all nodes see all packets and this match decides which node handles
what packets. The work-load sharing algorithm is based on source
address hashing.
This module is usable for ipv4 and ipv6.
To use it also enable iptables-mod-cluster
see `iptables -m cluster --help` for more information.
Package: kmod-ipt-clusterip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4677
Filename: base/kmod-ipt-clusterip_3.18.9-1_ramips_24kec.ipk
Size: 5583
MD5Sum: 425043d6457e64a1d1b43dc923fb4b3e
SHA256sum: d01c8c31e114d5802e3ec905105dc93fafe047a03b249ae5a8895f80eafadd14
Description: Netfilter (IPv4-only) module for CLUSTERIP
The CLUSTERIP target allows you to build load-balancing clusters of
network servers without having a dedicated load-balancing
router/server/switch.
To use it also enable iptables-mod-clusterip
see `iptables -j CLUSTERIP --help` for more information.
Package: kmod-ipt-compat-xtables
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ip6tables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 820
Filename: base/kmod-ipt-compat-xtables_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1636
MD5Sum: b640bf919665e27a6b3edbf7999eb593
SHA256sum: d6352191599b95e16b9fffdeb6f92d41cabbc58074f37141f06aa7380631356a
Description: API compatibilty layer netfilter module
Package: kmod-ipt-condition
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2502
Filename: base/kmod-ipt-condition_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3277
MD5Sum: 935c1c2e357382197988b2d62cd00254
SHA256sum: ceab139d6ea3baefe3e24cbddaa3f0dcea85fb20e9bd1b122f743dc72d58d940
Description: Condition netfilter module
Package: kmod-ipt-conntrack-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10603
Filename: base/kmod-ipt-conntrack-extra_3.18.9-1_ramips_24kec.ipk
Size: 11428
MD5Sum: 61659449161d740d11ae1617760ac38f
SHA256sum: 2fe34423681639a6348aa3b80a4d0f2517f34b7343c9c3c8b7892e997a2d3a52
Description: Netfilter (IPv4) extra kernel modules for connection tracking
Includes:
- connbytes
- connmark/CONNMARK
- conntrack
- helper
- recent
Package: kmod-ipt-conntrack
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4706
Filename: base/kmod-ipt-conntrack_3.18.9-1_ramips_24kec.ipk
Size: 5496
MD5Sum: 8f66d06ebd41c9959c4874f5ffcedb27
SHA256sum: 5fed584afcfa1258693c41b77c3456f268d991a47088d8e5fb065e4d6557b786
Description: Netfilter (IPv4) kernel modules for connection tracking
Includes:
- conntrack
- defrag
- iptables_raw
- NOTRACK
- state
Package: kmod-ipt-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-ipt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16374
Filename: base/kmod-ipt-core_3.18.9-1_ramips_24kec.ipk
Size: 17158
MD5Sum: 8340ecda57a95067c96450a83ce54016
SHA256sum: 63e684d11459a96fd609e0b0a3709f289bf4813d162576ded4144aae362eb522
Description: Netfilter core kernel modules
Includes:
- comment
- limit
- LOG
- mac
- multiport
- REJECT
- TCPMSS
Package: kmod-ipt-delude
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1898
Filename: base/kmod-ipt-delude_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2718
MD5Sum: b41d5fc9ffb516921cf14849bf4a05ab
SHA256sum: 746ede20affc044259aedb96166b9eb06c84b15bd63d8f4c1818422c90cf71dd
Description: DELUDE netfilter module
Package: kmod-ipt-dhcpmac
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1607
Filename: base/kmod-ipt-dhcpmac_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2428
MD5Sum: 9d750a873fe9a2749d7c3e294b4e2200
SHA256sum: 51027c65eca210a59065f8dfc2bc8ebbba9a9fa3894d64a2633df1cd4401edef
Description: DHCPMAC netfilter module
Package: kmod-ipt-dnetmap
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables, kmod-ipt-nat
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7485
Filename: base/kmod-ipt-dnetmap_3.18.9+2.5-1_ramips_24kec.ipk
Size: 8290
MD5Sum: d1890f70c1e108d2a5b0477fd4cf5b99
SHA256sum: d062bdbf55e1cec7a3924d692fb4723bd004c6dc8874e6196964a8bd9f6b4492
Description: DNETMAP netfilter module
Package: kmod-ipt-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4142
Filename: base/kmod-ipt-extra_3.18.9-1_ramips_24kec.ipk
Size: 4930
MD5Sum: 917be4a28baae478142cbb9c5bebb692
SHA256sum: 5885faaae002687936d2f5c73daaa699f7e4381c92f9a78bfb8a35e35e25ab25
Description: Other Netfilter (IPv4) kernel modules
Includes:
- addrtype
- owner
- physdev (if bridge support was enabled in kernel)
- pkttype
- quota
Package: kmod-ipt-filter
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-lib-textsearch, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1080
Filename: base/kmod-ipt-filter_3.18.9-1_ramips_24kec.ipk
Size: 1902
MD5Sum: 7255490603f0e95b0daff186f17166fc
SHA256sum: e5bd5f8aa0527ceff1693446e641611b36a3f45bc49d6fe85c159f24f410cefd
Description: Netfilter (IPv4) kernel modules for packet content inspection
Includes:
- layer7
- string
Package: kmod-ipt-fuzzy
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1283
Filename: base/kmod-ipt-fuzzy_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2098
MD5Sum: 3ef84b1aefb3fc3e1527305d17993550
SHA256sum: 3e2c315424a970735e865aaaf1248305e7a3b8b807066776e4014c0fe1615062
Description: fuzzy netfilter module
Package: kmod-ipt-geoip
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2768
Filename: base/kmod-ipt-geoip_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3544
MD5Sum: 98aeba4f474aa8d07226f29589694895
SHA256sum: 385c24970549a58315962ecad9569e8a87bfda16e5797149759c7986165dea8a
Description: geoip netfilter module
Package: kmod-ipt-hashlimit
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5721
Filename: base/kmod-ipt-hashlimit_3.18.9-1_ramips_24kec.ipk
Size: 6499
MD5Sum: ecf2d5c7d6347bf58c4bd9f819662700
SHA256sum: 06a1a91436bd83b2a63d73649c452bd8c05f392f396bca4ab2e7d64881361b73
Description: Kernel modules support for the hashlimit bucket match module
Package: kmod-ipt-iface
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1112
Filename: base/kmod-ipt-iface_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1908
MD5Sum: c657fddc27035ff8ff63605e282944dd
SHA256sum: c4ee7ba7de83fa6739362a6c80c70f0a32878ca12f1d1b788b837096cd649b76
Description: iface netfilter module
Package: kmod-ipt-ipmark
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1123
Filename: base/kmod-ipt-ipmark_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1932
MD5Sum: a12bd60b641532c7710e9ebf202f7a51
SHA256sum: 80dc2d6b5be1a7a551827d907ef03acfd625fffe0990057d907986d376f306a9
Description: IPMARK netfilter module
Package: kmod-ipt-ipopt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5971
Filename: base/kmod-ipt-ipopt_3.18.9-1_ramips_24kec.ipk
Size: 6818
MD5Sum: c29288fdf46d4f56351eac6fbe23e6c8
SHA256sum: 858892877876ffcc53e435f8853584b5bc3da59e368c3b75daed64a75b84b40f
Description: Netfilter (IPv4) modules for matching/changing IP packet options
Includes:
- CLASSIFY
- dscp/DSCP
- ecn/ECN
- hl/HL
- length
- mark/MARK
- statistic
- tcpmss
- time
- ttl/TTL
- unclean
Package: kmod-ipt-ipp2p
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5182
Filename: base/kmod-ipt-ipp2p_3.18.9+2.5-1_ramips_24kec.ipk
Size: 5958
MD5Sum: 900cedb4db22f2dad492a8a25801b2b9
SHA256sum: 4d0edaf901e8aeab663e18284b7aeb414c8b116f11e700a0d3042cd720ea4811
Description: IPP2P netfilter module
Package: kmod-ipt-iprange
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1174
Filename: base/kmod-ipt-iprange_3.18.9-1_ramips_24kec.ipk
Size: 1976
MD5Sum: 447494f56ae026cef6d3f64e3bf4c07c
SHA256sum: 2e2f1bf3d06323f38ee74f7f7cf028e3c0eaa5b5a276f3006fdc1941b1a429b8
Description: Netfilter (IPv4) module for matching ip ranges
Includes:
- iprange
Package: kmod-ipt-ipsec
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2562
Filename: base/kmod-ipt-ipsec_3.18.9-1_ramips_24kec.ipk
Size: 3353
MD5Sum: c66922277a8466714d4786eec82a7e68
SHA256sum: 58c7ec092cd1d310a0258a062c66a8a1d5e27cbd498f97eb0e9bf5e3f49fc4a3
Description: Netfilter (IPv4) modules for matching IPSec packets
Includes:
- ah
- esp
- policy
Package: kmod-ipt-ipset
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nfnetlink
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 124013
Filename: base/kmod-ipt-ipset_3.18.9-1_ramips_24kec.ipk
Size: 124388
MD5Sum: 78dd632d6766271f0efb447d5741adc9
SHA256sum: 5362c9ed114cc2d92b1006e7d021e2d74a69774b4ea395ddf9da6270043d5f11
Description: IPset netfilter modules
Package: kmod-ipt-ipv4options
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 941
Filename: base/kmod-ipt-ipv4options_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1751
MD5Sum: aa5f51aeae907d45dd97e2ca2381ef45
SHA256sum: 922d100d5001145e06642c49665b09b2931e57f043baa2caf8624c0657b02980
Description: ipv4options netfilter module
Package: kmod-ipt-led
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1827
Filename: base/kmod-ipt-led_3.18.9-1_ramips_24kec.ipk
Size: 2629
MD5Sum: 8f661aba7bd92954f7295f555c5c1aad
SHA256sum: f02c78ef9b22e77bfbaf50b460e9b5d5b8b960bdb153f19ca21f65baacb1501d
Description: Netfilter target to trigger a LED when a network packet is matched.
Package: kmod-ipt-length2
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2150
Filename: base/kmod-ipt-length2_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2969
MD5Sum: afebd8ae8acbf3f21a038e4721799f28
SHA256sum: 8c6a7d7e50bc35ba1c061bf82a5ea4a1af89dc25f644cdca7719861212e01886
Description: length2 netfilter module
Package: kmod-ipt-logmark
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1937
Filename: base/kmod-ipt-logmark_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2759
MD5Sum: 844ac6453c1e61ec6cfecf15c4433d16
SHA256sum: 76fd0f360b48708e36ffe80ab0a41c446872b7a21373acf8c000bb4d3d250290
Description: LOGMARK netfilter module
Package: kmod-ipt-lscan
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2152
Filename: base/kmod-ipt-lscan_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2915
MD5Sum: 4b20e44a6903d9566787a41fb6a766c2
SHA256sum: aec1f35c9f8f670110b54dbf044c9aa323c647f3808657a77e2cebe8fb8c0725
Description: lscan netfilter module
Package: kmod-ipt-lua
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-conntrack-extra
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69382
Filename: base/kmod-ipt-lua_3.18.9+2.5-1_ramips_24kec.ipk
Size: 69878
MD5Sum: 7d3578b55558c8a2c52ab8e0b48da504
SHA256sum: 18bf5608ffdbb40e0d6e56b630c7837804014d67bfd42711639379b43ff5fab6
Description: Lua PacketScript netfilter module
Package: kmod-ipt-nat-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1352
Filename: base/kmod-ipt-nat-extra_3.18.9-1_ramips_24kec.ipk
Size: 2182
MD5Sum: cf9e6212efb0b5400b927f314bbb706f
SHA256sum: 30894dabb44b3f40b696342dea24785c3090da32e90c208ed88fb8511841025f
Description: Netfilter (IPv4) kernel modules for extra NAT targets
Includes:
- NETMAP
- REDIRECT
Package: kmod-ipt-nat6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-nat6, kmod-ipt-core, kmod-ipt-conntrack, kmod-ipt-core, kmod-ipt-nat, kmod-ipt-core, kmod-ip6tables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3732
Filename: base/kmod-ipt-nat6_3.18.9-1_ramips_24kec.ipk
Size: 4542
MD5Sum: 6cb502846cbfd4ccc358828f71d11b11
SHA256sum: 12864c64ca3bb99cd6f62ce93c49d68b3b642f8aa8ecd97686860143dd500b5d
Description: Netfilter (IPv6) kernel modules for NAT targets
Package: kmod-ipt-nat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3988
Filename: base/kmod-ipt-nat_3.18.9-1_ramips_24kec.ipk
Size: 4766
MD5Sum: e8281da423ce4a2a56a00afebe699b9e
SHA256sum: fb133ebbe8118442381a3fa1936fb90ac812f01adac26f2a1c4544c4317deeb1
Description: Netfilter (IPv4) kernel modules for basic NAT targets
Includes:
- MASQUERADE
Package: kmod-ipt-nathelper-rtsp
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-conntrack-extra, kmod-ipt-nat
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7206
Filename: base/kmod-ipt-nathelper-rtsp_3.18.9+2.5-1_ramips_24kec.ipk
Size: 8031
MD5Sum: 663a7cfd53f0719687148b7ce5436d4e
SHA256sum: 99ecc0decbbd450f5b54b55b93319fb4e9d9fd882be65e3fb1eff5e0db6a8396
Description: RTSP Conntrack and NAT netfilter module
Package: kmod-ipt-nflog
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nfnetlink-log
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 971
Filename: base/kmod-ipt-nflog_3.18.9-1_ramips_24kec.ipk
Size: 1774
MD5Sum: 219b8aa59eb5f71ccb03fd1a5445c1f5
SHA256sum: 8867f782994aa9522ac01875ba836abf1402582ce04d5eaaa1e5456f7a25a73d
Description: Netfilter module for user-space packet logging
Includes:
- NFLOG
Package: kmod-ipt-nfqueue
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nfnetlink-queue
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1885
Filename: base/kmod-ipt-nfqueue_3.18.9-1_ramips_24kec.ipk
Size: 2707
MD5Sum: 0cca6a0e73582dda1180d43ba8b07b38
SHA256sum: 849bf2c1c440527c83fc6116a2edfab648ca3f161e1e9c248dc7bf5533eb3129
Description: Netfilter module for user-space packet queuing
Includes:
- NFQUEUE
Package: kmod-ipt-psd
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2701
Filename: base/kmod-ipt-psd_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3470
MD5Sum: d5c4d6a561b97eb1ebdc0862050f25d4
SHA256sum: bba4e3c305941467cf4b42046cf391ff312f72222464a0a5db41449885822310
Description: psd netfilter module
Package: kmod-ipt-quota2
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3044
Filename: base/kmod-ipt-quota2_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3815
MD5Sum: 2d659fecefe93dbc2c932a0db1b7d7ee
SHA256sum: 712a11f1f82a91ab5bdb9aceda1d39fb796660dbdc44eec5f339dc59a279944d
Description: quota2 netfilter module
Package: kmod-ipt-sysrq
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3733
Filename: base/kmod-ipt-sysrq_3.18.9+2.5-1_ramips_24kec.ipk
Size: 4517
MD5Sum: 0e46d0807272d7d8f1875447e0a4ce57
SHA256sum: 64bff38ef46fcb804796ffd7e7a2b1218ba7f88474bda3830e6ae592752e1558
Description: SYSRQ netfilter module
Package: kmod-ipt-tarpit
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables, kmod-ipv6
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3531
Filename: base/kmod-ipt-tarpit_3.18.9+2.5-1_ramips_24kec.ipk
Size: 4300
MD5Sum: 4914bd2b283d4f8cf8261e45b531f920
SHA256sum: 91af767025775594da8998ef4b9134d5b15a5bbaa9ed3ee97842c470cf29d0e2
Description: TARPIT netfilter module
Package: kmod-ipt-tee
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-conntrack, kmod-ipv6, kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2048
Filename: base/kmod-ipt-tee_3.18.9-1_ramips_24kec.ipk
Size: 2823
MD5Sum: 1f6eb0d4f368ff94f129a84b90744f1a
SHA256sum: 6cb083b2edb29056af996c72efc4ab59d6a48dfcb1bf924c3b95dfc9e0597ebd
Description: Kernel modules for TEE
Package: kmod-ipt-tproxy
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-conntrack, kmod-ipv6, kmod-ip6tables, kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5127
Filename: base/kmod-ipt-tproxy_3.18.9-1_ramips_24kec.ipk
Size: 5900
MD5Sum: a17d752b6b983a87f7a5340da683343c
SHA256sum: 85ca8e1828db2f566de2f1d6073b571c253bf3388bfffcce4415b1c94b6fcc64
Description: Kernel modules for Transparent Proxying
Package: kmod-ipt-u32
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1231
Filename: base/kmod-ipt-u32_3.18.9-1_ramips_24kec.ipk
Size: 2006
MD5Sum: a29c8ddeeb2af66703bdbaf742c8f43a
SHA256sum: 3dedd316a89297ab518be0dc05174bbfbb156cb9d6d81b064744728da525af9a
Description: Kernel modules for U32
Package: kmod-ipt-ulog
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-ipt-ulog_3.18.9-1_ramips_24kec.ipk
Size: 883
MD5Sum: 1590630cd9a9ec588da367b511282c96
SHA256sum: e36bbbc7b01005f00d2a490c7ab44883ac9008a344af02e6b5732ce9fd65af36
Description: Netfilter (IPv4) module for user-space packet logging
Includes:
- ULOG
Package: kmod-iptunnel4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1882
Filename: base/kmod-iptunnel4_3.18.9-1_ramips_24kec.ipk
Size: 2656
MD5Sum: ea45731c39d1501cb797ca7c06cc9b72
SHA256sum: 6048666687c899cec548f45378ae866046e2cfc3cd573cdb310844bc23eeba6a
Description: Kernel modules for IPv4 tunneling
Package: kmod-iptunnel6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1919
Filename: base/kmod-iptunnel6_3.18.9-1_ramips_24kec.ipk
Size: 2692
MD5Sum: 081bda414c9e21e572de18af8f7b4a6c
SHA256sum: e7d8584db017f41a28f51c8128fbfba356b2295766cf9626d7f40de44a35d0b2
Description: Kernel modules for IPv6 tunneling
Package: kmod-iptunnel
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8040
Filename: base/kmod-iptunnel_3.18.9-1_ramips_24kec.ipk
Size: 8808
MD5Sum: 3574e567af81b45fd9cfdcaa35a0bc14
SHA256sum: cd5527590224b5111dd2588363d4debed2abaa0957c6141f24a6499679ccf432
Description: Kernel module for generic IP tunnel support
Package: kmod-ipv6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 162690
Filename: base/kmod-ipv6_3.18.9-1_ramips_24kec.ipk
Size: 162802
MD5Sum: db396318dd88c6a5299d2e4fdbf70e08
SHA256sum: 4921272ab80fe87baaaae8683cbaf9c5c8455a8f2de799806b69d58e474244f7
Description: Kernel modules for IPv6 support
Package: kmod-ipvti
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iptunnel, kmod-iptunnel4, kmod-ipsec4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4161
Filename: base/kmod-ipvti_3.18.9-1_ramips_24kec.ipk
Size: 4926
MD5Sum: 3e218cd1fc5e7ad79b3875370d017047
SHA256sum: 852a6dab9482786351425b3c3ac28e5f365ac9c43963b1b3bd8b58ee31f90397
Description: Kernel modules for IP VTI (Virtual Tunnel Interface)
Package: kmod-isdn4linux
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 86648
Filename: base/kmod-isdn4linux_3.18.9-1_ramips_24kec.ipk
Size: 86970
MD5Sum: 26d840fbb16f922a9453885eaaf843aa
SHA256sum: 7db88fad094a606da7cc65aa6eb6153ef23e44eb6865e4885a9f93da2d2ee740
Description: This driver allows you to use an ISDN adapter for networking
Package: kmod-l2tp-eth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-l2tp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2796
Filename: base/kmod-l2tp-eth_3.18.9-1_ramips_24kec.ipk
Size: 3548
MD5Sum: 668f6c5f6f178b6175c2d846c19cab76
SHA256sum: aabcd4eb62c81a229dc426e8f123a7b2f44ba1911c0c5c3b5a1280535173f240
Description: Kernel modules for L2TP ethernet pseudowire support for L2TPv3
Package: kmod-l2tp-ip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-l2tp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4771
Filename: base/kmod-l2tp-ip_3.18.9-1_ramips_24kec.ipk
Size: 5519
MD5Sum: 418246b1cd7f6effcc7b0fe6974d3ada
SHA256sum: 5c592b7b717d56cf82b7fe294ca76299407fa2e323176470524facb9fc0583e3
Description: Kernel modules for L2TP IP encapsulation for L2TPv3
Package: kmod-l2tp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-udptunnel4, kmod-udptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13171
Filename: base/kmod-l2tp_3.18.9-1_ramips_24kec.ipk
Size: 13933
MD5Sum: 1ead5c9f2e77b9bbe0525fc2bd259e98
SHA256sum: 43acd1508ca5f1bd5cf007d0da1374de27cd04d2c148ccc7f96566002a03db73
Description: Kernel modules for L2TP V3 Support
Package: kmod-leds-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2753
Filename: base/kmod-leds-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3491
MD5Sum: b0624a6b2323c7a44622738129a12345
SHA256sum: a40990b340d425858e790f5a09bade2768ddf911fa048d5dc33b2440aafb07cc
Description: Kernel module for LEDs on GPIO lines
Package: kmod-leds-pca963x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3175
Filename: base/kmod-leds-pca963x_3.18.9-1_ramips_24kec.ipk
Size: 3935
MD5Sum: fb6dbbf22c6fa728d203ae42c2b2d315
SHA256sum: f9de88cb1eb01d691e4b8b33dbe9b66d70ba0c22cff1da59ce6fa847ce89a127
Description: Driver for the NXP PCA963x I2C LED controllers.
Package: kmod-ledtrig-default-on
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 241
Filename: base/kmod-ledtrig-default-on_3.18.9-1_ramips_24kec.ipk
Size: 1007
MD5Sum: fe41cad814f5fa0e9bbbdc7a42748905
SHA256sum: f7939dbfd9901ead52df9f8beb51c66f6ef8ba5a14f8444663e84b60c9cc5ed0
Description: Kernel module that allows LEDs to be initialised in the ON state
Package: kmod-ledtrig-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2292
Filename: base/kmod-ledtrig-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3047
MD5Sum: d399e65b621b28e5c102e65492d04110
SHA256sum: a25bace39e4748da09f1546ababf668f3bd6f47915ae21e6d67e332d654f3327
Description: Kernel module that allows LEDs to be controlled by gpio events
Package: kmod-ledtrig-heartbeat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1563
Filename: base/kmod-ledtrig-heartbeat_3.18.9-1_ramips_24kec.ipk
Size: 2331
MD5Sum: 544f70adfdaa591c745b9b7c7b52b748
SHA256sum: c27b3b0ca3aaaa06c36566c4290abe24f395399f4b1772a665e50d6dba273da3
Description: LED Heartbeat Trigger
Package: kmod-ledtrig-morse
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2108
Filename: base/kmod-ledtrig-morse_3.18.9-1_ramips_24kec.ipk
Size: 2892
MD5Sum: 3bda55e81217118424d5b558c140ff11
SHA256sum: e64145b27ae0a11fe57bc1710236d09921c6386039af790a5184703686664fff
Description: Kernel module to show morse coded messages on LEDs
Package: kmod-ledtrig-netdev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 193
Filename: base/kmod-ledtrig-netdev_3.18.9-1_ramips_24kec.ipk
Size: 951
MD5Sum: 086fbb39a039dca77456c3788abb8523
SHA256sum: 537e9c171d7a8b94396cffb15bb5f0593dd3c4153ea3563b09d43c23dd024aa9
Description: Kernel module to drive LEDs based on network activity
Package: kmod-ledtrig-netfilter
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1838
Filename: base/kmod-ledtrig-netfilter_3.18.9-1_ramips_24kec.ipk
Size: 2815
MD5Sum: 6763cf679f258fc4cd3e328cd5e54c76
SHA256sum: 0f5fb6fa2acfff3b1c50a7fb3250045d4b6cc7bb0bc7a87ffd943cc1f280b34d
Description: Kernel module to flash LED when a particular packets passing through your machine.
For example to create an LED trigger for incoming SSH traffic:
iptables -A INPUT -p tcp --dport 22 -j LED --led-trigger-id ssh --led-delay 1000
Then attach the new trigger to an LED on your system:
echo netfilter-ssh > /sys/class/leds/<ledname>/trigger
Package: kmod-ledtrig-oneshot
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1641
Filename: base/kmod-ledtrig-oneshot_3.18.9-1_ramips_24kec.ipk
Size: 2452
MD5Sum: f6bed7a55f1ea6dc7d5d91aa1ab03d9b
SHA256sum: b1245d6a932f7080c784dc77fd50340be47e524bbe997155317554443308782d
Description: Kernel module that allows LEDs to be triggered by sporadic events in
one-shot pulses
Package: kmod-ledtrig-timer
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 236
Filename: base/kmod-ledtrig-timer_3.18.9-1_ramips_24kec.ipk
Size: 1004
MD5Sum: fe42a744eb3baf121627eb20a6780c03
SHA256sum: 53fd55c4a1cfb4116961757f9ca2c190bfa42b1e3f946edd2402948e552c660a
Description: Kernel module that allows LEDs to be controlled by a programmable timer
via sysfs
Package: kmod-ledtrig-transient
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1962
Filename: base/kmod-ledtrig-transient_3.18.9-1_ramips_24kec.ipk
Size: 2725
MD5Sum: 8dbcf4b18bc0a239e1c826b44116e5a6
SHA256sum: 3b61cebe7d36bcb813b3f331cd6fa2b8385f63ff1288e178c2f9465c47fb45dd
Description: Kernel module that allows LEDs one time activation of a transient state.
Package: kmod-ledtrig-usbdev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2127
Filename: base/kmod-ledtrig-usbdev_3.18.9-1_ramips_24kec.ipk
Size: 2932
MD5Sum: 2639a8b3b00a7a3dead8880eacb1203a
SHA256sum: 818acf99d80ca7cefa9c589fbe19c5ab92da80c2250b54c5385181f80d94330f
Description: Kernel module to drive LEDs based on USB device presence/activity
Package: kmod-lib-cordic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 981
Filename: base/kmod-lib-cordic_3.18.9-1_ramips_24kec.ipk
Size: 1750
MD5Sum: 572c6962790d49248e9df59ea4432f1a
SHA256sum: 261d347f92f5e431595dfc582d855fca1f81f7b60a43813b3fc634320d7e48e9
Description: Kernel module for Cordic function support
Package: kmod-lib-crc-ccitt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1350
Filename: base/kmod-lib-crc-ccitt_3.18.9-1_ramips_24kec.ipk
Size: 2119
MD5Sum: e6be1d22550704785920a7578572160a
SHA256sum: 621ef0d06de94800f388ba521179bf7d904b0ff179d8e2930f1c50fbd9c41786
Description: Kernel module for CRC-CCITT support
Package: kmod-lib-crc-itu-t
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1353
Filename: base/kmod-lib-crc-itu-t_3.18.9-1_ramips_24kec.ipk
Size: 2124
MD5Sum: 27fd9decfeea0bbda6fe31eeac2159e6
SHA256sum: 6670e63304081585dc048b61a2eae890e7ae5034a82d004b757eac8a2d641872
Description: Kernel module for CRC ITU-T V.41 support
Package: kmod-lib-crc16
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1268
Filename: base/kmod-lib-crc16_3.18.9-1_ramips_24kec.ipk
Size: 2043
MD5Sum: f667ff8e2052ed4eeef470f53682552b
SHA256sum: bf860bcf7ebf69ccfebf0c970699e8b2343143934d677423f646f925af489108
Description: Kernel module for CRC16 support
Package: kmod-lib-crc32c
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-crc32c
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1013
Filename: base/kmod-lib-crc32c_3.18.9-1_ramips_24kec.ipk
Size: 1794
MD5Sum: 6e20a398be18167a0105c013ffe4862b
SHA256sum: 9b3baa358385d62792448c2adb1f014fbe11770ba78a887d86a37c9ea6fcd176
Description: Kernel module for CRC32 support
Package: kmod-lib-crc7
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1059
Filename: base/kmod-lib-crc7_3.18.9-1_ramips_24kec.ipk
Size: 1808
MD5Sum: fe94cda8d2fd58e390a57aed87f41158
SHA256sum: e5dafce57be3c5b03897f0cc37ab9a6cee1d04e72a27166e7a846e83a3b9c52e
Description: Kernel module for CRC7 support
Package: kmod-lib-crc8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 916
Filename: base/kmod-lib-crc8_3.18.9-1_ramips_24kec.ipk
Size: 1677
MD5Sum: 9135ed68ddf800a264f32528be27f5aa
SHA256sum: 15a3f4ca810ecf82336e66fb71015efb513dab28514e21ad1e1b37284149af83
Description: Kernel module for CRC8 support
Package: kmod-lib-lz4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3636
Filename: base/kmod-lib-lz4_3.18.9-1_ramips_24kec.ipk
Size: 4375
MD5Sum: 97369cb39e50a3d0e0e4525499528deb
SHA256sum: bbc3d7415edaed4e873dce4140c97fa89ef83f4fc84b11f7028a7405a6d0d183
Description: Kernel module for LZ4 compression/decompression support
Package: kmod-lib-lzo
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2815
Filename: base/kmod-lib-lzo_3.18.9-1_ramips_24kec.ipk
Size: 3553
MD5Sum: 5294bf6dd195e91a76d2d7ba2d1a9be6
SHA256sum: 1f76e5b5df23e3ba24ffb77ead3571ccf4471bfcecffec193d56857b28efce2a
Description: Kernel module for LZO compression/decompression support
Package: kmod-lib-raid6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 73888
Filename: base/kmod-lib-raid6_3.18.9-1_ramips_24kec.ipk
Size: 74701
MD5Sum: 11d954dbdae091485447bc793a4a6ddc
SHA256sum: 67136f5f56620dd68161366de025cd06cbf1fc9b5540b5b8e522e8608efcb66d
Description: Kernel module for RAID6 algorithms
Package: kmod-lib-textsearch
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3538
Filename: base/kmod-lib-textsearch_3.18.9-1_ramips_24kec.ipk
Size: 4271
MD5Sum: 7a99eadaaea4f8c377fd78493bf29ceb
SHA256sum: 61025b02f7c9bb3d2e6fce39087c3149aab9416ac165efc8f8d122798b4d994e
Description: Textsearch support
Package: kmod-lib-xor
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3061
Filename: base/kmod-lib-xor_3.18.9-1_ramips_24kec.ipk
Size: 3732
MD5Sum: 7180effce8f79dd0dab11815b35588bc
SHA256sum: e7581d1b8c31f195359098c37fc7ac39a24dac7b32fe7ae417538645230ffab5
Description: Kernel module for XOR blocks algorithms
Package: kmod-lib-zlib
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 17353
Filename: base/kmod-lib-zlib_3.18.9-1_ramips_24kec.ipk
Size: 18064
MD5Sum: 9ab09312a7ff3a5b0555bff59251d966
SHA256sum: 9290d0f6ac45bb52c568e9a94445e8d514feb154a2149b6b9fba8367dce4d162
Description: Zlib support
Package: kmod-lib80211
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10499
Filename: base/kmod-lib80211_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 11303
MD5Sum: 4a225eaafb4fb30add5998983a6c7485
SHA256sum: 48f2dc9e81025a31b34bcd968228fa21ca5d8211f041e09caca4e0bb316ab4c3
Description: Kernel modules for 802.11 Networking stack
Includes:
- lib80211
- lib80211_crypt_wep
- lib80211_crypt_tkip
- lib80211_crytp_ccmp
Package: kmod-libertas-sdio
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211, kmod-lib80211, kmod-mmc
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 380609
Filename: base/kmod-libertas-sdio_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 381504
MD5Sum: ce77fd321090660f6b8de44bf37fc655
SHA256sum: dc59c718fb03edf97635abab07e4f51c87fee6fd3fcdd8c8717cfe491b6c5e1c
Description: Marvell 88W8686 Wireless Driver
Package: kmod-libertas-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211, kmod-usb-core, kmod-lib80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 247874
Filename: base/kmod-libertas-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 248583
MD5Sum: 7bb24409219bd1352a71131d6c26aba2
SHA256sum: 8971761210b57da90dc0b83d52016345250dd2780af521d47a674a91b5b81172
Description: Marvell 88W8015 Wireless Driver
Package: kmod-libphy
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 231
Filename: base/kmod-libphy_3.18.9-1_ramips_24kec.ipk
Size: 958
MD5Sum: bc08d5ae863b978e97cb0b0f279c349f
SHA256sum: 7ee1bdc9aa42b9d8ef15b891a04c2376133e889a7df6038bf98cb28e69da89c0
Description: PHY library
Package: kmod-llc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 194
Filename: base/kmod-llc_3.18.9-1_ramips_24kec.ipk
Size: 942
MD5Sum: d80bdb333ff77ddc08170fa04c250bd0
SHA256sum: 44524241ead6f8d9f2ed8551563bcecbf67111e561a313be60782c112f6ad36a
Description: Kernel module for ANSI/IEEE 802.2 LLC support.
Package: kmod-loop
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10473
Filename: base/kmod-loop_3.18.9-1_ramips_24kec.ipk
Size: 11229
MD5Sum: a52cfba579aa4a20f7649dc555da98c0
SHA256sum: a817df319bcee1801a692084246fd665109b3705139c2902d8780793e3bfc7c1
Description: Kernel module for loopback device support
Package: kmod-mac80211-hwsim
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19288
Filename: base/kmod-mac80211-hwsim_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 20035
MD5Sum: 6825a9345283252b580db9dd105daf3c
SHA256sum: 6db12125d60ba4ebb8ba9718aefe1466b2169711ee9109e3db3135b5b5b5389b
Description: mac80211 HW simulation device
Package: kmod-mac80211
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-arc4, kmod-crypto-aes, kmod-cfg80211, hostapd-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 218426
Filename: base/kmod-mac80211_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 217884
MD5Sum: 5fc6dd3bc4261619f6fe2e29af591b12
SHA256sum: 06e0d5c3b1b76a8ea3e8faba3debe3b428be0192590cf4aa8ecbca8e7cd99e5a
Description: Generic IEEE 802.11 Networking Stack (mac80211)
Package: kmod-macvlan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8083
Filename: base/kmod-macvlan_3.18.9-1_ramips_24kec.ipk
Size: 8909
MD5Sum: 01fd8c2c15d85b201df81588b5a69612
SHA256sum: 6be9a8420a810ccdbf4b24840005b6c735aaf31b2dd32f3d48a89cdecaca96b1
Description: A kernel module which allows one to create virtual interfaces that
map packets to or from specific MAC addresses to a particular interface
Package: kmod-md-linear
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3435
Filename: base/kmod-md-linear_3.18.9-1_ramips_24kec.ipk
Size: 4181
MD5Sum: 38c59fb19fbef8d2dfabbc006f1bff0e
SHA256sum: 0e19d0d508622225e6d1238602707374e08a7ee02dda5b3e07ed6f67a82dc70d
Description: RAID "Linear" or "Append" driver module (linear.ko)
Package: kmod-md-mod
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 61336
Filename: base/kmod-md-mod_3.18.9-1_ramips_24kec.ipk
Size: 61954
MD5Sum: 16f8e6e7cf9073010ab3d88f38a3b8d3
SHA256sum: 9c34f04c8285b552d3d69d957b0b95fc01141f0e3c12a48315b782605109b6cc
Description: Kernel RAID md module (md-mod.ko).
You will need to select at least one RAID level module below.
Package: kmod-md-multipath
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4725
Filename: base/kmod-md-multipath_3.18.9-1_ramips_24kec.ipk
Size: 5465
MD5Sum: fc360cac406710589e019a082698a64b
SHA256sum: 4928c5d8e8426d55fcfd6a60a6abda1ac82323d9d40d3379b3f6706fbce1fd14
Description: Multipath driver module (multipath.ko)
Package: kmod-md-raid0
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5991
Filename: base/kmod-md-raid0_3.18.9-1_ramips_24kec.ipk
Size: 6767
MD5Sum: 4ddefdd01c8a68b378889a80f5a228cb
SHA256sum: c19f02d94209a490b5b0adaafe2333ea6e486d7770aa1ac482416763781aafa4
Description: RAID Level 0 (Striping) driver module (raid0.ko)
Package: kmod-md-raid10
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 27337
Filename: base/kmod-md-raid10_3.18.9-1_ramips_24kec.ipk
Size: 28104
MD5Sum: d4ffd19b61f06483a2774ace00523057
SHA256sum: e109927149c9c1671d48c58a084b241c4be95fff961fee06afaa7658bce9ef2b
Description: RAID Level 10 (Mirroring+Striping) driver module (raid10.ko)
Package: kmod-md-raid1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 19366
Filename: base/kmod-md-raid1_3.18.9-1_ramips_24kec.ipk
Size: 20104
MD5Sum: b9fd61e1f1a0bddbc38a0a4bfbf7301b
SHA256sum: 0f01a9c1687b9feb07bfb802faf5bfd778050b3d65dcb3168d4fdb5488cc9ae1
Description: RAID Level 1 (Mirroring) driver (raid1.ko)
Package: kmod-md-raid456
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod, kmod-lib-raid6, kmod-lib-xor
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 42746
Filename: base/kmod-md-raid456_3.18.9-1_ramips_24kec.ipk
Size: 43440
MD5Sum: 6132c7a8dac87ff705d634da127408ef
SHA256sum: eaff892e97e6b137f31517d958edee2f9af96e4bf74ad9b3bd962c1b87d677a3
Description: RAID Level 4,5,6 kernel module (raid456.ko)
Includes the following modules required by
raid456.ko:
xor.ko
async_tx.ko
async_xor.ko
async_memcpy.ko
async_pq.ko
async_raid5_recov.ko
raid6_pq.ko
Package: kmod-mii
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2853
Filename: base/kmod-mii_3.18.9-1_ramips_24kec.ipk
Size: 3578
MD5Sum: ff4c093bdd44a70a2d37ce359b45d643
SHA256sum: 2a450733657827b1e5bec5c2715c1b79939adca702605f1f01e56964f4570eed
Description: MII library
Package: kmod-misdn
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 86147
Filename: base/kmod-misdn_3.18.9-1_ramips_24kec.ipk
Size: 86719
MD5Sum: ec7deb87638717a726ad712062d9851f
SHA256sum: f737b688bc240a318ada4b80d972f347202b19cd4d8146adbef09994dfe756b5
Description: Modular ISDN driver support
Package: kmod-mmc-over-gpio
Version: 3.18.9-4
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mmc-spi, kmod-spi-gpio-old, kmod-fs-configfs
Source: package/kernel/mmc_over_gpio
Section: kernel
Architecture: ramips_24kec
Installed-Size: 4372
Filename: base/kmod-mmc-over-gpio_3.18.9-4_ramips_24kec.ipk
Size: 5142
MD5Sum: 62f6d8ad8d184260969390f5a934804b
SHA256sum: ab36e2aa323319db23f8a3f271682370a89d8344cbfb66949854c11eb728bb25
Description: Support for driving an MMC/SD card over GPIO pins via SPI.
Package: kmod-mmc-spi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mmc, kmod-lib-crc-itu-t, kmod-lib-crc7
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7036
Filename: base/kmod-mmc-spi_3.18.9-1_ramips_24kec.ipk
Size: 7818
MD5Sum: 3f06f13b2778ac10f3606735d3c23f29
SHA256sum: 5a00dddd089264f63373dfd3f9696ed9efcb3f57cc90d6f655273bf9087d816d
Description: Kernel support for MMC/SD over SPI
Package: kmod-mmc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 58854
Filename: base/kmod-mmc_3.18.9-1_ramips_24kec.ipk
Size: 59550
MD5Sum: 16e3188df646ce10d46a6dae9e39364a
SHA256sum: 430c0f00382dfba592b6730aea9789addef410c6abc8debe768ba09272b9a71b
Description: Kernel support for MMC/SD cards
Package: kmod-mp-alg
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-mp-alg_3.18.9-1_ramips_24kec.ipk
Size: 998
MD5Sum: 0d530d418b1e2cf0db14d76d5f368272
SHA256sum: 7117f0dbb344999fbf55d6d49c89568235e7ea6a256bb9b3b5e726d2fd13f792
Description: Kernel modules that provide several different algorithms for multipath
route selection from the route cache. The iproute "mpath" argument allows
specifying which algorithm to use for routes.
quagga (at least <=0.99.6) requires a multipath patch to support this
cached mp route feature.
Package: kmod-mppe
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-crypto-core, kmod-crypto-arc4, kmod-crypto-sha1, kmod-crypto-ecb
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4143
Filename: base/kmod-mppe_3.18.9-1_ramips_24kec.ipk
Size: 4917
MD5Sum: ac7d0da7d8a56934a19ead5c300dceb9
SHA256sum: 7cac77e581a4a7e8c473508fa5519cc59082e50c1ad865f4b94c24712b8b6ac2
Description: Kernel modules for Microsoft PPP compression/encryption
Package: kmod-mtdtests
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nand
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 29007
Filename: base/kmod-mtdtests_3.18.9-1_ramips_24kec.ipk
Size: 29665
MD5Sum: 12c575938b1a819dff0f54f4a86b956b
SHA256sum: f3ed7a781e62cb3c7e282e6ac397e902fd3905414d5e819d9ffe31b60db448b8
Description: Kernel modules for MTD subsystem/driver testing
Package: kmod-nand
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 26911
Filename: base/kmod-nand_3.18.9-1_ramips_24kec.ipk
Size: 27540
MD5Sum: 85a9eb49bcce59b238eea36b6cc81646
SHA256sum: e265900aff98527c8b2e3d64660b5789f442454d94ed8363932c08bdbe37bf60
Description: Kernel module for NAND support
Package: kmod-nandsim
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nand
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15798
Filename: base/kmod-nandsim_3.18.9-1_ramips_24kec.ipk
Size: 16488
MD5Sum: 82780c2c367faf51a2a664ea9f7b46b6
SHA256sum: b72eab08be6c0af3d0b4fae0d7a3cd53900bc7d2c9f34828d5a737cfd09548d1
Description: Kernel module for NAND flash simulation.
Package: kmod-nbd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8365
Filename: base/kmod-nbd_3.18.9-1_ramips_24kec.ipk
Size: 9135
MD5Sum: 53c78b707bd653701b48d390d60ceb18
SHA256sum: f9910d12f55f4f0f7aac455975a214b3b30d112872c18ed4e8d07adc937868ca
Description: Kernel module for network block device support
Package: kmod-net-rtl8188eu
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), r8188eu-firmware, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 221337
Filename: base/kmod-net-rtl8188eu_3.18.9-1_ramips_24kec.ipk
Size: 220597
MD5Sum: c315b8c0e29d164b68b74e594ce20eef
SHA256sum: 6f069f101c4883aaaab1ae9ca4f4df92766fe439fb4208f328c2dc386a6b41f3
Description: Kernel modules for RealTek RTL8188EU support
Package: kmod-net-rtl8192su
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 140548
Filename: base/kmod-net-rtl8192su_3.18.9-1_ramips_24kec.ipk
Size: 141274
MD5Sum: 8910d610be6a7a4b5e41659f9d7e98df
SHA256sum: 9ee4bf6a6ad4c9ad5565d1a73892eb1ca300a40f5ed6eed6a02cff434e9d3b65
Description: Kernel modules for RealTek RTL8712 and RTL81XXSU fullmac support.
Package: kmod-net-zd1201
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: base/kmod-net-zd1201_3.18.9-1_ramips_24kec.ipk
Size: 1175
MD5Sum: 9daa1e5fcc6ab8c6d0eec76c0c009685
SHA256sum: 1c876484c455b8fd9cee765bf59a0f3481956c394f76e490fabd7d0dc8f8bd1f
Description: Kernel modules for Zydas ZD1201 support
Devices using this chip:
* Sweex LC100020
* Zyxel ZyAir B-220
* Peabird USB
* Gigafast WF741-UIC
* E-Tech Wireless USB Adapter
* DSE 802.11b USB wireless LAN adapter
* CC and C WLAN USB Adapter (WL 1202)
* Edimax EW-7117U
* X-Micro WLAN 11b USB Adapter
* Belkin F5D6051
* Topcom SKYR@CER WIRELESS USB STICK 11
* Surecom EP-9001
* JAHT WN-1011U
* BeWAN Wi-Fi USB 11
* NorthQ NQ9000
* MSI UB11B
* Origo WLL-1610
* Longshine LCS-8131R
* Gigabyte GN-WLBZ201
Package: kmod-netem
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5642
Filename: base/kmod-netem_3.18.9-1_ramips_24kec.ipk
Size: 6423
MD5Sum: 02130596ab51ca3cb5495e4eb804b758
SHA256sum: d122f79325fc44b9e5ec0404036e12a962518a9dccb9841e4164530ea718223e
Description: Kernel modules for emulating the properties of wide area networks
Package: kmod-nf-conntrack-netlink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10735
Filename: base/kmod-nf-conntrack-netlink_3.18.9-1_ramips_24kec.ipk
Size: 11542
MD5Sum: 10adbb052a503bd3cb59c0007346a9cc
SHA256sum: 7fe98f013e5e8d3157141dbf5d3b8e08d74d029ccde2d0c8686a58c516b75b91
Description: Kernel modules support for a netlink-based connection tracking
userspace interface
Package: kmod-nf-conntrack6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9219
Filename: base/kmod-nf-conntrack6_3.18.9-1_ramips_24kec.ipk
Size: 9999
MD5Sum: 7bacad37a100a84deb832bf4af765f20
SHA256sum: ee3fc8838d75b4e6c131c9b85ed15115328eb844cb840eaefcee0efe2e37acf5
Description: Netfilter IPv6 connection tracking
Package: kmod-nf-conntrack
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 37826
Filename: base/kmod-nf-conntrack_3.18.9-1_ramips_24kec.ipk
Size: 38649
MD5Sum: 0f0daf5fa7887154f14491f727694c85
SHA256sum: bcf0db2be80dcd6921943c85d043cdfb4b6a7d3805145197fce22c366c77c110
Description: Netfilter connection tracking
Package: kmod-nf-ipt6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-ipt, kmod-nf-conntrack6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7497
Filename: base/kmod-nf-ipt6_3.18.9-1_ramips_24kec.ipk
Size: 8265
MD5Sum: 74b3c464e5fc762f2cb7c76a0954650d
SHA256sum: 2a475ed33c90b9eea6aedbe40b6487a687204acb2a84e0d9340897408b8d036e
Description: Ip6tables core
Package: kmod-nf-ipt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14274
Filename: base/kmod-nf-ipt_3.18.9-1_ramips_24kec.ipk
Size: 14982
MD5Sum: 7dad617f8a4ea9b6e02b221a7c1d915e
SHA256sum: 6e0863c84a36b2ebcc6634d83f2669d35857726f0bcc48b83836f66a3c30dcbf
Description: Iptables core
Package: kmod-nf-nat6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-conntrack6, kmod-nf-ipt6, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4179
Filename: base/kmod-nf-nat6_3.18.9-1_ramips_24kec.ipk
Size: 4932
MD5Sum: 5a086b2638e571b3f3ddb6f71028f837
SHA256sum: 4e50d508e6d51b3c25921c02fcff330839547e2aedd3b533243cd288303eb2ef
Description: Netfilter IPV6-NAT
Package: kmod-nf-nat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-conntrack, kmod-nf-ipt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11179
Filename: base/kmod-nf-nat_3.18.9-1_ramips_24kec.ipk
Size: 11905
MD5Sum: 9935dee60822ba21e4f32990b3d7e82e
SHA256sum: 231ef98882f672902137ab216caac98f4f852c238f4ff106bd00766130a7bf15
Description: Netfilter NAT
Package: kmod-nf-nathelper-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-nat, kmod-lib-textsearch
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 50069
Filename: base/kmod-nf-nathelper-extra_3.18.9-1_ramips_24kec.ipk
Size: 50956
MD5Sum: e357cb63bef4fb2ab6c3a5579812f21f
SHA256sum: 1d3ebff38587bee0be08246744266d86329ea79b885e2a54a85fd97d28575b2c
Description: Extra Netfilter (IPv4) Conntrack and NAT helpers
Includes:
- amanda
- h323
- mms
- pptp
- proto_gre
- sip
- snmp_basic
- broadcast
Package: kmod-nf-nathelper
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8131
Filename: base/kmod-nf-nathelper_3.18.9-1_ramips_24kec.ipk
Size: 8928
MD5Sum: bd0e5ab97215f5e8a6445e08b4e75395
SHA256sum: 4d46f09a26c633b886f20271780e68d324bc86ce3715d295cdacda023f3d2577
Description: Default Netfilter (IPv4) Conntrack and NAT helpers
Includes:
- ftp
- irc
- tftp
Package: kmod-nfnetlink-log
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5891
Filename: base/kmod-nfnetlink-log_3.18.9-1_ramips_24kec.ipk
Size: 6684
MD5Sum: 1aad12b5d5771f503b73c7184edaa544
SHA256sum: 086cc3aefe8db759247d3b1857c6b4ee118b62f98aa9fa44eb159df6772ab0cd
Description: Kernel modules support for logging packets via NFNETLINK
Includes:
- NFLOG
Package: kmod-nfnetlink-queue
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6699
Filename: base/kmod-nfnetlink-queue_3.18.9-1_ramips_24kec.ipk
Size: 7532
MD5Sum: 163334c84e79269485f7b80e890b7985
SHA256sum: 4e270bb4321df8c95a59fbcfc73aba1bb8747de9d16754dca585f86ad5f6bb29
Description: Kernel modules support for queueing packets via NFNETLINK
Includes:
- NFQUEUE
Package: kmod-nfnetlink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3894
Filename: base/kmod-nfnetlink_3.18.9-1_ramips_24kec.ipk
Size: 4644
MD5Sum: 4f37265646ac1c0e133c242e6febe106
SHA256sum: c3ac1aba38e20cb38316784ce92038ffd8e9288cc87cc8ef96681aac58cf2d6f
Description: Kernel modules support for a netlink-based userspace interface
Package: kmod-nft-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink, kmod-nf-conntrack6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 41291
Filename: base/kmod-nft-core_3.18.9-1_ramips_24kec.ipk
Size: 42128
MD5Sum: f9d0a05500223747d34db87ddd9b41ff
SHA256sum: 5298b7272550919b75c37d4b625e93b2d0f8baf8f37221082a391534447a259e
Description: Kernel module support for nftables
Package: kmod-nft-nat6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nft-core, kmod-nf-nat6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1107
Filename: base/kmod-nft-nat6_3.18.9-1_ramips_24kec.ipk
Size: 1888
MD5Sum: 71a0f12200bd3b3489b90a1c2a399cff
SHA256sum: 300f6da167daf6ae82587f1a097f2f3a58f6084edc602c42dabdbd97c22ea14d
Description: Netfilter nf_tables IPv6-NAT support
Package: kmod-nft-nat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nft-core, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4968
Filename: base/kmod-nft-nat_3.18.9-1_ramips_24kec.ipk
Size: 5694
MD5Sum: fe7494cc054fe366abf1f55c511c85d5
SHA256sum: d3fc39abd4013764df47ddc96d3266bc3681d6c8860f830daf3c12df7c779d81
Description: Netfilter nf_tables NAT support
Package: kmod-nls-base
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3145
Filename: base/kmod-nls-base_3.18.9-1_ramips_24kec.ipk
Size: 3894
MD5Sum: 145e621d7d41f81488066511ca37c4ff
SHA256sum: f8694f8dd0549375a6ae43d57040290390404bbe822f8095abb6507c0691baa7
Description: Kernel module for NLS (Native Language Support)
Package: kmod-nls-cp1250
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2023
Filename: base/kmod-nls-cp1250_3.18.9-1_ramips_24kec.ipk
Size: 2803
MD5Sum: cf3f305e6001f505ba2ad98e7a587bdc
SHA256sum: 5b397133c143386fab44f1063f499ddfa71ffc78e9b6b32c60471a36b9ec0626
Description: Kernel module for NLS Codepage 1250 (Eastern Europe)
Package: kmod-nls-cp1251
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1934
Filename: base/kmod-nls-cp1251_3.18.9-1_ramips_24kec.ipk
Size: 2703
MD5Sum: 25c3ff9de77564e802ee9e52cd62a94f
SHA256sum: 37ee5eb8fc0de03ab380cebb23ae220188a03b00585d0df0376ce77563d22118
Description: Kernel module for NLS Codepage 1251 (Russian)
Package: kmod-nls-cp437
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2094
Filename: base/kmod-nls-cp437_3.18.9-1_ramips_24kec.ipk
Size: 2873
MD5Sum: dd69ced8be87088ec5c74c4bdefd71c0
SHA256sum: 92bbd3c0e86b3cd00ec3dbe603fa8c1fd79979e01b7b40a59e90111712079a2f
Description: Kernel module for NLS Codepage 437 (United States, Canada)
Package: kmod-nls-cp775
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2120
Filename: base/kmod-nls-cp775_3.18.9-1_ramips_24kec.ipk
Size: 2890
MD5Sum: 4e1f274e30e99fc0dd103552eb7ec08d
SHA256sum: 9a952a1d18701ea36f4ea81a023517c45bbfc89008b069668e47d1952ae0d217
Description: Kernel module for NLS Codepage 775 (Baltic Rim)
Package: kmod-nls-cp850
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2046
Filename: base/kmod-nls-cp850_3.18.9-1_ramips_24kec.ipk
Size: 2817
MD5Sum: b8913b01f3ebde97f4185365c78e5285
SHA256sum: bc80f20feb466f77027807254c4d7af89c7fd432d8cf5a850b7d9fb7ec960eee
Description: Kernel module for NLS Codepage 850 (Europe)
Package: kmod-nls-cp852
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2118
Filename: base/kmod-nls-cp852_3.18.9-1_ramips_24kec.ipk
Size: 2888
MD5Sum: c19eba78339ac5308f1fce2afb436325
SHA256sum: 04bbbeb9c466face9dfdababd18844f14a3d2c935d2acb39e206ef379b115fda
Description: Kernel module for NLS Codepage 852 (Europe)
Package: kmod-nls-cp862
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2058
Filename: base/kmod-nls-cp862_3.18.9-1_ramips_24kec.ipk
Size: 2826
MD5Sum: 07e9db8f504cd2b171278f872c77c58f
SHA256sum: 7577840888aa6ab0bca2ebdfd7b1bc82001de883d1128141c2b430d839b10829
Description: Kernel module for NLS Codepage 862 (Hebrew)
Package: kmod-nls-cp864
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2034
Filename: base/kmod-nls-cp864_3.18.9-1_ramips_24kec.ipk
Size: 2800
MD5Sum: 79951c32e3f506363cf975b7bbef2d6c
SHA256sum: 17b97d217e5001090e78a7b3a09449757d65dcb999bdc77e5553fe098e8607a9
Description: Kernel module for NLS Codepage 864 (Arabic)
Package: kmod-nls-cp866
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1946
Filename: base/kmod-nls-cp866_3.18.9-1_ramips_24kec.ipk
Size: 2715
MD5Sum: aacdb0c17228e48a9bceecbd91d1737e
SHA256sum: d50715ac3f0e8f2a00cdfdad478c2cbfa29383230f4aa1b583f468e876933a00
Description: Kernel module for NLS Codepage 866 (Cyrillic)
Package: kmod-nls-cp932
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 36433
Filename: base/kmod-nls-cp932_3.18.9-1_ramips_24kec.ipk
Size: 37254
MD5Sum: 7e901af3e23a77c95d91cd7622636d8b
SHA256sum: c007d9f6b539628bd498b46ffab8d5c1ecf3b2aa4e80f8756fe02949028e1625
Description: Kernel module for NLS Codepage 932 (Japanese)
Package: kmod-nls-iso8859-13
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1965
Filename: base/kmod-nls-iso8859-13_3.18.9-1_ramips_24kec.ipk
Size: 2740
MD5Sum: bf37de24bc1d27afb8bcc7bfcdc3c2ec
SHA256sum: d143bb8b624a023f3f750a49ef6fce016cc4024cd68b4900f73308a73de38cc8
Description: Kernel module for NLS ISO 8859-13 (Latin 7; Baltic)
Package: kmod-nls-iso8859-15
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1834
Filename: base/kmod-nls-iso8859-15_3.18.9-1_ramips_24kec.ipk
Size: 2593
MD5Sum: 28bee40d79c197ded691c9115b203f8d
SHA256sum: b819909fffb26ff20e082faf43110ebbc69635761771abbdc3338b68b0404903
Description: Kernel module for NLS ISO 8859-15 (Latin 9)
Package: kmod-nls-iso8859-1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1722
Filename: base/kmod-nls-iso8859-1_3.18.9-1_ramips_24kec.ipk
Size: 2511
MD5Sum: 8da9e3732c9642a91aa1689eba45800a
SHA256sum: dce0922f96fc6e30d48c3fef93e328446b348aa1c57e44bfcc419530773707b9
Description: Kernel module for NLS ISO 8859-1 (Latin 1)
Package: kmod-nls-iso8859-2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1968
Filename: base/kmod-nls-iso8859-2_3.18.9-1_ramips_24kec.ipk
Size: 2733
MD5Sum: e56bbfa3542dd75e40a440186a0449f7
SHA256sum: 24df6eb0f5473dc1e0259a6c24d0e3d6b6a7f5a859e8a239cc15a4cdd99c12c9
Description: Kernel module for NLS ISO 8859-2 (Latin 2)
Package: kmod-nls-iso8859-6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1662
Filename: base/kmod-nls-iso8859-6_3.18.9-1_ramips_24kec.ipk
Size: 2430
MD5Sum: f76ac0b85e2bff4aa1c002e93e556d33
SHA256sum: 33628f4f1b5becc1eb9efa95f2ffc4f86b53884d0c89ce71ff093581973506b0
Description: Kernel module for NLS ISO 8859-6 (Arabic)
Package: kmod-nls-iso8859-8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1819
Filename: base/kmod-nls-iso8859-8_3.18.9-1_ramips_24kec.ipk
Size: 2602
MD5Sum: 89fabf0e51844c15e0c0c34f12da2243
SHA256sum: 21b351e0fe7a7fb150cac5a5e053460104f1d6ce2f1b57b603bc3692db91ce32
Description: Kernel module for Hebrew charsets (ISO-8859-8, CP1255)
Package: kmod-nls-koi8r
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1977
Filename: base/kmod-nls-koi8r_3.18.9-1_ramips_24kec.ipk
Size: 2746
MD5Sum: 4d66fbfd05f467d393ce9b84a85222af
SHA256sum: 0e449962e838efb9ddcdc4370fe2e62b262780ab9ae3c1e7e3cae7dc3f040794
Description: Kernel module for NLS KOI8-R (Russian)
Package: kmod-nls-utf8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1017
Filename: base/kmod-nls-utf8_3.18.9-1_ramips_24kec.ipk
Size: 1785
MD5Sum: 568eb0813e460e65f47f31cdf65b4722
SHA256sum: 6a17e36bce362536090c3b0674264c4ff44f832ecfb549d67bf3c08087fc4ffd
Description: Kernel module for NLS UTF-8
Package: kmod-of-mdio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 190
Filename: base/kmod-of-mdio_3.18.9-1_ramips_24kec.ipk
Size: 951
MD5Sum: a9e63dfbc0e53aa58ce0b776722beb04
SHA256sum: 6007764e20f8aa6da9412ba88a4d5e42933dd77e440b238998cf2d43cac06a5f
Description: Kernel driver for OpenFirmware MDIO support
Package: kmod-p54-common
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18426
Filename: base/kmod-p54-common_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 19225
MD5Sum: 347280a87d4b9cfcaacc7a80d9dcebff
SHA256sum: c774a7456fbc1660f95e2a034844d2ee9840c84c96368db49c64072bb770fac3
Description: Prism54 Drivers (COMMON)
Package: kmod-p54-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-p54-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30874
Filename: base/kmod-p54-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 31654
MD5Sum: 66910e3f7cc6e6226c8d1e8844a15cd0
SHA256sum: f4626251bd395f5c9439c705b310b8440bcf0676074963103367a2ae2c5d82dc
Description: Prism54 Drivers (USB)
Package: kmod-pktgen
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21948
Filename: base/kmod-pktgen_3.18.9-1_ramips_24kec.ipk
Size: 22624
MD5Sum: a14c45f1b150304629bb47e31384d622
SHA256sum: cc471f68bf68fb7538ff84e4842d8d76712e1ef52f64b2b0ab8013b71d903389
Description: Kernel modules for the Network Packet Generator
Package: kmod-ppp-synctty
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4328
Filename: base/kmod-ppp-synctty_3.18.9-1_ramips_24kec.ipk
Size: 5072
MD5Sum: dbd2d9826b9633faef3371ca8324210d
SHA256sum: db91c7208077f36356398b3d1930dd2f7b292f757eac63fc4fe2d843796e2842
Description: Kernel modules for PPP sync tty support
Package: kmod-ppp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-ccitt, kmod-slhc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20421
Filename: base/kmod-ppp_3.18.9-1_ramips_24kec.ipk
Size: 21157
MD5Sum: 04ee359b488c5824af99afe6627e1707
SHA256sum: 8f432ffa8802e23ab3f3844a5b1c08ae532b813ad35aa4aa1bee5795fd1dcff4
Description: Kernel modules for PPP support
Package: kmod-pppoa
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2889
Filename: base/kmod-pppoa_3.18.9-1_ramips_24kec.ipk
Size: 3640
MD5Sum: bf2de3e4e5d7973c670cf67405045c4f
SHA256sum: 112c0fcae05cff25af4ca1a460e53315f9209ec5949621989b19c7e2fa0ca11e
Description: Kernel modules for PPPoA (PPP over ATM) support
Package: kmod-pppoe
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-pppox
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6318
Filename: base/kmod-pppoe_3.18.9-1_ramips_24kec.ipk
Size: 7127
MD5Sum: 581c349acc00f36c9606e0e1929e8bcc
SHA256sum: 74feec90ca4e1fe88eeb857eea136fbcdfaf59d69b8c962ea737a056fac1121e
Description: Kernel module for PPPoE (PPP over Ethernet) support
Package: kmod-pppol2tp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-pppox, kmod-l2tp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9235
Filename: base/kmod-pppol2tp_3.18.9-1_ramips_24kec.ipk
Size: 10010
MD5Sum: 5719a5bcdd1b45b170e21bfdfb590623
SHA256sum: 13a2f63e77a991fb84ca6c865fb26d5cdd627579cbd7e542033223afd5242f98
Description: Kernel modules for PPPoL2TP (PPP over L2TP) support
Package: kmod-pppox
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1595
Filename: base/kmod-pppox_3.18.9-1_ramips_24kec.ipk
Size: 2371
MD5Sum: 6ebe0df774bd2449a0ec1d2fe709bb9b
SHA256sum: 5979ea689f45c60b4c5122499b5bb4d78db62ec8c177f48a5232479e8df934f2
Description: Kernel helper module for PPPoE and PPTP support
Package: kmod-pps-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-pps
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2213
Filename: base/kmod-pps-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3042
MD5Sum: b8adae8dfc7433413358d19752854341
SHA256sum: 952860278452c2cce7520fb50ed715e73f4b05a8593eb87eb254b521ee8344af
Description: Support for a PPS source using GPIO. To be useful you must
also register a platform device specifying the GPIO pin and
other options, usually in your board setup.
Package: kmod-pps
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4961
Filename: base/kmod-pps_3.18.9-1_ramips_24kec.ipk
Size: 5761
MD5Sum: bc5ee24e71a46d457b2aba2f7d871f81
SHA256sum: 6532d3f0750b9af0e856de9c1676ea49d5b1019250e96f529cdfa04c9079c13c
Description: PPS (Pulse Per Second) is a special pulse provided by some GPS
antennae. Userland can use it to get a high-precision time
reference.
Package: kmod-pptp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-gre, kmod-pppox
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5150
Filename: base/kmod-pptp_3.18.9-1_ramips_24kec.ipk
Size: 5885
MD5Sum: 3c7cb09b42e7bd5d22fa22d98579b0e8
SHA256sum: 00908b3eb5882bbf41dbd3005c1fa3e270f13d3d294b861489f6586ebfee5035
Description: PPtP support
Package: kmod-ptp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-pps
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7016
Filename: base/kmod-ptp_3.18.9-1_ramips_24kec.ipk
Size: 7835
MD5Sum: 5a67a5891659bbe792ba80e4443cf9eb
SHA256sum: 6e817a2b2d70c848e3f29910a232f07e851c3415898c16710bccfb15a8308eb0
Description: The IEEE 1588 standard defines a method to precisely
synchronize distributed clocks over Ethernet networks.
Package: kmod-random-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3948
Filename: base/kmod-random-core_3.18.9-1_ramips_24kec.ipk
Size: 4711
MD5Sum: 56ad5ae1af0f524a30fcf70c6a57a546
SHA256sum: 5404bcc1cfc1b3d67fd6a677e152df57188b42b9cab1bb1b952406f8cf30343e
Description: Kernel module for the HW random number generator core infrastructure
Package: kmod-regmap
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-lzo, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21406
Filename: base/kmod-regmap_3.18.9-1_ramips_24kec.ipk
Size: 22161
MD5Sum: 63d24a0290b6148b3f17ea68d9b3216d
SHA256sum: b36f46a020e526f7517d8ded0204675eeff0cd90a32d9dcc8079622d63721aeb
Description: Generic register map support
Package: kmod-rotary-gpio-custom
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-gpio-encoder
Source: package/kernel/rotary-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 1649
Filename: base/kmod-rotary-gpio-custom_3.18.9-1_ramips_24kec.ipk
Size: 2415
MD5Sum: 4060eb3817ae2d15a393b4c916abbe09
SHA256sum: 49c7dfe9fb5ed80dfb466ddba3d8759d7c0c74e2b3098c9dbc24ed02dafe4af0
Description: Kernel module for register a custom rotary-gpio-encoder platform device.
Package: kmod-rt2500-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-usb
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8775
Filename: base/kmod-rt2500-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 9569
MD5Sum: bbeb53b0b226cfd5279651ab1e94ce3c
SHA256sum: e43b4e5e870d3139d8352252581e58932abcb3d8501e9cd04af83e7f5384d3e3
Description: Ralink Drivers for RT2x00 cards (RT2500 USB)
Package: kmod-rt2800-lib
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-lib, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38177
Filename: base/kmod-rt2800-lib_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 38297
MD5Sum: a340645c824aeb6b6a10e31585f0c508
SHA256sum: 3d69daddf01ed10c5ba62e9113a22329a828a28267acf18b4c1b7f899d74ab90
Description: Ralink Drivers for RT2x00 cards (rt2800 LIB)
Package: kmod-rt2800-mmio
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2800-lib, kmod-rt2x00-mmio
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4237
Filename: base/kmod-rt2800-mmio_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 5018
MD5Sum: 1b56f0d626116f3821828be67f38b6e8
SHA256sum: a3662eb373a0465e6565628f2728279488e6be03dbbd4045d6a46a6f467f38bd
Description: Ralink Drivers for RT2x00 cards (RT28xx/RT3xxx MMIO)
Package: kmod-rt2800-soc
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2800-mmio, kmod-rt2800-lib
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3983
Filename: base/kmod-rt2800-soc_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 4783
MD5Sum: f14e7af07d79c5fd6c34e888261c154f
SHA256sum: 7fa0b120c63f4ff86d7ee2c5e01c098f9c79b8a7b609e6a65c7a2972ac7cf09e
Description: Ralink Drivers for RT2x00 cards (RT28xx/RT3xxx SoC)
Package: kmod-rt2800-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-usb, kmod-rt2800-lib, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10105
Filename: base/kmod-rt2800-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 10909
MD5Sum: 67d7841a0b1f9971b0946be5e7d38cdc
SHA256sum: c9b97cf898a6299ebf192ba6460f357f8e6dd1546861b33bb1765bb95f35bb7c
Description: Ralink Drivers for RT2x00 cards (RT2870 USB)
Package: kmod-rt2x00-lib
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211, kmod-lib-crc-itu-t
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20914
Filename: base/kmod-rt2x00-lib_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 21658
MD5Sum: 2cd7603328e0d38ef19b6b9eca1812ed
SHA256sum: a4a5ade95a7f118a4dfe836345b4913250470ab1f49077ccdbe11cc25a14940f
Description: Ralink Drivers for RT2x00 cards (LIB)
Package: kmod-rt2x00-mmio
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-lib, kmod-eeprom-93cx6
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1918
Filename: base/kmod-rt2x00-mmio_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 2725
MD5Sum: 9ef3af54afcc6281993df9b48a170964
SHA256sum: f2f22dd262522228e92fd05c1491e60e1e0e6cbcb702f4089d6f01bdf85ff343
Description: Ralink Drivers for RT2x00 cards (MMIO)
Package: kmod-rt2x00-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-lib, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5793
Filename: base/kmod-rt2x00-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 6578
MD5Sum: 562e0636148a0c88d6f9a1e02d28db4b
SHA256sum: 43ec72c4a5ce3d9c1b8d552cf39636ca1ea1fe72d20e3c7b32c835c52742910a
Description: Ralink Drivers for RT2x00 cards (USB)
Package: kmod-rt73-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-usb
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12418
Filename: base/kmod-rt73-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 13119
MD5Sum: 23f8d403211a769c1fa57e4f61cd2bec
SHA256sum: 1f0e9a3477be28b2c0fed1858e83daa2453a358ba10d404dfb8903d87986e514
Description: Ralink Drivers for RT2x00 cards (RT73 USB)
Package: kmod-rtl8187
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-eeprom-93cx6, kmod-mac80211, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21166
Filename: base/kmod-rtl8187_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 21895
MD5Sum: d61d25c1b57dea591b94f5f249aa7ffd
SHA256sum: 959be2f175d0ae03a2d0331ede25d57b0712b66255a34478821ece3c1151e3ba
Description: Realtek Drivers for RTL818x devices (RTL8187 USB)
Package: kmod-rtl8192c-common
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rtlwifi
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17453
Filename: base/kmod-rtl8192c-common_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 18245
MD5Sum: b5148a0119aa245a21d0f9efc067151e
SHA256sum: e50a0c4f7f727ad78e2bf3086801b5d230ee7181ee8a0bf84e2b697fdab63346
Description: Realtek RTL8192CE/RTL8192CU common support module
Package: kmod-rtl8192cu
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rtlwifi-usb, kmod-rtl8192c-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49061
Filename: base/kmod-rtl8192cu_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 49814
MD5Sum: d4030ddb918c0263f1a486fdbb110fba
SHA256sum: cbe6ff6c511e757eb948f0f5f3043e6f5f141ca0da03a43bbeb8a5daac2f9da5
Description: Realtek RTL8192CU/RTL8188CU support
Package: kmod-rtlwifi-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-rtlwifi
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6707
Filename: base/kmod-rtlwifi-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 7533
MD5Sum: 7ff3dcb1ae36765c88d50575babae0c0
SHA256sum: 81dd641fca85d1b35e1fda055c4f2d83d11bcdfa00a1fadb242cc1e765b7f0f1
Description: Realtek common driver part (USB support)
Package: kmod-rtlwifi
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26880
Filename: base/kmod-rtlwifi_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 27619
MD5Sum: c1ef96263350faf43e90511947c6d5ae
SHA256sum: cbfbc4e27b4c5ac7d09912aa4a17833eeac3c8f14c9afdfe2a320a6ac73a9d8c
Description: Realtek common driver part
Package: kmod-rxrpc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-manager, kmod-crypto-pcbc, kmod-crypto-fcrypt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 51317
Filename: base/kmod-rxrpc_3.18.9-1_ramips_24kec.ipk
Size: 51982
MD5Sum: fc4f2566a0fe98cc24dfab80b590b2ef
SHA256sum: b9de3fc1cb4531a66bf6e711996500ce230d48bf3b504f457500d6c39d37ec7d
Description: Kernel support for AF_RXRPC; required for AFS client
Package: kmod-sched-connmark
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched-core, kmod-ipt-core, kmod-ipt-conntrack-extra
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1175
Filename: base/kmod-sched-connmark_3.18.9-1_ramips_24kec.ipk
Size: 1970
MD5Sum: 3b9886aada30fecd681d2810306e3fbc
SHA256sum: 758a401a85d669762450a6be5772c5330dd0428e6223a72d6819d8aa0d195c7b
Description: Traffic shaper conntrack mark support
Package: kmod-sched-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 28693
Filename: base/kmod-sched-core_3.18.9-1_ramips_24kec.ipk
Size: 29397
MD5Sum: 729fece9202b4dbbec4cc08d3738c1f2
SHA256sum: 87fdf0ac695960dbd262a42cbec4f3f0eda4d52b141f298803913b20cb4a6408
Description: Core kernel scheduler support for IP traffic
Package: kmod-sched-esfq
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched-core, kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5052
Filename: base/kmod-sched-esfq_3.18.9-1_ramips_24kec.ipk
Size: 5807
MD5Sum: b115595c2c574eadd1e60d2472820299
SHA256sum: 30db11d7802a4000b829151c6904044c7edf112b2779ec26eb34f2a13a3ef011
Description: Traffic shaper ESFQ support
Package: kmod-sched
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched-core, kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 49662
Filename: base/kmod-sched_3.18.9-1_ramips_24kec.ipk
Size: 50455
MD5Sum: 6b5064f693d39cf9e6529a39a39a0fa7
SHA256sum: 524568e1074e2c886fcf12475993d05d2848bcb373bcc3946da87bcebb37fa70
Description: Extra kernel schedulers modules for IP traffic
Package: kmod-scsi-cdrom
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-scsi-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 23422
Filename: base/kmod-scsi-cdrom_3.18.9-1_ramips_24kec.ipk
Size: 24163
MD5Sum: c157bd432352d5eefd13af1d046d1924
SHA256sum: 7a22ca7496a76e8ad8f4088f2d54c4868db9dd20812c459b46fea25e3517e1da
Description: Kernel support for CD / DVD drives
Package: kmod-scsi-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 76891
Filename: base/kmod-scsi-core_3.18.9-1_ramips_24kec.ipk
Size: 77312
MD5Sum: 5eb7043e39af3e80fa338befa66e7ad2
SHA256sum: add84b645a49da8f4d53d406bc96b3e402a4bbbca22562182ce1337c6ce8abdb
Description: SCSI device support
Package: kmod-scsi-generic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-scsi-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15625
Filename: base/kmod-scsi-generic_3.18.9-1_ramips_24kec.ipk
Size: 16336
MD5Sum: 2e41288c78586f9b7795507fdee34386
SHA256sum: 8a422344bc7a53b0391f3db05e32f8faa28f07032f5e25365e1c8e222a7701bb
Description: Kernel support for SCSI generic
Package: kmod-sctp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc32c, kmod-crypto-md5, kmod-crypto-hmac, kmod-ipv6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 101400
Filename: base/kmod-sctp_3.18.9-1_ramips_24kec.ipk
Size: 101633
MD5Sum: 319d74d1cbb3f92b3d0bd876adf71409
SHA256sum: 3d4e693b485fcee31df58c74480f6268e4e103603504a7a69a29ff47e20a8df7
Description: Kernel modules for SCTP protocol support
Package: kmod-sdhci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mmc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14755
Filename: base/kmod-sdhci_3.18.9-1_ramips_24kec.ipk
Size: 15495
MD5Sum: c80481deda7875b347b3ea9f3569fff3
SHA256sum: 583caac9eff837e4dddb1f25ff14d62b004e3f2a647a49ab74b75d980599413a
Description: Kernel support for SDHCI Hosts
Package: kmod-serial-8250
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-serial-8250_3.18.9-1_ramips_24kec.ipk
Size: 853
MD5Sum: 8afc80ae56c3b0485c28837e4bea9cd6
SHA256sum: 752c68f5dc9c8717917d84e5ac3e80d346259182bddb4454801c11dafa3e3c00
Description: Kernel module for 8250 UART based serial ports
Package: kmod-sit
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel, kmod-iptunnel4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10373
Filename: base/kmod-sit_3.18.9-1_ramips_24kec.ipk
Size: 11145
MD5Sum: 4b7c89d2d27bf93bd423b4ff94920ae0
SHA256sum: db0124cbb8bc96ca181e205fca63742c451a8186b401031c4c7de6a99cc7db52
Description: Kernel modules for IPv6-in-IPv4 tunnelling
Package: kmod-slhc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-ccitt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3383
Filename: base/kmod-slhc_3.18.9-1_ramips_24kec.ipk
Size: 4167
MD5Sum: e150b23c3c6f3896ae8b130d3215ef6b
SHA256sum: bfc1c988f82d5ca3078dbcf1d7fd16fdba71f5761e90f862c5f453baff30af0f
Description: Serial Line Header Compression
Package: kmod-slip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-slhc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7716
Filename: base/kmod-slip_3.18.9-1_ramips_24kec.ipk
Size: 8468
MD5Sum: 010792a28931fa90b6e0bbaed017b68e
SHA256sum: a37944448175f8a59631dc282378fc73976ebfb77f2b51778d277ba04c42f36c
Description: Kernel modules for SLIP support
Package: kmod-softdog
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1951
Filename: base/kmod-softdog_3.18.9-1_ramips_24kec.ipk
Size: 2719
MD5Sum: 80dd065d68ccb08560ee14f0cbd81d29
SHA256sum: a2634c4a7e44472cc41deda2c6d300714a9c679ec4c98c386a217f0a6eaeda65
Description: Software watchdog driver
Package: kmod-sound-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 127795
Filename: base/kmod-sound-core_3.18.9-1_ramips_24kec.ipk
Size: 128395
MD5Sum: cc4ccf302ad84c0834968bdca0b5a43b
SHA256sum: e99e590710598943aba84b8c6352195895f2d0183e9dd303ce2043634b21b646
Description: Kernel modules for sound support
Package: kmod-sound-cs5535audio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ac97, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: base/kmod-sound-cs5535audio_3.18.9-1_ramips_24kec.ipk
Size: 876
MD5Sum: 7c4a8ae34615747aec1ca1b8428dd09f
SHA256sum: 1dfdb9d93d742fe3329dd20f45ed45bcccecdfabcd54f0d791783f584e9acf5e
Description: Support for the integrated AC97 sound device on olpc
Package: kmod-sound-i8x0
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ac97, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: base/kmod-sound-i8x0_3.18.9-1_ramips_24kec.ipk
Size: 935
MD5Sum: 2555583052a986eb3879f2f96f0a2c51
SHA256sum: ca00c988744a3d57219c808e585cbdec742135f398ac6c80b33396a9ba65bca8
Description: support for the integrated AC97 sound device on motherboards
with Intel/SiS/nVidia/AMD chipsets, or ALi chipsets using
the M5455 Audio Controller.
Package: kmod-sound-seq
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 30024
Filename: base/kmod-sound-seq_3.18.9-1_ramips_24kec.ipk
Size: 30779
MD5Sum: f39b8f76d1de05efa0685708e01d05e6
SHA256sum: e015c7680e556589f3620fc922bf22a16487129ced5f74884fdd2b908c20f375
Description: Kernel modules for sequencer support
Package: kmod-sound-soc-ac97
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ac97, kmod-sound-soc-core, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-sound-soc-ac97_3.18.9-1_ramips_24kec.ipk
Size: 853
MD5Sum: e820a0c21b6eee15cb0b3489178ee6c0
SHA256sum: c2c87f96dc520ddf6581f26610089497d68f0b71ab4a16fac7f412a3fb579ad0
Description: AC97 Codec support
Package: kmod-sound-soc-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-regmap, kmod-ac97, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 57145
Filename: base/kmod-sound-soc-core_3.18.9-1_ramips_24kec.ipk
Size: 57593
MD5Sum: 3799b0f751e0546a6a5b8e1329a94871
SHA256sum: a661c44809d9912c1b12ab8ff300932179d966fa34b7a813742f9454e9740ac5
Description: SoC sound support
Package: kmod-spi-bitbang
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2127
Filename: base/kmod-spi-bitbang_3.18.9-1_ramips_24kec.ipk
Size: 2902
MD5Sum: 35d9794a25b2c3e3457358b5d07ba991
SHA256sum: 52011a4b1bb6722b55ec965e3984596b0b984637a4d21f1dc0d4a59d48249dfb
Description: This package contains the SPI bitbanging library
Package: kmod-spi-dev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4162
Filename: base/kmod-spi-dev_3.18.9-1_ramips_24kec.ipk
Size: 4916
MD5Sum: 8d1ab0ac4f590f5a78fbe807e2e449b5
SHA256sum: 3df358309ec6698eb29351234c4dab163340c702890d81e55b5d31db3d0fe7d5
Description: This package contains the user mode SPI device driver
Package: kmod-spi-gpio-custom
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-spi-bitbang, kmod-spi-gpio, kmod-spi-dev
Source: package/kernel/spi-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2500
Filename: base/kmod-spi-gpio-custom_3.18.9-1_ramips_24kec.ipk
Size: 3273
MD5Sum: 146c7f0ae2fc596c761372ce1f89e7a7
SHA256sum: cb486ff0b4b5b801f5cd5fa20c45e146ec47e1dd87e7f74dea44df0bab8e4f28
Description: Kernel module for register a custom spi-gpio platform device.
Package: kmod-spi-gpio-old
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-spi-bitbang
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2224
Filename: base/kmod-spi-gpio-old_3.18.9-1_ramips_24kec.ipk
Size: 2994
MD5Sum: 41e0658219f64ae56bdf99811bacf001
SHA256sum: 37dfdf71ba0e95f52d969cff7909758bc49dbf1d6f466e649603887258cd64c7
Description: This package contains the GPIO based bitbanging SPI controller driver
Package: kmod-spi-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-spi-bitbang
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3296
Filename: base/kmod-spi-gpio_3.18.9-1_ramips_24kec.ipk
Size: 4063
MD5Sum: 93dd178b256093f04e28ab8e23ab5d8d
SHA256sum: 6e2bca43966b3f56a12d24489f995170c3370814d6ee61ced8db780ab3b390b0
Description: This package contains the GPIO-based bitbanging SPI Master
Package: kmod-spi-ks8995
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/spi-ks8995
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2250
Filename: base/kmod-spi-ks8995_3.18.9-1_ramips_24kec.ipk
Size: 2965
MD5Sum: d3493e0c73256c108cb9bb226843d9c5
SHA256sum: e7875b0b36d74771a7f6972c98aa6ba08091110e6122776c24f2eca38c8f6b78
Description: Kernel module for Micrel/Kendin KS8995 ethernet switch
Package: kmod-stp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-llc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 182
Filename: base/kmod-stp_3.18.9-1_ramips_24kec.ipk
Size: 940
MD5Sum: bdec69c82887607e0d65309f92b831cb
SHA256sum: 7ab94b38ce29d788a133544fed9efa3ff9dba7ed030a3777216d8c0ef65e453b
Description: Kernel module for Ethernet Spanning Tree Protocol support.
Package: kmod-swconfig
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 190
Filename: base/kmod-swconfig_3.18.9-1_ramips_24kec.ipk
Size: 940
MD5Sum: 4a9ccd7b6bb1a1cc13583c380e57d861
SHA256sum: 01faae7553a995e2482fb792bbff18af65e175b80c01437fef592eac497fa25a
Description: Switch configuration API module
Package: kmod-switch-ip17xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-swconfig
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6097
Filename: base/kmod-switch-ip17xx_3.18.9-1_ramips_24kec.ipk
Size: 6862
MD5Sum: 868c3b46c3db3dc8ef89a8fdecf4fcce
SHA256sum: cc128c0320616995f17c00fd241c89624a5274866134b4c2954f64a377998da7
Description: IC+ IP175C/IP178C switch support
Package: kmod-switch-rtl8366-smi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-swconfig
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6384
Filename: base/kmod-switch-rtl8366-smi_3.18.9-1_ramips_24kec.ipk
Size: 7178
MD5Sum: c59839a336a534fd9b17e6c0b5475e27
SHA256sum: e3288f727494a2d7e7a6640a0d0ef8bf81ce56801ff9fe5dcc408b85e4f4364c
Description: Realtek RTL8366 SMI switch interface support
Package: kmod-switch-rtl8366rb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-switch-rtl8366-smi
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5611
Filename: base/kmod-switch-rtl8366rb_3.18.9-1_ramips_24kec.ipk
Size: 6377
MD5Sum: 2ba7be1cb5cc34dbe3d7be568e4b8977
SHA256sum: e3eaa8f19d5adb9ede8072c2bddf214d41a550311b988d7bdf41de5f605fafa7
Description: Realtek RTL8366RB switch support
Package: kmod-switch-rtl8366s
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-switch-rtl8366-smi
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5059
Filename: base/kmod-switch-rtl8366s_3.18.9-1_ramips_24kec.ipk
Size: 5818
MD5Sum: 3dc2529924a5f6855bb2790f5420e2cd
SHA256sum: c35934c22cd12e79c21c4005698fad4293129cbec4e800e19101b0c4139d3b4a
Description: Realtek RTL8366S switch support
Package: kmod-tg3
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy, kmod-hwmon-core, kmod-ptp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-tg3_3.18.9-1_ramips_24kec.ipk
Size: 886
MD5Sum: 9580ad1b0738dd53bc08732f3847b983
SHA256sum: f5bf4db9661b573492819d772041fb001ffaf660dca820afb5ce4bec74b24b4a
Description: Kernel modules for Broadcom Tigon3 Gigabit Ethernet adapters
Package: kmod-trelay
Version: 3.18.9+0.1-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/trelay
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2899
Filename: base/kmod-trelay_3.18.9+0.1-1_ramips_24kec.ipk
Size: 3781
MD5Sum: 0506053103dd2a6a602aa2e3fd56a391
SHA256sum: 7ef613da134ad5d122fe91684cb3bcc753d33286c614db39d631072f8a537299
Description: trelay relays ethernet packets between two devices (similar to a bridge), but
without any MAC address checks. This makes it possible to bridge client mode
or ad-hoc mode wifi devices to ethernet VLANs, assuming the remote end uses
the same source MAC address as the device that packets are supposed to exit
from.
Package: kmod-tun
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11814
Filename: base/kmod-tun_3.18.9-1_ramips_24kec.ipk
Size: 12607
MD5Sum: d043054b43b510ececc69080ce5c9ef7
SHA256sum: d637bee0012c41716125637a118f7915dbc0b121a3abeeb74345c4ebf12f214f
Description: Kernel support for the TUN/TAP tunneling device
Package: kmod-udptunnel4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1515
Filename: base/kmod-udptunnel4_3.18.9-1_ramips_24kec.ipk
Size: 2282
MD5Sum: 3c274bef99aadfc5d68b575005ba6765
SHA256sum: bafd7754099542bedbfc8002cde4204c6faa17140d7da2acfe4e7778a91a42e1
Description: IPv4 UDP tunneling support
Package: kmod-udptunnel6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1517
Filename: base/kmod-udptunnel6_3.18.9-1_ramips_24kec.ipk
Size: 2279
MD5Sum: 74a9af8d6d7354425e5bdf115ab4fe48
SHA256sum: a3fc62458b2b05a80516b0d6da01b3e21f300d3b237027d51cb306003e3427b9
Description: IPv6 UDP tunneling support
Package: kmod-usb-acm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9444
Filename: base/kmod-usb-acm_3.18.9-1_ramips_24kec.ipk
Size: 10232
MD5Sum: 30a94d853f241689ed1ef9ed0acb6efd
SHA256sum: 8cd8f75105325568e93319eb2ed43f765d701c56af5f2e104aad541799fd50ce
Description: Kernel support for USB ACM devices (modems/isdn controllers)
Package: kmod-usb-atm-cxacru
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10089
Filename: base/kmod-usb-atm-cxacru_3.18.9-1_ramips_24kec.ipk
Size: 10846
MD5Sum: 3cbd3aac5cbcda52c723e4140a69b08e
SHA256sum: 8daecbbea741d308d88bffe8e3bdd4ddae60a473aa77387030ace1ee41e9043a
Description: Kernel support for cxacru based USB ADSL modems
Package: kmod-usb-atm-speedtouch
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6637
Filename: base/kmod-usb-atm-speedtouch_3.18.9-1_ramips_24kec.ipk
Size: 7396
MD5Sum: 6afbe03e7724569129f0ae1a29f3094b
SHA256sum: 3ce638bc52f2b889e4f91924c0bc6e6f31ea07efb098f09b91ef9010d93094b0
Description: Kernel support for SpeedTouch USB ADSL modems
Package: kmod-usb-atm-ueagle
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13714
Filename: base/kmod-usb-atm-ueagle_3.18.9-1_ramips_24kec.ipk
Size: 14407
MD5Sum: db23ff506dd32d33ab57ce9b86dcb5e7
SHA256sum: c6afd04594223fa2824982cd9b9c96c94179ddcc8b3e05fece1176fa269ca057
Description: Kernel support for Eagle 8051 based USB ADSL modems
Package: kmod-usb-atm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-atm, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8107
Filename: base/kmod-usb-atm_3.18.9-1_ramips_24kec.ipk
Size: 8874
MD5Sum: bd98723f44dcfdc9f08b914033796206
SHA256sum: 596b08d9ff9a43435dae096dc62f2b0d329174c5acf350bfd48864adefbc617f
Description: Kernel support for USB DSL modems
Package: kmod-usb-audio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 63814
Filename: base/kmod-usb-audio_3.18.9-1_ramips_24kec.ipk
Size: 64253
MD5Sum: f29477445541f6dce94a0e08c78e3651
SHA256sum: 702eb597f78182e0022f2206868d8844fceedb6b88d72fdb842e4aae6bbed16f
Description: Kernel support for USB audio devices
Package: kmod-usb-cm109
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4841
Filename: base/kmod-usb-cm109_3.18.9-1_ramips_24kec.ipk
Size: 5590
MD5Sum: cfa5bfca7b45aa7b4386565d753cbfc5
SHA256sum: 3ce945d1c0d15d0a543407b1d485fcabdf0448e783f4adf404b6c7f303ba8685
Description: Kernel support for CM109 VOIP phone
Package: kmod-usb-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 75199
Filename: base/kmod-usb-core_3.18.9-1_ramips_24kec.ipk
Size: 75654
MD5Sum: 72bdf3a313140e1b9094b94b473f564f
SHA256sum: a60c796d33cee366a6b4262c1adc556d7cfb0ce89568c2a78a59685798630166
Description: Kernel support for USB
Package: kmod-usb-dwc2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 30685
Filename: base/kmod-usb-dwc2_3.18.9-1_ramips_24kec.ipk
Size: 31383
MD5Sum: 67e94210200bfb967cfa9eb28637510d
SHA256sum: cdd5a745d25a632bb7f4d43d9b32a1dc6037d9e48a1e89e9a85fa64641d0c8de
Description: This driver provides USB Device Controller support for the
Synopsys DesignWare USB OTG Core
Package: kmod-usb-hid
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-hid, kmod-hid-generic, kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15864
Filename: base/kmod-usb-hid_3.18.9-1_ramips_24kec.ipk
Size: 16635
MD5Sum: 88871e8aae8b5d021fcf07d1c100a272
SHA256sum: 1dda25689949aad21bad6090f22ac44a017913e78a127cef4c1b5118c80f56ed
Description: Kernel support for USB HID devices such as keyboards and mice
Package: kmod-usb-net-asix-ax88179
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy, kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7532
Filename: base/kmod-usb-net-asix-ax88179_3.18.9-1_ramips_24kec.ipk
Size: 8365
MD5Sum: 44fa21d4746afbde001e70a1740be62f
SHA256sum: 7f8ee913205f40fb8a4aa9ecc44e8f1649553fa617e2d742c2d7529a42530e96
Description: Kernel module for USB-to-Ethernet ASIX AX88179 based USB 3.0/2.0
to Gigabit Ethernet adapters.
Package: kmod-usb-net-asix
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy, kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9807
Filename: base/kmod-usb-net-asix_3.18.9-1_ramips_24kec.ipk
Size: 10560
MD5Sum: 1bdc50b1f7312f492b2fbf6a65b8bb0b
SHA256sum: f2db8e8c80e1610b1ee084810f083cf53af4be0f125abe33e514b984ae4c8cbc
Description: Kernel module for USB-to-Ethernet Asix convertors
Package: kmod-usb-net-cdc-eem
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2348
Filename: base/kmod-usb-net-cdc-eem_3.18.9-1_ramips_24kec.ipk
Size: 3091
MD5Sum: 9bcb36d652889b545ddaf74ba0b3a9df
SHA256sum: 1f1ac528d104a5379b0e7e4773dd36500f4337170540e6367d3f3280079400c1
Description: Kernel support for USB CDC EEM
Package: kmod-usb-net-cdc-ether
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3122
Filename: base/kmod-usb-net-cdc-ether_3.18.9-1_ramips_24kec.ipk
Size: 3890
MD5Sum: 97e79f43547e6a831377d44072cb73de
SHA256sum: 71024a0f04ca74dfa9ac6617cdeebaab236746afdf88c91db99ff0b89d1bc853
Description: Kernel support for USB CDC Ethernet devices
Package: kmod-usb-net-cdc-mbim
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-wdm, kmod-usb-net-cdc-ncm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3789
Filename: base/kmod-usb-net-cdc-mbim_3.18.9-1_ramips_24kec.ipk
Size: 4567
MD5Sum: 3ae1e6bbd5289d2de23402c98965eba3
SHA256sum: a2cc052229d8956169c1b60677284a88af433bf0d0cf6a40130800a7e1c08812
Description: Kernel module for Option USB High Speed Mobile Devices
Package: kmod-usb-net-cdc-ncm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8690
Filename: base/kmod-usb-net-cdc-ncm_3.18.9-1_ramips_24kec.ipk
Size: 9453
MD5Sum: 1b72ddb8e1957b8a5faf1fa3f0abb33c
SHA256sum: 7b8291f2fab4ec82ae2fb13938f2a4cb49e7008a8649d55d9f28862f44947431
Description: Kernel support for CDC NCM connections
Package: kmod-usb-net-cdc-subset
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1340
Filename: base/kmod-usb-net-cdc-subset_3.18.9-1_ramips_24kec.ipk
Size: 2147
MD5Sum: 41e998d5c1bd5e2659ac243073c921e8
SHA256sum: 279f2c39f98b14c3172fff50c555c8019d94299b780e03650da173a7b5756e6f
Description: Kernel support for Simple USB Network Links (CDC Ethernet subset)
Package: kmod-usb-net-dm9601-ether
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3982
Filename: base/kmod-usb-net-dm9601-ether_3.18.9-1_ramips_24kec.ipk
Size: 4736
MD5Sum: 3383c4c9e4075d9e09ce62453fd30673
SHA256sum: a02b5c7ffec3949a26aaf885d15fffd069cf41a3533c5be3b90bb5d610f7c31b
Description: Kernel support for USB DM9601 devices
Package: kmod-usb-net-hso
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 106
Filename: base/kmod-usb-net-hso_3.18.9-1_ramips_24kec.ipk
Size: 862
MD5Sum: edecb5466aa76e0a3d31e5f891d3b5bd
SHA256sum: 4a04b49f8a655c90d7aaf6ab97910911ead02eb70921da95236cec09dc66aa5f
Description: Kernel module for Option USB High Speed Mobile Devices
Package: kmod-usb-net-huawei-cdc-ncm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-net-cdc-ncm, kmod-usb-wdm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1634
Filename: base/kmod-usb-net-huawei-cdc-ncm_3.18.9-1_ramips_24kec.ipk
Size: 2444
MD5Sum: e32fc04395fa099f05aac2544a8f2d5a
SHA256sum: 937bd4247134e0fd18fa782660121686eefc551767807e56900d39411a0fffef
Description: Kernel support for Huawei CDC NCM connections
Package: kmod-usb-net-ipheth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4222
Filename: base/kmod-usb-net-ipheth_3.18.9-1_ramips_24kec.ipk
Size: 4975
MD5Sum: 942ecce9653d05e22a01cf206074db48
SHA256sum: 15b09c01e48cf960df5dbd31db21b1948ee71ca97cf7f258b74db0563f4e5722
Description: Kernel support for Apple iPhone USB Ethernet driver
Package: kmod-usb-net-kalmia
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2616
Filename: base/kmod-usb-net-kalmia_3.18.9-1_ramips_24kec.ipk
Size: 3375
MD5Sum: bd2c6cd97235cc2cc691e99d742ffb85
SHA256sum: 0b1183358a5040aa07a3c3da8d9ea9bbb41f92e6b14529e91d04704f6a14d214
Description: Kernel support for Samsung Kalmia based LTE USB modem
Package: kmod-usb-net-kaweth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6638
Filename: base/kmod-usb-net-kaweth_3.18.9-1_ramips_24kec.ipk
Size: 7425
MD5Sum: 2386a695fde65c5d055bb9e1e77f0275
SHA256sum: 1592c14638dab65b610961a3bc3cd7000fc0ce5d8a2edd0e5f1731780cd7714a
Description: Kernel module for USB-to-Ethernet Kaweth convertors
Package: kmod-usb-net-mcs7830
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3303
Filename: base/kmod-usb-net-mcs7830_3.18.9-1_ramips_24kec.ipk
Size: 4062
MD5Sum: f14e6b227f7106341c0ba0ed377c9c98
SHA256sum: 50c8aed499f350e2dca7d6abe78e64b55cd2a2190135f12f6e82a142657d0a83
Description: Kernel module for USB-to-Ethernet MCS7830 convertors
Package: kmod-usb-net-pegasus
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9643
Filename: base/kmod-usb-net-pegasus_3.18.9-1_ramips_24kec.ipk
Size: 10423
MD5Sum: a829ad1f28e07d1570d6901ba1117c36
SHA256sum: 26429efff0debac7b521d9764a2ee1c8318f805daa922eff1e76090ffb5ae7e2
Description: Kernel module for USB-to-Ethernet Pegasus convertors
Package: kmod-usb-net-qmi-wwan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-wdm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4572
Filename: base/kmod-usb-net-qmi-wwan_3.18.9-1_ramips_24kec.ipk
Size: 5081
MD5Sum: 943c2b96dc3ff7abe1053473ae24ed08
SHA256sum: 4ba8f74fd6415e13ace4ab21cd7128efd73fbd2b796f908c97f02525a5fa4f69
Description: QMI WWAN driver for Qualcomm MSM based 3G and LTE modems
Package: kmod-usb-net-rndis
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-net-cdc-ether
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4241
Filename: base/kmod-usb-net-rndis_3.18.9-1_ramips_24kec.ipk
Size: 5004
MD5Sum: 3d69f82abe097271f6762e33a879b1b6
SHA256sum: 8bcf43767f44be1285dbb4e6739a35ce64835eac11b016bac163db83c7709573
Description: Kernel support for RNDIS connections
Package: kmod-usb-net-sierrawireless
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5075
Filename: base/kmod-usb-net-sierrawireless_3.18.9-1_ramips_24kec.ipk
Size: 5832
MD5Sum: 1749f20f3f982f80cc49d9890fc57fff
SHA256sum: 7a7f61d2a305beebc8e230455a256f46d77b040ecf08a074bae18024a4d50116
Description: Kernel support for Sierra Wireless devices
Package: kmod-usb-net-smsc95xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-lib-crc16
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9597
Filename: base/kmod-usb-net-smsc95xx_3.18.9-1_ramips_24kec.ipk
Size: 10367
MD5Sum: 61b7f3280afcaa601fae7fee116c7e9e
SHA256sum: 8cf5df509c7fdaf00472cdaaf0dc5db5ba28e4918aaba4e2ebaac4ae22ff1435
Description: Kernel module for SMSC LAN95XX based devices
Package: kmod-usb-net
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mii, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12206
Filename: base/kmod-usb-net_3.18.9-1_ramips_24kec.ipk
Size: 12957
MD5Sum: a3ea78fde4422c999080a3d5e1aa0287
SHA256sum: 14265dbbad50bee5e91608b47b41aca4d9c8bba067242e2f04d449e47f591782
Description: Kernel modules for USB-to-Ethernet convertors
Package: kmod-usb-ohci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18916
Filename: base/kmod-usb-ohci_3.18.9-1_ramips_24kec.ipk
Size: 19664
MD5Sum: 42d3e8490d1c61380931508faa48eb9a
SHA256sum: 0aa1e8719efd58fd0b61694dfc151a5999cecd968cab9c2840ac63eb7b78ee89
Description: Kernel support for USB OHCI controllers
Package: kmod-usb-printer
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6812
Filename: base/kmod-usb-printer_3.18.9-1_ramips_24kec.ipk
Size: 7607
MD5Sum: 32b8f7fa9711973333fdbf5e7ee5c96a
SHA256sum: 766d04658d095c6b1e684c77305a365bdac250b1e6345592d389c690d7316aa8
Description: Kernel support for USB printers
Package: kmod-usb-serial-ark3116
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4148
Filename: base/kmod-usb-serial-ark3116_3.18.9-1_ramips_24kec.ipk
Size: 4923
MD5Sum: 788021dbb49f94784be465c33b78acf3
SHA256sum: 1de36152861f99a64fc95062f53de010e8fa886a364e299ab7bb9fa38aa08303
Description: Kernel support for ArkMicroChips ARK3116 USB-to-Serial converters
Package: kmod-usb-serial-belkin
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3397
Filename: base/kmod-usb-serial-belkin_3.18.9-1_ramips_24kec.ipk
Size: 4166
MD5Sum: 0eb2dabcac2e9d3410a94feb615c0802
SHA256sum: 2108924a7206b5bdcd74f669acce4158a5ff2aced7f3de3d94ed9982af4d5fac
Description: Kernel support for Belkin USB-to-Serial converters
Package: kmod-usb-serial-ch341
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3116
Filename: base/kmod-usb-serial-ch341_3.18.9-1_ramips_24kec.ipk
Size: 3886
MD5Sum: 2458c11b4eb6f2afce6ca96a7610e26e
SHA256sum: 6164d41a4e8a82ace8b0a1b5c29688b619e914c94f3313f442f6f54fa0ec21f0
Description: Kernel support for Winchiphead CH341 USB-to-Serial converters
Package: kmod-usb-serial-cp210x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3868
Filename: base/kmod-usb-serial-cp210x_3.18.9-1_ramips_24kec.ipk
Size: 4639
MD5Sum: 683fba2053fb5a96f4d2bcd6a4a98b16
SHA256sum: 98afc77294b48641add1a44c75fbf1234732150cac5a1a3a393878990f203ca4
Description: Kernel support for Silicon Labs cp210x USB-to-Serial converters
Package: kmod-usb-serial-cypress-m8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5697
Filename: base/kmod-usb-serial-cypress-m8_3.18.9-1_ramips_24kec.ipk
Size: 6569
MD5Sum: 8887e5afc027ac8d2cef279897c591ef
SHA256sum: 14d1804d261f9948012ff1ced8dc7373d5918051ada5f1f46ca1f1c9e9a0baca
Description: Kernel support for devices with Cypress M8 USB to Serial chip
(for example, the Delorme Earthmate LT-20 GPS)
Supported microcontrollers in the CY4601 family are:
CY7C63741 CY7C63742 CY7C63743 CY7C64013
Package: kmod-usb-serial-ftdi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9828
Filename: base/kmod-usb-serial-ftdi_3.18.9-1_ramips_24kec.ipk
Size: 10585
MD5Sum: 27c48f296ca1d7302e9877e5751b3cc9
SHA256sum: b5e02ec2f72b930d582c92ce83127431827b01438c60379fae21b006edc2e4bc
Description: Kernel support for FTDI USB-to-Serial converters
Package: kmod-usb-serial-ipw
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial, kmod-usb-serial-wwan
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1907
Filename: base/kmod-usb-serial-ipw_3.18.9-1_ramips_24kec.ipk
Size: 2704
MD5Sum: f094a916ffcdd1eac5575b00a94eaef0
SHA256sum: 736ca2185fe4fdc25ca2417aa5e1a1c296f4394ac62e8375f90f44eacf5560f6
Description: Support for IPWireless 3G devices
Package: kmod-usb-serial-keyspan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10256
Filename: base/kmod-usb-serial-keyspan_3.18.9-1_ramips_24kec.ipk
Size: 11020
MD5Sum: f25e70cee9111f5e75d29db8eb3a690c
SHA256sum: 4ebb602a63a78a1af0c2eb8f18935a170c2cdc9047c2b0b7f225b1c9f6336f95
Description: Kernel support for Keyspan USB-to-Serial devices
Package: kmod-usb-serial-mct
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3657
Filename: base/kmod-usb-serial-mct_3.18.9-1_ramips_24kec.ipk
Size: 4426
MD5Sum: 6b4abd27290f8de8b7d300c4dd6fb386
SHA256sum: 42076144ba69ebea730b1ec38f07d3bf032c3c1055616ef025e05eb93b574150
Description: Kernel support for Magic Control Technology USB-to-Serial converters
Package: kmod-usb-serial-mos7720
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5108
Filename: base/kmod-usb-serial-mos7720_3.18.9-1_ramips_24kec.ipk
Size: 5871
MD5Sum: 709ed4ee6d71032a90701a21c4ceb5df
SHA256sum: 61716cac757f8b2f8cdadf5efcb9f0cf9dd218e195db859f165fde9bbaea6761
Description: Kernel support for Moschip MOS7720 USB-to-Serial converters
Package: kmod-usb-serial-motorola-phone
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-usb-serial-motorola-phone_3.18.9-1_ramips_24kec.ipk
Size: 860
MD5Sum: 57d1a0d324f02f79ec8b28c02546bbef
SHA256sum: c668e28375b665b235c060ef3319c2a94f0d0b3a53c4a0f7696e49d1be7404a1
Description: Kernel support for Motorola usb phone
Package: kmod-usb-serial-option
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial-wwan, kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5589
Filename: base/kmod-usb-serial-option_3.18.9-1_ramips_24kec.ipk
Size: 5459
MD5Sum: 2d17e161817c7cc0b689d43fd02c22a9
SHA256sum: 1676ecf573cb59e327a8914194b7aa7ab7f46ece20526712f2b663b67b3b2e84
Description: Kernel support for Option HSDPA modems
Package: kmod-usb-serial-oti6858
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4203
Filename: base/kmod-usb-serial-oti6858_3.18.9-1_ramips_24kec.ipk
Size: 4983
MD5Sum: eb91e75beee448064bde88e814909977
SHA256sum: c089d45f34785466398876f03279f9ab50716563a236584ba256d648de1c1cd7
Description: Kernel support for Ours Technology OTI6858 USB-to-Serial converters
Package: kmod-usb-serial-pl2303
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4758
Filename: base/kmod-usb-serial-pl2303_3.18.9-1_ramips_24kec.ipk
Size: 5524
MD5Sum: 445c7fa5e630151eeb3f06d3d40bda73
SHA256sum: bd140eb5dcff11a8bfd06295e79a1d79043710cd11e195aa7094c9b6f1f420fc
Description: Kernel support for Prolific PL2303 USB-to-Serial converters
Package: kmod-usb-serial-qualcomm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial, kmod-usb-serial-wwan
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2147
Filename: base/kmod-usb-serial-qualcomm_3.18.9-1_ramips_24kec.ipk
Size: 2913
MD5Sum: e0ffa31a61799c7d266a4a9786d6a3d5
SHA256sum: d7645e81e8af35509d7c58dee3800e69e18f034c179a03d6e01aefd4fe30f0ac
Description: Kernel support for Qualcomm USB Serial devices (Gobi)
Package: kmod-usb-serial-sierrawireless
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4318
Filename: base/kmod-usb-serial-sierrawireless_3.18.9-1_ramips_24kec.ipk
Size: 5078
MD5Sum: 6d5f7eeca4673dc14fdb302b93091e7a
SHA256sum: 194337f37f354f54c5d25a0cd62bf93ddbf856dc8bd1bf6db39e27e74b316730
Description: Kernel support for Sierra Wireless devices
Package: kmod-usb-serial-ti-usb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7737
Filename: base/kmod-usb-serial-ti-usb_3.18.9-1_ramips_24kec.ipk
Size: 8512
MD5Sum: 31650334dd790ddaef5bc18a817fb69b
SHA256sum: f4bee2334e47d863d5d949b9936c5173b38408fc9f74f44fcf9d2f2e60a9dfb4
Description: Kernel support for TI USB 3410/5052 devices
Package: kmod-usb-serial-visor
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3811
Filename: base/kmod-usb-serial-visor_3.18.9-1_ramips_24kec.ipk
Size: 4560
MD5Sum: 6008c1b8d8d40e1caa696802579c08cc
SHA256sum: 87a8e5bbb22077f090c3b195ed17b4aa698d7a9e19cff4022d260f60ca0cfaa1
Description: Kernel support for Handspring Visor PDAs
Package: kmod-usb-serial-wwan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3847
Filename: base/kmod-usb-serial-wwan_3.18.9-1_ramips_24kec.ipk
Size: 4604
MD5Sum: 70c2b9f8e0ab1ad7f7de1c434c032bc0
SHA256sum: 554ff2835d8c794d2898be8d625965a8e9d28e8a371243efad6e6d550d788959
Description: Kernel support for USB GSM and CDMA modems
Package: kmod-usb-serial
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13328
Filename: base/kmod-usb-serial_3.18.9-1_ramips_24kec.ipk
Size: 14087
MD5Sum: afc7e3b53461f9e12856d744177a5fa1
SHA256sum: a5b70381558b3217a02b2be247630f23a115f126173662e72e7bbaa94f2a182b
Description: Kernel support for USB-to-Serial converters
Package: kmod-usb-storage-extras
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-storage
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 29982
Filename: base/kmod-usb-storage-extras_3.18.9-1_ramips_24kec.ipk
Size: 30794
MD5Sum: 4806be054eccd72dc6e88a92b9ddc859
SHA256sum: cb04494bf5a2a312a7fa811e25bd94b915330258b9752af69db442042ded7ce8
Description: Say Y here if you want to have some more drivers,
such as for SmartMedia card readers
Package: kmod-usb-storage
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-scsi-core, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21537
Filename: base/kmod-usb-storage_3.18.9-1_ramips_24kec.ipk
Size: 21975
MD5Sum: b16989d1094174a682b889ab77468c47
SHA256sum: 128fac4655b4c9415f5dd58c3c68136439ec3e8eaa85e20b72575fcc7959bf20
Description: Kernel support for USB Mass Storage devices
Package: kmod-usb-test
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14953
Filename: base/kmod-usb-test_3.18.9-1_ramips_24kec.ipk
Size: 15675
MD5Sum: a46a7dea1d8f8a5f5805b6cd821cfbc0
SHA256sum: 7ba624443742b7e0d86a5a2a7cdfb831d609bd94afd61d2bbd2d52421435a0ca
Description: Kernel support for testing USB Host Controller software
Package: kmod-usb-uhci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-usb-uhci_3.18.9-1_ramips_24kec.ipk
Size: 855
MD5Sum: 7e347f57ef42c3330de8677eb1cc0639
SHA256sum: 4a4de2140cc98a09d1ff6cd075290b547ea938ef3f65b50c325f39060ba92b8d
Description: Kernel support for USB UHCI controllers
Package: kmod-usb-wdm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6086
Filename: base/kmod-usb-wdm_3.18.9-1_ramips_24kec.ipk
Size: 6847
MD5Sum: 3f5c6c926071cd469ff3fac0a394ced5
SHA256sum: 5e289ec66066675925451fb4b17b9ad37cd6aefe3b734a7731020c11e82ac8a7
Description: USB Wireless Device Management support
Package: kmod-usb-yealink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5799
Filename: base/kmod-usb-yealink_3.18.9-1_ramips_24kec.ipk
Size: 6571
MD5Sum: b83fe44016ef683aa36d50b99577bed9
SHA256sum: 607f44d510e4b3aa83581d887599bcd57a6418e6d6bfcdaaf639b886952b7dac
Description: Kernel support for Yealink VOIP phone
Package: kmod-usb2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 24298
Filename: base/kmod-usb2_3.18.9-1_ramips_24kec.ipk
Size: 25013
MD5Sum: 2bc3a480bc76458aa414e4af5a8a1530
SHA256sum: b06de0000676b8a36e665af2fd34a6a3bb2edb8dee29a34f3708b069d8ec9783
Description: Kernel support for USB2 (EHCI) controllers
Package: kmod-usb3
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 47341
Filename: base/kmod-usb3_3.18.9-1_ramips_24kec.ipk
Size: 47793
MD5Sum: 8e0b34e977337637300ef5d3f362aee1
SHA256sum: e366d5137ee4ff2c638f926c3eb9016c4723f729cd4b2663aa0db71c2863d29d
Description: Kernel support for USB3 (XHCI) controllers
Package: kmod-usbip-client
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usbip, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8726
Filename: base/kmod-usbip-client_3.18.9-1_ramips_24kec.ipk
Size: 9494
MD5Sum: fa17b4f022f2b030f8649ca4f48bff8e
SHA256sum: 88a86b4ecdd71bdd847b0c5d2258967e74ba0f6bdcadbe117f2d57614e5e6657
Description: USB-over-IP client driver
Package: kmod-usbip-server
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usbip, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8781
Filename: base/kmod-usbip-server_3.18.9-1_ramips_24kec.ipk
Size: 9553
MD5Sum: 3159f6365affed93ae3c0a854929b3c7
SHA256sum: 428b5f363375c12b79feb3da0de3727ecc220ab6bf9317ef453ea86dc77526df
Description: USB-over-IP host driver
Package: kmod-usbip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4121
Filename: base/kmod-usbip_3.18.9-1_ramips_24kec.ipk
Size: 4837
MD5Sum: 4f17c45076bb6e57308d0572f11fb32e
SHA256sum: 9dd993c2a09b6745aeef26b5799fd90f79edb258f6729b6a8cca3c6fc4c678ac
Description: USB-over-IP kernel support
Package: kmod-usbmon
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11895
Filename: base/kmod-usbmon_3.18.9-1_ramips_24kec.ipk
Size: 12652
MD5Sum: e444b2e5dacf4e9e6457b6b76b02ae0b
SHA256sum: 6c46483b362a245b81fa1d651813600a3224cfa4b118bbcd036a67fd45ab8d07
Description: Kernel support for USB traffic monitoring
Package: kmod-veth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2766
Filename: base/kmod-veth_3.18.9-1_ramips_24kec.ipk
Size: 3562
MD5Sum: 14e8206348319e2921507c3771f793e1
SHA256sum: fda84dbaa6c51bae6b31212eb17fa38ca7913e28763223112bcdade92451507f
Description: This device is a local ethernet tunnel. Devices are created in pairs.
When one end receives the packet it appears on its pair and vice
versa.
Package: kmod-video-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 58997
Filename: base/kmod-video-core_3.18.9-1_ramips_24kec.ipk
Size: 59347
MD5Sum: 66e964fb8189719e1333427fa320cbea
SHA256sum: 488b0691bd867edc5d7f8fdb0dbb2451f944775909956959791d2dbacca7adfc
Description: Kernel modules for Video4Linux support
Package: kmod-video-cpia2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18065
Filename: base/kmod-video-cpia2_3.18.9-1_ramips_24kec.ipk
Size: 18840
MD5Sum: de83c396eca1fe4acd98b5967233e4c4
SHA256sum: 4c6a8e98ad002d520f031ecf5aa78c041ec628dd3148cebf1442fc3e1c7f663f
Description: Kernel modules for supporting CPIA2 USB based cameras
Package: kmod-video-gspca-conex
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5531
Filename: base/kmod-video-gspca-conex_3.18.9-1_ramips_24kec.ipk
Size: 6306
MD5Sum: b7b9a029d8bc473fdb3291f08ada6fbf
SHA256sum: 1eedd49d7b83a2104951365bcb52257bc0085a3f4e3938bc175a0bb126696921
Description: The Conexant Camera Driver (conex) kernel module
Package: kmod-video-gspca-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-input-core, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14074
Filename: base/kmod-video-gspca-core_3.18.9-1_ramips_24kec.ipk
Size: 14894
MD5Sum: cb68e4e2dda5e3850561ac1592dd3e04
SHA256sum: 88dba0fd8e358e9b4dce48024ef75058d093672129d2b0c11559e69f52bd5dba
Description: Kernel modules for supporting GSPCA based webcam devices. Note this is just
the core of the driver, please select a submodule that supports your webcam.
Package: kmod-video-gspca-etoms
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4621
Filename: base/kmod-video-gspca-etoms_3.18.9-1_ramips_24kec.ipk
Size: 5381
MD5Sum: fdbbdec89e80ae8be8a9e555f04cb1ca
SHA256sum: accdeafe41dc5d694b45bf72e2fe6254530c130df019e90788b8a456472179c5
Description: The Etoms USB Camera Driver (etoms) kernel module
Package: kmod-video-gspca-finepix
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2274
Filename: base/kmod-video-gspca-finepix_3.18.9-1_ramips_24kec.ipk
Size: 3052
MD5Sum: 003631e74d892e29a2d57bb02e1e9fc9
SHA256sum: 852fb37ab3a13274f974ac218f6161dca9fcd3e401e9d98fc605b15685e4e075
Description: The Fujifilm FinePix USB V4L2 driver (finepix) kernel module
Package: kmod-video-gspca-gl860
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14828
Filename: base/kmod-video-gspca-gl860_3.18.9-1_ramips_24kec.ipk
Size: 15520
MD5Sum: 621ef756ee70ab67808895e9e59808c7
SHA256sum: 84320bc93beb8ff916227292f31a5eba3e86bb450bcfae0580111769ec370443
Description: gl860 webcam support
Package: kmod-video-gspca-jeilinj
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4276
Filename: base/kmod-video-gspca-jeilinj_3.18.9-1_ramips_24kec.ipk
Size: 5047
MD5Sum: 422eeae692f2d12fb81263b3d5c5281f
SHA256sum: c721e74e3f2719838cd5ae4928ff40b47c0a92119284e79cf5747bb71574f2ac
Description: The JEILINJ USB Camera Driver (jeilinj) kernel module
Package: kmod-video-gspca-konica
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3503
Filename: base/kmod-video-gspca-konica_3.18.9-1_ramips_24kec.ipk
Size: 4268
MD5Sum: f5fef259a1360d27fd299004a35672ba
SHA256sum: c40f771ae9b210c09652421570e5b6742c264d660425ad0c13096f8526e37376
Description: The Konica USB Camera Driver (konica) kernel module
Package: kmod-video-gspca-m5602
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15896
Filename: base/kmod-video-gspca-m5602_3.18.9-1_ramips_24kec.ipk
Size: 16563
MD5Sum: 03b3a6676b26b7b8f5287013f8adead5
SHA256sum: d9ff11d595c2d3228e8d336431b7db60a6d212f553a1c5f8002796ef550e78ee
Description: The ALi USB m5602 Camera Driver (m5602) kernel module
Package: kmod-video-gspca-mars
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3407
Filename: base/kmod-video-gspca-mars_3.18.9-1_ramips_24kec.ipk
Size: 4170
MD5Sum: b4299bd5345d8de85c01e9bccc8081c8
SHA256sum: 2df38e6fa5a6d650a04aeba588cb73e0a12a71bc4cd24af5beb37268757d756b
Description: The Mars USB Camera Driver (mars) kernel module
Package: kmod-video-gspca-mr97310a
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5448
Filename: base/kmod-video-gspca-mr97310a_3.18.9-1_ramips_24kec.ipk
Size: 6251
MD5Sum: 21b3b67a5c4b60405fed00b01e3374c2
SHA256sum: 041eb2f0575dcf692b95b025c8ab976424204454641b20f9a9fc1259b301e8dd
Description: The Mars-Semi MR97310A USB Camera Driver (mr97310a) kernel module
Package: kmod-video-gspca-ov519
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18632
Filename: base/kmod-video-gspca-ov519_3.18.9-1_ramips_24kec.ipk
Size: 19381
MD5Sum: a6c8694129893113505568a673ec99d7
SHA256sum: ed1ef0c1c1ebdc42a665e27c5ab39c2246f86f890b6b98de8f64ad8daaaaa30f
Description: The OV519 USB Camera Driver (ov519) kernel module
Package: kmod-video-gspca-ov534-9
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6104
Filename: base/kmod-video-gspca-ov534-9_3.18.9-1_ramips_24kec.ipk
Size: 6880
MD5Sum: ba4817fbc5eee98b40504f12f9844f8b
SHA256sum: 9b36c4728108df438aa9945d0d01a1abf074ad413680ebc3772a191edbb0f241
Description: The OV534-9 USB Camera Driver (ov534_9) kernel module
Package: kmod-video-gspca-ov534
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6870
Filename: base/kmod-video-gspca-ov534_3.18.9-1_ramips_24kec.ipk
Size: 7690
MD5Sum: 19eddb52a5f6c2c16896aaff8fa1580f
SHA256sum: b1045dbe93d06c5578e5a495cbbf447233391badebadad190292229b8a45c3fa
Description: The OV534 USB Camera Driver (ov534) kernel module
Package: kmod-video-gspca-pac207
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3885
Filename: base/kmod-video-gspca-pac207_3.18.9-1_ramips_24kec.ipk
Size: 4661
MD5Sum: 209300600f56c1eb0013a8eddf3336cf
SHA256sum: 11b3dd5464de62c14471986cb50de5805e987962f3da1606857bc9ac408b3080
Description: The Pixart PAC207 USB Camera Driver (pac207) kernel module
Package: kmod-video-gspca-pac7311
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4152
Filename: base/kmod-video-gspca-pac7311_3.18.9-1_ramips_24kec.ipk
Size: 4928
MD5Sum: 15b4b5186ab2b472229b46150d20137b
SHA256sum: 1a4907f10d064dc8047fedbe3c6051c24af5a8a97a48d816e65424453927ee85
Description: The Pixart PAC7311 USB Camera Driver (pac7311) kernel module
Package: kmod-video-gspca-se401
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4459
Filename: base/kmod-video-gspca-se401_3.18.9-1_ramips_24kec.ipk
Size: 5212
MD5Sum: cb2a0264e337a848216046529d27190b
SHA256sum: 69c7119e69250ef0973ae5f1531dff315f906ffdb91a19d882358219338230b1
Description: The SE401 USB Camera Driver kernel module
Package: kmod-video-gspca-sn9c20x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12658
Filename: base/kmod-video-gspca-sn9c20x_3.18.9-1_ramips_24kec.ipk
Size: 13408
MD5Sum: 4a5a901b5868960ab6563876138fa5bb
SHA256sum: 3797798b601fe7892e9268c4be0515755c25eab8cbb476e27e247d5fb072ff45
Description: The SN9C20X USB Camera Driver (sn9c20x) kernel module
Package: kmod-video-gspca-sonixb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6177
Filename: base/kmod-video-gspca-sonixb_3.18.9-1_ramips_24kec.ipk
Size: 7005
MD5Sum: 20b9368224f9f262d644fe96dc922cb5
SHA256sum: 144abebacd46a97debfcb84f7ade32c71a470658aae557d960f10354edcd3869
Description: The SONIX Bayer USB Camera Driver (sonixb) kernel module
Package: kmod-video-gspca-sonixj
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12699
Filename: base/kmod-video-gspca-sonixj_3.18.9-1_ramips_24kec.ipk
Size: 13432
MD5Sum: 730c7b69e309b2d6f01ed04c73ab4ed7
SHA256sum: 789594d46959329c3984b806a710b734178b1e3761884f661373db5bb0999b7b
Description: The SONIX JPEG USB Camera Driver (sonixj) kernel module
Package: kmod-video-gspca-spca500
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5737
Filename: base/kmod-video-gspca-spca500_3.18.9-1_ramips_24kec.ipk
Size: 6518
MD5Sum: d235a0d2f6929a7a5fa20418854cf927
SHA256sum: ea088cf0756b4dfde9e56b84c230926ceffa130f31e35f7dec80805c574fe913
Description: The SPCA500 USB Camera Driver (spca500) kernel module
Package: kmod-video-gspca-spca501
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4170
Filename: base/kmod-video-gspca-spca501_3.18.9-1_ramips_24kec.ipk
Size: 4943
MD5Sum: 1f13369e9c114f086377b8e8861486c6
SHA256sum: e56f4c5bcd8aa04e4d57011ba5d8d71d5f4cb2a42b28fcd24827d7e4f80b8b46
Description: The SPCA501 USB Camera Driver (spca501) kernel module
Package: kmod-video-gspca-spca505
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3103
Filename: base/kmod-video-gspca-spca505_3.18.9-1_ramips_24kec.ipk
Size: 3874
MD5Sum: 575cbf11253fe6e5fd69f54d461028df
SHA256sum: 8a18429e5ffb70326481bcb14011e025ab76b4f78402b05951f9ab31cd94d8b1
Description: The SPCA505 USB Camera Driver (spca505) kernel module
Package: kmod-video-gspca-spca506
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3784
Filename: base/kmod-video-gspca-spca506_3.18.9-1_ramips_24kec.ipk
Size: 4504
MD5Sum: 6618d6f50ce0eece0bfeda45fe8fad0b
SHA256sum: 31aafd2e5325742bfc2c3cdf92f19d99103172be8065dad5581a0b611a4fb9f4
Description: The SPCA506 USB Camera Driver (spca506) kernel module
Package: kmod-video-gspca-spca508
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3900
Filename: base/kmod-video-gspca-spca508_3.18.9-1_ramips_24kec.ipk
Size: 4669
MD5Sum: 72e752b43de495169dfce78d12fe3e41
SHA256sum: f1f8cb2e6a3ba113aa990828d988d72d0df528e2355a75cd3c579aeb520df7ef
Description: The SPCA508 USB Camera Driver (spca508) kernel module
Package: kmod-video-gspca-spca561
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4851
Filename: base/kmod-video-gspca-spca561_3.18.9-1_ramips_24kec.ipk
Size: 5618
MD5Sum: 3b62599a3535c4cdf06e7bba5fb94cde
SHA256sum: 64afd6e3c6cbfe34550e13c147c9fb1959914ed3c5a3344ddf0a1488797f357b
Description: The SPCA561 USB Camera Driver (spca561) kernel module
Package: kmod-video-gspca-sq905
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3000
Filename: base/kmod-video-gspca-sq905_3.18.9-1_ramips_24kec.ipk
Size: 3777
MD5Sum: 077755aba9617d4c2d6633ee6bbd0653
SHA256sum: 3affcf05b0da181a96c7eaaffe54ddafc9aca8da5f67800cf2c562c6eca3de3f
Description: The SQ Technologies SQ905 based USB Camera Driver (sq905) kernel module
Package: kmod-video-gspca-sq905c
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2835
Filename: base/kmod-video-gspca-sq905c_3.18.9-1_ramips_24kec.ipk
Size: 3619
MD5Sum: b09f7a475a3c9ef5518d0a3815fbbfd0
SHA256sum: 313b0da66c3065c803a2234ddef6408966c06a4a94f1b9606b1eeb0bc654e91b
Description: The SQ Technologies SQ905C based USB Camera Driver (sq905c) kernel module
Package: kmod-video-gspca-stk014
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3618
Filename: base/kmod-video-gspca-stk014_3.18.9-1_ramips_24kec.ipk
Size: 4399
MD5Sum: 140a011489e3b189560b37f7c6a487f6
SHA256sum: 61fd3cb337ee2bc65092b8e0c394508a90240e905f6d8deb41feb1e95230da63
Description: The Syntek DV4000 (STK014) USB Camera Driver (stk014) kernel module
Package: kmod-video-gspca-stv06xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11246
Filename: base/kmod-video-gspca-stv06xx_3.18.9-1_ramips_24kec.ipk
Size: 12044
MD5Sum: 4a7289ed6717a566180200efd2355cba
SHA256sum: f6db623968c890af5b3ac12e4142e8a31ba421b565d5cd8b23ac2cb22ae4d1f8
Description: The STV06XX USB Camera Driver (stv06xx) kernel module
Package: kmod-video-gspca-sunplus
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5960
Filename: base/kmod-video-gspca-sunplus_3.18.9-1_ramips_24kec.ipk
Size: 6755
MD5Sum: 7c50d4fe57b955eea926f672e3f2ca67
SHA256sum: 273e0dcdd80944d46035e4136e15e396a59ee971ecb2dd0b410c08a49e67d88a
Description: The SUNPLUS USB Camera Driver (sunplus) kernel module
Package: kmod-video-gspca-t613
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6092
Filename: base/kmod-video-gspca-t613_3.18.9-1_ramips_24kec.ipk
Size: 6876
MD5Sum: 2d1b67bca10d9002ba4c07dad0c24713
SHA256sum: 464c51cf6000ee81255979e15304aef0fd84aa3f1dcc51f9d81573e82b3c295c
Description: The T613 (JPEG Compliance) USB Camera Driver (t613) kernel module
Package: kmod-video-gspca-tv8532
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2251
Filename: base/kmod-video-gspca-tv8532_3.18.9-1_ramips_24kec.ipk
Size: 3007
MD5Sum: 711a89e51e2303777574079a293da0a2
SHA256sum: ef352e7c99c7341ad6499d32e7c8cfb4404fc2f81d6ed96804806016fb50afbf
Description: The TV8532 USB Camera Driver (tv8532) kernel module
Package: kmod-video-gspca-vc032x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11000
Filename: base/kmod-video-gspca-vc032x_3.18.9-1_ramips_24kec.ipk
Size: 11776
MD5Sum: d081b45579c4d61763ee8ad638deea0c
SHA256sum: 968b00415829c7e8d62212d38e62499375bcbe209500770d8d3986c9c3bd625d
Description: The VC032X USB Camera Driver (vc032x) kernel module
Package: kmod-video-gspca-zc3xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14929
Filename: base/kmod-video-gspca-zc3xx_3.18.9-1_ramips_24kec.ipk
Size: 15673
MD5Sum: 7028d32d5b8c29028b1ca0da8e802fcd
SHA256sum: 68caffbb1ec6d5dab4a23d1f623c227f86f7949ac62fd810653ab79db15e53fd
Description: The ZC3XX USB Camera Driver (zc3xx) kernel module
Package: kmod-video-pwc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-videobuf2, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 22175
Filename: base/kmod-video-pwc_3.18.9-1_ramips_24kec.ipk
Size: 22908
MD5Sum: 08d1fb54b26deb1d539ac6c50446909a
SHA256sum: b9429ec54d3827c255f6e9b2d22a12289d08d002fe2245eb8a98e7a00b6cee6e
Description: Kernel modules for supporting Philips USB based cameras
Package: kmod-video-sn9c102
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/kmod-video-sn9c102_3.18.9-1_ramips_24kec.ipk
Size: 874
MD5Sum: a382e69d27836a8edd88a2a3d036d6b3
SHA256sum: 0f3209af5c3b4ca0ed39ad216d0b9390423942105a2a9781a44ad2cfaf227a20
Description: Kernel modules for supporting SN9C102 camera chips
Package: kmod-video-uvc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-videobuf2, kmod-video-core, kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 38775
Filename: base/kmod-video-uvc_3.18.9-1_ramips_24kec.ipk
Size: 39490
MD5Sum: 25271f52998d82a1716f2b02afe2f59c
SHA256sum: baed9bd218a64bfbf6d30ec294884a88972c9b7ada74f0d05c105b5932ab08fa
Description: Kernel modules for supporting USB Video Class (UVC) devices
Package: kmod-video-videobuf2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20922
Filename: base/kmod-video-videobuf2_3.18.9-1_ramips_24kec.ipk
Size: 21677
MD5Sum: 4ca5c9fb598976abe89a9c08d045ba46
SHA256sum: 21f97527ce356bfa5fd690eafee0961bc93a94daccccaa8981ce089eae6e3890
Description: Kernel modules that implements three basic types of media buffers.
Package: kmod-vxlan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iptunnel, kmod-udptunnel4, kmod-udptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16743
Filename: base/kmod-vxlan_3.18.9-1_ramips_24kec.ipk
Size: 17566
MD5Sum: 5ef66717281825670b206b65fea01e20
SHA256sum: 71fba2025a26d09b1237d9d2701b2cb4d2d8fba94cc9cddf02f995506cca7b09
Description: Kernel module for supporting VXLAN in the Kernel.
Requires Kernel 3.12 or newer.
Package: kmod-w1-gpio-custom
Version: 3.18.9-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1, kmod-w1-master-gpio
Source: package/kernel/w1-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 1628
Filename: base/kmod-w1-gpio-custom_3.18.9-3_ramips_24kec.ipk
Size: 2391
MD5Sum: cb51fe3770f7e702782faac7e70f199a
SHA256sum: 7f84119c546deab41b31a7e0ac18e9021b09a4f92f345dad30d37d3c2230851c
Description: Kernel module to register a custom w1-gpio platform device.
Package: kmod-w1-master-ds2482
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2490
Filename: base/kmod-w1-master-ds2482_3.18.9-1_ramips_24kec.ipk
Size: 3305
MD5Sum: d1dd2d6d72f9ba424ee207ce51fc0ce0
SHA256sum: b972d110f360f273c78c5b567215afa445a999428fbc0657e6675aceb83fb79c
Description: Kernel module for the DS2482 i2c 1-wire bus master driver
NOTE: Init with: echo ds2482 0x18 > /sys/bus/i2c/devices/i2c-0/new_device
or use owfs
Package: kmod-w1-master-ds2490
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5237
Filename: base/kmod-w1-master-ds2490_3.18.9-1_ramips_24kec.ipk
Size: 6004
MD5Sum: 97c7b8c61c6333ff170892b317c2d0a5
SHA256sum: 17227cfc656a20d5f2a8435ed930a59c353e0cbf365325884b7e7d5224315a10
Description: Kernel module for the DS2490 usb 1-wire bus master driver
Package: kmod-w1-master-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2133
Filename: base/kmod-w1-master-gpio_3.18.9-1_ramips_24kec.ipk
Size: 2892
MD5Sum: a1e00eb810a6e23a65526127ff111347
SHA256sum: 4cd3b45853b2082988eb3f9fc93595af53bde037e11b29a6c5484423df3b4f9b
Description: Kernel module for the GPIO 1-wire bus master driver
Package: kmod-w1-slave-ds2413
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1337
Filename: base/kmod-w1-slave-ds2413_3.18.9-1_ramips_24kec.ipk
Size: 2155
MD5Sum: 80e9b66217dce18e4683fef4f275e8a9
SHA256sum: aa4e6174d16ad8d97ede081a545fbb03a827dd8f5da26883594503ab8fbde9dc
Description: Kernel module for 1-wire DS2413 Dual Channel Addressable Switch support
Package: kmod-w1-slave-ds2431
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2016
Filename: base/kmod-w1-slave-ds2431_3.18.9-1_ramips_24kec.ipk
Size: 2805
MD5Sum: 63c1e19e222bc11bd7e28c57af566ce7
SHA256sum: 08801723c65f81c598a0ac870fbd5e6977e1baa3118172726a4bb2f6d4083c2a
Description: Kernel module for 1-wire 1kb EEPROM (DS2431)
Package: kmod-w1-slave-ds2433
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1591
Filename: base/kmod-w1-slave-ds2433_3.18.9-1_ramips_24kec.ipk
Size: 2382
MD5Sum: dcda9e8351b8dce0ffb1e709de976b60
SHA256sum: 39576f01c5ce35c202a6597384c1318f9de4327e6894735480a7b0f4d25adbf3
Description: Kernel module for 1-wire 4kb EEPROM (DS2433)
Package: kmod-w1-slave-ds2760
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1990
Filename: base/kmod-w1-slave-ds2760_3.18.9-1_ramips_24kec.ipk
Size: 2757
MD5Sum: 44ab69814d73a04fbade14d304cc60e4
SHA256sum: 619e0f0c65894ec7b7c705ecbe38cdfca88c617274afe440aeab15431a7e6593
Description: Kernel module for 1-wire DS2760 battery monitor chip support
Package: kmod-w1-slave-smem
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 848
Filename: base/kmod-w1-slave-smem_3.18.9-1_ramips_24kec.ipk
Size: 1641
MD5Sum: 43a426a22740f2473f9d485860cc7bd5
SHA256sum: 65185b92324342750af5290f7c4158804227b605af601bec64352c11520bc338
Description: Kernel module for 1-wire simple 64bit memory rom(ds2401/ds2411/ds1990*)
Package: kmod-w1-slave-therm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2421
Filename: base/kmod-w1-slave-therm_3.18.9-1_ramips_24kec.ipk
Size: 3173
MD5Sum: 815166e9804fc421f004ed4f5fd9de39
SHA256sum: 08ef7b1a8baac9c0ebe791145e30dfe6be7adbee06a4b1e0ae7a9f9560b13ebf
Description: Kernel module for 1-wire thermal sensors
Package: kmod-w1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11075
Filename: base/kmod-w1_3.18.9-1_ramips_24kec.ipk
Size: 11857
MD5Sum: 8cecb41314d0abde88793638cfa1ed48
SHA256sum: e8d64ff2c4df8a3578df246be3e1d119dd6a522f78a84f2c4f1bc0c96f79eeca
Description: Kernel module for Dallas's 1-wire support
Package: kmod-zd1211rw
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39336
Filename: base/kmod-zd1211rw_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 40119
MD5Sum: 773e4b335d21f66f8ccc7f778f8870da
SHA256sum: 2187a77d0155d45f7ebece66e371cc45315f60d9ddf0bf325b3057d72cd7bdb7
Description: Zydas ZD1211 support
Package: kmod-zram
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-lzo, kmod-lib-lz4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11976
Filename: base/kmod-zram_3.18.9-1_ramips_24kec.ipk
Size: 12750
MD5Sum: bb29680cf12cc762d5f036d8da66fc5c
SHA256sum: a9fba60ad60a82e97b00b271cf5021adfb274be35eb333cd8fdd8eafd18a9017
Description: Compressed RAM block device support
Package: ldconfig
Version: 0.9.33.2-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: utils
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8664
Filename: base/ldconfig_0.9.33.2-1_ramips_24kec.ipk
Size: 9473
MD5Sum: 09ad77f50e6052fabead072723c9752a
SHA256sum: c3b8eac4002e099891a4870b7c9801f177d99368f28af5d3cb3e4cf2a4fe3881
Description: Shared library path configuration
Package: ldd
Version: 0.9.33.2-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: utils
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4788
Filename: base/ldd_0.9.33.2-1_ramips_24kec.ipk
Size: 5510
MD5Sum: f118fb439f2b74cc5f76ffc70bc73e85
SHA256sum: 1376450639cafe7bfe91d994dae2a71cd83fe7ae7fca330f9b756d4679e80120
Description: LDD trace utility
Package: libatomic
Version: 4.8-linaro-1
Depends: libgcc
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4849
Filename: base/libatomic_4.8-linaro-1_ramips_24kec.ipk
Size: 5611
MD5Sum: dc1b5ef11ad747a009e02da08360a559
SHA256sum: f5e7f0eb27809139d529fc77285a4b46b7b85c7eb61ba3f37c6bd477f036ec22
Description: Atomic support library
Package: libbfd
Version: 2.24-3
Depends: libc, zlib
Source: package/devel/binutils
License: GPL-3.0+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 388147
Filename: base/libbfd_2.24-3_ramips_24kec.ipk
Size: 384907
MD5Sum: 95e58780698aa093574a4b96c3e26b8a
SHA256sum: 192ee617fedeeb9b69cd0c22ee17387f028c2e51a15a74b32fa2024333366a6e
Description: libbfd
Package: libblkid
Version: 2.25.2-4
Depends: libc, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 95144
Filename: base/libblkid_2.25.2-4_ramips_24kec.ipk
Size: 95962
MD5Sum: 13608a2a0449e0eac5a3f571e6141f37
SHA256sum: 05b7872d3543bc4f4b2fb2d18b678d9d239845fa975ffd34f024af59fc3a1566
Description: The libblkid library is used to identify block devices (disks) as to their
content (e.g. filesystem type, partitions) as well as extracting additional
information such as filesystem labels/volume names, partitions, unique
identifiers/serial numbers...
Package: libblobmsg-json
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libjson-c, libubox
Source: package/libs/libubox
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3739
Filename: base/libblobmsg-json_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 4514
MD5Sum: 8089125af065d01d9c00e1c7e630554e
SHA256sum: 5a1d06091bd7baeaeb4fb0798db20860dc3a6bf91e072ff726a2b45006f074e2
Description: blobmsg <-> json conversion library
Package: libcharset
Version: 1.11.1-1
Depends: libc
Source: package/libs/libiconv-full
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3091
Filename: base/libcharset_1.11.1-1_ramips_24kec.ipk
Size: 3819
MD5Sum: 0fa69c36e4624c5fd3e3eed4c2aa86ec
SHA256sum: c66678dbe7955fef34e38faebbff9b1d4fcc23675e6a2bea9a885f5a868e678b
Description: Character set conversion library
Package: libconfig
Version: 1.4.9-1
Depends: libc
Source: package/libs/libconfig
License: LGPL-2.1+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15216
Filename: base/libconfig_1.4.9-1_ramips_24kec.ipk
Size: 16148
MD5Sum: 461fa18e6f1ec3e57bc8b2671a99774b
SHA256sum: f4ed1db239413dba8bb1686cbba561ed6011ca6ac8b94e626f7914757081f146
Description: Libconfig is a simple library for manipulating structured configuration
files. This file format is more compact and more readable than XML. And
unlike XML, it is type-aware, so it is not necessary to do string
parsing in application code.
Libconfig is very compact -- just 38K for the stripped C shared
library (less than one-fourth the size of the expat XML parser library)
and 66K for the stripped C++ shared library. This makes it well-suited
for memory-constrained systems like handheld devices.
Package: libcurl
Version: 7.40.0-3
Depends: libc, libpolarssl
Source: package/network/utils/curl
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 103925
Filename: base/libcurl_7.40.0-3_ramips_24kec.ipk
Size: 104578
MD5Sum: a733f99a63532137e336c41cb2224e53
SHA256sum: 185c12bccb42932c54d18f051b3adbd12e967521497dc0fa63d527390abbf2aa
Description: A client-side URL transfer library
Package: libcyassl
Version: 3.3.0-1
Depends: libc
Source: package/libs/cyassl
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 76693
Filename: base/libcyassl_3.3.0-1_ramips_24kec.ipk
Size: 76713
MD5Sum: 9283f249670e0441c365a933622a5fde
SHA256sum: 9cdeade170fb7cfa4246933bc1c49f2096a4889f8f2fdf1addccc6be047796cc
Description: CyaSSL is an SSL library optimized for small footprint, both on disk and for
memory use.
Package: libevent2-core
Version: 2.0.22-1
Depends: libc
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54013
Filename: base/libevent2-core_2.0.22-1_ramips_24kec.ipk
Size: 55042
MD5Sum: e4fbd6031bafd8373b68794edf5f0403
SHA256sum: 98cb653d681855340d44af1a44bafd3c6d971a5a50a7005b7aca023dd68d8299
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent core shared library for the event,
buffer & utility functions.
Package: libevent2-extra
Version: 2.0.22-1
Depends: libc
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45141
Filename: base/libevent2-extra_2.0.22-1_ramips_24kec.ipk
Size: 46235
MD5Sum: 901ab857411e8e7df928307fc7837922
SHA256sum: 401b90b858b74d9cced0315c22d51083fc4ac1a732be025173002a52ed0cc941
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent extra shared library for specific
protocols including HTTP, DNS & RPC.
Package: libevent2-openssl
Version: 2.0.22-1
Depends: libc, libopenssl
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7468
Filename: base/libevent2-openssl_2.0.22-1_ramips_24kec.ipk
Size: 8504
MD5Sum: 2ab58ebe4d9812cfc3e7ba46df62dbce
SHA256sum: 260100a9ac58159ce42ffe4a1ab068948bffb926c2a9c8dd8d803dcef2ff5ab7
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent OpenSSL shared library for encrypted
bufferevents.
Package: libevent2-pthreads
Version: 2.0.22-1
Depends: libc, libpthread
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2167
Filename: base/libevent2-pthreads_2.0.22-1_ramips_24kec.ipk
Size: 3209
MD5Sum: 2d1b81ac2cc888c8c993ac247dfafe7d
SHA256sum: 6339531ad0d71ffd9d2bfb027f84ec34fc9734a37451f14d0292650482123b33
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent Pthreads shared library for
threading & locking.
Package: libevent2
Version: 2.0.22-1
Depends: libc
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 95212
Filename: base/libevent2_2.0.22-1_ramips_24kec.ipk
Size: 96162
MD5Sum: 1fa064b43aae6595a51def9fcb381c97
SHA256sum: 7a3b5a674e72fc08906fd516df4be7b3339ea8d37c4ee78efa3daa9170cc2031
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent shared library historically
containing both the core & extra libraries.
Package: libext2fs
Version: 1.42.4-2
Depends: libc
Source: package/utils/e2fsprogs
Section: libs
Architecture: ramips_24kec
Installed-Size: 116284
Filename: base/libext2fs_1.42.4-2_ramips_24kec.ipk
Size: 116901
MD5Sum: a5c8a86bcc34f6b26c08bd33032c6779
SHA256sum: de25e2056ebed1b6349e8d096e7c0468d0ca72f381737b68de514f34293c51ea
Description: libext2fs is a library which can access ext2, ext3 and ext4 filesystems.
Package: libfuse
Version: 2.9.3-1
Depends: libc, kmod-fuse, libpthread
Source: package/utils/fuse
License: LGPLv2.1 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 60922
Filename: base/libfuse_2.9.3-1_ramips_24kec.ipk
Size: 61638
MD5Sum: e51c1826f067e8be16b0a44b0cfe8253
SHA256sum: df9a4bef4760e9fcde5f1ef38cfa3aa2e52e4888b5e1d8b7167dcf3a1d414f01
Description: FUSE (Filesystem in UserSpacE)
This package contains the FUSE shared libraries, needed by other programs.
- libfuse
- libulockmgr
Package: libgcc
Version: 4.8-linaro-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31183
Filename: base/libgcc_4.8-linaro-1_ramips_24kec.ipk
Size: 31905
MD5Sum: 775ff74999b0b937d1f971738371c975
SHA256sum: 30a847d8bc26943a73d375efb8a85610ad7ed83e96e4b144cea7d2f304b70499
Description: GCC support library
Package: libgmp
Version: 6.0.0-1
Depends: libc
Source: package/libs/gmp
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 206409
Filename: base/libgmp_6.0.0-1_ramips_24kec.ipk
Size: 207127
MD5Sum: e20248f379a65bc06ca7a5b1095ce1cd
SHA256sum: 3a428f8f7a624a51ea21d323cf061fc94b5b8c8deda5bc12c57b35c3ec5e9e5a
Description: GMP is a free library for arbitrary precision arithmetic, operating on
signed integers, rational numbers, and floating point numbers.
Package: libiconv-full
Version: 1.11.1-1
Depends: libc
Source: package/libs/libiconv-full
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12528
Filename: base/libiconv-full_1.11.1-1_ramips_24kec.ipk
Size: 13259
MD5Sum: 00708b8ae6d600ce3a838cf1d47550ee
SHA256sum: 5a71fe38e540bbc4306e1658313d5af87d5a42c91823d457ea2be418a7fad188
Description: Character set conversion library
Package: libiconv
Version: 7
Depends: libc
Source: package/libs/libiconv
License: LGPL-2.1
LicenseFiles: LICENSE
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 169
Filename: base/libiconv_7_ramips_24kec.ipk
Size: 920
MD5Sum: fb94db003a910710052d774745cc84b7
SHA256sum: 161f5f27542cfc3996d2b95ed857c0eb645536ae48dd0b23eaf7d88142ca6090
Description: Tiny drop-in replacement for the GNU Character set conversion library
Package: libintl-full
Version: 0.19.4-1
Depends: libc
Source: package/libs/gettext-full
License: GPL-3.0+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15000
Filename: base/libintl-full_0.19.4-1_ramips_24kec.ipk
Size: 15698
MD5Sum: 8fcdfe1f4ac0c3f2eb0852918697b0b3
SHA256sum: 8598cba359cdc81c1f4e1203795ebab77eb8adec861ae4b0ee3a81997ab56b1d
Description: GNU Internationalization library
Package: libintl
Version: 2
Depends: libc
Source: package/libs/gettext
License: FSFULLR
LicenseFiles: LICENSE
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167
Filename: base/libintl_2_ramips_24kec.ipk
Size: 904
MD5Sum: 94efd135d74826d5be05f990c4caf250
SHA256sum: 7fd3928166980643430f7f882625ae1dde87ad37846cd8aa11e559e64884870e
Description: Stub header for the GNU Internationalization library
Package: libip4tc
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 10075
Filename: base/libip4tc_1.4.21-1_ramips_24kec.ipk
Size: 10759
MD5Sum: 26354a3201980f594dd32eff3e5b8ec7
SHA256sum: 8d23750ec602b759a4fc93fbcdfa0ed0f80b18080c6e2f965cc8fb4807fece45
Description: IPv4 firewall - shared libiptc library
Package: libip6tc
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 10452
Filename: base/libip6tc_1.4.21-1_ramips_24kec.ipk
Size: 11166
MD5Sum: 42ac7fbb0a44add5a315dc37d10891f1
SHA256sum: b40945eecdafa192fe26979f61ae506a29012afab5daf3e97092a6d287066cb4
Description: IPv6 firewall - shared libiptc library
Package: libiptc
Version: 1.4.21-1
Depends: libc, libip4tc, libip6tc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 1178
Filename: base/libiptc_1.4.21-1_ramips_24kec.ipk
Size: 1914
MD5Sum: 42788605046726313e21e677883f225d
SHA256sum: 1351c60ce2255e0124bfa2a15080d052d8db3aa39c18396596abf9171d54a513
Description: IPv4/IPv6 firewall - shared libiptc library (compatibility stub)
Package: libiw
Version: 29-5
Depends: libc
Source: package/network/utils/wireless-tools
License: GPL-2.0
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11627
Filename: base/libiw_29-5_ramips_24kec.ipk
Size: 12408
MD5Sum: 72f0a4e65a7fc0155cdff4cef6a9f300
SHA256sum: 5ac4a64333c5e84410770a06159fb9a2ec9a17cb0a701e410f25e45a935b116a
Description: This package contains a library for manipulating
"Linux Wireless Extensions".
Package: libiwinfo-lua
Version: 2015-01-04-c9fd399316003040825dfbd9700488b621bd990e
Depends: libc, libiwinfo, liblua
Source: package/network/utils/iwinfo
License: GPL-2.0
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5544
Filename: base/libiwinfo-lua_2015-01-04-c9fd399316003040825dfbd9700488b621bd990e_ramips_24kec.ipk
Size: 6300
MD5Sum: 5634d727cd7b045dcb313cc6562a3d10
SHA256sum: 0cc0adedfe551fdba0173c69524ca571d46c2dcfa38d40bc1a0fb88da73310f3
Description: This is the Lua binding for the iwinfo library. It provides access to all enabled
backends.
Package: libiwinfo
Version: 2015-01-04-c9fd399316003040825dfbd9700488b621bd990e
Depends: libc, libnl-tiny, libuci
Source: package/network/utils/iwinfo
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22584
Filename: base/libiwinfo_2015-01-04-c9fd399316003040825dfbd9700488b621bd990e_ramips_24kec.ipk
Size: 23410
MD5Sum: 5bff7d51458feeaa8cd3a1aea0687d76
SHA256sum: 5864533dddc15e0e5055efc37ddbde20e35ea3371ec43cd0263c564e5cfe5c09
Description: Wireless information library with consistent interface for proprietary Broadcom,
madwifi, nl80211 and wext driver interfaces.
Package: libjson-c
Version: 0.12-1
Depends: libc
Source: package/libs/libjson-c
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14751
Filename: base/libjson-c_0.12-1_ramips_24kec.ipk
Size: 15492
MD5Sum: 82d9008795e6e89a696476cb0751b542
SHA256sum: 607d91a77ca809edd383b64bf3c867353cef18c98588a3da53a6573905c6acbe
Description: This package contains a library for javascript object notation backends.
Package: libjson-script
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libubox
Source: package/libs/libubox
License: ISC
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5051
Filename: base/libjson-script_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 5787
MD5Sum: 1aa953a03dfc1d6a3fa0147aca3ccbe3
SHA256sum: cbc0d89f591ce421b5ceca1f1341d9f92c067e4777fb21692e6f75f7db955d20
Description: Minimalistic JSON based scripting engine
Package: libltdl
Version: 2.4-1
Depends: libc
Source: package/libs/libtool
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 13068
Filename: base/libltdl_2.4-1_ramips_24kec.ipk
Size: 13773
MD5Sum: ed18e77344f42b0a82fd7852681104b9
SHA256sum: 2e5afffcb8d5f0c0cad2ae2129da9ac81b96e9d091b66e108f00295aace8450e
Description: A generic dynamic object loading library
Package: liblua
Version: 5.1.5-1
Depends: libc
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69736
Filename: base/liblua_5.1.5-1_ramips_24kec.ipk
Size: 70525
MD5Sum: 461098a0f9d44c13493004d81fe7b304
SHA256sum: 9cc40f0953761a862bbeff5f1e9aa9206d62e5c536caa43aee25f360875d5e41
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua shared libraries, needed by other programs.
Package: liblzo
Version: 2.08-1
Depends: libc
Source: package/libs/lzo
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 35705
Filename: base/liblzo_2.08-1_ramips_24kec.ipk
Size: 36469
MD5Sum: e6e46672e65c1bdbd63ed57958ce4b89
SHA256sum: 67c72823a98ab514e9bc68180673906b4d53872d5a3d064e03feab2efa6a8c84
Description: LZO is a data compression library which is suitable for data de-/compression
in real-time. This means it favours speed over compression ratio.
Package: libmnl
Version: 1.0.3-2
Depends: libc
Source: package/libs/libmnl
License: LGPL-2.1+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5602
Filename: base/libmnl_1.0.3-2_ramips_24kec.ipk
Size: 6814
MD5Sum: a838589b6d4f2f67d1aec31a5ece377c
SHA256sum: 73ca61a99a8b0d9ad59847d70a7dd6da0dbf7570ab898ccacc65162f8a1aa334
Description: libmnl is a minimalistic user-space library oriented to Netlink developers.
There are a lot of common tasks in parsing, validating, constructing of
both the Netlink header and TLVs that are repetitive and easy to get wrong.
This library aims to provide simple helpers that allows you to re-use code
and to avoid re-inventing the wheel. The main features of this library are:
.
* Small: the shared library requires around 30KB for an x86-based computer.
.
* Simple: this library avoids complexity and elaborated abstractions that
tend to hide Netlink details.
.
* Easy to use: the library simplifies the work for Netlink-wise developers.
It provides functions to make socket handling, message building, validating,
parsing and sequence tracking, easier.
.
* Easy to re-use: you can use the library to build your own abstraction layer
on top of this library.
.
* Decoupling: the interdependency of the main bricks that compose the library
is reduced, i.e. the library provides many helpers, but the programmer is not
forced to use them.
Package: libmount
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 94413
Filename: base/libmount_2.25.2-4_ramips_24kec.ipk
Size: 95238
MD5Sum: 27e822df88c42c6dd092f3daca6d4861
SHA256sum: de749aca778c3e9753942f993974cb0b0e86b27bcfe289f311af0932019ef225
Description: The libmount library is used to parse /etc/fstab, /etc/mtab and
/proc/self/mountinfo files, manage the mtab file, evaluate mount options...
Package: libncurses
Version: 5.9-1
Depends: libc, terminfo
Source: package/libs/ncurses
License: MIT
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 120282
Filename: base/libncurses_5.9-1_ramips_24kec.ipk
Size: 119174
MD5Sum: 7c81f0882911c0c1020e3717d370bc13
SHA256sum: d0e7ba1de38a89811b4ee0be0beb88b9fb1bbeb8086152fb60dc92d00755fb83
Description: Terminal handling library
Package: libncursesw
Version: 5.9-1
Depends: libc
Source: package/libs/ncurses
License: MIT
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 138851
Filename: base/libncursesw_5.9-1_ramips_24kec.ipk
Size: 137643
MD5Sum: 7f9597df332cde2f8d2a0e5bc25d3404
SHA256sum: 88c9dcf7f06513ea54c20206f3065a7d1b462023cddc0b7e9fb0fa1c3fcb23f6
Description: Terminal handling library (Unicode)
Package: libnetfilter-conntrack
Version: 1.0.3-1
Depends: libc, libnfnetlink, kmod-nf-conntrack-netlink, libmnl
Source: package/libs/libnetfilter-conntrack
License: GPL-2.0+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28808
Filename: base/libnetfilter-conntrack_1.0.3-1_ramips_24kec.ipk
Size: 29526
MD5Sum: 4b980117385e1cf2a7b97c3a53cd6ff9
SHA256sum: b3d66f0dbff5613934e12af8ab4195fe5b55383c4e870d9fd3fa79f74a04d9ca
Description: libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
Package: libnetfilter-log
Version: 1.0.1-1
Depends: libc, libnfnetlink, kmod-nfnetlink-log, libmnl
Source: package/libs/libnetfilter-log
License: GPL-2.0+
Section: libs
Maintainer: Yousong Zhou <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3685
Filename: base/libnetfilter-log_1.0.1-1_ramips_24kec.ipk
Size: 4542
MD5Sum: 2a5db710e624d59dce1a09fb7df71436
SHA256sum: ec224b37d56b0d3fc971073bb19b06b5f713c9c9de5a3f0011787713bd3fb929
Description: libnetfilter_log is a userspace library providing interface to packets that
have been logged by the kernel packet filter. It is is part of a system that
deprecates the old syslog/dmesg based packet logging. This library has been
previously known as libnfnetlink_log.
Package: libnettle
Version: 2.7.1-1
Depends: libc, libgmp
Source: package/libs/nettle
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 220161
Filename: base/libnettle_2.7.1-1_ramips_24kec.ipk
Size: 220289
MD5Sum: 33faf046aca24ff933ee28d85b139d39
SHA256sum: 63481b7faa8e7149f6c9c773551c66f705d585cb69a823aba038c2e12e8cb387
Description: GNU crypto library
Package: libnfnetlink
Version: 1.0.1-1
Depends: libc
Source: package/libs/libnfnetlink
License: GPL-2.0+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8921
Filename: base/libnfnetlink_1.0.1-1_ramips_24kec.ipk
Size: 9811
MD5Sum: 848217d32118bf07370b0e53a52be0f7
SHA256sum: 1d85519f711a140173983954d9ec69f4c2ce88ef3bc45363352af7fabba6f591
Description: libnfnetlink is is the low-level library for netfilter related kernel/userspace communication.
It provides a generic messaging infrastructure for in-kernel netfilter subsystems
(such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users
and/or management tools in userspace.
Package: libnftnl
Version: 1.0.3-1
Depends: libc, libmnl
Source: package/libs/libnftnl
License: GPL-2.0+
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31586
Filename: base/libnftnl_1.0.3-1_ramips_24kec.ipk
Size: 32344
MD5Sum: 152286d51d68ebde64a9c7c729fa1334
SHA256sum: 1640c361bf97cecc9ead6525efe981164d97cd06c4f56dcabbfb73fd44384d98
Description: libnftnl is a userspace library providing a low-level netlink
programming interface (API) to the in-kernel nf_tables subsystem.
Package: libnl-tiny
Version: 0.1-4
Depends: libc
Source: package/libs/libnl-tiny
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12999
Filename: base/libnl-tiny_0.1-4_ramips_24kec.ipk
Size: 13720
MD5Sum: 8c9e60fd9cb86b96899de38d129b7666
SHA256sum: 0785e497a95be6e91fdc567e760dd52622447c2eecd6222eaa020bacf765dffb
Description: This package contains a stripped down version of libnl
Package: libnl
Version: 3.2.21-1
Depends: libc, libpthread
Source: package/libs/libnl
License: LGPL-2.1
Section: libs
Architecture: ramips_24kec
Installed-Size: 149826
Filename: base/libnl_3.2.21-1_ramips_24kec.ipk
Size: 150013
MD5Sum: c956b68c61f726233390f004a68b8ee5
SHA256sum: 82f15b91fad83208640e355e22aab0273b1d247516618bdc10720f750565dfe0
Description: This package contains a library for applications dealing with netlink sockets
Package: libopcodes
Version: 2.24-3
Depends: libc, libbfd
Source: package/devel/binutils
License: GPL-3.0+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54103
Filename: base/libopcodes_2.24-3_ramips_24kec.ipk
Size: 48700
MD5Sum: cb037e8b523c135b3222fbe83f039bc2
SHA256sum: ff4339b3b3936e23dbe8fb707cc8bba92452da5140d1419b31ab77e526f22518
Description: libbfd
Package: libopenssl
Version: 1.0.2a-0
Depends: libc, zlib
Source: package/libs/openssl
License: OpenSSL
LicenseFiles: LICENSE
Section: libs
Architecture: ramips_24kec
Installed-Size: 676106
Filename: base/libopenssl_1.0.2a-0_ramips_24kec.ipk
Size: 670111
MD5Sum: da327b46dc6ed66d23b670770e69edee
SHA256sum: 486595a844fdeca37ec7128ce1a79c2410aa159cca3b19011bd0ae0f2a9797d5
Description: The OpenSSL Project is a collaborative effort to develop a robust,
commercial-grade, full-featured, and Open Source toolkit implementing the Secure
Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well
as a full-strength general purpose cryptography library.
This package contains the OpenSSL shared libraries, needed by other programs.
Package: libpcap
Version: 1.5.3-1
Depends: libc
Source: package/libs/libpcap
License: BSD-3-Clause
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 85254
Filename: base/libpcap_1.5.3-1_ramips_24kec.ipk
Size: 86014
MD5Sum: c80bfab0f31e97876003767a25246e71
SHA256sum: 818048494f6fe37b673b0c9f7ea04b21ce42c6e68642e8c36d7db885f94d95e8
Description: This package contains a system-independent library for user-level network packet
capture.
Package: libpolarssl
Version: 1.3.10-1
Depends: libc
Source: package/libs/polarssl
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 131518
Filename: base/libpolarssl_1.3.10-1_ramips_24kec.ipk
Size: 132189
MD5Sum: b1d7c2d957eb2548dad977dd0b108f42
SHA256sum: acfc03a53983a7666f2301030c0144d867dc07e7a1e8f713ff30d83c68cc9fe1
Description: The aim of the PolarSSL project is to provide a quality, open-source
cryptographic library written in C and targeted at embedded systems.
This package contains the PolarSSL library.
Package: libpopt
Version: 1.16-1
Depends: libc
Source: package/libs/popt
License: MIT
Section: libs
Architecture: ramips_24kec
Installed-Size: 18255
Filename: base/libpopt_1.16-1_ramips_24kec.ipk
Size: 18907
MD5Sum: 7686eccd637d9fadf40b5e4b2232c447
SHA256sum: 324c2aba90b65db4d2e1f33dd37279eee096cab76e06095640ba3999dbc27a7b
Description: A command line option parsing library
Package: libpthread
Version: 0.9.33.2-1
Depends: libgcc
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30288
Filename: base/libpthread_0.9.33.2-1_ramips_24kec.ipk
Size: 31047
MD5Sum: f612d736dae464cdf4090e6d23b02079
SHA256sum: 3590b1bceb77b517b3f4f880bebb0fdabb1d74dc2ca32832e0fbe0cdae994cef
Description: POSIX thread library
Package: libreadline
Version: 6.3-1
Depends: libc
Source: package/libs/libreadline
License: GPL-3.0
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 124935
Filename: base/libreadline_6.3-1_ramips_24kec.ipk
Size: 125170
MD5Sum: 18218d4481170cfe43736dcbcd099a5c
SHA256sum: 0856e56a221c819da3931d050d8a98c3a425d0415e1cfbcd8060fd7061933d87
Description: The Readline library provides a set of functions for use by applications
that allow users to edit command lines as they are typed in. Both Emacs
and vi editing modes are available. The Readline library includes
additional functions to maintain a list of previously-entered command
lines, to recall and perhaps reedit those lines, and perform csh-like
history expansion on previous commands.
Package: libroxml
Version: 2.3.0-2
Depends: libc
Source: package/libs/libroxml
License: LGPL-2.1+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18237
Filename: base/libroxml_2.3.0-2_ramips_24kec.ipk
Size: 18990
MD5Sum: e15457c241de2e489ba80264954d91c1
SHA256sum: 9323e5817084d9b71e1897e6017792ff48af72db39fa4b124a0340fce3c856bf
Description: Minimum, easy-to-use, C implementation for xml file parsing
Package: librpc
Version: 0.9.32-rc2-0a2179bbc0844928f2a0ec01dba93d9b5d6d41a7
Depends: libc
Source: package/libs/librpc
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32137
Filename: base/librpc_0.9.32-rc2-0a2179bbc0844928f2a0ec01dba93d9b5d6d41a7_ramips_24kec.ipk
Size: 32930
MD5Sum: 0e4c24eda5ea9fb0aa7c0cc60fa4ac4e
SHA256sum: 1b4a5a2dfd68090296b30ee8c76385373b53cfa06b89550370c93e6bb85adbea
Description: uClibc RPC library
Package: librt
Version: 0.9.33.2-1
Depends: libpthread
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4897
Filename: base/librt_0.9.33.2-1_ramips_24kec.ipk
Size: 5660
MD5Sum: 758e62884148e9270c6c73c156568940
SHA256sum: e77514bd132cca6989b0f7b7dc40b388c7ee31b3a3fd89d16f487115c4a63676
Description: POSIX.1b RealTime extension library
Package: libsmartcols
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 48442
Filename: base/libsmartcols_2.25.2-4_ramips_24kec.ipk
Size: 49340
MD5Sum: 92e9c2000ea5f291c5ad3c301e0f6e22
SHA256sum: 1237afec186aa3431248f06d3f79738686b25873cb9d19f1a1bcb10bf4ae6297
Description: The smartcols library is used to print tables and trees in a pretty way.
Package: libsocks
Version: 1.2.2-1
Depends: libc
Source: package/network/utils/dante
License: BSD-4-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 88706
Filename: base/libsocks_1.2.2-1_ramips_24kec.ipk
Size: 89712
MD5Sum: bbf270f3db587643a931772f1885f82a
SHA256sum: 884d5e5bedd2b1e2eb7f627fa6e29042411566de5c6a123a834765d057889a7a
Description: Dante is a circuit-level firewall/proxy that can be used to provide convenient
and secure network connectivity, requiring only that the server Dante runs on
has external network connectivity. Dante is used daily by Fortune 100 companies
and large international organizations, either as a standard SOCKS server or as
a "reverse proxy".
This package provides the shared libsocks library.
Package: libstdcpp
Version: 4.8-linaro-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 245038
Filename: base/libstdcpp_4.8-linaro-1_ramips_24kec.ipk
Size: 244468
MD5Sum: c3b8b9b885a4fbea9b48e37d7d784420
SHA256sum: 691541a58b4c4330e9dd4db0a6c37f27d9106bbf7d6ec81bded6be7b0ce2d277
Description: GNU Standard C++ Library v3
Package: libsysfs
Version: 2.1.0-2
Depends: libc
Source: package/libs/sysfsutils
License: LGPL-2.1
LicenseFiles: COPYING cmd/GPL lib/LGPL
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10757
Filename: base/libsysfs_2.1.0-2_ramips_24kec.ipk
Size: 11566
MD5Sum: a34ffc87acc2689e77d130dc7c174e82
SHA256sum: 919646ecb9728d1ea2d0b476395b72e2af3ef47faf2ec42532cb576abb802047
Description: The library's purpose is to provide a consistant and stable interface for
querying system device information exposed through sysfs.
Package: libthread-db
Version: 0.9.33.2-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7462
Filename: base/libthread-db_0.9.33.2-1_ramips_24kec.ipk
Size: 8250
MD5Sum: 12b6dee1a95d9b93c508d8f44c9375ce
SHA256sum: 04e7b26bdf4f949c0db4adc8b302e089e298d452f0267be8f2b9816ea9a16ad4
Description: POSIX thread library debugging support
Package: libubox-lua
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libubox, liblua
Source: package/libs/libubox
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3664
Filename: base/libubox-lua_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 4430
MD5Sum: b60683d6fc9e567f630cfff8dc8da653
SHA256sum: 672695b0d282078a301c47ec855b6b9b7f49ddc9daa1ae38fdffaf68a28f228d
Description: Lua binding for the OpenWrt Basic utility library
Package: libubox
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc
Source: package/libs/libubox
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17534
Filename: base/libubox_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 18313
MD5Sum: 76fedb0b16270a49436b49e445b62713
SHA256sum: 2134bed90316b8aa4b5728f9a85afa918146bfea18395227283ef2fc605b8eb7
Description: Basic utility library
Package: libubus-lua
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubus, liblua
Source: package/system/ubus
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5489
Filename: base/libubus-lua_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 6266
MD5Sum: d86ce2a95ae7d5e0e3f531f9b8fdc908
SHA256sum: 8f6866ee80efc4ba647bc6b6667657d4e6028b2d69cfd54ccffe0794e34870ca
Description: Lua binding for the OpenWrt RPC client
Package: libubus
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubox
Source: package/system/ubus
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9075
Filename: base/libubus_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 9818
MD5Sum: cb6cd9d66813f6432097c86e1b924ff9
SHA256sum: 15b1b1e1078e122bcf2f1fb69b63fd26253bb1e873b2ded792d4cb7f6e15d5f1
Description: OpenWrt RPC client library
Package: libuci-lua
Version: 2014-04-11.1-1
Depends: libc, libuci, liblua
Source: package/system/uci
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6089
Filename: base/libuci-lua_2014-04-11.1-1_ramips_24kec.ipk
Size: 6824
MD5Sum: 68db29daac83216eb39ea3a982022dea
SHA256sum: 70cde6b95b9184863d81d0638aa82d57c5c1719dc728efd3f79428beb1bdabad
Description: Lua plugin for UCI
Package: libuci
Version: 2014-04-11.1-1
Depends: libc, libubox
Source: package/system/uci
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16105
Filename: base/libuci_2014-04-11.1-1_ramips_24kec.ipk
Size: 16832
MD5Sum: a9bd78d076ab279fe888456524d43de1
SHA256sum: a7d2b9a13311cb424c756482064923f504745f50dc55db8e507d392d4d4f5a65
Description: C library for the Unified Configuration Interface (UCI)
Package: libuclient
Version: 2015-01-19-6c222d0646fa7c07be96d729009916d5af295332
Depends: libc, libubox
Source: package/libs/uclient
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8945
Filename: base/libuclient_2015-01-19-6c222d0646fa7c07be96d729009916d5af295332_ramips_24kec.ipk
Size: 9687
MD5Sum: 832a6c288924bafe24e3339a0579c1aa
SHA256sum: cbf4222f210d0c69aa6c4129c87f9ff1b2fcf5843a8726f2b7574643089beb53
Description: HTTP/1.1 client library
Package: libusb-1.0
Version: 1.0.19-1
Depends: libc, libpthread, librt
Source: package/libs/libusb
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26231
Filename: base/libusb-1.0_1.0.19-1_ramips_24kec.ipk
Size: 26964
MD5Sum: 241191c2723ee739e2290b632df29b66
SHA256sum: 07ebc0d43e3e09beb3d531b4fa63de43c0e2698ae53675a09652737706c5426e
Description: libusb is a C library that gives applications easy access to USB devices on
many different operating systems.
Package: libusb-compat
Version: 0.1.4-1
Depends: libc, libusb-1.0
Source: package/libs/libusb-compat
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5757
Filename: base/libusb-compat_0.1.4-1_ramips_24kec.ipk
Size: 6529
MD5Sum: db3236a7fa2da1ba99029e8075446f81
SHA256sum: dc38feef5bd11c13a798f820d78d9287806c2fed1a6aa1cb0356e9c0775a7a38
Description: libusb is a C library that gives applications easy access to USB devices on
many different operating systems.
Package: libustream-cyassl
Version: 2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0
Depends: libc, libubox, libcyassl
Source: package/libs/ustream-ssl
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3261
Filename: base/libustream-cyassl_2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0_ramips_24kec.ipk
Size: 4044
MD5Sum: 8a05faaf9bacb6cbc3b896ff19885bab
SHA256sum: cc7998ec698d7648d07cc679e69028a853b48919bdc86b3ff20b5ccaa04ae0dd
Description: ustream SSL Library (cyassl)
Package: libustream-openssl
Version: 2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0
Depends: libc, libubox, libopenssl
Source: package/libs/ustream-ssl
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4283
Filename: base/libustream-openssl_2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0_ramips_24kec.ipk
Size: 5024
MD5Sum: 61026cbd59f1ab87b56288b377626791
SHA256sum: dcc3583031809c8e2eaf448ddfe48f503c22a8b34cca481653166afb9bce93cd
Description: ustream SSL Library (openssl)
Package: libustream-polarssl
Version: 2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0
Depends: libc, libubox, libpolarssl
Source: package/libs/ustream-ssl
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3569
Filename: base/libustream-polarssl_2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0_ramips_24kec.ipk
Size: 4309
MD5Sum: 24460df6c626077b6072913e18eaf887
SHA256sum: f1724eddd474cbd7a8cfff46fa7b93e5ba16af776e05718302b7daf736f3f853
Description: ustream SSL Library (polarssl)
Package: libuuid
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 5635
Filename: base/libuuid_2.25.2-4_ramips_24kec.ipk
Size: 6548
MD5Sum: 63e5142c00e9490143cde4b54d8c585a
SHA256sum: bded7fde2530161760f57fbff7281b2ebc7f56c4e7e5d95ee6b4544b58e54edd
Description: The UUID library is used to generate unique identifiers for objects
that may be accessible beyond the local system. This library
generates UUIDs compatible with those created by the Open Software
Foundation (OSF) Distributed Computing Environment (DCE) utility.
Package: libxtables
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 17066
Filename: base/libxtables_1.4.21-1_ramips_24kec.ipk
Size: 17781
MD5Sum: d03691dd25f414fe10428a89a2a32dc7
SHA256sum: 43db62075b657f07115e211cbcb8bbd7ed6c211cfa50eac400b2418cd0e3ab5c
Description: IPv4/IPv6 firewall - shared xtables library
Package: linux-atm
Version: 2.5.2-5
Depends: libc
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 16479
Filename: base/linux-atm_2.5.2-5_ramips_24kec.ipk
Size: 17186
MD5Sum: 2f63dd41c06800d3aa5d09503e19b0a1
SHA256sum: c1c1f9f81da8f41dbf986467a8701f182db8c07950eda010b1c9c7d9637ec987
Description: This package contains a library for accessing the Linux ATM subsystem.
Package: lldpd
Version: 0.7.13-2
Depends: libc, libevent2
Source: package/network/services/lldpd
License: ISC
Section: net
Require-User: lldp=121:lldp=129
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 103108
Filename: base/lldpd_0.7.13-2_ramips_24kec.ipk
Size: 104021
MD5Sum: 0296dbca9052eb1f3b9377bf075d2f80
SHA256sum: ee49e14e710237c4adf26ff8d703b7d4e69609969b6daa8630d2a05f70bbd492
Description: LLDP (Link Layer Discovery Protocol) is an industry standard protocol designed
to supplant proprietary Link-Layer protocols such as
Extreme's EDP (Extreme Discovery Protocol) and
CDP (Cisco Discovery Protocol).
The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver
Link-Layer notifications to adjacent network devices.
Package: logger
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 8535
Filename: base/logger_2.25.2-4_ramips_24kec.ipk
Size: 9337
MD5Sum: 968174064f56fa4aee739a97e73cb0ac
SHA256sum: 5fb9a1f0dd55a57c085a03a6071b5d6a46ac2e7eb7a0359d001c469d0d93b100
Description: logger makes entries in the system log, it provides a shell command interface
to the syslog system log module
Package: look
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 3735
Filename: base/look_2.25.2-4_ramips_24kec.ipk
Size: 4520
MD5Sum: 661b49f95a4cf63449dc56f518892770
SHA256sum: b8966dfbc5601ceed10563fb2574cb3de219090a3b942c5eb6fd68b91cc8ff9b
Description: look utility displays any lines in file which contain string
Package: losetup
Version: 2.25.2-4
Depends: libc, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 24666
Filename: base/losetup_2.25.2-4_ramips_24kec.ipk
Size: 25469
MD5Sum: 72aa92940866356f6713a5001017cb2f
SHA256sum: 028ac5226be30b6a684d9e12d4c4a2cc0bd8af59bdba537c878ae6e4106aafc2
Description: losetup is used to associate loop devices with regular files or block devices,
to detach loop devices and to query the status of a loop device
Package: lsblk
Version: 2.25.2-4
Depends: libc, libblkid, libmount, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 23527
Filename: base/lsblk_2.25.2-4_ramips_24kec.ipk
Size: 24302
MD5Sum: a7649de308131359f2f774d030e0533b
SHA256sum: 4ff0c672305f10e914acd94b25e067781b9ae20caf4d561dd35ff3e6a52a90b5
Description: lsblk lists information about all or the specified block devices
Package: lua-examples
Version: 5.1.5-1
Depends: libc, lua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5288
Filename: base/lua-examples_5.1.5-1_ramips_24kec.ipk
Size: 6146
MD5Sum: 7041ed51c8c3702dba24bfc97463636c
SHA256sum: bf2ec58cdd1d41330992a61a203da87a9f010cc7e5ca538a7add2d9ee4d17136
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains Lua language examples.
Package: lua
Version: 5.1.5-1
Depends: libc, liblua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4754
Filename: base/lua_5.1.5-1_ramips_24kec.ipk
Size: 5580
MD5Sum: a391a2a0b18b9486ce8b667c3a1ee77d
SHA256sum: f247e17c6e5bfeaff1904b690bd8a134828ac193ba53da54d02c8ab27f0139a3
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua language interpreter.
Package: luac
Version: 5.1.5-1
Depends: libc, liblua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5793
Filename: base/luac_5.1.5-1_ramips_24kec.ipk
Size: 6628
MD5Sum: d523cb1252d9f907c3151970e3895575
SHA256sum: 4bada7f29d9ea9419b19045998b16504a59ffaf05992775bc2e20a4a2ad27d54
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua language compiler.
Package: maccalc
Version: 1
Depends: libc
Source: package/network/utils/maccalc
License: GPL-2.0
Section: utils
Architecture: ramips_24kec
Installed-Size: 2407
Filename: base/maccalc_1_ramips_24kec.ipk
Size: 3131
MD5Sum: a75e7e31e6a755963d90b83979b74942
SHA256sum: bb679172e369f1bb11ccb5228cd6e2db793630aa1db78a6275ed0a6301249a56
Description: This package contains a MAC address manipulation utility.
Package: map
Version: 3-2
Depends: libc, kmod-ipv6, kmod-ip6-tunnel, libubox, libubus, iptables-mod-conntrack-extra
Source: package/network/ipv6/map
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6747
Filename: base/map_3-2_ramips_24kec.ipk
Size: 7626
MD5Sum: 38d91cc6ebe2151dc4e098ca1fec1b1b
SHA256sum: adbf41b1bddcc28d05e7d4c77155066c1a9efc8747816562ab85ed1768f4d2e3
Description: Provides support for MAP-E (draft-ietf-softwire-map) and
Lightweight 4over6 (draft-ietf-softwire-lw4over6) in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: mcookie
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 10062
Filename: base/mcookie_2.25.2-4_ramips_24kec.ipk
Size: 10847
MD5Sum: 5576730ce82e8e299f62597573adbc5e
SHA256sum: 57144a56c444ee70059a3b3e5c6b124823433e51125cc7920b2b0954a94b64d3
Description: mcookie generates a 128-bit random hexadecimal number for use with the X
authority system
Package: mdadm
Version: 3.2.5-1
Depends: libc
Source: package/utils/mdadm
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128197
Filename: base/mdadm_3.2.5-1_ramips_24kec.ipk
Size: 128791
MD5Sum: f3b1ea3bcfb39962f3b0bb196d0f2626
SHA256sum: 525cf4dbafb7d57ed772cb55a06be2bdfd9129c1bfe4238b9c91a6fd2b81f447
Description: A tool for managing Linux Software RAID arrays.
Package: mdns
Version: 2014-11-03-a5560f88bb2cddeef0ef11a12e7822b9c19a75a5
Depends: libc, libubox, libubus, libblobmsg-json
Source: package/network/services/mdns
License: LGPL-2.1
Section: net
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14839
Filename: base/mdns_2014-11-03-a5560f88bb2cddeef0ef11a12e7822b9c19a75a5_ramips_24kec.ipk
Size: 15578
MD5Sum: b6e76fb5b1c5c67a44a6c523ab473766
SHA256sum: 21043c0e1af0f881103a59b5a7a6de957e541678a163f4882b55276bf4d5f8f2
Description: OpenWrt Multicast DNS Daemon
Package: mount-utils
Version: 2.25.2-4
Depends: libc, libmount, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 33748
Filename: base/mount-utils_2.25.2-4_ramips_24kec.ipk
Size: 34572
MD5Sum: b09274c6162227b4553ddbd1115a0c8b
SHA256sum: de04f6633bf1ee33f5c425fd5139e5269e1f043b7d2f580499307b92dba1b71a
Description: contains: mount, umount, findmnt
Package: mountd
Version: 0.1-6
Depends: libc, uci, kmod-usb-storage, kmod-fs-autofs4
Source: package/system/mountd
License: GPL-2.0
Section: utils
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10579
Filename: base/mountd_0.1-6_ramips_24kec.ipk
Size: 11367
MD5Sum: 7fd2400e603d65acfa3179ee935509f2
SHA256sum: d3ac5e04d06b891215027f3cd09dadfe8aed458714e225164134ec27dbcb9ac2
Description: openwrt automount daemon
Package: mtd
Version: 20
Depends: libc, libubox
Source: package/system/mtd
License: GPL-2.0+
Section: utils
Architecture: ramips_24kec
Installed-Size: 12538
Filename: base/mtd_20_ramips_24kec.ipk
Size: 13279
MD5Sum: c6658a7f1a21258b6148db64c512ecc4
SHA256sum: dba206fb44892e7fa53487d0863078750106eeb4f33c3ba2586070578d0a86d2
Description: This package contains an utility useful to upgrade from other firmware or
older OpenWrt releases.
Package: namei
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 8307
Filename: base/namei_2.25.2-4_ramips_24kec.ipk
Size: 9156
MD5Sum: 0b669bfec03d0b0c9770eba3e378d655
SHA256sum: 1fa8f97ab23eded9cce865452822468de06b8a147f43e39ad3b510f355d6ba5b
Description: namei uses its arguments as pathnames to any type of Unix file (symlinks,
files, directories, and so forth)
Package: netifd
Version: 2015-03-20-2fb3d0e9205e2a4cea38062caefd7251f562866d
Depends: libc, libuci, libnl-tiny, libubus, ubus, ubusd, jshn, libubox
Source: package/network/config/netifd
License: GPL-2.0
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61482
Filename: base/netifd_2015-03-20-2fb3d0e9205e2a4cea38062caefd7251f562866d_ramips_24kec.ipk
Size: 62197
MD5Sum: 67898f2c720ff22d5eacdcc7ab511e04
SHA256sum: 9bef48a0a7744cce432ee369e86de7146806113f404f8c6354448b1c5974cd76
Description: OpenWrt Network Interface Configuration Daemon
Package: nftables
Version: 0.4+2015-01-13-1
Depends: libc, kmod-nft-core, kmod-nft-nat, libnftnl
Source: package/network/utils/nftables
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100493
Filename: base/nftables_0.4+2015-01-13-1_ramips_24kec.ipk
Size: 101093
MD5Sum: 9077b886286fb77e5e93cc1efe9635de
SHA256sum: 34c66bc20775476c498eda3986dd572ff00aca33ad19253035bf1de4f6b8cc4b
Description: nftables packet filtering userspace utility
Package: objdump
Version: 2.24-3
Depends: libc, libopcodes
Source: package/devel/binutils
License: GPL-3.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 134842
Filename: base/objdump_2.24-3_ramips_24kec.ipk
Size: 135406
MD5Sum: 5e6166747110191452adf5fbd6663dca
SHA256sum: 145770760079606f35ea90e0a2a0c86488d7a16f0e020237ce6a7020bec7f7a7
Description: objdump
Package: odhcp6c
Version: 2014-12-10-722226c4f1d45c8bf4ac9189523738abcf7d648f
Depends: libc, kmod-ipv6
Source: package/network/ipv6/odhcp6c
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23133
Filename: base/odhcp6c_2014-12-10-722226c4f1d45c8bf4ac9189523738abcf7d648f_ramips_24kec.ipk
Size: 23865
MD5Sum: a8de8db04cf1f52272f13152f69af5e2
SHA256sum: 548aa7cb56b99646f187fa95fac7030888600958d397a09416a26184a6be4f8b
Description: Embedded DHCPv6-client for OpenWrt
Package: odhcpd
Version: 2015-03-06-721db56281dba79158470d7f69ccc7577f11fbb6
Depends: libc, libubox, libuci, libubus
Source: package/network/services/odhcpd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30587
Filename: base/odhcpd_2015-03-06-721db56281dba79158470d7f69ccc7577f11fbb6_ramips_24kec.ipk
Size: 31231
MD5Sum: e61dce76c0fb9f45572225d80b5f76dd
SHA256sum: db8b2209d49fe3e8efcc7125dfac5ce4693aafa887e24f1d5124c13af24fbad5
Description: odhcpd is a daemon for serving and relaying IP management protocols to
configure clients and downstream routers. It tries to follow the RFC 6204
requirements for IPv6 home routers.
odhcpd provides server services for DHCP, RA, stateless and stateful DHCPv6,
prefix delegation and can be used to relay RA, DHCPv6 and NDP between routed
(non-bridged) interfaces in case no delegated prefixes are available.
Package: om-watchdog
Version: 1-1
Depends: libc
Source: package/kernel/om-watchdog
Section: base
Architecture: ramips_24kec
Installed-Size: 633
Filename: base/om-watchdog_1-1_ramips_24kec.ipk
Size: 1339
MD5Sum: 642c45fa170a4dcb951dc58e7b867323
SHA256sum: 08cef19a52d94b508cf32fa5083e5726214daa529579cf261be814b3d29846eb
Description: This package contains the hw watchdog script for the OM1P and OM2P device.
Package: openssl-util
Version: 1.0.2a-0
Depends: libc, libopenssl
Source: package/libs/openssl
License: OpenSSL
LicenseFiles: LICENSE
Section: utils
Architecture: ramips_24kec
Installed-Size: 194194
Filename: base/openssl-util_1.0.2a-0_ramips_24kec.ipk
Size: 194259
MD5Sum: 78a72b71ba1b2727cdad5024ba50f0d7
SHA256sum: f3e32de6cc80b07a42fd571be01ef9a6ad7d26d7fb3a2051101740fd2d70ed04
Description: The OpenSSL Project is a collaborative effort to develop a robust,
commercial-grade, full-featured, and Open Source toolkit implementing the Secure
Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well
as a full-strength general purpose cryptography library.
This package contains the OpenSSL command-line utility.
Package: openvpn-easy-rsa
Version: 2013-01-30-2
Depends: libc, openssl-util
Source: package/network/services/openvpn-easy-rsa
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10079
Filename: base/openvpn-easy-rsa_2013-01-30-2_ramips_24kec.ipk
Size: 10896
MD5Sum: 1c73b6a691eaf072b11a3b1b32eae717
SHA256sum: ff028b5a1480bbffb984f09e974847aa5360c059b5c2fe277c5b23beb6ce967e
Description: Simple shell scripts to manage a Certificate Authority
Package: openvpn-nossl
Version: 2.3.6-3
Depends: libc, kmod-tun, liblzo
Source: package/network/services/openvpn
License: GPL-2.0
Section: net
Maintainer: Mirko Vogt <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80034
Filename: base/openvpn-nossl_2.3.6-3_ramips_24kec.ipk
Size: 80885
MD5Sum: f8ed733003fd0604f03acb8500f78e7f
SHA256sum: 6fbae3fa8efa0f89ba8cb4828545b0c80a8904bb3a63bdae0ac0bc3b31e438fb
Description: Open source VPN solution using plaintext (no SSL)
Package: openvpn-openssl
Version: 2.3.6-3
Depends: libc, kmod-tun, liblzo, libopenssl
Source: package/network/services/openvpn
License: GPL-2.0
Section: net
Maintainer: Mirko Vogt <[email protected]>
Architecture: ramips_24kec
Installed-Size: 156421
Filename: base/openvpn-openssl_2.3.6-3_ramips_24kec.ipk
Size: 156790
MD5Sum: abc3fbab1cc9175c4247765a048681d0
SHA256sum: 2ce96b6dd8565232bdee975163fc89712ec5d3e8cc47d61c3d9ad0c7c2c112af
Description: Open source VPN solution using OpenSSL
Package: openvpn-polarssl
Version: 2.3.6-3
Depends: libc, kmod-tun, liblzo, libpolarssl
Source: package/network/services/openvpn
License: GPL-2.0
Section: net
Maintainer: Mirko Vogt <[email protected]>
Architecture: ramips_24kec
Installed-Size: 152730
Filename: base/openvpn-polarssl_2.3.6-3_ramips_24kec.ipk
Size: 153085
MD5Sum: 77fd232f3f1bb68cb56b335f8d6f1b48
SHA256sum: 3695289d666261ad626ae109b84e6c6bcc202c046d9476fec79f87c17de28c51
Description: Open source VPN solution using PolarSSL
Package: opkg-smime
Version: 9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7
Depends: libc, libopenssl
Source: package/system/opkg
License: GPL-2.0
LicenseFiles: COPYING
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 64788
Filename: base/opkg-smime_9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7_ramips_24kec.ipk
Size: 65657
MD5Sum: 6a039a4dd852c1db77108235559d2a22
SHA256sum: fe1e284b7e8be1c7f13465fb70a64096385df10fc7a6a332c67f9665ed6831db
Description: Lightweight package management system
opkg is the opkg Package Management System, for handling
installation and removal of packages on a system. It can
recursively follow dependencies and download all packages
necessary to install a particular package.
opkg knows how to install both .ipk and .deb packages.
This package allows the Package index to be verified with S/MIME.
Package: opkg
Version: 9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7
Depends: libc
Source: package/system/opkg
License: GPL-2.0
LicenseFiles: COPYING
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56446
Filename: base/opkg_9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7_ramips_24kec.ipk
Size: 57399
MD5Sum: e233693d667f284bf83e62311a98cf07
SHA256sum: 98d62b3419c1c805e457768e35ce5d96690d76f9ab33de2c70bbbcdae5666e79
Description: Lightweight package management system
opkg is the opkg Package Management System, for handling
installation and removal of packages on a system. It can
recursively follow dependencies and download all packages
necessary to install a particular package.
opkg knows how to install both .ipk and .deb packages.
Package: owipcalc
Version: 3
Depends: libc
Source: package/network/utils/owipcalc
License: Apache-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5493
Filename: base/owipcalc_3_ramips_24kec.ipk
Size: 6345
MD5Sum: 8eb85c0b46efdae1bfbc784dc1d99543
SHA256sum: 6cf5c1fe932b108b3a914f936da6d9679245f7e580a21110e9c2188a438d19a7
Description: The owipcalc utility supports a number of calculations and tests to work
with ip-address ranges, this is useful for scripts that e.g. need to
partition ipv6-prefixes into small subnets or to calculate address ranges
for dhcp pools.
Package: partx-utils
Version: 2.25.2-4
Depends: libc, libblkid, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 33595
Filename: base/partx-utils_2.25.2-4_ramips_24kec.ipk
Size: 34423
MD5Sum: 33c937096116edb96e1e85cb34878a59
SHA256sum: e0fa8108661781826eb501867a35fb9f651a2b6a1989cac9d2e74d4bca28d2a9
Description: contains partx, addpart, delpart
Package: ppp-mod-pppoa
Version: 2.4.7-5
Depends: libc, linux-atm, kmod-pppoa
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7292
Filename: base/ppp-mod-pppoa_2.4.7-5_ramips_24kec.ipk
Size: 8100
MD5Sum: 293901a77aae3cb637a3f364069cdd8c
SHA256sum: 9dff9081f63b377cc3994e07428f6796901557abefac9e5798a79f23c929beaf
Description: This package contains a PPPoA (PPP over ATM) plugin for ppp.
Package: ppp-mod-pppoe
Version: 2.4.7-5
Depends: libc, kmod-pppoe
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9767
Filename: base/ppp-mod-pppoe_2.4.7-5_ramips_24kec.ipk
Size: 10528
MD5Sum: 2ec03ab54813bd9c590300753a08b25c
SHA256sum: 9c84a4e88895ad105e28f8ded57f60a2da26fa8527b700212ac7bf10435d9fba
Description: This package contains a PPPoE (PPP over Ethernet) plugin for ppp.
Package: ppp-mod-pppol2tp
Version: 2.4.7-5
Depends: libc, kmod-pppol2tp
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4582
Filename: base/ppp-mod-pppol2tp_2.4.7-5_ramips_24kec.ipk
Size: 5326
MD5Sum: b8b0745d928ac30cacf929081b3893c7
SHA256sum: 8296b5c4288ca059063b1665f75849f70fe02e1e533eac6b217df8bb4fe0199c
Description: This package contains a PPPoL2TP (PPP over L2TP) plugin for ppp.
Package: ppp-mod-pptp
Version: 2.4.7-5
Depends: libc, kmod-pptp, kmod-mppe, resolveip
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16089
Filename: base/ppp-mod-pptp_2.4.7-5_ramips_24kec.ipk
Size: 16774
MD5Sum: fb4782edcf305069ba3f6fa4ad72c372
SHA256sum: 9c83ec32e51033579b5d6d739ec771dfe030ade874d774d01030fa5f2830474b
Description: This package contains a PPtP plugin for ppp.
Package: ppp-mod-radius
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21942
Filename: base/ppp-mod-radius_2.4.7-5_ramips_24kec.ipk
Size: 22771
MD5Sum: d7049765d7c7070d11ad6189a70cd878
SHA256sum: 6c1c66f5aa54f9a1edb815502270f17de31428e59fb3b3608055ccbed2c45c24
Description: This package contains a RADIUS (Remote Authentication Dial-In User Service)
plugin for ppp.
Package: ppp-multilink
Version: 2.4.7-5
Depends: libc, kmod-ppp
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 119193
Filename: base/ppp-multilink_2.4.7-5_ramips_24kec.ipk
Size: 119725
MD5Sum: 7d2e8bc2de487979c6b19a8965b645a3
SHA256sum: e8488feace825dfd26f90e7f796d04ace38b26c7c07f84520f152327d3fe3de6
Description: PPP daemon (with multilink support)
Package: ppp
Version: 2.4.7-5
Depends: libc, kmod-ppp
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106766
Filename: base/ppp_2.4.7-5_ramips_24kec.ipk
Size: 107432
MD5Sum: a879860b6b1c0265f74979097e1a8b84
SHA256sum: fc0bfbe2bc923ff6ffaec01409f57ce9483f2e0a6b2c3932e250901627491ddd
Description: This package contains the PPP (Point-to-Point Protocol) daemon.
Package: pppdump
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22026
Filename: base/pppdump_2.4.7-5_ramips_24kec.ipk
Size: 22743
MD5Sum: 7764aecf7eeead50d3329be9d845c0a6
SHA256sum: 32befa14b40390809d8e2cdc58e2cf8a20b6f0115536cb58d40d3cf21253dc00
Description: This package contains an utility to read PPP record file.
Package: pppstats
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5001
Filename: base/pppstats_2.4.7-5_ramips_24kec.ipk
Size: 5727
MD5Sum: 3fa9006c8efe6f5d7c28e5452d73eec7
SHA256sum: 693979dcedcb85be61edc139f4e8c5f35bcf3e09b24a75ebf272c5da473c6723
Description: This package contains an utility to report PPP statistics.
Package: procd
Version: 2015-03-18-0cf744c720c9ed01c2dae25f338d4e96b9db95e3
Depends: libc, ubusd, ubus, libjson-script, ubox, libubox, libubus
Source: package/system/procd
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33770
Filename: base/procd_2015-03-18-0cf744c720c9ed01c2dae25f338d4e96b9db95e3_ramips_24kec.ipk
Size: 34493
MD5Sum: fbcbbd50d806a6209b9d9606bb6b776c
SHA256sum: 85b8a389acc05ae604d2d976430df67a0f0232481df00a84fcffc3ad70176597
Description: OpenWrt system process manager
Package: px5g-standalone
Version: 2
Depends: libc
Source: package/utils/px5g-standalone
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27187
Filename: base/px5g-standalone_2_ramips_24kec.ipk
Size: 28032
MD5Sum: b705ff18dbc86c39a2515e7b920c362a
SHA256sum: 0921fce85663735bbfbd1c329cfdc7e33162c4a7b140e35b78d22956c2ff067a
Description: Px5g is a tiny standalone X.509 certificate generator.
It suitable to create key files and certificates in DER
and PEM format for use with stunnel, uhttpd and others.
Package: px5g
Version: 3
Depends: libc, libpolarssl
Source: package/utils/px5g
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4075
Filename: base/px5g_3_ramips_24kec.ipk
Size: 4841
MD5Sum: b7bf01243390c1952fefe153204c4da0
SHA256sum: 79044006e2a1fda48937c3e864185756e3e2e716bb975b01fcbb0a0b6373a6ae
Description: Px5g is a tiny standalone X.509 certificate generator.
It suitable to create key files and certificates in DER
and PEM format for use with stunnel, uhttpd and others.
Package: qos-scripts
Version: 1.2.1-7
Depends: libc, tc, kmod-sched-core, kmod-sched-connmark, kmod-ifb, iptables, iptables-mod-filter, iptables-mod-ipopt, iptables-mod-conntrack-extra
Source: package/network/config/qos-scripts
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: all
Installed-Size: 6402
Filename: base/qos-scripts_1.2.1-7_all.ipk
Size: 7306
MD5Sum: 108d32ea06e4e492d6e668c8cf45faaa
SHA256sum: f12fac037a601bdc960d8dc03e35b5fd0c80208fe5d2fb999a596668953d3b93
Description: A set of scripts that abstract QoS configuration into a simple
configuration file supporting stanzas that specify any number of QoS
entries.
Package: r8169-firmware
Version: 2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1
Depends: libc
Source: package/firmware/linux-firmware
Section: firmware
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14594
Filename: base/r8169-firmware_2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1_ramips_24kec.ipk
Size: 15265
MD5Sum: dca5cda2e1860b9a0155042d60eeeda7
SHA256sum: 56219985793f952d8570db4eedaa9e3ceaf3a7fcb03c24707bdb045f0e8c433f
Description: RealTek r8169 firmware
Package: r8188eu-firmware
Version: 2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1
Depends: libc
Source: package/firmware/linux-firmware
Section: firmware
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8306
Filename: base/r8188eu-firmware_2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1_ramips_24kec.ipk
Size: 9080
MD5Sum: f0c218958763ae4598e95a8ef7ee2496
SHA256sum: 24a6081d8cf9af17ed7990b72d097488b0dbdb8c01f082f69745520ee380fac3
Description: RealTek r8188eu firmware
Package: relayd
Version: 2015-03-13-2970ff60bac6b70ecb682779d5c776dc559dc0b9
Depends: libc, libubox
Source: package/network/services/relayd
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10020
Filename: base/relayd_2015-03-13-2970ff60bac6b70ecb682779d5c776dc559dc0b9_ramips_24kec.ipk
Size: 10805
MD5Sum: b5508d9e3dd447c359b4d070dcad5397
SHA256sum: 6c18b232ea7f6e13c61688f9633c910c423879e90ba2a0871f4cae830aa3f40b
Description: Transparent routing / relay daemon
Package: rename
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 3277
Filename: base/rename_2.25.2-4_ramips_24kec.ipk
Size: 4100
MD5Sum: 0bf3167a51dfcbdbd68edf9f53326397
SHA256sum: 3de92519e6464873df066c4d3170f4892e68d3fbb1accf837b65bd3efdb41e10
Description: rename will rename the specified files by replacing the first occurrence of
expression in their name by replacement
Package: resize2fs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 19007
Filename: base/resize2fs_1.42.4-2_ramips_24kec.ipk
Size: 19654
MD5Sum: e135914fc6bd0efccad64d67c6f6d459
SHA256sum: 0dcd204bed9d1701fe79332765a9125c7d6abe1e96ffeea4feff2e0a58a821b3
Description: Ext2 Filesystem resize utility
Package: resolveip
Version: 2
Depends: libc
Source: package/network/utils/resolveip
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1959
Filename: base/resolveip_2_ramips_24kec.ipk
Size: 2831
MD5Sum: 59af5e9c366078c6b100b46f1444145d
SHA256sum: ab822c5da1f905248109381c3745c464ea7c2467d2cf9ae4c9ec937a22d0b671
Description: This package contains the small resolveip utility which
can be used by scripts to turn host names into numeric
IP addresses. It supports IPv4 and IPv6 resolving and
has a configurable timeout to guarantee a certain maximum
runtime in case of slow or defunct DNS servers.
Package: robocfg
Version: 0.01-1
Depends: libc
Source: package/utils/robocfg
Section: utils
Architecture: ramips_24kec
Installed-Size: 5458
Filename: base/robocfg_0.01-1_ramips_24kec.ipk
Size: 6144
MD5Sum: da8c90573566954c7a8e23df5cb06b79
SHA256sum: 0ebcb049cbee15ae1f0daa74a85ebe8e5b401f8adb11d5beecb749821a7f6a46
Description: This package contains an utility for configuring the Broadcom BCM5325E/536x
based switches.
Package: rpcd-mod-file
Version: 2015-03-11-361b823e8d670bc122349041294983468ef36845
Depends: libc, libubus, libubox, rpcd
Source: package/system/rpcd
License: ISC
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5221
Filename: base/rpcd-mod-file_2015-03-11-361b823e8d670bc122349041294983468ef36845_ramips_24kec.ipk
Size: 5987
MD5Sum: ec1053e96e06f8e1063d5e7166f031f3
SHA256sum: f8378a1e0afc4620dfac79cfc12ef7ec3f11da1115b56502b5cfcc73891ebda8
Description: Provides ubus calls for file and directory operations.
Package: rpcd-mod-iwinfo
Version: 2015-03-11-361b823e8d670bc122349041294983468ef36845
Depends: libc, libubus, libubox, rpcd, libiwinfo
Source: package/system/rpcd
License: ISC
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5672
Filename: base/rpcd-mod-iwinfo_2015-03-11-361b823e8d670bc122349041294983468ef36845_ramips_24kec.ipk
Size: 6470
MD5Sum: 3fd2592d522a69a2b5f26f21d61cbe6e
SHA256sum: 6cfe8ae62b5da4cdb6e610d40cd9e7110593e8d22b17f194034ecccd363d0efb
Description: Provides ubus calls for accessing iwinfo data.
Package: rpcd
Version: 2015-03-11-361b823e8d670bc122349041294983468ef36845
Depends: libc, libubus, libubox, libuci, libblobmsg-json
Source: package/system/rpcd
License: ISC
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18559
Filename: base/rpcd_2015-03-11-361b823e8d670bc122349041294983468ef36845_ramips_24kec.ipk
Size: 19366
MD5Sum: f06c1ae4ff199a83eb8fcd16bb155693
SHA256sum: cee3010c1314ad1c6393c32b8d5c7dfa4436951f16ebfe9483ecec7895cb9e4e
Description: This package provides the UBUS RPC backend server to expose various
functionality to frontend programs via JSON-RPC.
Package: rssileds
Version: 0.2-1
Depends: libc, libiwinfo
Source: package/network/utils/rssileds
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3646
Filename: base/rssileds_0.2-1_ramips_24kec.ipk
Size: 4375
MD5Sum: f5215c24ee01885dd77de677ef63216f
SHA256sum: 3c453d0c5b5297ba05856e00b9c7ecc94af487434198897d34c894a7657323c0
Description: A small process written in C to update the signal-strength indicator LEDs
Package: samba36-client
Version: 3.6.25-1
Depends: libc, libreadline, libncurses
Source: package/network/services/samba36
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 428784
Filename: base/samba36-client_3.6.25-1_ramips_24kec.ipk
Size: 428129
MD5Sum: 5c49b6340d6964ece68c625ec035b416
SHA256sum: 9533abfe63c8f7a1f34edf16bd7bf316acb00d11e1bd7c1a9c092419806c7b58
Description: Samba 3.6 SMB/CIFS client
Package: samba36-server
Version: 3.6.25-1
Depends: libc
Source: package/network/services/samba36
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 901082
Filename: base/samba36-server_3.6.25-1_ramips_24kec.ipk
Size: 881390
MD5Sum: 36ae7b09c8e89fc116551257648a988b
SHA256sum: 5bcf860a127b7d25fe7628fe0a389b8cfc2703573b4af814ed1d7b116cc1de8e
Description: The Samba software suite is a collection of programs that implements the
SMB protocol for UNIX systems, allowing you to serve files and printers to
Windows, NT, OS/2 and DOS clients. This protocol is sometimes also referred
to as the LanManager or Netbios protocol.
Package: script-utils
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 9448
Filename: base/script-utils_2.25.2-4_ramips_24kec.ipk
Size: 10217
MD5Sum: 85dc5f178fbe029744f94c4cfe4e5114
SHA256sum: f907b9b6233977a5d40a58105c77d07cb0feb686b53810ebdfa8c963a3767e73
Description: contains: script, scriptreplay
Package: setterm
Version: 2.25.2-4
Depends: libc, libncurses
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 11507
Filename: base/setterm_2.25.2-4_ramips_24kec.ipk
Size: 12335
MD5Sum: aa71ef932667957b72e9a5a142351909
SHA256sum: b4560d3fed0447ecbdeeeb1c6fe60f91cfe8d98c5d607e50a8abfcacac816a2c
Description: setterm writes to standard output a character string that will invoke the
specified terminal capabilities
Package: sfdisk
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 35612
Filename: base/sfdisk_2.25.2-4_ramips_24kec.ipk
Size: 36441
MD5Sum: ce1a235abc4fa7d82557e154e432f358
SHA256sum: 9c93b5a4df5ad08a561cb246b70a3cf46accc9d82b8ae47d4dbd3bb66a70f0ad
Description: list the size of a partition, list the partitions on a device, check the
partitions on a device and repartition a device
Package: sockd
Version: 1.2.2-1
Depends: libc
Source: package/network/utils/dante
License: BSD-4-Clause
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105383
Filename: base/sockd_1.2.2-1_ramips_24kec.ipk
Size: 106189
MD5Sum: f0d7ce1d368e64c0fdd598f27ae96022
SHA256sum: f660f09a92709976fc00157a5def90b0b0a407904d0216391eee4d7c83a47371
Description: Dante is a circuit-level firewall/proxy that can be used to provide convenient
and secure network connectivity, requiring only that the server Dante runs on
has external network connectivity. Dante is used daily by Fortune 100 companies
and large international organizations, either as a standard SOCKS server or as
a "reverse proxy".
This package provides the Dante sockd daemon.
Package: socksify
Version: 1.2.2-1
Depends: libc
Source: package/network/utils/dante
License: BSD-4-Clause
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90026
Filename: base/socksify_1.2.2-1_ramips_24kec.ipk
Size: 90989
MD5Sum: 9328cc21be0fa5b0bb385942589b4942
SHA256sum: 5df198da40f1641669238265c9218edc298a18e213771954cce0fa222d4330a3
Description: Dante is a circuit-level firewall/proxy that can be used to provide convenient
and secure network connectivity, requiring only that the server Dante runs on
has external network connectivity. Dante is used daily by Fortune 100 companies
and large international organizations, either as a standard SOCKS server or as
a "reverse proxy".
This package provides the Dante socksify client.
Package: spidev-test
Version: 3.18.9-3.18.9
Depends: libc, kmod-spi-dev
Source: package/utils/spidev_test
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2898
Filename: base/spidev-test_3.18.9-3.18.9_ramips_24kec.ipk
Size: 3638
MD5Sum: ac0ee901473dd125aa07b71d63304929
SHA256sum: cb9b340f9fa69d70b81853469f2a679492220ff5b1284629a2cbda56bdc8a586
Description: SPI testing utility.
Package: ss
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29249
Filename: base/ss_3.19.0-1_ramips_24kec.ipk
Size: 29931
MD5Sum: eb904f655944ac05a15a3b9ac82f1df9
SHA256sum: f0d47e50029837274c5d14b088d80894a90b2d089357ad413c86f24462996450
Description: Socket statistics utility
Package: strace
Version: 4.8-1
Depends: libc
Source: package/devel/strace
License: BSD-3c
LicenseFiles: COPYRIGHT
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105090
Filename: base/strace_4.8-1_ramips_24kec.ipk
Size: 100687
MD5Sum: 17cf070ae374c64e04349c839408776b
SHA256sum: 76c04173785231ae7b56abcbdb0832dc0d3600a96b11c94b3758e5f73e03f8c2
Description: A useful diagnostic, instructional, and debugging tool. Allows you to track what
system calls a program makes while it is running.
Package: swap-utils
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 26593
Filename: base/swap-utils_2.25.2-4_ramips_24kec.ipk
Size: 27278
MD5Sum: 1da1067ae5e1e97b86882337a5514549
SHA256sum: 861d0efd5fd923b05054a2f6a524d05fa31a4a6b6dcc40fc3142190385395478
Description: contains: mkswap, swaplabel
Package: swconfig
Version: 10
Depends: libc, libuci, libnl-tiny
Source: package/network/config/swconfig
License: GPL-2.0
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7955
Filename: base/swconfig_10_ramips_24kec.ipk
Size: 8726
MD5Sum: 262542d75272b045a3e7ba7c945f121a
SHA256sum: 9c8814bdd4863900f6aa2c3723216d3f3e6c21eba076de34ba0259050c9178c6
Description: Switch configuration utility
Package: sysfsutils
Version: 2.1.0-2
Depends: libc, libsysfs
Source: package/libs/sysfsutils
License: LGPL-2.1
LicenseFiles: COPYING cmd/GPL lib/LGPL
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7091
Filename: base/sysfsutils_2.1.0-2_ramips_24kec.ipk
Size: 7900
MD5Sum: caf19638b692b9f0ce39b9c985176adf
SHA256sum: 2c601a26cc2e9a3945d4a133da291c67d36ce53a955f21e10778f91cc21456c9
Description: A utility built upon libsysfs that lists devices by bus, class, and topology.
Package: tc
Version: 3.19.0-1
Depends: libc, kmod-sched-core
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 95507
Filename: base/tc_3.19.0-1_ramips_24kec.ipk
Size: 96187
MD5Sum: 8e05b1efd232dde4f39ad9ac2e825ca4
SHA256sum: a7e63f249056897b7570cdbcaccb9904f66e19ff7aed25de2c779f43e23994ba
Description: Traffic control utility
Package: tcpdump-mini
Version: 4.5.1-4
Depends: libc, libpcap
Source: package/network/utils/tcpdump
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153696
Filename: base/tcpdump-mini_4.5.1-4_ramips_24kec.ipk
Size: 154350
MD5Sum: 4b172d0c9644d7edf85ec5a783f57602
SHA256sum: 7ee9a80c3b5eadcb7e68a2154e6b9c9881d693a85cc3069295004be1e718a155
Description: Network monitoring and data acquisition tool (minimal version)
Package: tcpdump
Version: 4.5.1-4
Depends: libc, libpcap
Source: package/network/utils/tcpdump
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 293767
Filename: base/tcpdump_4.5.1-4_ramips_24kec.ipk
Size: 293879
MD5Sum: 281b195a506ce7d0e8ff96fed0284f04
SHA256sum: 41bb129acbdc47a3452969c1a63b4d7d4e97abaf1f97390eb2bbc90c1e7aa529
Description: Network monitoring and data acquisition tool
Package: terminfo
Version: 5.9-1
Depends: libc
Source: package/libs/ncurses
License: MIT
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 5794
Filename: base/terminfo_5.9-1_ramips_24kec.ipk
Size: 6455
MD5Sum: 645bbf760a1921f8653f778b04928db9
SHA256sum: c58d307cf564f78c443253b48eee87195b37bc062bb975279b944df42433b97b
Description: Terminal Info Database (ncurses)
Package: thc-ipv6-address6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24055
Filename: base/thc-ipv6-address6_2.7-1_ramips_24kec.ipk
Size: 24727
MD5Sum: 53b3022bc4189f73940cdc4490d1ce35
SHA256sum: df2b6a80488a4176e52dc7f0bc9339509bd5c427814635d201b9cbaff8c63b96
Description: This package contains the address6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-alive6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39222
Filename: base/thc-ipv6-alive6_2.7-1_ramips_24kec.ipk
Size: 39956
MD5Sum: e6a00c1e934ab0cdb36f11c272f46bb8
SHA256sum: 37fb28ec0293a9cc3468f60f225ee0252e8055e7e3fdd3d2486c14502262b46e
Description: This package contains the alive6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-covert-send6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22675
Filename: base/thc-ipv6-covert-send6_2.7-1_ramips_24kec.ipk
Size: 23383
MD5Sum: b4401d544f142770d536c1f83cec4796
SHA256sum: 141fad8d0d3865331155b900cfcd8ac01d31b123dd3658c5aafa11caf343c6ac
Description: This package contains the covert_send6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-covert-send6d
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22680
Filename: base/thc-ipv6-covert-send6d_2.7-1_ramips_24kec.ipk
Size: 23407
MD5Sum: 2230b8b38375236c55db919dbe5ac812
SHA256sum: 34357a2ae68a2da2930042d5cbe6b624cf1e907ced38ae10ea2be64eca3b6323
Description: This package contains the covert_send6d utility of the THC-IPv6 toolkit.
Package: thc-ipv6-denial6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25257
Filename: base/thc-ipv6-denial6_2.7-1_ramips_24kec.ipk
Size: 25932
MD5Sum: 3ccb7668fd8c6dc9be56d1d86e9528b3
SHA256sum: 413375774f9657ae8a80f030fcc6618017b2be76df6572971ade4638c6d36252
Description: This package contains the denial6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-detect-new-ip6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23536
Filename: base/thc-ipv6-detect-new-ip6_2.7-1_ramips_24kec.ipk
Size: 24297
MD5Sum: 1b16c7c3ae9a799ccbc5ae67ab4e011f
SHA256sum: a3080b2f129b1b857cd018a1ae6236ade6b8eeae7c7394b9789f0b0b5d550466
Description: This package contains the detect-new-ip6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-detect-sniffer6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24257
Filename: base/thc-ipv6-detect-sniffer6_2.7-1_ramips_24kec.ipk
Size: 24966
MD5Sum: 4f7a1ceb6d86fb761af46d13ff498511
SHA256sum: 8f9eeddfb83afc5c7d48642f443f7d701798735909405275f7bf6cb0c37d0b05
Description: This package contains the detect_sniffer6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dnsdict6
Version: 2.7-1
Depends: libc, libpcap, libpthread
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 101249
Filename: base/thc-ipv6-dnsdict6_2.7-1_ramips_24kec.ipk
Size: 87048
MD5Sum: 643adc1cab31aa564b5617e7a57ec49e
SHA256sum: 2e036001ccdff0d8e71ea534f115ec275196fa0ec5789daa4e911b99eabff183
Description: This package contains the dnsdict6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dnsrevenum6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26229
Filename: base/thc-ipv6-dnsrevenum6_2.7-1_ramips_24kec.ipk
Size: 26938
MD5Sum: 385843c9f0ea38988a96c3604447f9ea
SHA256sum: 8d01120472fd7df56e99128cc14bd1a54181847b4fed6ad2254c19f87a244f7c
Description: This package contains the dnsrevenum6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dos-new-ip6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24206
Filename: base/thc-ipv6-dos-new-ip6_2.7-1_ramips_24kec.ipk
Size: 24872
MD5Sum: d1562e0c39d6aacdd2b76e726cd2022c
SHA256sum: 615aaf0b512f43fc48b326689f9207d5f3d6ef8afc8594750428dc965f9ff71a
Description: This package contains the dos-new-ip6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dump-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24875
Filename: base/thc-ipv6-dump-router6_2.7-1_ramips_24kec.ipk
Size: 25587
MD5Sum: 1cac6acc771ed4bac2ee716e8b2445b6
SHA256sum: 6c23958f6323e5b2e79d3a987bad5c3e0288d46b298216d0e9c02370b27a7f24
Description: This package contains the dump_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-exploit6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25200
Filename: base/thc-ipv6-exploit6_2.7-1_ramips_24kec.ipk
Size: 25869
MD5Sum: 5dca0f8dacd832cc1745460cd0e568b3
SHA256sum: 1e86ef4fbf6c5ca1eda1113b4a08fd234fbcb8db4e974603f366dcb357c243ac
Description: This package contains the exploit6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-advertise6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24703
Filename: base/thc-ipv6-fake-advertise6_2.7-1_ramips_24kec.ipk
Size: 25372
MD5Sum: 23c87e68c0c02d887057d5fdddd6c18b
SHA256sum: 44851e908c9432c9da0d5db0eb001d118db4a32559b198c16b8f870822c87e2f
Description: This package contains the fake_advertise6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-dhcps6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25332
Filename: base/thc-ipv6-fake-dhcps6_2.7-1_ramips_24kec.ipk
Size: 26023
MD5Sum: d39ef92e94ee4b05633741da65fda8e7
SHA256sum: d01d36597a34746f94c34da6076b25c64b73e7c784d00da7f2e9b629a6130732
Description: This package contains the fake_dhcps6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-dns6d
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24199
Filename: base/thc-ipv6-fake-dns6d_2.7-1_ramips_24kec.ipk
Size: 24855
MD5Sum: 440d5bf3e19a856b08379457a04c82fb
SHA256sum: 7ddc8ef6a3363db8baecac7c08c3314a09e765a9431ac718f96538ffead35bc6
Description: This package contains the fake_dns6d utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-dnsupdate6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23957
Filename: base/thc-ipv6-fake-dnsupdate6_2.7-1_ramips_24kec.ipk
Size: 24663
MD5Sum: d14b5b114ef2fc2b6b07b56b73af842c
SHA256sum: 270634d87edeb784f1f22f6092c73221eb2543f08542dd05fa781ad21fcb2793
Description: This package contains the fake_dnsupdate6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mipv6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23426
Filename: base/thc-ipv6-fake-mipv6_2.7-1_ramips_24kec.ipk
Size: 24153
MD5Sum: e68642958802d22cfac58df2fcdb6097
SHA256sum: 0ff24ef567f58f7bca71d0a53d150d00304c6d521bb4b7eb8adf83ca8fac9e2c
Description: This package contains the fake_mipv6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mld26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24930
Filename: base/thc-ipv6-fake-mld26_2.7-1_ramips_24kec.ipk
Size: 25587
MD5Sum: c1d74a76100365b643cb80a23084dcac
SHA256sum: 67a8778e126c699a7b99f475a9f529b1bd84f54c3c64c4eacece8d472b484f84
Description: This package contains the fake_mld26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mld6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24446
Filename: base/thc-ipv6-fake-mld6_2.7-1_ramips_24kec.ipk
Size: 25138
MD5Sum: c5c6a7d1eeb414c41d5a47930e1931f0
SHA256sum: 1ece28ec6987bdac83cda0b87fce349f08debd0f6299e8db0f88fa318489fc6c
Description: This package contains the fake_mld6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mldrouter6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23948
Filename: base/thc-ipv6-fake-mldrouter6_2.7-1_ramips_24kec.ipk
Size: 24631
MD5Sum: 7d154aedb43996f996fea1fdb308dc0e
SHA256sum: a872e6d580bab0ec29839ad0dc2a58a8aebdce1f3a940ca51637fd5765fa39f7
Description: This package contains the fake_mldrouter6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-router26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28344
Filename: base/thc-ipv6-fake-router26_2.7-1_ramips_24kec.ipk
Size: 29093
MD5Sum: 858aeff3aac74069a2946cf8639f2f4f
SHA256sum: 7a57f36f9940f7cc453dcf68b18193c9d0c002e001cd20e17947ef1ad7d10f55
Description: This package contains the fake_router26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25195
Filename: base/thc-ipv6-fake-router6_2.7-1_ramips_24kec.ipk
Size: 25917
MD5Sum: 3a1c439ee34b6c1356461ebb355287e6
SHA256sum: df3611679065eaa610a883d256772ffc59d19457f8739909ffcdfb0fbf4a69d0
Description: This package contains the fake_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-solicitate6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24027
Filename: base/thc-ipv6-fake-solicitate6_2.7-1_ramips_24kec.ipk
Size: 24696
MD5Sum: 17eb1cce73874e640bb4298caa0983d9
SHA256sum: b0573170a2976220ff26792df768500ef6196ccd0302af7ba69e04172811791e
Description: This package contains the fake_solicitate6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-advertise6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23720
Filename: base/thc-ipv6-flood-advertise6_2.7-1_ramips_24kec.ipk
Size: 24477
MD5Sum: a7f2f51436c9ecc722e5225f7e4a6f73
SHA256sum: fad2df163cfaa38ebf06303a5b201d5c931fbcf0b5d5c2b1cf22732b6393091a
Description: This package contains the flood_advertise6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-dhcpc6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25216
Filename: base/thc-ipv6-flood-dhcpc6_2.7-1_ramips_24kec.ipk
Size: 25872
MD5Sum: 21f7c63afd5d604d63eb65db5da82862
SHA256sum: 4f4c5faf70f9765d812bc4dd3c806fb599e4f2e719f55f9ac95d2ff7d1da4d14
Description: This package contains the flood_dhcpc6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-mld26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23733
Filename: base/thc-ipv6-flood-mld26_2.7-1_ramips_24kec.ipk
Size: 24466
MD5Sum: a69408c85a31986b66f30dfa126ba922
SHA256sum: dc54a8592a90547fb29d8ca4782fd9b058b1d93df21dd95862c188eddb28d68c
Description: This package contains the flood_mld26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-mld6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23532
Filename: base/thc-ipv6-flood-mld6_2.7-1_ramips_24kec.ipk
Size: 24302
MD5Sum: 7fdd25507fb3396aec208fe7aaead067
SHA256sum: 801e45be62a87b6232ed656ffb9e29fac4a7ca86668bcf360921e461d002d4ea
Description: This package contains the flood_mld6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-mldrouter6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23448
Filename: base/thc-ipv6-flood-mldrouter6_2.7-1_ramips_24kec.ipk
Size: 24175
MD5Sum: 886f11f39e9b03964ff0626909aa6f46
SHA256sum: ca944005b2e115fbc3176da17781c5010893d47b279077dcb1387371c5925e20
Description: This package contains the flood_mldrouter6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-router26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25324
Filename: base/thc-ipv6-flood-router26_2.7-1_ramips_24kec.ipk
Size: 26000
MD5Sum: 3e2ffb25221cd4099dc2f0c3c0936a04
SHA256sum: 428ac87279aa02e279faafa256e40c5958677c3e102673a96c0dd7f6bfc441fa
Description: This package contains the flood_router26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24176
Filename: base/thc-ipv6-flood-router6_2.7-1_ramips_24kec.ipk
Size: 24837
MD5Sum: 773b677a817b4a5d0d9e35030a761790
SHA256sum: 6ec7a24145366e60ed4d769762145f30a98b7fdd6e93c30e5afcc56f1344e21d
Description: This package contains the flood_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-solicitate6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24050
Filename: base/thc-ipv6-flood-solicitate6_2.7-1_ramips_24kec.ipk
Size: 24775
MD5Sum: 3f92e0fdf75b046d73b14c10f5377023
SHA256sum: 4e856c1964d221ab66220687abb7c519db32a48def997d85f09291492da5a0da
Description: This package contains the flood_solicitate6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fragmentation6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34512
Filename: base/thc-ipv6-fragmentation6_2.7-1_ramips_24kec.ipk
Size: 35323
MD5Sum: 1e6ff1558f2fcd10288078eb92cff48b
SHA256sum: e4f36e303ef7e1f8f88946046fdb26689fba8c9ee094e385f45821e06ac6d7e2
Description: This package contains the fragmentation6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fuzz-dhcpc6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29908
Filename: base/thc-ipv6-fuzz-dhcpc6_2.7-1_ramips_24kec.ipk
Size: 30629
MD5Sum: 633ed7fa2f8f41739d579d87a3d21a84
SHA256sum: 987d909820f7a64e43e2a93ebf50c7a80e9c01b5e6d386d5e197fca024173569
Description: This package contains the fuzz_dhcpc6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fuzz-dhcps6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29433
Filename: base/thc-ipv6-fuzz-dhcps6_2.7-1_ramips_24kec.ipk
Size: 30119
MD5Sum: 272672aa90791e370e0a0e6701db449a
SHA256sum: a764fa9028db54f35442a863240f509a8989a5231d7de73309109ad2a749bd6d
Description: This package contains the fuzz_dhcps6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fuzz-ip6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30211
Filename: base/thc-ipv6-fuzz-ip6_2.7-1_ramips_24kec.ipk
Size: 30931
MD5Sum: 528660850e1e3af21cd4ca620a72cbeb
SHA256sum: 7ec9ef74cabf039aa111c16c7854d16de28b402e81574d8a8d48a117f5bfe956
Description: This package contains the fuzz_ip6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-implementation6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36879
Filename: base/thc-ipv6-implementation6_2.7-1_ramips_24kec.ipk
Size: 37689
MD5Sum: 974b9123536ef5d2a3f66667ea440c51
SHA256sum: a7f12b9db3b435c28c76ede2b8fed6ec04dc9c72c42bae1e2b8670c9f95e2397
Description: This package contains the implementation6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-implementation6d
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23640
Filename: base/thc-ipv6-implementation6d_2.7-1_ramips_24kec.ipk
Size: 24389
MD5Sum: b74f1335fddb00b289aba3472a238caf
SHA256sum: 8a3bde6c2da40c34c3ce62af3b4e6708890f4c6094f91e716a7715ebbb31cac0
Description: This package contains the implementation6d utility of the THC-IPv6 toolkit.
Package: thc-ipv6-inverse-lookup6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23718
Filename: base/thc-ipv6-inverse-lookup6_2.7-1_ramips_24kec.ipk
Size: 24468
MD5Sum: 1b544e1b155d38ee81d22605aba389df
SHA256sum: 429452babfcef834fe94734944186d4baddbcb7cc49f258f235440bdfc4b92db
Description: This package contains the inverse_lookup6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-kill-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24654
Filename: base/thc-ipv6-kill-router6_2.7-1_ramips_24kec.ipk
Size: 25313
MD5Sum: 476c403ab829fe93c916365cb0b42370
SHA256sum: e0cb3d92292589519f104b02c583f35fc8d9ba6cc0b0468d7ca24f7e36487b66
Description: This package contains the kill_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-ndpexhaust6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23616
Filename: base/thc-ipv6-ndpexhaust6_2.7-1_ramips_24kec.ipk
Size: 24384
MD5Sum: 8534bae9875fb86c98896988c67e6e77
SHA256sum: 2db6c328ddc83695f8bb45a31c635efc3493305a29c6684fdc1d441e25f21e59
Description: This package contains the ndpexhaust6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-node-query6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23957
Filename: base/thc-ipv6-node-query6_2.7-1_ramips_24kec.ipk
Size: 24631
MD5Sum: 2aceacef8e9ac8265dfc0414da918dd4
SHA256sum: 26d50cad62a973173090a342395f1dbe1f62f043b61206d41fce76253456485d
Description: This package contains the node_query6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-parasite6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26406
Filename: base/thc-ipv6-parasite6_2.7-1_ramips_24kec.ipk
Size: 27110
MD5Sum: 24581821e7a802f45b606c78fd50ec58
SHA256sum: d131ed2b27abc6b823d956f63ed57fd66706b19037f48b1a15e3a552873def38
Description: This package contains the parasite6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-passive-discovery6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24605
Filename: base/thc-ipv6-passive-discovery6_2.7-1_ramips_24kec.ipk
Size: 25318
MD5Sum: fa0d0207fe812ce7fd74c69e3c6b5ad7
SHA256sum: dc96c77cf5347b83415829f903a2cb238497876915de8a4902b29247f986964e
Description: This package contains the passive_discovery6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-randicmp6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23652
Filename: base/thc-ipv6-randicmp6_2.7-1_ramips_24kec.ipk
Size: 24369
MD5Sum: 9d227e32d3f4da1d3ff3ff2bbde7b58c
SHA256sum: f85e4379bf023f31779fe6096012a1847f37991dc455ced7751fecc61b4be0f3
Description: This package contains the randicmp6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-redir6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23573
Filename: base/thc-ipv6-redir6_2.7-1_ramips_24kec.ipk
Size: 24343
MD5Sum: e805b1db65df0d21011996350b275385
SHA256sum: 33ad37ad3542e171c1747bb3a67aa033dd5c3ef77d0d4242be930a96132212a7
Description: This package contains the redir6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-rsmurf6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23223
Filename: base/thc-ipv6-rsmurf6_2.7-1_ramips_24kec.ipk
Size: 23982
MD5Sum: 1cd6dc5c36c2af908f1e195aabe306d8
SHA256sum: bd5fbb982328f0da090c9d1d6c6878bb2fd7ef736ffb2359d8eadab6987283c1
Description: This package contains the rsmurf6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-sendpees6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22671
Filename: base/thc-ipv6-sendpees6_2.7-1_ramips_24kec.ipk
Size: 23387
MD5Sum: 8c5d2d96f925638c1f996901512ae1f6
SHA256sum: 39b75d8019d21deb959e48f8004d719659d1676b3294d50f8c9a9f8cdf8119d9
Description: This package contains the sendpees6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-sendpeesmp6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22675
Filename: base/thc-ipv6-sendpeesmp6_2.7-1_ramips_24kec.ipk
Size: 23367
MD5Sum: 485a4522439761a96340312e9fd5c96c
SHA256sum: ac40af3b495ca856e90888304185a8f6a7ccec931eb36c127ea40aebc8d2a5dc
Description: This package contains the sendpeesmp6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-smurf6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23221
Filename: base/thc-ipv6-smurf6_2.7-1_ramips_24kec.ipk
Size: 23946
MD5Sum: 210f5c8d4467c2d2af8ae6e37b5a5bed
SHA256sum: 2825b577b390c4e2b2bc991de2b36e7d0aae907014c6fee3c59b39e6b1e8dd8c
Description: This package contains the smurf6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-thcping6
Version: 2.7-1
Depends: libc, libpcap, librt
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28130
Filename: base/thc-ipv6-thcping6_2.7-1_ramips_24kec.ipk
Size: 28884
MD5Sum: 6d39ee6ad9edc1100355db120f87db27
SHA256sum: 0c3955a1b7b2ba864fac0d2139de9fbfb2e3ece29467db944c2bd06c25221dfb
Description: This package contains the thcping6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-toobig6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23445
Filename: base/thc-ipv6-toobig6_2.7-1_ramips_24kec.ipk
Size: 24167
MD5Sum: b19bdbaa552261447be63d267839f008
SHA256sum: c8480b0d16cecfb86003e49e3e284e8760bdf6b220cb70c5006e86a56248186d
Description: This package contains the toobig6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-trace6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28245
Filename: base/thc-ipv6-trace6_2.7-1_ramips_24kec.ipk
Size: 29031
MD5Sum: 382e85ade571992bba6d3390f11da905
SHA256sum: 3d80ba04ff7e3c13c34a94de2c0760d263982c97da5f2b99033ec4cb3abd3528
Description: This package contains the trace6 utility of the THC-IPv6 toolkit.
Package: trace-cmd-extra
Version: v2.4-1
Depends: libc
Source: package/devel/trace-cmd
License: GPL-2.0
Section: devel
Architecture: ramips_24kec
Installed-Size: 9845
Filename: base/trace-cmd-extra_v2.4-1_ramips_24kec.ipk
Size: 10484
MD5Sum: 371ad7d3de15658fba2ff22970491293
SHA256sum: 2debea42ddb48121cfb43da28a6617772fb961f6fb13c27f4db6a95be1edad3d
Description: Extra plugins for trace-cmd
Package: trace-cmd
Version: v2.4-1
Depends: libc
Source: package/devel/trace-cmd
License: GPL-2.0
Section: devel
Architecture: ramips_24kec
Installed-Size: 100922
Filename: base/trace-cmd_v2.4-1_ramips_24kec.ipk
Size: 101640
MD5Sum: 1214197b2c962336b789ea2e29c053f9
SHA256sum: 651471cf12a63deb3db96c62bb128fdb0e2344c69ae19a222aa7df8b7d5cf561
Description: Linux trace command line utility
Package: tune2fs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 40189
Filename: base/tune2fs_1.42.4-2_ramips_24kec.ipk
Size: 40876
MD5Sum: cdec09f212ae9aaf2ce02b864e13cac8
SHA256sum: 666caa3fdd580c1a8eff8c8f7c5b5cb3f313b3e5fcbcb79d8eb322f04431e4aa
Description: Ext2 Filesystem tune utility
Package: uboot-envtools
Version: 2014.10-2
Depends: libc
Source: package/boot/uboot-envtools
License: GPL-2.0 GPL-2.0+
LicenseFiles: Licenses/README
Section: utils
Architecture: ramips_24kec
Installed-Size: 15530
Filename: base/uboot-envtools_2014.10-2_ramips_24kec.ipk
Size: 16240
MD5Sum: 3fd5502b577eff0755417ae7bba65d5a
SHA256sum: 514aceb997d97bfa1f2c4159f4e2c2f55d2222ca1096d9be8a38238c3bfc7be1
Description: This package includes tools to read and modify U-Boot bootloader environment.
Package: ubox
Version: 2015-02-26.1-96aa9306d5cc7ebb804ee27f1a920dbd7ef83c17
Depends: libc, libubox, ubusd, ubus, libubus, libuci
Source: package/system/ubox
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23510
Filename: base/ubox_2015-02-26.1-96aa9306d5cc7ebb804ee27f1a920dbd7ef83c17_ramips_24kec.ipk
Size: 24047
MD5Sum: 183051c47a648fa12e13dbef204179f0
SHA256sum: 4a33564e9632a66849dffcaa7080f77a445592a443650a21a4bf201e92d060dd
Description: OpenWrt system helper toolbox
Package: ubus
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubus, libblobmsg-json, ubusd
Source: package/system/ubus
License: LGPL-2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4198
Filename: base/ubus_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 4954
MD5Sum: 29255ea97cadace1fc052f690ca4a577
SHA256sum: 3740ccb31d883cdc92034bb3f573ea47de45cd04b6544a72e2b123c41bc13832
Description: OpenWrt RPC client utility
Package: ubusd
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubox
Source: package/system/ubus
License: LGPL-2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7733
Filename: base/ubusd_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 8527
MD5Sum: 12fc77a783ce25bda38ca1ba00a10a1e
SHA256sum: 896b41cb94aaa26fc8595cb4378b92e6c1e982661613839b628efac0459aa7d7
Description: OpenWrt RPC daemon
Package: uci
Version: 2014-04-11.1-1
Depends: libc, libuci
Source: package/system/uci
License: LGPL-2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6851
Filename: base/uci_2014-04-11.1-1_ramips_24kec.ipk
Size: 7641
MD5Sum: f76f0d8843465d933467dc2d2f9a3d3d
SHA256sum: 623923207a83f53b971cfa39bc574b602cf86a6085b3c5b39b9b3462712b200c
Description: Utility for the Unified Configuration Interface (UCI)
Package: uclibcxx
Version: 0.2.4-1
Depends: libc
Source: package/libs/uclibc++
License: LGPL-2.1+
Section: libs
Architecture: ramips_24kec
Installed-Size: 64693
Filename: base/uclibcxx_0.2.4-1_ramips_24kec.ipk
Size: 65314
MD5Sum: 8884b52c986da98ee1afc6350d64622a
SHA256sum: 0e0ea2445d4c2b3d3f6f2a1dbdc68b26f84c7b0b6531873572c6a67e6cb46a61
Description: C++ library for embedded systems
Package: uclient-fetch
Version: 2015-01-19-6c222d0646fa7c07be96d729009916d5af295332
Depends: libc, libuclient
Source: package/libs/uclient
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3947
Filename: base/uclient-fetch_2015-01-19-6c222d0646fa7c07be96d729009916d5af295332_ramips_24kec.ipk
Size: 4686
MD5Sum: b4da0d728cc3ceb5276f06496e55910a
SHA256sum: 44c6d85c79d445845702c7deed482f2d4611fa6d148528b9f66a95091eeee4f3
Description: Tiny wget replacement using libuclient
Package: udev
Version: 173-1
Depends: libc, librt
Source: package/system/udev
License: GPL-2.0
Section: base
Maintainer: Geoff Levand <[email protected]>
Architecture: ramips_24kec
Installed-Size: 208965
Filename: base/udev_173-1_ramips_24kec.ipk
Size: 209403
MD5Sum: 71df29403d135259fd715493448928cd
SHA256sum: 9aa74d6040bd6dcf4da769ee8421803c32988151f3afe9495a637dd86fdba32e
Description: udev allows Linux users to have a dynamic /dev directory and it
provides the ability to have persistent device names.
Package: ugps
Version: 2014-08-01-1c31c99edd9de9dcb403750b04041eccc751ac5e
Depends: libc, libubox, libubus
Source: package/utils/ugps
License: GPL-2.0+
Section: utils
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5300
Filename: base/ugps_2014-08-01-1c31c99edd9de9dcb403750b04041eccc751ac5e_ramips_24kec.ipk
Size: 6070
MD5Sum: 8feb91507596fb39becced7a7341cd48
SHA256sum: 0c789a37af1065faa6fd18579f559c9fba97d211c5b0d24857a842724dd226d2
Description: OpenWrt GPS Daemon
Package: uhttpd-mod-lua
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, uhttpd, liblua
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3732
Filename: base/uhttpd-mod-lua_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 4511
MD5Sum: c43fd4a04055d808fb6797fa7c3549b8
SHA256sum: a61501a0922e78c6e8a9359f9756541e364b9642c11314539f991cdd4d023008
Description: The Lua plugin adds a CGI-like Lua runtime interface to uHTTPd.
Package: uhttpd-mod-tls
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, uhttpd, libustream-polarssl
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: base/uhttpd-mod-tls_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 893
MD5Sum: 1ca1349b4299713309b31f04114999cb
SHA256sum: 83a0b81ee7f1f395940aa53c9cb6534816bd95811d555e4f5c399b745cbb567b
Description: The TLS plugin adds HTTPS support to uHTTPd.
Package: uhttpd-mod-ubus
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, uhttpd, libubus, libblobmsg-json
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6202
Filename: base/uhttpd-mod-ubus_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 7087
MD5Sum: 39240995d47d421ca0cea62eccfe7bab
SHA256sum: a2e4eec06041db6585e671b5ddbbbfd97f6f741b6a2975c8b7a8280b1a716ad6
Description: The ubus plugin adds a HTTP/JSON RPC proxy for ubus and publishes the
session.* namespace and procedures.
Package: uhttpd
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, libubox
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21237
Filename: base/uhttpd_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 22088
MD5Sum: 0a7085b4dbf4d1e37458ccbb63f83264
SHA256sum: 321a07a5f57980f3f082e26b858b7dbe879463562b2918570376855edca9fdd0
Description: uHTTPd is a tiny single threaded HTTP server with TLS, CGI and Lua
support. It is intended as a drop-in replacement for the Busybox
HTTP daemon.
Package: umbim
Version: 2014-12-10-e195e48623be73d9b6a787d7ede951cb426393a9
Depends: libc, libubox, kmod-usb-net, kmod-usb-net-cdc-mbim, wwan
Source: package/network/utils/umbim
License: GPL-2.0
Section: net
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11735
Filename: base/umbim_2014-12-10-e195e48623be73d9b6a787d7ede951cb426393a9_ramips_24kec.ipk
Size: 12591
MD5Sum: 881716f2817952b85e995fa5acd5d157
SHA256sum: 84f99273aff8ae6ec2422946df52fe8275a3b64fc45cd5a7b859b25612a6bd6c
Description: umbim is a command line tool for controlling mobile broadband modems using
the MBIM-protocol.
Package: uqmi
Version: 2014-12-03-86bcdb8cca652676a78b2df8b5e3fb27a40c60a4
Depends: libc, libubox, libblobmsg-json, kmod-usb-net, kmod-usb-net-qmi-wwan, wwan
Source: package/network/utils/uqmi
License: GPL-2.0
Section: net
Maintainer: Matti Laakso <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19211
Filename: base/uqmi_2014-12-03-86bcdb8cca652676a78b2df8b5e3fb27a40c60a4_ramips_24kec.ipk
Size: 20056
MD5Sum: 2f889e376f3d33ec5bd33aed2ed9be39
SHA256sum: 889e52a88d1021c41a6c449d0938f90e4c4c51470d062b9ba7f80e1577c3f4d5
Description: uqmi is a command line tool for controlling mobile broadband modems using
the QMI-protocol.
Package: usb-modeswitch
Version: 2014-08-26-993a9a542791953c4804f7ddbb3a07756738e37a
Depends: libc, libubox, libblobmsg-json, libusb-1.0
Source: package/utils/usbmode
License: GPL-2.0
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11897
Filename: base/usb-modeswitch_2014-08-26-993a9a542791953c4804f7ddbb3a07756738e37a_ramips_24kec.ipk
Size: 12690
MD5Sum: e64d9232f338f87d42a9da6638e6832c
SHA256sum: 5c24a14c0ec6ec29e99347ecdc9c429fd26531773e48dbe99097a7aad37cd548
Description: USB mode switching utility
Package: usbreset
Version: 4
Depends: libc
Source: package/utils/usbreset
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2834
Filename: base/usbreset_4_ramips_24kec.ipk
Size: 3637
MD5Sum: ad5191e650b9118e9ace2dd8ff43c516
SHA256sum: 83b57b733b2cbe25bf3c62ee1ce553f43958cf34f7f882d5fe20d6437786494f
Description: This package contains the small usbreset utility which
can be used to send a USB port reset to a USB device -
useful for debugging or to force re-detection of particular
devices.
Package: usbutils
Version: 007-1
Depends: libc, libusb-1.0, zlib, librt, libpthread
Source: package/utils/usbutils
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 206346
Filename: base/usbutils_007-1_ramips_24kec.ipk
Size: 207213
MD5Sum: bf77b644925981cae3c9af507debb57b
SHA256sum: b964d99d59c20f5121d416aded0488af9b3d766d120f31006cb5192fbf3a41e4
Description: USB devices listing utilities
Package: uuidd
Version: 2.25.2-4
Depends: libc, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 10050
Filename: base/uuidd_2.25.2-4_ramips_24kec.ipk
Size: 10967
MD5Sum: eb02cad5a6787c4a385b61b3d38a3f67
SHA256sum: 9f8c728677dc56ed41b309828449a66785e042ba3faa060c4d119ef2a9760d42
Description: The uuidd daemon is used by the UUID library to generate universally unique
identifiers (UUIDs), especially time-based UUIDs, in a secure and
guaranteed-unique fashion, even in the face of large numbers of threads
running on different CPUs trying to grab UUIDs.
Package: uuidgen
Version: 2.25.2-4
Depends: libc, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 2569
Filename: base/uuidgen_2.25.2-4_ramips_24kec.ipk
Size: 3502
MD5Sum: 31fbadd0cc9a11095eddc97b11433dc9
SHA256sum: c6cc2b60f9d4d0ecf1e19de9cba1b439790b86934d8b21dd428e3cf758b5f32c
Description: The uuidgen program creates (and prints) a new universally unique identifier
(UUID) using the libuuid library. The new UUID can reasonably be considered
unique among all UUIDs created on the local system, and among UUIDs created on
other systems in the past and in the future.
Package: valgrind-cachegrind
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1199197
Filename: base/valgrind-cachegrind_3.10.0-1_ramips_24kec.ipk
Size: 1196793
MD5Sum: 3347bdd26ce0fa8c87577f239ed74681
SHA256sum: 1b9259154d6c853b7d2808e5876b5692f46e970d21c75b5e7882515724308784
Description: debugging and profiling tools for Linux (cache profiling)
Package: valgrind-callgrind
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1239607
Filename: base/valgrind-callgrind_3.10.0-1_ramips_24kec.ipk
Size: 1236467
MD5Sum: 40542fb0a94e3ae5b1fdbb4c4b210a20
SHA256sum: 44115c3421a758b392529bb49c260843d20f6ad39fa7a070fa4fadbea1a30a35
Description: debugging and profiling tools for Linux (callgraph profiling)
Package: valgrind-drd
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1218046
Filename: base/valgrind-drd_3.10.0-1_ramips_24kec.ipk
Size: 1215675
MD5Sum: 621d4a7cec13a3c63bb0d5e64aab6f80
SHA256sum: 5179d644470ba67bbe4e451db6c14af3dbe833c8955ea6de093f2c5e733d88f7
Description: debugging and profiling tools for Linux (thread error detection)
Package: valgrind-helgrind
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1236406
Filename: base/valgrind-helgrind_3.10.0-1_ramips_24kec.ipk
Size: 1233922
MD5Sum: eb2f4c8dacefe09905f118a99761e39f
SHA256sum: 03dd7c69bee6731f0bd3065888fc4db08f7f547a838de8e3b87812406578fdf1
Description: debugging and profiling tools for Linux (thread debugging)
Package: valgrind-massif
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1189750
Filename: base/valgrind-massif_3.10.0-1_ramips_24kec.ipk
Size: 1186843
MD5Sum: 9e99b6bbce0c043edeb125ffc02b4c00
SHA256sum: e64aa862f8786a057df7cef4c3963859d1db70c139402d3eb8c8194137e47aac
Description: debugging and profiling tools for Linux (heap profiling)
Package: valgrind-vgdb
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15046
Filename: base/valgrind-vgdb_3.10.0-1_ramips_24kec.ipk
Size: 15779
MD5Sum: d21414dc7aa4f16cd36ffa6f3ed756c3
SHA256sum: ce7c94d9a46fbadceffad072ce198274e0813670048e6d0b060ee843d141ea60
Description: debugging and profiling tools for Linux (GDB interface)
Package: valgrind
Version: 3.10.0-1
Depends: libc, libpthread, librt
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2433946
Filename: base/valgrind_3.10.0-1_ramips_24kec.ipk
Size: 2427495
MD5Sum: da6d21f99f5049f3cf7a47b3390e5848
SHA256sum: 1a9b606cdbf225e8e779d80389300b8e6b9f927869391b637f2a5cb0207ab012
Description: Valgrind is an award-winning suite of tools for debugging and
profiling Linux programs. With the tools that come with Valgrind,
you can automatically detect many memory management and threading
bugs, avoiding hours of frustrating bug-hunting, making your
programs more stable. You can also perform detailed profiling,
to speed up and reduce memory use of your programs.
Package: wall
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 9264
Filename: base/wall_2.25.2-4_ramips_24kec.ipk
Size: 10072
MD5Sum: 8d640ea1aaf264b145efa4b6e96d005f
SHA256sum: 8a6bea14f26de2c628ed10f8a8e85708d12d114fa114f6db650eef7c7b7b8f73
Description: wall sends a message to everybody logged in with their mesg permission
set to yes
Package: whereis
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 7406
Filename: base/whereis_2.25.2-4_ramips_24kec.ipk
Size: 8237
MD5Sum: ca97c82f3e5b3d02d942e811a1be74aa
SHA256sum: feda18a33893f1164a4f91289e9252f50ee5160907435e91d37d9130b60b5686
Description: whereis locates source/binary and manuals sections for specified files
Package: wipefs
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 10018
Filename: base/wipefs_2.25.2-4_ramips_24kec.ipk
Size: 10845
MD5Sum: 5b90cf298f9aa495f3d9397e6df364c4
SHA256sum: 769c3a63a995d88f796c0730271339491719361aff03de67057ec00ab06447a8
Description: wipefs can erase filesystem, raid or partition table signatures (magic
strings) from the specified device to make the signature invisible for
libblkid.
Package: wireless-tools
Version: 29-5
Depends: libc
Source: package/network/utils/wireless-tools
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22614
Filename: base/wireless-tools_29-5_ramips_24kec.ipk
Size: 23351
MD5Sum: a1f45e74b57cb7caca663dcba9002410
SHA256sum: ca4dcc3b33e50fb32064e949ea16ef5f6d3cc73e878e42adf1daec534260c3bc
Description: This package contains a collection of tools for configuring wireless
adapters implementing the "Linux Wireless Extensions".
Package: wpa-cli
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27853
Filename: base/wpa-cli_2014-10-25-1_ramips_24kec.ipk
Size: 28637
MD5Sum: 21121fe280eee258fe20302814793c4f
SHA256sum: 2f4868045e4f1a04d20f6f1d718d9e19471a97810bcfa334d27f793146cc66a3
Description: WPA Supplicant command line interface
Package: wpa-supplicant-mini
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 136071
Filename: base/wpa-supplicant-mini_2014-10-25-1_ramips_24kec.ipk
Size: 136608
MD5Sum: 33099f4c26b4b22c23b94d9109fd88e6
SHA256sum: 27f0003af4989a3f15e80356c6e75c0792234dada36ad31bf2db7f90949f8d1c
Description: WPA Supplicant (minimal version)
Package: wpa-supplicant-p2p
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 377226
Filename: base/wpa-supplicant-p2p_2014-10-25-1_ramips_24kec.ipk
Size: 377622
MD5Sum: dfa66f8bb09188e81a5fe338605c1109
SHA256sum: fb34e502166f6cee8043cb2395bc01babbf24d7dff3684620c11d0ccb842a91f
Description: WPA Supplicant (with Wi-Fi P2P support)
Package: wpa-supplicant
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 245416
Filename: base/wpa-supplicant_2014-10-25-1_ramips_24kec.ipk
Size: 246063
MD5Sum: c5629199648935148c82c2321eba5a73
SHA256sum: 605ca40e9817a26e3f7bdc4d3c4d4b2739f96623cb47b1f8f8cee18752ca5244
Description: WPA Supplicant
Package: wpad-mini
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 224372
Filename: base/wpad-mini_2014-10-25-1_ramips_24kec.ipk
Size: 224963
MD5Sum: 99263267b09bc33ab7fba9fc5b7cbfea
SHA256sum: 290c2704dd68df518e34203b73dad3cf6a9b2d07c7b379d59dc508ae49d600df
Description: This package contains a minimal IEEE 802.1x/WPA Authenticator and Supplicant (WPA-PSK only).
Package: wpad
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 378501
Filename: base/wpad_2014-10-25-1_ramips_24kec.ipk
Size: 378718
MD5Sum: 7213765425ae105551a28c8cf9ad456c
SHA256sum: ed4f5f432e35dbf2b011867016cf23bc7265acf2f405fc983f0f677edd1bd0c0
Description: This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS
Authenticator and Supplicant
Package: wwan
Version: 2014-07-17-1
Depends: libc
Source: package/network/utils/wwan
License: GPL-2.0
Section: net
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11696
Filename: base/wwan_2014-07-17-1_ramips_24kec.ipk
Size: 11749
MD5Sum: 4e7c8735a8911e8b54d517cebc77d4a4
SHA256sum: a61a513d07c8e806a0ec73329e9e3416ad6b8c99d1f08bdb93ef1ae3e9eeb247
Description: Generic OpenWrt 3G/4G proto handler
Package: xfs-fsck
Version: 3.1.7-1
Depends: libc, libuuid, libpthread, librt
Source: package/utils/xfsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 438387
Filename: base/xfs-fsck_3.1.7-1_ramips_24kec.ipk
Size: 438802
MD5Sum: 8ebc65c04822e1bc6a7d14d8364f3bbc
SHA256sum: 4a72e93e35a68d609b7f4dd5e1ecf6e6c437f6d7613b27f51d4f61dd1f7a2825
Description: Utilities for checking and repairing XFS filesystems
Package: xfs-growfs
Version: 3.1.7-1
Depends: libc, libuuid, libpthread, librt
Source: package/utils/xfsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 121635
Filename: base/xfs-growfs_3.1.7-1_ramips_24kec.ipk
Size: 122352
MD5Sum: 7415346631c562fbaf327ddf796e5e3c
SHA256sum: 0c6925e156d4e53051035ce779e34960e085774268e2c36056e819c4b3a4b999
Description: Utility for increasing the size of XFS filesystems
Package: xfs-mkfs
Version: 3.1.7-1
Depends: libc, libuuid, libpthread, librt
Source: package/utils/xfsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 140429
Filename: base/xfs-mkfs_3.1.7-1_ramips_24kec.ipk
Size: 141208
MD5Sum: 631a81c7944365e2993bbac518f3afdb
SHA256sum: f9f9a84bea75e055411a01c4ecc3355611db0bccaf113f3e30fcc3f12dccc481
Description: Utility for creating XFS filesystems
Package: zlib
Version: 1.2.8-1
Depends: libc
Source: package/libs/zlib
License: Zlib
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 39487
Filename: base/zlib_1.2.8-1_ramips_24kec.ipk
Size: 40267
MD5Sum: 0fe682b2c5e08daea6817c1b7db36f41
SHA256sum: cab52adbcf872e7a9781e83c5a1dfe00601af517f07712e29a7705bf0a6ec81b
Description: Library implementing the deflate compression method
Package: zram-swap
Version: 1-2
Depends: libc, kmod-zram, swap-utils, block-mount
Source: package/system/zram-swap
Section: utils
Architecture: all
Installed-Size: 1122
Filename: base/zram-swap_1-2_all.ipk
Size: 1884
MD5Sum: 92d2fe1bda16b8f849c88f8aaa443eeb
SHA256sum: e0ae701c9355c68bedfdee5fc3036317c6974644a07b85363034a1e1a9b914ef
Description: A script to activate swaping on a compressed zram partition. This
could be used to increase the available memory, by using compressed
memory.
Package: community-profiles
Version: 2
Depends: libc, freifunk-common
Source: feeds/luci/contrib/package/community-profiles
Section: luci
Architecture: ramips_24kec
Installed-Size: 5488
Filename: luci/community-profiles_2_ramips_24kec.ipk
Size: 6198
MD5Sum: afd6139b45eae46b39f8a126fff8c87f
SHA256sum: 1adcee7d28024cbd30dccd7bc8bf92643e8fc6ced79217980e6ba3b2b5274f19
Description: These community profiles set defaults for various free network/freifunk communities and are used by wizards like ffwizard and meshwizard.
Package: freifunk-common
Version: 1
Depends: libc
Source: feeds/luci/contrib/package/freifunk-common
Section: luci
Architecture: ramips_24kec
Installed-Size: 2961
Filename: luci/freifunk-common_1_ramips_24kec.ipk
Size: 3689
MD5Sum: ba36f775a8d623e1c260e25f6a6c9d56
SHA256sum: 0c41d5e01e7e0773acc429fea5adb7a010df34b1e0a466b1c26aef46047674ab
Description: Common files and scripts that are needed to run free wireless mesh networks.
Package: freifunk-firewall
Version: 3
Depends: libc, firewall
Source: feeds/luci/contrib/package/freifunk-firewall
Section: luci
Architecture: ramips_24kec
Installed-Size: 1149
Filename: luci/freifunk-firewall_3_ramips_24kec.ipk
Size: 2014
MD5Sum: 4c33c603728af43b320ecaff7979130a
SHA256sum: e955987fdb708667b95de79ee0df4948c702feeec469eaa12614c12b2422f8a3
Description: Various firewall extensions for Freifunk. Includes NAT fixes and advanced settings.
Package: freifunk-gwcheck
Version: 4
Depends: libc, firewall, ip, iptables-mod-ipopt, olsrd-mod-dyn-gw-plain
Source: feeds/luci/contrib/package/freifunk-gwcheck
Section: luci
Architecture: ramips_24kec
Installed-Size: 2039
Filename: luci/freifunk-gwcheck_4_ramips_24kec.ipk
Size: 2884
MD5Sum: 8e27e2906caa699bbe490a827ef83605
SHA256sum: 9c42298f33761b90b8c6134de3417c70de9d062d9514f5b6ebf7743aa2b395f8
Description: This script periodically checks if internet is available via your own gateway. If it detects that it is broken, then the defaultroute is removed from the main table and temporarilly placed in table gw-check until your internet works again. Config file is /etc/config/freifunk-gwcheck.
Package: freifunk-mapupdate
Version: 1
Depends: libc, olsrd-mod-nameservice
Source: feeds/luci/contrib/package/freifunk-mapupdate
Section: luci
Architecture: ramips_24kec
Installed-Size: 1288
Filename: luci/freifunk-mapupdate_1_ramips_24kec.ipk
Size: 2076
MD5Sum: 37cb6e38921dad28f815019057c3f749
SHA256sum: 09538db777890e7e3c1a5572671a2e44c20a5cd519db469196280c94e268fb91
Description: This script updates the freifunkmap (also known as the global map, see http://map.berlin.freifunk.net) every hour. Config file is /etc/config/freifunk-mapupdate.
Package: freifunk-p2pblock
Version: 3
Depends: libc, iptables-mod-filter, iptables-mod-ipp2p, l7-protocols, iptables-mod-conntrack-extra
Source: feeds/luci/contrib/package/freifunk-p2pblock
Section: luci
Architecture: ramips_24kec
Installed-Size: 1316
Filename: luci/freifunk-p2pblock_3_ramips_24kec.ipk
Size: 2097
MD5Sum: ab4704fcb457f9c508a0428dbba1fb6b
SHA256sum: 75d28bd83e28fb7fb98f1b4909e25539882d8752cafafb26c8e9f66511a4199a
Description: Simple Addon for Freifunk which use iptables layer7-, ipp2p- and recent-modules
to block p2p/filesharing traffic
Package: freifunk-policyrouting
Version: 6
Depends: libc, ip
Source: feeds/luci/contrib/package/freifunk-policyrouting
Section: luci
Architecture: ramips_24kec
Installed-Size: 2273
Filename: luci/freifunk-policyrouting_6_ramips_24kec.ipk
Size: 3090
MD5Sum: 71bab1f3f10c1034f076edf24ea23c0b
SHA256sum: c99c2de1f56819a8bd288155946a583e2995c73d67147e034eb4dccb3a86f709
Description: Allows you to send your own traffic via your own default gateway while sending traffic received from the mesh to a gateway in the mesh.
Package: freifunk-watchdog
Version: 8
Depends: libc, libuci
Source: feeds/luci/contrib/package/freifunk-watchdog
Section: luci
Architecture: ramips_24kec
Installed-Size: 5638
Filename: luci/freifunk-watchdog_8_ramips_24kec.ipk
Size: 6409
MD5Sum: 51f5e24235ce5be7f3547c7136ad0ae9
SHA256sum: 480976ccdaadf3ab5adc1091d3598f7841e5437845e02b3ab406749c1d6ae290
Description: A watchdog daemon that monitors wireless interfaces to ensure the correct bssid and channel.
The process will initiate a wireless restart as soon as it detects a bssid or channel mismatch.
Package: luci-app-ahcp
Version: git-15.079.29361-3e37216-1
Depends: libc, ahcpd
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 2973
Filename: luci/luci-app-ahcp_git-15.079.29361-3e37216-1_all.ipk
Size: 3760
MD5Sum: 227c58e2991010a03c463733b107c454
SHA256sum: abcb7a0fae4c9075e0c8d2768ae2fc1044c0b6e8d006e9569bf54e5c22743bdc
Description: LuCI Support for AHCPd
Package: luci-app-asterisk
Version: git-15.079.29361-3e37216-1
Depends: libc, ahcpd
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 27753
Filename: luci/luci-app-asterisk_git-15.079.29361-3e37216-1_all.ipk
Size: 28538
MD5Sum: b2c9602b5fbff4097c9c994541caad35
SHA256sum: bf85bede5ada9307042272535cf2d4ed2c773ef77bbcd88fd1f04eb63b49ea96
Description: LuCI Support for Asterisk
Package: luci-app-commands
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 4198
Filename: luci/luci-app-commands_git-15.079.29361-3e37216-1_all.ipk
Size: 4912
MD5Sum: 4890f351573310751336aa3450b0239d
SHA256sum: 1d85465521ad14e20de4cedfc351036b6808748a2faab913f997cb45b515b723
Description: LuCI Shell Command Module
Package: luci-app-ddns
Version: 2.2.2-1
Depends: libc, luci-mod-admin-full, ddns-scripts
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 23755
Filename: luci/luci-app-ddns_2.2.2-1_all.ipk
Size: 24574
MD5Sum: dc4a9279ee789725e4ee447686956d56
SHA256sum: babc93733dc7dbc695cb4a06c52ac6b2e6d036869998408057404add27b218af
Description: LuCI Support for Dynamic DNS Client (ddns-scripts)
Package: luci-app-diag-core
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 790
Filename: luci/luci-app-diag-core_git-15.079.29361-3e37216-1_all.ipk
Size: 1499
MD5Sum: ac8398aa992e11d7c23edca252325b54
SHA256sum: 2e1eee255df4c9a52e2edc1fa9241a0ded4cf8d84b74ffdddb709a7127ac99eb
Description: LuCI Diagnostics Tools (Core)
Package: luci-app-diag-devinfo
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core, smap, netdiscover, mac-to-devinfo, httping, smap-to-devinfo, netdiscover-to-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 5824
Filename: luci/luci-app-diag-devinfo_git-15.079.29361-3e37216-1_all.ipk
Size: 6579
MD5Sum: fc68ba523556788ad09fed27e2be99dc
SHA256sum: 7ff358bd89916a32a40a8d7ec8ae96888c6771fb1961949db3e07af8b1857308
Description: LuCI Diagnostics Tools (Device Info)
Package: luci-app-dump1090
Version: git-15.079.29361-3e37216-1
Depends: libc, dump1090
Source: feeds/luci/applications/luci-app-dump1090
Section: luci
Architecture: all
Installed-Size: 2124
Filename: luci/luci-app-dump1090_git-15.079.29361-3e37216-1_all.ipk
Size: 2901
MD5Sum: de3f040cc059816e8575cbc6e6ca07fa
SHA256sum: 5eb8b07ea1646f0802aed9c258deff46ae83751fed96a295cfcea7875d97644d
Description: LuCI Support for dump1090
Package: luci-app-firewall
Version: git-15.079.29361-3e37216-1
Depends: libc, firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 10456
Filename: luci/luci-app-firewall_git-15.079.29361-3e37216-1_all.ipk
Size: 11169
MD5Sum: bad4df937b3b55dd1b82c89ab6974912
SHA256sum: 61876ba6915fd57f1f5e701d720f551e0878940b5fa09699bef372faca502581
Description: Firewall and Portforwarding application
Package: luci-app-freifunk-diagnostics
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-freifunk-diagnostics
Section: luci
Architecture: all
Installed-Size: 2288
Filename: luci/luci-app-freifunk-diagnostics_git-15.079.29361-3e37216-1_all.ipk
Size: 3082
MD5Sum: b3fc611d068e4e47fcd57f681715a3d6
SHA256sum: 14eb47ae6cfbc34778d325c5b3c8b1097f807469fefc8c2a8d179cba9e1e41a3
Description: Tools for network diagnosis like traceroute and ping
Package: luci-app-freifunk-policyrouting
Version: git-15.079.29361-3e37216-1
Depends: libc, freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1203
Filename: luci/luci-app-freifunk-policyrouting_git-15.079.29361-3e37216-1_all.ipk
Size: 1936
MD5Sum: 8299cb122d33a263a90b4858b169b488
SHA256sum: 7cadbf5aa2e8062e84aafcc6876d0e9b7da2d6c5b02bb0326bd609d8c852e3b9
Description: Policy routing for mesh traffic
Package: luci-app-freifunk-widgets
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/applications/luci-app-freifunk-widgets
Section: luci
Architecture: all
Installed-Size: 4505
Filename: luci/luci-app-freifunk-widgets_git-15.079.29361-3e37216-1_all.ipk
Size: 5211
MD5Sum: 792159693af711f2976a996769d13f00
SHA256sum: f597cfcc3d9d156a60b9760937269cdeffc6078737d5f8d9515d780699f5fb96
Description: Widgets for the Freifunk index page
Package: luci-app-hd-idle
Version: git-15.079.29361-3e37216-1
Depends: libc, hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 1060
Filename: luci/luci-app-hd-idle_git-15.079.29361-3e37216-1_all.ipk
Size: 1856
MD5Sum: 8d7862222ca38b3657d75788cc0d7320
SHA256sum: a2ca549509a4d6f87da28cdbf02a5339709fe0465957f874487a6225bcda36d2
Description: Hard Disk Idle Spin-Down module
Package: luci-app-meshwizard
Version: git-15.079.29361-3e37216-1
Depends: libc, meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 2916
Filename: luci/luci-app-meshwizard_git-15.079.29361-3e37216-1_all.ipk
Size: 3709
MD5Sum: ed41546178c16a3f5641e4397a52caf0
SHA256sum: f9ce1ac0e24b1688081667f660d33bb05f5de10dcd0704ba8972389426eb8b00
Description: Shellscript based wizard to setup mesh networks
Package: luci-app-minidlna
Version: git-15.079.29361-3e37216-1
Depends: libc, minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 3276
Filename: luci/luci-app-minidlna_git-15.079.29361-3e37216-1_all.ipk
Size: 4060
MD5Sum: b3113668b03540e5573ae2de5ffc2e69
SHA256sum: b0b7aa2480c053e55f2f3b617007cffb9ff3f15ab41150f0e94033452cac3455
Description: LuCI Support for miniDLNA
Package: luci-app-mjpg-streamer
Version: git-15.079.29361-3e37216-1
Depends: libc, mjpg-streamer
Source: feeds/luci/applications/luci-app-mjpg-streamer
Section: luci
Architecture: all
Installed-Size: 3057
Filename: luci/luci-app-mjpg-streamer_git-15.079.29361-3e37216-1_all.ipk
Size: 3849
MD5Sum: 260c2f8464692b2d1e1f0eec822819bd
SHA256sum: b2e9a7232ab3cfc33e748a9550172bc7e551809a1b14b96208f06c6301cdf5d6
Description: MJPG-Streamer service configuration module
Package: luci-app-mmc-over-gpio
Version: git-15.079.29361-3e37216-1
Depends: libc, kmod-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 940
Filename: luci/luci-app-mmc-over-gpio_git-15.079.29361-3e37216-1_all.ipk
Size: 1739
MD5Sum: e5cd16caadb0dc24ae84cee37976f93c
SHA256sum: 3d11f905c6404336b96a5e4f211dac61885857ae2d37f520515aa397386efef4
Description: MMC-over-GPIO configuration module
Package: luci-app-multiwan
Version: git-15.079.29361-3e37216-1
Depends: libc, multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 3154
Filename: luci/luci-app-multiwan_git-15.079.29361-3e37216-1_all.ipk
Size: 3854
MD5Sum: 503e3adc8ff8e312a017c45c4066be73
SHA256sum: 499d9990bdba1332c86551c3e2c8a97c3d604f953784702a0a5a12309022b477
Description: LuCI Support for the OpenWrt MultiWAN agent
Package: luci-app-ntpc
Version: git-15.079.29361-3e37216-1
Depends: libc, ntpclient
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 1108
Filename: luci/luci-app-ntpc_git-15.079.29361-3e37216-1_all.ipk
Size: 1824
MD5Sum: 67cf8db57b7ae09949cba57d83701c20
SHA256sum: 1f516878a259ecf0d26e0d9526d92e748e85dd8b71a428b2cff3fd9fd72a146a
Description: NTP time synchronisation configuration module
Package: luci-app-ocserv
Version: git-15.079.29361-3e37216-1
Depends: libc, ocserv, certtool
Source: feeds/luci/applications/luci-app-ocserv
Section: luci
Architecture: all
Installed-Size: 4493
Filename: luci/luci-app-ocserv_git-15.079.29361-3e37216-1_all.ipk
Size: 5217
MD5Sum: 114faaa8b228e2e841d5321e304fa48f
SHA256sum: a7536851939415c8df50add746c259e8ab7cd5c1c49bc23581475414ef2d7991
Description: LuCI Support for OpenConnect VPN
Package: luci-app-olsr-services
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr, olsrd, olsrd-mod-nameservice
Source: feeds/luci/applications/luci-app-olsr-services
Section: luci
Architecture: all
Installed-Size: 2165
Filename: luci/luci-app-olsr-services_git-15.079.29361-3e37216-1_all.ipk
Size: 2886
MD5Sum: dcd1d13a78549bc7ad5768b620949d3a
SHA256sum: 309e7903a15c968b5eae07859a6d07109cc27afa1008d4ea7c9027677c6daebc
Description: Show services announced with the nameservice plugin
Package: luci-app-olsr-viz
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr, olsrd, olsrd-mod-txtinfo
Source: feeds/luci/applications/luci-app-olsr-viz
Section: luci
Architecture: all
Installed-Size: 11355
Filename: luci/luci-app-olsr-viz_git-15.079.29361-3e37216-1_all.ipk
Size: 12088
MD5Sum: 8cce80d8ddd685b74c6c78eb20d5e2a6
SHA256sum: 0c6dc864f9c21f421348b94f13bdce2dd1f0c75fc85b9bdf692e23be782e3897
Description: OLSR Visualisation
Package: luci-app-olsr
Version: git-15.079.29361-3e37216-1
Depends: libc, olsrd, olsrd-mod-jsoninfo, luci-lib-luaneightbl
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 21141
Filename: luci/luci-app-olsr_git-15.079.29361-3e37216-1_all.ipk
Size: 21927
MD5Sum: c25c54cfd64402a296582e180a50e5a0
SHA256sum: 20b76b7ba24855e579a30059207d99b3ac803091000f683b5aca7dcf140a8130
Description: OLSR configuration and status module
Package: luci-app-openvpn
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 8663
Filename: luci/luci-app-openvpn_git-15.079.29361-3e37216-1_all.ipk
Size: 9383
MD5Sum: 0b22651b10fd78adbcd02adc728958be
SHA256sum: add457d345990b03b7d173aa7e1857969e827007283d8687b103ecec2edd30bf
Description: LuCI Support for OpenVPN
Package: luci-app-p2pblock
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall, freifunk-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 1520
Filename: luci/luci-app-p2pblock_git-15.079.29361-3e37216-1_all.ipk
Size: 2305
MD5Sum: d5b16746db2913bdccc4c37b8d359cf6
SHA256sum: a658660f9fa68ca0631e9264e1bc195cabb653991ea12a2084a3313cc838f7ef
Description: LuCI Support for the Freifunk P2P-Block addon
Package: luci-app-p910nd
Version: git-15.079.29361-3e37216-1
Depends: libc, p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 1270
Filename: luci/luci-app-p910nd_git-15.079.29361-3e37216-1_all.ipk
Size: 2057
MD5Sum: 66fa5f6ef9d80f2a1a137b1a254cf853
SHA256sum: 6585423f375453efb49690c81dc518022555f16fe603df8f091cecbb37e13529
Description: p910nd - Printer server module
Package: luci-app-pbx-voicemail
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx, asterisk18, msmtp, coreutils-base64
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 4507
Filename: luci/luci-app-pbx-voicemail_git-15.079.29361-3e37216-1_all.ipk
Size: 5245
MD5Sum: 63b2fad2baa4354afde8ddc6e3ac58e5
SHA256sum: 736f8149d63100bc6ea4f49492905bda0f785029285cc1c2e0710009daa4f980
Description: LuCI PBX Administration Voicemail Support
Package: luci-app-pbx
Version: git-15.079.29361-3e37216-1
Depends: libc, asterisk18, asterisk18-app-authenticate, asterisk18-app-disa, asterisk18-app-setcallerid, asterisk18-app-system, asterisk18-chan-gtalk, asterisk18-codec-a-mu, asterisk18-codec-alaw, asterisk18-func-cut, asterisk18-res-clioriginate, asterisk18-func-channel, asterisk18-chan-local, asterisk18-app-record, asterisk18-app-senddtmf, asterisk18-res-crypto
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 63166
Filename: luci/luci-app-pbx_git-15.079.29361-3e37216-1_all.ipk
Size: 64083
MD5Sum: fa1ac150a1e48db9f44f97e03a3693e6
SHA256sum: f28f51ae8e5db7630b3e33239aac317d57dc5eb4a690b8399001735d8930aa46
Description: LuCI PBX Administration
Package: luci-app-polipo
Version: git-15.079.29361-3e37216-1
Depends: libc, polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 3074
Filename: luci/luci-app-polipo_git-15.079.29361-3e37216-1_all.ipk
Size: 3869
MD5Sum: 4a1c0b43f11e143a0c57731c7e98114f
SHA256sum: 92383888cdaa91b0cafb80b49eb1d0f3694d5903bb3cf0eaea09fbe6e5e7208b
Description: LuCI Support for the Polipo Proxy
Package: luci-app-privoxy
Version: 1.0.3-1
Depends: libc, luci-mod-admin-full, privoxy
Source: feeds/luci/applications/luci-app-privoxy
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 11887
Filename: luci/luci-app-privoxy_1.0.3-1_all.ipk
Size: 12745
MD5Sum: f9d0ad9b097a1c2357796c0325abaf8e
SHA256sum: 78a1c074c50fd8d55e893c6739dacb2ea647bd21e6766f4be4e68d414a771b89
Description: LuCI Support for Privoxy WEB proxy
Package: luci-app-qos
Version: git-15.079.29361-3e37216-1
Depends: libc, qos-scripts
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1426
Filename: luci/luci-app-qos_git-15.079.29361-3e37216-1_all.ipk
Size: 2156
MD5Sum: c538512c501f3062f8e82dabe7ad8577
SHA256sum: 50e6c0e699bbf94d521c6efc9bc4fefc32cc888c121ba7e412b5863f3d627185
Description: Quality of Service configuration module
Package: luci-app-radvd
Version: git-15.079.29361-3e37216-1
Depends: libc, radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 4621
Filename: luci/luci-app-radvd_git-15.079.29361-3e37216-1_all.ipk
Size: 5405
MD5Sum: ae46c8c18ab6238749b7338b74231f24
SHA256sum: 5e3a3d91739f5cfb890682800c3baf032c288e3aecdce5aa13d131bd6145a819
Description: LuCI Support for Radvd
Package: luci-app-samba
Version: git-15.079.29361-3e37216-1
Depends: libc, samba36-server
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1361
Filename: luci/luci-app-samba_git-15.079.29361-3e37216-1_all.ipk
Size: 2099
MD5Sum: 1d52c4e42571b6c20853c8b47f735e5f
SHA256sum: 30b64286dc6fe0600b22a92aba85e22935eb782c777473b7588e016dfbc5597f
Description: Network Shares - Samba SMB/CIFS module
Package: luci-app-shairplay
Version: git-15.079.29361-3e37216-1
Depends: libc, shairplay
Source: feeds/luci/applications/luci-app-shairplay
Section: luci
Architecture: all
Installed-Size: 1398
Filename: luci/luci-app-shairplay_git-15.079.29361-3e37216-1_all.ipk
Size: 2155
MD5Sum: 355e367f091e4ecaae6c1ed19aa18222
SHA256sum: edf6fd7badfbeea96cb7581ffcff3b48a1f20c9120eac618c1d0e213a8f621c6
Description: LuCI Support for Shairplay
Package: luci-app-shairport
Version: git-15.079.29361-3e37216-1
Depends: libc, shairport
Source: feeds/luci/applications/luci-app-shairport
Section: luci
Architecture: all
Installed-Size: 1951
Filename: luci/luci-app-shairport_git-15.079.29361-3e37216-1_all.ipk
Size: 2722
MD5Sum: 3fa2001bf0dc8f0b68f1e1c8b4d5a94c
SHA256sum: 5748f71ab48c9180908e8cde22789d8e10a42b38fe96ff2d085224899ba1c522
Description: LuCI Support for Shairport
Package: luci-app-siitwizard
Version: git-15.079.29361-3e37216-1
Depends: libc, kmod-siit
Source: feeds/luci/applications/luci-app-siitwizard
Section: luci
Architecture: all
Installed-Size: 3780
Filename: luci/luci-app-siitwizard_git-15.079.29361-3e37216-1_all.ipk
Size: 4500
MD5Sum: 65b52c6cc393d70f79711b620a55e51b
SHA256sum: 7c917f2425821786dfcc61fbc9bbf25a44ba39599f29f81776c7e7ea8f78d38a
Description: SIIT IPv4-over-IPv6 configuration wizard
Package: luci-app-splash
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-lib-nixio, tc, kmod-sched, iptables-mod-nat-extra, iptables-mod-ipopt
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 16527
Filename: luci/luci-app-splash_git-15.079.29361-3e37216-1_all.ipk
Size: 17238
MD5Sum: ec4ea5ef86c35473cdf1caff3443961f
SHA256sum: 267e2af08d4253e45ff748c145ab28bd399ff7688b1481269cc19452be0a65b1
Description: Freifunk DHCP-Splash application
Package: luci-app-statistics
Version: git-15.079.29361-3e37216-1
Depends: libc, collectd, rrdtool1, collectd-mod-rrdtool, collectd-mod-iwinfo, collectd-mod-interface, collectd-mod-load, collectd-mod-network
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 25338
Filename: luci/luci-app-statistics_git-15.079.29361-3e37216-1_all.ipk
Size: 26135
MD5Sum: 398615e190f248ad46a9a3b3ed48bb2e
SHA256sum: f3fdfddfb1981e93cea8ce2fd24fdbb6ee2d6cd5d63ae24af525e1ce7639b44e
Description: LuCI Statistics Application
Package: luci-app-tinyproxy
Version: git-15.079.29361-3e37216-1
Depends: libc, tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 3162
Filename: luci/luci-app-tinyproxy_git-15.079.29361-3e37216-1_all.ipk
Size: 3879
MD5Sum: 7a36194dadf34ce796b10d80deb78570
SHA256sum: cf1d768dfdbd95d93807ea177d28c4547eb12d96417a87cf7d92dbb37c26ab9c
Description: Tinyproxy - HTTP(S)-Proxy configuration
Package: luci-app-transmission
Version: git-15.079.29361-3e37216-1
Depends: libc, transmission-daemon
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 3413
Filename: luci/luci-app-transmission_git-15.079.29361-3e37216-1_all.ipk
Size: 4178
MD5Sum: 0141ba7384dbf0bebe61d8f9ea6ee625
SHA256sum: e12d587dd6134d07dd6e2800abf71643d324f2077446ba0258d980f368d13cc1
Description: LuCI Support for Transmission
Package: luci-app-udpxy
Version: git-15.079.29361-3e37216-1
Depends: libc, udpxy
Source: feeds/luci/applications/luci-app-udpxy
Section: luci
Architecture: all
Installed-Size: 1433
Filename: luci/luci-app-udpxy_git-15.079.29361-3e37216-1_all.ipk
Size: 2185
MD5Sum: e7c38ea53672b7fb04cf5d83203a6b04
SHA256sum: 13b2cb4dffb5b4c7e2a0b6ead0c492c0e4606b8bad4ef75c64a13cb3bbb8c105
Description: LuCI Support for udpxy
Package: luci-app-upnp
Version: git-15.079.29361-3e37216-1
Depends: libc, miniupnpd
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 3354
Filename: luci/luci-app-upnp_git-15.079.29361-3e37216-1_all.ipk
Size: 4160
MD5Sum: 41cf99a55ce5e657c71e33d166ecd498
SHA256sum: 1643b3f7a979432da4f2ad412a520dc1922dfe0e86cca68800c0fde93966fe73
Description: Universal Plug & Play configuration module
Package: luci-app-vnstat
Version: git-15.079.29361-3e37216-1
Depends: libc, vnstat, vnstati
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 2287
Filename: luci/luci-app-vnstat_git-15.079.29361-3e37216-1_all.ipk
Size: 3064
MD5Sum: e6ab150ae4d4179f21e77a9d93e1c70a
SHA256sum: f2077e4f557fd0d482eb36e2e5bb3feeaec2656db0245b50e6d1878f78941690
Description: LuCI Support for VnStat
Package: luci-app-voice-core
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 929
Filename: luci/luci-app-voice-core_git-15.079.29361-3e37216-1_all.ipk
Size: 1637
MD5Sum: a387bfcf3dd068eccf70ae49baf22a2f
SHA256sum: d96a728f1e89f875cd9fca9b23614b240b2e0d7107d07a08b7f20b1285f437a9
Description: LuCI Voice Software (Core)
Package: luci-app-voice-diag
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 731
Filename: luci/luci-app-voice-diag_git-15.079.29361-3e37216-1_all.ipk
Size: 1448
MD5Sum: 637975d365aa857c4bf29c68023ebbd3
SHA256sum: c9abbd5238f40046a32bd2fbd16862275c154f819c16f4beb7008dec93b8d378
Description: LuCI Voice Software (Diagnostics)
Package: luci-app-watchcat
Version: git-15.079.29361-3e37216-1
Depends: libc, watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1434
Filename: luci/luci-app-watchcat_git-15.079.29361-3e37216-1_all.ipk
Size: 2192
MD5Sum: 0d55a871d09c52376c648a4238394eb7
SHA256sum: 724b941ca86bb673556d14df26c27b8e7729f5ead1e08601c8406dbbc9c45246
Description: LuCI Support for Watchcat
Package: luci-app-wol
Version: git-15.079.29361-3e37216-1
Depends: libc, etherwake
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 1440
Filename: luci/luci-app-wol_git-15.079.29361-3e37216-1_all.ipk
Size: 2161
MD5Sum: 3f021f3c5ce6e1f1129aaa665b4df035
SHA256sum: 7eba7cb908ea396d7115bb6c53da383dae3b36ba549362062edc6df68643b52e
Description: LuCI Support for Wake-on-LAN
Package: luci-app-wshaper
Version: git-15.079.29361-3e37216-1
Depends: libc, wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 1224
Filename: luci/luci-app-wshaper_git-15.079.29361-3e37216-1_all.ipk
Size: 1985
MD5Sum: 60940fd1e8ca41c7d2f70ed36521fa95
SHA256sum: 412ad761c6cc4bee2af49bcef42b9399d5591ef5d45490108070ca01574837be
Description: LuCI Support for wshaper
Package: luci-base
Version: git-15.079.29361-3e37216-1
Depends: libc, lua, libuci-lua, luci-lib-nixio, luci-lib-ip, rpcd
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: ramips_24kec
Installed-Size: 123184
Filename: luci/luci-base_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 124046
MD5Sum: 7d1e47e3010fe7c49b496b642ff78457
SHA256sum: 46e5378b8b46170cb89c5dbf6c68496ca94f9974015bc5c27cafc31473515623
Description: LuCI core libraries
Package: luci-i18n-ahcp-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1336
Filename: luci/luci-i18n-ahcp-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2146
MD5Sum: 66551deaf880e1d7534591cb7e7769a3
SHA256sum: 4d351b9bd6621502547a8ee68cf8fcdffaef0032773e7c57fcdb68c5cd33a739
Description: Translation for luci-app-ahcp - Català (Catalan)
Package: luci-i18n-ahcp-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1397
Filename: luci/luci-i18n-ahcp-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2210
MD5Sum: bf3a089ae1810e55dec3179a96c0045d
SHA256sum: 93fdb9687b69e98291c6a6be880fe36ca542dd54d8a7fea140a858e6d169d27a
Description: Translation for luci-app-ahcp - Čeština (Czech)
Package: luci-i18n-ahcp-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1228
Filename: luci/luci-i18n-ahcp-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2036
MD5Sum: 1ced6365fe33930888da231e3ddadc66
SHA256sum: 1105158ac73686f8d9c24fea49bd82901b21477c343ad397fb7112954eb0d8ce
Description: Translation for luci-app-ahcp - Deutsch (German)
Package: luci-i18n-ahcp-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1131
Filename: luci/luci-i18n-ahcp-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1949
MD5Sum: 93ffddfd9229d9a4bde775aefb4e2931
SHA256sum: 54825275f6d886d0424bb507a404c16cec6fd5815fc96409c5d1131cbc2d1dfd
Description: Translation for luci-app-ahcp - Ελληνικά (Greek)
Package: luci-i18n-ahcp-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 551
Filename: luci/luci-i18n-ahcp-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1340
MD5Sum: a730e61402509fa2b8afc05bd4222d90
SHA256sum: 712826d91dcbc078002496286df35447dd764d9434dbcea12c4dd42d3e8fdb99
Description: Translation for luci-app-ahcp - English
Package: luci-i18n-ahcp-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1343
Filename: luci/luci-i18n-ahcp-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2163
MD5Sum: f40d468989c98fe5af5bf0d395532ecf
SHA256sum: 8d03cbbaff9e574c6b36a4f5a22703400e2b6f6a86b6980009a60640e928f22f
Description: Translation for luci-app-ahcp - Español (Spanish)
Package: luci-i18n-ahcp-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1339
Filename: luci/luci-i18n-ahcp-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2154
MD5Sum: 02ec698bfe983f27800d3e3d7105fd8f
SHA256sum: bc9b5d02295559666b26050436b8db273301988c80a6f86197dc10341e8ea9e1
Description: Translation for luci-app-ahcp - Français (French)
Package: luci-i18n-ahcp-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1269
Filename: luci/luci-i18n-ahcp-he_git-15.079.29361-3e37216-1_all.ipk
Size: 2100
MD5Sum: 03de46bacc3a031df94b1856800a3577
SHA256sum: d28db7e54f3dd2fd697c0c9c00e81abb385be31e79e03ff5f9a726d3b353d6be
Description: Translation for luci-app-ahcp - עִבְרִית (Hebrew)
Package: luci-i18n-ahcp-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1373
Filename: luci/luci-i18n-ahcp-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2186
MD5Sum: 3be54d4c6ba6fc663fb49eb813546106
SHA256sum: 39eafd01acf9c882adab84d7d046723cf7119e13904a1d9d2642b8216fc86f02
Description: Translation for luci-app-ahcp - Magyar (Hungarian)
Package: luci-i18n-ahcp-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1328
Filename: luci/luci-i18n-ahcp-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2134
MD5Sum: dbe3b62524d08a270f6f2b3c5b55db60
SHA256sum: b4515510f49e6bd0aa018187b580b8e8344484cfb2e507092cf7bf1daed4fe17
Description: Translation for luci-app-ahcp - Italiano (Italian)
Package: luci-i18n-ahcp-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1438
Filename: luci/luci-i18n-ahcp-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2260
MD5Sum: 2f4043e5fe069775cd6ea96747bd0213
SHA256sum: fbd2918ef09e0aebafd48e05e58af21ee3a04c9f59b00e95706e030e2beb5b90
Description: Translation for luci-app-ahcp - 日本語 (Japanese)
Package: luci-i18n-ahcp-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-ahcp-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1106
MD5Sum: bdf4c3f28e5efd7c5779ea68e28ee549
SHA256sum: 04c4cf0ab30c85b175bae762c49bdeeb37d95165dd9b5bf675e0fd9e541e98fc
Description: Translation for luci-app-ahcp - Bahasa Melayu (Malay)
Package: luci-i18n-ahcp-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1171
Filename: luci/luci-i18n-ahcp-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1965
MD5Sum: ea0f5689a9fc8ee15ff9c84c5fbaa848
SHA256sum: 7766b9449e5970d366a74b364f2af1ce50a01d0a79a432ed6c079caa17a812dc
Description: Translation for luci-app-ahcp - Norsk (Norwegian)
Package: luci-i18n-ahcp-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1339
Filename: luci/luci-i18n-ahcp-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2149
MD5Sum: bc208b280fc5c392e1ea45fd4505738e
SHA256sum: 4b1aa59ea0c9d4d3c38e09541d477595d9d9f9dda5948d4a108e3b385ef470b6
Description: Translation for luci-app-ahcp - Polski (Polish)
Package: luci-i18n-ahcp-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1363
Filename: luci/luci-i18n-ahcp-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2196
MD5Sum: 2693d272ea55218ae0b8555c8859db6f
SHA256sum: a8b7aac2db8ce805e926c6814ff26c85ba9a01a004962d2a506f5ddb96ffc253
Description: Translation for luci-app-ahcp - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-ahcp-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1366
Filename: luci/luci-i18n-ahcp-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 2186
MD5Sum: 38b05cf4a0af97de9df219159f97a388
SHA256sum: df27de678ebf767750e66a4d35a6574474c120b97fb3933ccc7ebdaee76b5f68
Description: Translation for luci-app-ahcp - Português (Portuguese)
Package: luci-i18n-ahcp-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1227
Filename: luci/luci-i18n-ahcp-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2044
MD5Sum: 80c7b317ae0ae825a9513c30bfe0b4fd
SHA256sum: e2b85ddad1e48304587d59e50429b7281884a86306474614695e599efb0fb56c
Description: Translation for luci-app-ahcp - Română (Romanian)
Package: luci-i18n-ahcp-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1515
Filename: luci/luci-i18n-ahcp-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2344
MD5Sum: 368ab27702d2924d9692100adb5f725e
SHA256sum: c738c70be3a03f112402c795cc7b1e674f44ab0221823d4e51ce96429ca9b144
Description: Translation for luci-app-ahcp - Русский (Russian)
Package: luci-i18n-ahcp-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-ahcp-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 15c6256564b3e72e66d9eec05ba474ff
SHA256sum: 00bba4cc633b412f747157e8d63dec8b3c3f02f55dc71c05214e8590494fe4ef
Description: Translation for luci-app-ahcp - Slovenčina (Slovene)
Package: luci-i18n-ahcp-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 840
Filename: luci/luci-i18n-ahcp-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1643
MD5Sum: e1ef3d9219f77b4e7414df0cdfded0a7
SHA256sum: 9b9b94b18a9b8bf2cf2021894dfd4b85ba59232e560984ad4a5ca221c41799a6
Description: Translation for luci-app-ahcp - Svenska (Swedish)
Package: luci-i18n-ahcp-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1055
Filename: luci/luci-i18n-ahcp-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1858
MD5Sum: ed4d0200b4e05f4c663baedfb4f830c9
SHA256sum: c30c8c9a868d29a563935b420afb23fb0d3e2bc5603fb9167c5ab5b8fc493c4d
Description: Translation for luci-app-ahcp - Türkçe (Turkish)
Package: luci-i18n-ahcp-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1438
Filename: luci/luci-i18n-ahcp-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2277
MD5Sum: b93cabada81b7cee6cbf6532d1872e7c
SHA256sum: cdab11ac247ba058fb0f195a7dcc404166f202afc3db256a1557a68e0e5f2250
Description: Translation for luci-app-ahcp - украї́нська (Ukrainian)
Package: luci-i18n-ahcp-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1399
Filename: luci/luci-i18n-ahcp-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2234
MD5Sum: e1cb80603ab1faf73d3c83d3702596f3
SHA256sum: a23845473dcda8008d930fb76cc2c492e50b9e35678684f0392f11310c0bffa2
Description: Translation for luci-app-ahcp - Tiếng Việt (Vietnamese)
Package: luci-i18n-ahcp-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1313
Filename: luci/luci-i18n-ahcp-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2143
MD5Sum: 544bc9ce16bc8052be2751f102b7b448
SHA256sum: 23e76b08f382d0979b94c43ac3fa2d04a93ef81e0b4d9be039ce9dfd3af870af
Description: Translation for luci-app-ahcp - 普通话 (Chinese)
Package: luci-i18n-ahcp-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1113
Filename: luci/luci-i18n-ahcp-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1944
MD5Sum: cbc581f83d3cafa01182f24b1090bb38
SHA256sum: cb56ed3a0b8dd00ce3397d9fc2589f898eb9f3a1b8c9d1586183db929c784b07
Description: Translation for luci-app-ahcp - 臺灣華語 (Taiwanese)
Package: luci-i18n-asterisk-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-asterisk-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1106
MD5Sum: 4b120c6aaf92cf9af265393a6bea4734
SHA256sum: 2df3f7a0f2c20e87b6382b029426196ef8f255f2d7c6cb271e1a964d11380821
Description: Translation for luci-app-asterisk - Català (Catalan)
Package: luci-i18n-asterisk-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-asterisk-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: ef67d5e73cddf987377d1bef74b52064
SHA256sum: 65c9c1b9604b4134456240a6114ebdb7c32b29fd3b332093565b095b8059746f
Description: Translation for luci-app-asterisk - Čeština (Czech)
Package: luci-i18n-asterisk-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-asterisk-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 617f0820f186dedf2b135fd7cf8656fd
SHA256sum: ecf3b031b9d36394ce83d9374dfdf464be6966a55e6e876850e64cf2f9c8bad4
Description: Translation for luci-app-asterisk - Deutsch (German)
Package: luci-i18n-asterisk-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-asterisk-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: e4503f337eabf53b8d12103696ee42d8
SHA256sum: 8c6125c6ab394dbd7e6d327eace4f0dc4479b398720d19e403d2d40eaad7c6ed
Description: Translation for luci-app-asterisk - Ελληνικά (Greek)
Package: luci-i18n-asterisk-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci/luci-i18n-asterisk-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 51fc71eb6250f2502844b0bf5c5c69c6
SHA256sum: 4db31ef483eac66878a097dfa90b3ed00ddff47e55cf4c2b6b6bbc2b6de026e3
Description: Translation for luci-app-asterisk - English
Package: luci-i18n-asterisk-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-asterisk-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: c0a59b67c28c3e3f39071fec8e605b3b
SHA256sum: c83401e05b373b7d13b3f980cb5ae5ef11b8d6d548def394fb598f361a91da29
Description: Translation for luci-app-asterisk - Español (Spanish)
Package: luci-i18n-asterisk-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-asterisk-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 959c6e9df995d1cbf9037e60e6e2e715
SHA256sum: fe6f711edbe5e8572cefbc1a17fc527fb77383ed2e96b912b97c17fa29180d32
Description: Translation for luci-app-asterisk - Français (French)
Package: luci-i18n-asterisk-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-asterisk-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: af75074acecfe3f7fb033b2886fce3b1
SHA256sum: 9a09620031a4d428bd6cc1763bc99621e7a9017869128f4ee73b0de6cf9c2aed
Description: Translation for luci-app-asterisk - עִבְרִית (Hebrew)
Package: luci-i18n-asterisk-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-asterisk-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 882c76c3f01925a0e8f3df65f510a071
SHA256sum: f74478d4490238ed3ccde613eab791514653b290996f6b265e99870cde966219
Description: Translation for luci-app-asterisk - Magyar (Hungarian)
Package: luci-i18n-asterisk-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 311
Filename: luci/luci-i18n-asterisk-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: d2100eb485316d0bbb5d888efc23d4e5
SHA256sum: 9e2200d0641ffa9e5ecba71def0f75bd2dcf75b3ea089656866822d5caa8748f
Description: Translation for luci-app-asterisk - Italiano (Italian)
Package: luci-i18n-asterisk-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci/luci-i18n-asterisk-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: 27c19e1e3429a5f25b6c6c5723146a7e
SHA256sum: 71b8d6d5a2cc9803b7a3240513aa0d9d7d1321f08545aaa3213f438f68a6a6f7
Description: Translation for luci-app-asterisk - 日本語 (Japanese)
Package: luci-i18n-asterisk-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-asterisk-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 8fdf71f180637213d03173dbc8fea345
SHA256sum: 03238b68a7d8a4d92f36ba6b7014e206f0ecbbfcc4a263c2c00327b0b61c1506
Description: Translation for luci-app-asterisk - Bahasa Melayu (Malay)
Package: luci-i18n-asterisk-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-asterisk-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 4fd61fddeb9944801c735ef60fb74005
SHA256sum: 5d11e960b18c5c359ee293edcd6228743b1e854baab635b0a6bffdfaa1c7be22
Description: Translation for luci-app-asterisk - Norsk (Norwegian)
Package: luci-i18n-asterisk-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 313
Filename: luci/luci-i18n-asterisk-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: d8d400aa6c79dfe7ceae3b175ffb0e55
SHA256sum: a91f9ff94f8cbe45c4de6b1a5d390bdcd67dd35094e65c7b493b73979715badb
Description: Translation for luci-app-asterisk - Polski (Polish)
Package: luci-i18n-asterisk-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 344
Filename: luci/luci-i18n-asterisk-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1161
MD5Sum: bad1d172a12169e85e1b12c7d195e426
SHA256sum: 64ac388d1176ceb18d40c9172fdc19e208ceab5a266126c0e18b8f5939f09a5a
Description: Translation for luci-app-asterisk - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-asterisk-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-asterisk-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: f06a9bcdd682a706f80f9fab50871c0e
SHA256sum: b5d62f243ab6ab445a71768cf910ef39772a198b80da4d4ad5a0876b110e96e2
Description: Translation for luci-app-asterisk - Português (Portuguese)
Package: luci-i18n-asterisk-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-asterisk-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: 123e835e7667799413b555f11fc6e59c
SHA256sum: ddf548244aa1c286cbef35708f78afe2d46f5d91467ad65f1089644af3376f21
Description: Translation for luci-app-asterisk - Română (Romanian)
Package: luci-i18n-asterisk-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci/luci-i18n-asterisk-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: b28bc9ecda9c6549e336fecdb59d6f77
SHA256sum: e1926a7dc2a8570ec9c43f7a8e4c3b70bb7d29aa59638736eaa39990773504e3
Description: Translation for luci-app-asterisk - Русский (Russian)
Package: luci-i18n-asterisk-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-asterisk-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 79d37e531b2d9735fe71cb10dc2fc1e0
SHA256sum: 04e8b3f858a240aac597f628e4e5c74a8a7af11615e982c0cdbdf20378910738
Description: Translation for luci-app-asterisk - Slovenčina (Slovene)
Package: luci-i18n-asterisk-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-asterisk-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 0e0c573647b64e877d0d0cf86a4c3b41
SHA256sum: c496b9df9fe9a93696ef41e559263f484ee3454a37897cf663f3f3be659acf76
Description: Translation for luci-app-asterisk - Svenska (Swedish)
Package: luci-i18n-asterisk-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-asterisk-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 988ff8c7dca017b9a52050da9a5992cd
SHA256sum: f94f7b1077440115a958b870a1a8f7e5c2b1ed20b973ca539c174e7b51a14928
Description: Translation for luci-app-asterisk - Türkçe (Turkish)
Package: luci-i18n-asterisk-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci/luci-i18n-asterisk-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1174
MD5Sum: a8482ea20d7e01ab275c3559c02813cc
SHA256sum: c68becd5f4e8d7c5eb3f6cf61fedcc0de06ebe8763c01f45e2284e470ba0d035
Description: Translation for luci-app-asterisk - украї́нська (Ukrainian)
Package: luci-i18n-asterisk-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-asterisk-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1147
MD5Sum: cb2bf463a13fb7d047d879655374c2a0
SHA256sum: 3a3871e91d42a30b47c97ed16036757cd9abcd9f1d5d43d7bd015cb7f585e088
Description: Translation for luci-app-asterisk - Tiếng Việt (Vietnamese)
Package: luci-i18n-asterisk-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-asterisk-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: b189a01ae82efdb4609a6b92f1519e48
SHA256sum: 96a55a9cef57607476e87d545ad36df106b88a9696fa09b8989384c00a67b4c0
Description: Translation for luci-app-asterisk - 普通话 (Chinese)
Package: luci-i18n-asterisk-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci/luci-i18n-asterisk-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1171
MD5Sum: 697d4c099c29d2ef34e61bacc5ac0f59
SHA256sum: f159a62c92c1b63380dcd083b6de7264924f9c0d72a6f571503995be8c75c4ee
Description: Translation for luci-app-asterisk - 臺灣華語 (Taiwanese)
Package: luci-i18n-base-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 16379
Filename: luci/luci-i18n-base-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 17160
MD5Sum: 70b8e428e706642621a5d6a7ef657e28
SHA256sum: 7615483552c6a5bc5cefda4da49121613a27277be112756f62b808c6d55b3e34
Description: Translation for luci-base - Català (Catalan)
Package: luci-i18n-base-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20729
Filename: luci/luci-i18n-base-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 21546
MD5Sum: c815df42254e9a038342512eb1d867f0
SHA256sum: 64f3332c47658334c7a60917cbb491bf0c87134f9b26ae3e1a826e7f646afae3
Description: Translation for luci-base - Čeština (Czech)
Package: luci-i18n-base-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20353
Filename: luci/luci-i18n-base-de_git-15.079.29361-3e37216-1_all.ipk
Size: 21161
MD5Sum: caa8251d5b825a4661c0995368edf92d
SHA256sum: 3ad35f8b12bf70364613e355bb3855b9b09306b8da15c17b1a60902f54e199a2
Description: Translation for luci-base - Deutsch (German)
Package: luci-i18n-base-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 17336
Filename: luci/luci-i18n-base-el_git-15.079.29361-3e37216-1_all.ipk
Size: 18194
MD5Sum: 16c8c73deb66d46d63abc83d2e3c7b4a
SHA256sum: 4d3421ae46b9a90b4923ba690bf063ea93d8bf78587d8f9f167e42e6c05399fb
Description: Translation for luci-base - Ελληνικά (Greek)
Package: luci-i18n-base-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 725
Filename: luci/luci-i18n-base-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1518
MD5Sum: 985eb39f0c5137f1e48ae4d9e912fbce
SHA256sum: 52baa6211cb29dce0c15fdfb7b6f2e0ffd6e6eff5f1bcd58dee284b198a361a3
Description: Translation for luci-base - English
Package: luci-i18n-base-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20918
Filename: luci/luci-i18n-base-es_git-15.079.29361-3e37216-1_all.ipk
Size: 21741
MD5Sum: 8456ad623bc840af49a2c31ce943c4a4
SHA256sum: ef9d72a9eae3ea0b68dc27d40edd4ca0c766213e06b4bf2c92f851290601ea89
Description: Translation for luci-base - Español (Spanish)
Package: luci-i18n-base-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21091
Filename: luci/luci-i18n-base-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 21919
MD5Sum: 2669d5be8d490626f6fa79effa384a38
SHA256sum: 436f843f0d1c0b56e1f4fe808cbb3f90bcdee1a9f365bf87c55d46b46f789cb2
Description: Translation for luci-base - Français (French)
Package: luci-i18n-base-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 6909
Filename: luci/luci-i18n-base-he_git-15.079.29361-3e37216-1_all.ipk
Size: 7761
MD5Sum: 9a899059ec133dfa5e9c24a5eaa387bb
SHA256sum: 81b84a8d9320224bf1adf8e4a1a030436a25e72a718aeb97484c46d721dd3d2b
Description: Translation for luci-base - עִבְרִית (Hebrew)
Package: luci-i18n-base-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21761
Filename: luci/luci-i18n-base-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 22588
MD5Sum: 266a302403f783c552a16c0b1032971f
SHA256sum: 0414a8c2248899b7cc58e2888bd145656fbea3f0ed2345d0aec2d76aee8e1caa
Description: Translation for luci-base - Magyar (Hungarian)
Package: luci-i18n-base-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 16757
Filename: luci/luci-i18n-base-it_git-15.079.29361-3e37216-1_all.ipk
Size: 17576
MD5Sum: ad2836c162784f2f99fb36540a417244
SHA256sum: 76855bc246860c72918803bc60918469b979e4d1771c0f0b6e15271b1151ee71
Description: Translation for luci-base - Italiano (Italian)
Package: luci-i18n-base-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20419
Filename: luci/luci-i18n-base-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 21218
MD5Sum: 8e621ddbb4cf4c062d222db7ea710b61
SHA256sum: 80d9955c009534b12a39e657b212fc60a156581136af5f338e772a047efb45bc
Description: Translation for luci-base - 日本語 (Japanese)
Package: luci-i18n-base-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 7431
Filename: luci/luci-i18n-base-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 8249
MD5Sum: 7961d246ef28d5f6dddfccf08a7b1672
SHA256sum: c3fc6fb09ecb267fa2aa3c3906b871fd16a1f1e159e7f52bebf4342f6e58aaa4
Description: Translation for luci-base - Bahasa Melayu (Malay)
Package: luci-i18n-base-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20142
Filename: luci/luci-i18n-base-no_git-15.079.29361-3e37216-1_all.ipk
Size: 20951
MD5Sum: 8639051d749f7c30ccbc3cb95f5fc2e0
SHA256sum: aa9f4c4d28ecb55c8ebfb9c41d05bab1d5fc92af4399a4048d905358bce70fb7
Description: Translation for luci-base - Norsk (Norwegian)
Package: luci-i18n-base-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21572
Filename: luci/luci-i18n-base-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 22383
MD5Sum: 7875c549b8d8f2c2d5b3757dd2eaed13
SHA256sum: c2aa42550f401f6d0271a028169cbd7368c086b6d03e88ad12a3db3cef64d628
Description: Translation for luci-base - Polski (Polish)
Package: luci-i18n-base-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21607
Filename: luci/luci-i18n-base-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 22454
MD5Sum: 4950d132535e9ef8e8775bcc3354dd65
SHA256sum: c3b0aaefe6c81d8767c71a3f296c96b1a218825e8bc7024bda217a9b87ab0a6b
Description: Translation for luci-base - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-base-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 18739
Filename: luci/luci-i18n-base-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 19522
MD5Sum: 165c8b63b3d2401ced640f19ae85ff16
SHA256sum: c04efdc3ca288e5eb0df6de405c1ecd1f01e3411708c2eaaf760ebaccd6cafab
Description: Translation for luci-base - Português (Portuguese)
Package: luci-i18n-base-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 10443
Filename: luci/luci-i18n-base-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 11234
MD5Sum: 0a68f746f6700bb75a383a4a9d66dbb5
SHA256sum: 952a2cd43a3bb927b0118b8f225bc964cd5fb5bf01d2c9a1836bd099f90e5bcf
Description: Translation for luci-base - Română (Romanian)
Package: luci-i18n-base-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 24316
Filename: luci/luci-i18n-base-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 25139
MD5Sum: d067913efef3c83476964c6310672322
SHA256sum: a1572b0aacccad21740ab02a13a1d14b5de4de675335003719ad4aed20e15a73
Description: Translation for luci-base - Русский (Russian)
Package: luci-i18n-base-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-base-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 59ccfef1573b76f8e2baac14d0a7cb74
SHA256sum: ac59d727b0455f0cac5addbd17f409e3fae3728e40c764359f81979b1efa634b
Description: Translation for luci-base - Slovenčina (Slovene)
Package: luci-i18n-base-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 829
Filename: luci/luci-i18n-base-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1626
MD5Sum: c72402f55f9ee5c7b046f5ac94cf18fb
SHA256sum: 35afc34a1762788ba7294692381fa971284e68220dbaa3399aa35849a2216fc6
Description: Translation for luci-base - Svenska (Swedish)
Package: luci-i18n-base-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 2795
Filename: luci/luci-i18n-base-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 3575
MD5Sum: 1c6bbacaa75f54e9ab81c5e7ddf6116f
SHA256sum: faf755a0aaff23792f5c693b43ccf1cfba2e8679431036e29da8476cfe86dc91
Description: Translation for luci-base - Türkçe (Turkish)
Package: luci-i18n-base-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 24791
Filename: luci/luci-i18n-base-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 25627
MD5Sum: fcc7d7b73600eba88558ab75aa5a587f
SHA256sum: ae4a2f7c69e955e81608ad1d01f701362fc8ed179fa38485a0594cea1383f46b
Description: Translation for luci-base - украї́нська (Ukrainian)
Package: luci-i18n-base-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 6498
Filename: luci/luci-i18n-base-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 7345
MD5Sum: 7c4221773c777e6cbe4158c1561362d7
SHA256sum: 936c357be29a684d5b4af84b6e5a027b85673a801d26d2637e7670464f27f608
Description: Translation for luci-base - Tiếng Việt (Vietnamese)
Package: luci-i18n-base-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 19468
Filename: luci/luci-i18n-base-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 20312
MD5Sum: 8ecd6e2ccb0ec17dd665a75ecfb0dffe
SHA256sum: 509e37cf37e037d025846c75c99a16f828fefe46eb03c271a3dfc6122f6387c2
Description: Translation for luci-base - 普通话 (Chinese)
Package: luci-i18n-base-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21357
Filename: luci/luci-i18n-base-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 22160
MD5Sum: 8bb6424f6edb737f5c5bfeca8e277154
SHA256sum: 0a00e0aa52507764bc3e3e9189e6e95c75842fa025cc79026bd710f0dff6f080
Description: Translation for luci-base - 臺灣華語 (Taiwanese)
Package: luci-i18n-commands-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1165
Filename: luci/luci-i18n-commands-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1970
MD5Sum: 1567d05b02d73ad9841e029404b59a5b
SHA256sum: 5922036c1bc2a46f324a148b2ca37076f1dbefc2856a26d2676d7db07d196238
Description: Translation for luci-app-commands - Català (Catalan)
Package: luci-i18n-commands-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1163
Filename: luci/luci-i18n-commands-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1979
MD5Sum: a17c5c4c8afd41177782a5c3620cd030
SHA256sum: 897b99d5a40e984d8a40651cdeadb94eb9827c4c6bbc5b1fa622cf7ba5551b6d
Description: Translation for luci-app-commands - Čeština (Czech)
Package: luci-i18n-commands-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1186
Filename: luci/luci-i18n-commands-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1982
MD5Sum: 39905ee86bbfaba5ea1aa86854a8a69a
SHA256sum: be35708e842b8ff310c92d79b98fb3df1586601df81357ed1f428b6bd14df44a
Description: Translation for luci-app-commands - Deutsch (German)
Package: luci-i18n-commands-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-commands-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: e8a1fc2e36dd125de346d3cb16a57c87
SHA256sum: c88361c3266b13ce1e04cc4338476eba876c5350b515329f4dd58256509df020
Description: Translation for luci-app-commands - Ελληνικά (Greek)
Package: luci-i18n-commands-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci/luci-i18n-commands-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1089
MD5Sum: 419ac4319d9f0918195c7d0187e30d62
SHA256sum: 071e71ae9930e91c857379f17959440e9604362b140ad868adf56202e21c30e4
Description: Translation for luci-app-commands - English
Package: luci-i18n-commands-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1112
Filename: luci/luci-i18n-commands-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1923
MD5Sum: c0087caa783ab2189f2101cdb965d96c
SHA256sum: 8bd4fe9cef0b84e9c1b582db46a72e77d237490a53f1a0aa9d20cda12c7762af
Description: Translation for luci-app-commands - Español (Spanish)
Package: luci-i18n-commands-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1162
Filename: luci/luci-i18n-commands-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1972
MD5Sum: 0f44d0e6e5eca59375f5b64b40adb180
SHA256sum: dd275f721dc36e7f849d13573844b2cef41287c53f1a4a31bdcdfed46835e1a5
Description: Translation for luci-app-commands - Français (French)
Package: luci-i18n-commands-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-commands-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: 01a3b28a3cbd904d1e13948c94ffbb4d
SHA256sum: 78ac1d736594f1f54ccae2041f02621ee09109b9011617625c03cef30cb08a78
Description: Translation for luci-app-commands - עִבְרִית (Hebrew)
Package: luci-i18n-commands-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1168
Filename: luci/luci-i18n-commands-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1978
MD5Sum: 3d0f126968bfe10711d5911e3370dc99
SHA256sum: dc30386a42e5008d881272dfc6d084ee103b2bb2bc405003128ae2dc0adcd168
Description: Translation for luci-app-commands - Magyar (Hungarian)
Package: luci-i18n-commands-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1138
Filename: luci/luci-i18n-commands-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1936
MD5Sum: 6cc860b42a244bdc963d2396d0989682
SHA256sum: 2c8851cbb53d5a794bf47c256c10384ba6a2265364001efbd45e491ec944403e
Description: Translation for luci-app-commands - Italiano (Italian)
Package: luci-i18n-commands-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1133
Filename: luci/luci-i18n-commands-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1952
MD5Sum: 70d70c4e8904ec90fb7cd59251c44974
SHA256sum: 03c8f05b76342880e55f1bc74137b651655ee7342706f8d511b1fde2de34c785
Description: Translation for luci-app-commands - 日本語 (Japanese)
Package: luci-i18n-commands-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-commands-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 946d6ed5b013f7a11ee69675ba9932f8
SHA256sum: b7a7df9827fcd7964491590addaf552cb931c3ecc5eec1cfdfe02711c8f160b3
Description: Translation for luci-app-commands - Bahasa Melayu (Malay)
Package: luci-i18n-commands-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1101
Filename: luci/luci-i18n-commands-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1912
MD5Sum: 66a8c92cb0e90100ee0f2519817b8d41
SHA256sum: e0db5d1a5b48b8052941cd83addf9b9e8fca338998e86764a8fb711efad089b4
Description: Translation for luci-app-commands - Norsk (Norwegian)
Package: luci-i18n-commands-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1130
Filename: luci/luci-i18n-commands-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1933
MD5Sum: 3af1a6c0a83fb2b4f2f786db520f742d
SHA256sum: 81ee0bd5e35b17a833e19030898a726ca0f62ee74f3b0da137970262e482472c
Description: Translation for luci-app-commands - Polski (Polish)
Package: luci-i18n-commands-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1194
Filename: luci/luci-i18n-commands-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2022
MD5Sum: 22933f124ea3cfe8e2c449c234e0c5e2
SHA256sum: ca0380017ff707469d64641a32905bb00100b762625e48fc01b46b89565fc100
Description: Translation for luci-app-commands - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-commands-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1149
Filename: luci/luci-i18n-commands-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1958
MD5Sum: bcd63913382c999e55a1bb8b6a5df858
SHA256sum: 53c78d8756e3494b52a95ff315232787be45b9a8ef0ec2ebf5e37920d0e12782
Description: Translation for luci-app-commands - Português (Portuguese)
Package: luci-i18n-commands-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1116
Filename: luci/luci-i18n-commands-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1929
MD5Sum: 01a98bf20756ad34fd284c1b37571c82
SHA256sum: 1239835b2d19a5fe17b82b580ab452d58069fd5dbb774403fdc0effae1e998c7
Description: Translation for luci-app-commands - Română (Romanian)
Package: luci-i18n-commands-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1342
Filename: luci/luci-i18n-commands-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2175
MD5Sum: fa91e5471cef7e1320f700fee2dd3a3e
SHA256sum: 1ce8151c8d2e703798ff4ed70da7ecbec452d2a641907decbceb5f18fc6a57d6
Description: Translation for luci-app-commands - Русский (Russian)
Package: luci-i18n-commands-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-commands-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: 3ec8e229a939271eb57887d51d7f7ef7
SHA256sum: 4b193d545b1c0827f98e10bf9703d0781a822a3ac7010c63624eba5ddaa52a45
Description: Translation for luci-app-commands - Slovenčina (Slovene)
Package: luci-i18n-commands-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-commands-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: d84983ee33ea3a34ab96133644a5b605
SHA256sum: f9c039eacc9da2418c9e53438d1f6249a034757724f7b29ba3f5a3c52138be43
Description: Translation for luci-app-commands - Svenska (Swedish)
Package: luci-i18n-commands-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-commands-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: f4781483fd0d307782582420b10f6571
SHA256sum: 7029c6e5ac21ce60a4f1435341616ef6174d65857633f5aba97f246b34274cfa
Description: Translation for luci-app-commands - Türkçe (Turkish)
Package: luci-i18n-commands-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 975
Filename: luci/luci-i18n-commands-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1813
MD5Sum: f324e159cf5b1fe05f82bca18dc3ccd8
SHA256sum: cc49e02d258a883e0004570b4bff1b8001982933f0492b6d39add20f7eaf1080
Description: Translation for luci-app-commands - украї́нська (Ukrainian)
Package: luci-i18n-commands-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-commands-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1143
MD5Sum: e0348a50d16082b1c74bcffa821e4a28
SHA256sum: 80694f630945edc150c86e195c50e79d3b7852272bfd2db421ef7be231011936
Description: Translation for luci-app-commands - Tiếng Việt (Vietnamese)
Package: luci-i18n-commands-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1136
Filename: luci/luci-i18n-commands-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1957
MD5Sum: 0ded6925469c35357df14fb0a826b580
SHA256sum: 58eefbbd54c332d8cec0df728f4523c1de8bafe155b32544870041feb653f20a
Description: Translation for luci-app-commands - 普通话 (Chinese)
Package: luci-i18n-commands-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1124
Filename: luci/luci-i18n-commands-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1952
MD5Sum: a6ae0c4f27ae2d8a536ddaa7c9871311
SHA256sum: 88f3d2529dc0cc77949a0f801e5fa7ed0c241687c493694907a0e1143fd5e79b
Description: Translation for luci-app-commands - 臺灣華語 (Taiwanese)
Package: luci-i18n-ddns-ca
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 871
Filename: luci/luci-i18n-ddns-ca_2.2.2-1_all.ipk
Size: 1722
MD5Sum: 1f49bd1f4bdc31ca9c177a797654c64c
SHA256sum: b74e2192b6bed473be93a30af73fe353fa2e0a54bf89f9f834ab62a833d548d1
Description: Translation for luci-app-ddns - Català (Catalan)
Package: luci-i18n-ddns-cs
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 891
Filename: luci/luci-i18n-ddns-cs_2.2.2-1_all.ipk
Size: 1750
MD5Sum: 9d070000d1fc8a31e44a38010e38d258
SHA256sum: 1a3deb3bb3c7773ec18c7557a198dd53dbc916d5cf4109e5f62640aeea6dfa97
Description: Translation for luci-app-ddns - Čeština (Czech)
Package: luci-i18n-ddns-de
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 6312
Filename: luci/luci-i18n-ddns-de_2.2.2-1_all.ipk
Size: 7186
MD5Sum: f0a5c9f0579aa456e133b2076894df1c
SHA256sum: 11872f1cea76c6204e7571c99a4453aa3e215e506ec037bff0f7b3e2648be22c
Description: Translation for luci-app-ddns - Deutsch (German)
Package: luci-i18n-ddns-el
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 1093
Filename: luci/luci-i18n-ddns-el_2.2.2-1_all.ipk
Size: 1960
MD5Sum: 26d150d65b1373336e742d84137f81b2
SHA256sum: 8eab899b8ca14a2f6030d14f5ceaedff8e0a2db347f3b870ff46c9dd15bf1090
Description: Translation for luci-app-ddns - Ελληνικά (Greek)
Package: luci-i18n-ddns-en
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 303
Filename: luci/luci-i18n-ddns-en_2.2.2-1_all.ipk
Size: 1129
MD5Sum: f69136ef51b36532b7a3d8d70b78088f
SHA256sum: b1dbe28f2d83eab414806d6fe0718bab27b3ba765649209ada31aef1a5192ca5
Description: Translation for luci-app-ddns - English
Package: luci-i18n-ddns-es
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 863
Filename: luci/luci-i18n-ddns-es_2.2.2-1_all.ipk
Size: 1718
MD5Sum: 8f893ab329d2b47083a6c47a08da396d
SHA256sum: 32e6f9de31a2e470ef5b061856f97953386e6585a214e890d7bd26b85c87ff25
Description: Translation for luci-app-ddns - Español (Spanish)
Package: luci-i18n-ddns-fr
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 840
Filename: luci/luci-i18n-ddns-fr_2.2.2-1_all.ipk
Size: 1693
MD5Sum: a27f486fc247faa315670b33993c525b
SHA256sum: abf4a287addec3be45af6fc897aabe7998b51f1d9de03dff10e59b685ffef686
Description: Translation for luci-app-ddns - Français (French)
Package: luci-i18n-ddns-he
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 919
Filename: luci/luci-i18n-ddns-he_2.2.2-1_all.ipk
Size: 1780
MD5Sum: 1b611dc27eff26ee6debe0d4f9f4d51d
SHA256sum: 1639d7acb0cf07dc36c8fe903c7bdc7105f13cba7c20beab20a4ac637e5aeab2
Description: Translation for luci-app-ddns - עִבְרִית (Hebrew)
Package: luci-i18n-ddns-hu
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 944
Filename: luci/luci-i18n-ddns-hu_2.2.2-1_all.ipk
Size: 1791
MD5Sum: 2ba9289f17c7b80a081bffe65ca95838
SHA256sum: bcdbd2b48788990db29583b100369e24682616e12c80e7995e1377bb04c60dd5
Description: Translation for luci-app-ddns - Magyar (Hungarian)
Package: luci-i18n-ddns-it
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 853
Filename: luci/luci-i18n-ddns-it_2.2.2-1_all.ipk
Size: 1694
MD5Sum: 0c4fe232cfa40425fe8344e75416e70a
SHA256sum: 86d388715a5c7fdb7bbb38fc6667512897a96b0d40b27f0a38ad94d35c515da2
Description: Translation for luci-app-ddns - Italiano (Italian)
Package: luci-i18n-ddns-ja
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 995
Filename: luci/luci-i18n-ddns-ja_2.2.2-1_all.ipk
Size: 1854
MD5Sum: 44951268bfa80972de14320799093055
SHA256sum: bafd25cb74243c7004603a1dff1ba2029ce66c1afed60057bf7c8b6fa7594b80
Description: Translation for luci-app-ddns - 日本語 (Japanese)
Package: luci-i18n-ddns-ms
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-ddns-ms_2.2.2-1_all.ipk
Size: 1151
MD5Sum: 475ad19a2caae31ede16acfd187e421b
SHA256sum: ffef8c9120b7cbe6bbf9c35e246ad5d061a988f911ea8be1ff04da6fbc468e23
Description: Translation for luci-app-ddns - Bahasa Melayu (Malay)
Package: luci-i18n-ddns-no
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 891
Filename: luci/luci-i18n-ddns-no_2.2.2-1_all.ipk
Size: 1731
MD5Sum: ac69b51e3e91f8c0d287c09428e190ed
SHA256sum: b8719d6cb3cf7077837202fb8dc8385a7b4400df3ac3125de99dc535fcac1783
Description: Translation for luci-app-ddns - Norsk (Norwegian)
Package: luci-i18n-ddns-pl
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 918
Filename: luci/luci-i18n-ddns-pl_2.2.2-1_all.ipk
Size: 1761
MD5Sum: fe500086d9559367c3612b8183cecb29
SHA256sum: 374183fa9ade7ed8c6cea19fe2d3e9b5cbc61f1bb4ece096aeb31b0961afe444
Description: Translation for luci-app-ddns - Polski (Polish)
Package: luci-i18n-ddns-pt-br
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 895
Filename: luci/luci-i18n-ddns-pt-br_2.2.2-1_all.ipk
Size: 1771
MD5Sum: cc0f9d5bbe5c8cf1c4de006c94eae697
SHA256sum: 4fd6433956f7b5e23e049a24d6a09fc94b2eaa1c271eaf29d50c187adda7888d
Description: Translation for luci-app-ddns - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-ddns-pt
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 850
Filename: luci/luci-i18n-ddns-pt_2.2.2-1_all.ipk
Size: 1707
MD5Sum: b9575cec993ed5871c9505dc525d45ce
SHA256sum: 627101baa55ded5baae9f5d2173cb140dc7a60cb006566377b74b6480dbaca07
Description: Translation for luci-app-ddns - Português (Portuguese)
Package: luci-i18n-ddns-ro
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 912
Filename: luci/luci-i18n-ddns-ro_2.2.2-1_all.ipk
Size: 1759
MD5Sum: c966db01842d8004e165a8eaa19adbb4
SHA256sum: 073ddfd099d939adfd137ef30803e5eaa6e16d8735cced6bdac4a52154f2d745
Description: Translation for luci-app-ddns - Română (Romanian)
Package: luci-i18n-ddns-ru
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 1015
Filename: luci/luci-i18n-ddns-ru_2.2.2-1_all.ipk
Size: 1872
MD5Sum: 610f76026cdb44cc40f11e5d19777936
SHA256sum: 785c1d3092ae184a2c7d376f8d73209a3d94652323e7156d455e80f7a6d9d973
Description: Translation for luci-app-ddns - Русский (Russian)
Package: luci-i18n-ddns-sk
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-ddns-sk_2.2.2-1_all.ipk
Size: 1158
MD5Sum: 84261b62975f544b398826463c5d1607
SHA256sum: 82d3126e097de8c310887c9cf22e7e8531ec05816a5057653fa29ed586a1cc1f
Description: Translation for luci-app-ddns - Slovenčina (Slovene)
Package: luci-i18n-ddns-sv
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 314
Filename: luci/luci-i18n-ddns-sv_2.2.2-1_all.ipk
Size: 1146
MD5Sum: ee24937110de5f9037f3f28a6c5227ef
SHA256sum: a3cd5bcb7f8a3d7768d206f9c545471ea7123425357aad1740b8bb8d24cf4035
Description: Translation for luci-app-ddns - Svenska (Swedish)
Package: luci-i18n-ddns-tr
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 557
Filename: luci/luci-i18n-ddns-tr_2.2.2-1_all.ipk
Size: 1403
MD5Sum: c46486b2ce4a617ab3fac2fff46c4006
SHA256sum: de34a09195ca58928adc6c8b69731f96fa380cc2417c32ab37966ed7b3b897f8
Description: Translation for luci-app-ddns - Türkçe (Turkish)
Package: luci-i18n-ddns-uk
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 1047
Filename: luci/luci-i18n-ddns-uk_2.2.2-1_all.ipk
Size: 1921
MD5Sum: a67f027e2059ac8540a4695b7bc94c9b
SHA256sum: 2d0cc9466154e86d3da899b7561d7a5358c7c8fdd89ac201dd2bbfc8e662acdd
Description: Translation for luci-app-ddns - украї́нська (Ukrainian)
Package: luci-i18n-ddns-vi
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 722
Filename: luci/luci-i18n-ddns-vi_2.2.2-1_all.ipk
Size: 1577
MD5Sum: 657d89c7d45505723ac42f5c62831b4f
SHA256sum: 6cc25ae5b7959f527ebde40d3867a611b673fd4a3c23badfeec9c00fa2f0a150
Description: Translation for luci-app-ddns - Tiếng Việt (Vietnamese)
Package: luci-i18n-ddns-zh-cn
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 922
Filename: luci/luci-i18n-ddns-zh-cn_2.2.2-1_all.ipk
Size: 1787
MD5Sum: a7a406611c6d0c57be6196af247bc61e
SHA256sum: b066c52533c27c166a1076e4e6d13dd87c2edd0411e7583e22bce093d600cbe5
Description: Translation for luci-app-ddns - 普通话 (Chinese)
Package: luci-i18n-ddns-zh-tw
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 931
Filename: luci/luci-i18n-ddns-zh-tw_2.2.2-1_all.ipk
Size: 1794
MD5Sum: 1e558ac98cc8021eeafa9188ff720554
SHA256sum: 4c689e7cb3612dec84dd65f793d0c6295da53955fa7ec5a8cafa97c03553d856
Description: Translation for luci-app-ddns - 臺灣華語 (Taiwanese)
Package: luci-i18n-diag-core-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 421
Filename: luci/luci-i18n-diag-core-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1220
MD5Sum: b6288fca5a78e22264d1802711b11f06
SHA256sum: 15185c89df6f5510cc6652e0de63ac77a2f6eef457ee9a3608754e8282b165e2
Description: Translation for luci-app-diag-core - Català (Catalan)
Package: luci-i18n-diag-core-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 708
Filename: luci/luci-i18n-diag-core-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1512
MD5Sum: f6da99ce43b52d2ed0543b014c04a5cf
SHA256sum: 5ae9a7ef879e8f797952aedaa76573f9cda6159c766bc78a309d180ce3151771
Description: Translation for luci-app-diag-core - Čeština (Czech)
Package: luci-i18n-diag-core-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 650
Filename: luci/luci-i18n-diag-core-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1451
MD5Sum: ae485d838b0749fb2d4db2faa17ffa83
SHA256sum: bfec81e83b29ff80d1c1c9dc0dd8b5d171aecd0e7881de83517613cb4930bd67
Description: Translation for luci-app-diag-core - Deutsch (German)
Package: luci-i18n-diag-core-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 705
Filename: luci/luci-i18n-diag-core-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1525
MD5Sum: 85575fabdcd0cf8da6e5caeb225d70ad
SHA256sum: 441dd528b2649566c34914c4007710448ded06fefd3b39af6d0f05358050221e
Description: Translation for luci-app-diag-core - Ελληνικά (Greek)
Package: luci-i18n-diag-core-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci/luci-i18n-diag-core-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: f83a6abaa16258485d397f9765e22bec
SHA256sum: b48ab118d81f61cc48c7273f124c202670098ef5478166b64063e9522b1bb0ef
Description: Translation for luci-app-diag-core - English
Package: luci-i18n-diag-core-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 649
Filename: luci/luci-i18n-diag-core-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1451
MD5Sum: a0bd139b4df1caf6b67e9681020905ec
SHA256sum: 732d973259c435f6392c5992144efd3ab63cc6ebcf5f6238bc6d64fa387b425f
Description: Translation for luci-app-diag-core - Español (Spanish)
Package: luci-i18n-diag-core-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 661
Filename: luci/luci-i18n-diag-core-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1465
MD5Sum: ce12babe903c6f8934e91d2f4be3b0e4
SHA256sum: a90685e79305a9e610f3c83f8708a09868544213f9cfd281820b53e5416d1de6
Description: Translation for luci-app-diag-core - Français (French)
Package: luci-i18n-diag-core-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci/luci-i18n-diag-core-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1156
MD5Sum: e69a98a207f6ea7a01e4d49d1071161b
SHA256sum: e16a87e5ca2b41a5692045bf2c0c63023da5639294c11eb9d57d5f7b85174ff7
Description: Translation for luci-app-diag-core - עִבְרִית (Hebrew)
Package: luci-i18n-diag-core-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 707
Filename: luci/luci-i18n-diag-core-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1509
MD5Sum: 7041a7d0bb42de33789fa385b6544d0b
SHA256sum: 5a4aca83adfc5d87f012c481915fea7498c84f071f63c1f1a50ed3a43c84feda
Description: Translation for luci-app-diag-core - Magyar (Hungarian)
Package: luci-i18n-diag-core-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 664
Filename: luci/luci-i18n-diag-core-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1459
MD5Sum: 2fa1cbe026719235c1865133bedcea70
SHA256sum: 978b352d0324823a3e83715ae287d7548ff756bae7232136999b73f6b62ad120
Description: Translation for luci-app-diag-core - Italiano (Italian)
Package: luci-i18n-diag-core-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 413
Filename: luci/luci-i18n-diag-core-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1223
MD5Sum: 437eb4c78dd6e04940fe86165ce90d9f
SHA256sum: d4067b1157fc7281b618516fcedefb4d65ccd94729a7f4e0b0b65758c04dec2e
Description: Translation for luci-app-diag-core - 日本語 (Japanese)
Package: luci-i18n-diag-core-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-diag-core-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 8a05b86b9e518b263790e4f783e8cfef
SHA256sum: fd8182826291de8ecf193fc0da0590cac51e20f26aaa320db15da26096a40773
Description: Translation for luci-app-diag-core - Bahasa Melayu (Malay)
Package: luci-i18n-diag-core-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 656
Filename: luci/luci-i18n-diag-core-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1458
MD5Sum: 9ca533bb6bf97dd7e4014caa11aadc98
SHA256sum: 99faa9dcd8ce26244a82ce4c215c5138a7fbf36eaf484e4002e9f77eb5a26d95
Description: Translation for luci-app-diag-core - Norsk (Norwegian)
Package: luci-i18n-diag-core-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 673
Filename: luci/luci-i18n-diag-core-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1472
MD5Sum: 4d83cf600d5a6eb6487e6c7487f3b762
SHA256sum: ed9edd394adca61bb22813ca3ec69659555a700ab5d84308d40e8a8a4c8f8995
Description: Translation for luci-app-diag-core - Polski (Polish)
Package: luci-i18n-diag-core-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 691
Filename: luci/luci-i18n-diag-core-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1508
MD5Sum: e9571758ac5d19b35dcc33abae013b2e
SHA256sum: 78d8fd0fab403988d8e27a5e1feabccdd0ffc74552cdbadbdb846b7ed8160248
Description: Translation for luci-app-diag-core - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-diag-core-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 657
Filename: luci/luci-i18n-diag-core-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1465
MD5Sum: f96f10a517c9c43ae2658aaeb28b2c33
SHA256sum: f8861ea11feb4e907cd7cba9900a3da8d2b73af4b79485f2aca909e05636aeb4
Description: Translation for luci-app-diag-core - Português (Portuguese)
Package: luci-i18n-diag-core-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 676
Filename: luci/luci-i18n-diag-core-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1478
MD5Sum: 3eb6f51beb6ad423722f093d7cb2881b
SHA256sum: bcd9adc7a24215850336a14ab2664e5fd400ca9594f049f8ddb7b6b079460857
Description: Translation for luci-app-diag-core - Română (Romanian)
Package: luci-i18n-diag-core-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 775
Filename: luci/luci-i18n-diag-core-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1589
MD5Sum: d6cb04255251d83c6ee2a070a989dbf7
SHA256sum: 3a53490aea98217c589ad51b48900a1c4a4690a33c9f4cdeb608f57417c7bec8
Description: Translation for luci-app-diag-core - Русский (Russian)
Package: luci-i18n-diag-core-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-diag-core-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: adc6a939aa67ae4d2d06e68dfd73a226
SHA256sum: 97376cf29ad65f1f1e63b6d90f29697337ceaf96ca8d46d89a7cf9a5cc3851ed
Description: Translation for luci-app-diag-core - Slovenčina (Slovene)
Package: luci-i18n-diag-core-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-diag-core-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: fb3924b9623da106ae9864f24ef870f3
SHA256sum: b2127506b4cc7b01e1eef223dc7d0c80af7560b4b36ba1c168c7e1e2a14cb73f
Description: Translation for luci-app-diag-core - Svenska (Swedish)
Package: luci-i18n-diag-core-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-diag-core-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: 85bf7308805409511f4728a97417d3e1
SHA256sum: e2b31f656033914ba130d664f196f720bff8ba0c7c8d6d7359813c4536aa6cb3
Description: Translation for luci-app-diag-core - Türkçe (Turkish)
Package: luci-i18n-diag-core-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 818
Filename: luci/luci-i18n-diag-core-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1649
MD5Sum: cdceeeeab12e20348b3386ffd0e65636
SHA256sum: 8e62971982e6fbfec1abc0016633a3036a3a3921a4ba0c46f68be344b7f40c91
Description: Translation for luci-app-diag-core - украї́нська (Ukrainian)
Package: luci-i18n-diag-core-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci/luci-i18n-diag-core-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1146
MD5Sum: e7cd03e81636a11f007b2bc8cb506c82
SHA256sum: bd0a1682ace1157910cfbf41700822c4ae26ee913e5cf8f828a3c3dce69253a1
Description: Translation for luci-app-diag-core - Tiếng Việt (Vietnamese)
Package: luci-i18n-diag-core-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 670
Filename: luci/luci-i18n-diag-core-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1481
MD5Sum: 7e46eb5df6d4896ba2565519513ec659
SHA256sum: 1350274023dfa045d824982a3eee3ddf66679d58392c7cafcd1fb010c21a52c9
Description: Translation for luci-app-diag-core - 普通话 (Chinese)
Package: luci-i18n-diag-core-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 702
Filename: luci/luci-i18n-diag-core-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1525
MD5Sum: 6d03a8b676496a602ced08fd92480f29
SHA256sum: 50b3dfbc26ef5ca74cd2f5168f8fd152b0e367a1505fcc4868626e034c0fecca
Description: Translation for luci-app-diag-core - 臺灣華語 (Taiwanese)
Package: luci-i18n-diag-devinfo-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 791
Filename: luci/luci-i18n-diag-devinfo-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1598
MD5Sum: bd73577f6293f1b0e463ff3fd76123da
SHA256sum: cf772d6e4d690c1c42ce0e0eccda52e5b24d3976e4d38a4503d607a411befa39
Description: Translation for luci-app-diag-devinfo - Català (Catalan)
Package: luci-i18n-diag-devinfo-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1610
Filename: luci/luci-i18n-diag-devinfo-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2435
MD5Sum: 75eefc614f0534959b75ee039daaaac8
SHA256sum: 01c0ae96f9ad2509800d208e54e0659f7662e933b9a1d645d86aac21813f1743
Description: Translation for luci-app-diag-devinfo - Čeština (Czech)
Package: luci-i18n-diag-devinfo-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2118
Filename: luci/luci-i18n-diag-devinfo-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2930
MD5Sum: 75a23c398ff0c473a196e896e72f1433
SHA256sum: 3461c11587c960e4e6a06a03ce13d597ac398afe844610049f1e28755c369520
Description: Translation for luci-app-diag-devinfo - Deutsch (German)
Package: luci-i18n-diag-devinfo-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1303
Filename: luci/luci-i18n-diag-devinfo-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2128
MD5Sum: d411f253c203cf25dd32f59bfe862a00
SHA256sum: 8ea5077bbe877ca89e431c8e4a33702d6259c1eccc36ffd530ceb4066febf5ac
Description: Translation for luci-app-diag-devinfo - Ελληνικά (Greek)
Package: luci-i18n-diag-devinfo-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci/luci-i18n-diag-devinfo-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 45cad27ef6d95eae45ffdb5579727f16
SHA256sum: b945269f4efddc1c4c800353e4e70806a9d9f82e05e120fc7bb4c38f0ff73f1e
Description: Translation for luci-app-diag-devinfo - English
Package: luci-i18n-diag-devinfo-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2098
Filename: luci/luci-i18n-diag-devinfo-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2921
MD5Sum: dd21a4b914032a56c207c428ffbbf98f
SHA256sum: 8c626466c5e6cc3385f43e18e5d9bb9331a2a025443a8fbb57ad6e4723bd7723
Description: Translation for luci-app-diag-devinfo - Español (Spanish)
Package: luci-i18n-diag-devinfo-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2100
Filename: luci/luci-i18n-diag-devinfo-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2913
MD5Sum: 47e7d4116ba892dccfe12990cc8a994e
SHA256sum: c0dbbc3cb83ca9de0899a88a3488d9a8bca84e1cc99cca6aa0ce8794145fb55f
Description: Translation for luci-app-diag-devinfo - Français (French)
Package: luci-i18n-diag-devinfo-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci/luci-i18n-diag-devinfo-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1159
MD5Sum: c779c3ee26580d151ca00dc421e8d074
SHA256sum: e13cb934d9d70b6d30cfcff4497d6e540976d08ff489fb461a1d17439e317b5e
Description: Translation for luci-app-diag-devinfo - עִבְרִית (Hebrew)
Package: luci-i18n-diag-devinfo-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2190
Filename: luci/luci-i18n-diag-devinfo-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 3002
MD5Sum: ed6733534e61479439d50d11235efc94
SHA256sum: 34f210a17acd7d8f4ff14307abaa0a62c069953856ea8c3da3564bb3ecaa2af5
Description: Translation for luci-app-diag-devinfo - Magyar (Hungarian)
Package: luci-i18n-diag-devinfo-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2102
Filename: luci/luci-i18n-diag-devinfo-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2909
MD5Sum: c2012c8080e93df5fd3bc55d701c75af
SHA256sum: d3e6d33d26907db0f2eb5b0b48bbdd89215bd01c68910c05d05f654e2f967578
Description: Translation for luci-app-diag-devinfo - Italiano (Italian)
Package: luci-i18n-diag-devinfo-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1076
Filename: luci/luci-i18n-diag-devinfo-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1902
MD5Sum: d6e06576ad60b92058d09cd956287714
SHA256sum: 405f417c9612ea984d20eb37a815e416df933a4490c37a70b76d6aaba646399a
Description: Translation for luci-app-diag-devinfo - 日本語 (Japanese)
Package: luci-i18n-diag-devinfo-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-diag-devinfo-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: b4b5c36e283f8d0d823b12b99c0f19a7
SHA256sum: f7f9ba862e2633acb3a9701000b222cbed150c2cc726b745efa2424b933505c2
Description: Translation for luci-app-diag-devinfo - Bahasa Melayu (Malay)
Package: luci-i18n-diag-devinfo-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2067
Filename: luci/luci-i18n-diag-devinfo-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2883
MD5Sum: c0a3d35e3d8220ca3e24f2de4ecc2262
SHA256sum: dc4a5adb8cbfbcafed2839a33e0a9da18ffa0f21a2d5a266e252a18b86444f7b
Description: Translation for luci-app-diag-devinfo - Norsk (Norwegian)
Package: luci-i18n-diag-devinfo-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2100
Filename: luci/luci-i18n-diag-devinfo-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2913
MD5Sum: 31c63029bbe06aaec28cf105b2e5e84a
SHA256sum: 672b346743d32a7e9efdb381b5b6df65960877d276d8b4d70a48fb2258d8c7c0
Description: Translation for luci-app-diag-devinfo - Polski (Polish)
Package: luci-i18n-diag-devinfo-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2136
Filename: luci/luci-i18n-diag-devinfo-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2975
MD5Sum: 39379a8f100e8a9c33650d59103ba5ff
SHA256sum: 6f49c15c4285ca885d10ce69344c9ed9d367d450bbc3155c7838bcf78896deb4
Description: Translation for luci-app-diag-devinfo - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-diag-devinfo-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 960
Filename: luci/luci-i18n-diag-devinfo-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1775
MD5Sum: 76784de20296ad323ef474d1b6a5e706
SHA256sum: 9fac496400bf3ff0eba1c1ffbc95d2aefee264e4b3034515330485139f6eb2d4
Description: Translation for luci-app-diag-devinfo - Português (Portuguese)
Package: luci-i18n-diag-devinfo-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1183
Filename: luci/luci-i18n-diag-devinfo-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1997
MD5Sum: 0bf416a3fa3272918ebf7c547ea8a952
SHA256sum: 7e03bf96d7e3e4561ae9bc364fd8162733202dc42ea9fcce240fa2ae50de1649
Description: Translation for luci-app-diag-devinfo - Română (Romanian)
Package: luci-i18n-diag-devinfo-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2408
Filename: luci/luci-i18n-diag-devinfo-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3221
MD5Sum: c54b1e342421a0a1cfec1fef7ffd91e7
SHA256sum: 644c3a4de1b8db00f7bec4c73683c50af997d7acd163f341f76b252229a3499b
Description: Translation for luci-app-diag-devinfo - Русский (Russian)
Package: luci-i18n-diag-devinfo-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-diag-devinfo-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1125
MD5Sum: 346baf4c5e0960853924db3173bc91a6
SHA256sum: fcc02cb43c01ce0e10190e3c9c50f274241bf2acb0ec7bf8c88001d9fcd0d596
Description: Translation for luci-app-diag-devinfo - Slovenčina (Slovene)
Package: luci-i18n-diag-devinfo-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-diag-devinfo-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: d5756d30ddc91f88dba1a20da4336f15
SHA256sum: 0da8c8ca6fa484c4761811f24209c17ad11d4fcef996bb58df10fbac86e9c05f
Description: Translation for luci-app-diag-devinfo - Svenska (Swedish)
Package: luci-i18n-diag-devinfo-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-diag-devinfo-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 1b9e45b723d89ec2388bd41442adb8ae
SHA256sum: fdbe1f1737aaa628f8998b90e9411b9fa9d4f92c897862262f34cc38fc88ecf2
Description: Translation for luci-app-diag-devinfo - Türkçe (Turkish)
Package: luci-i18n-diag-devinfo-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1330
Filename: luci/luci-i18n-diag-devinfo-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2177
MD5Sum: 266a1419d9a8a57985a9f009d1818afa
SHA256sum: ed19a2de151271e59e6ffc71ebeded0a789cfa7eb562be7e89a7d5945970eb71
Description: Translation for luci-app-diag-devinfo - украї́нська (Ukrainian)
Package: luci-i18n-diag-devinfo-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci/luci-i18n-diag-devinfo-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: 2e7aad846d267554bdf1a84542413065
SHA256sum: b19ba12aabd3fb86a200859f4245311030c7da29dd7ea604cf424c7e341b69ef
Description: Translation for luci-app-diag-devinfo - Tiếng Việt (Vietnamese)
Package: luci-i18n-diag-devinfo-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2044
Filename: luci/luci-i18n-diag-devinfo-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2879
MD5Sum: 68072a03d46e0e640ae0bd6bd30fcd60
SHA256sum: fbf4a7515034774feb608ddc97dd83a6bb2c4fa67a17341d10d97e0d2c580a25
Description: Translation for luci-app-diag-devinfo - 普通话 (Chinese)
Package: luci-i18n-diag-devinfo-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2076
Filename: luci/luci-i18n-diag-devinfo-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2918
MD5Sum: eab1d6bae49e88810b72887e292b8a6b
SHA256sum: 86b41c71767d83af29f2e6e51a1f585fd870c7d9cc59b85337eac6d3690e4989
Description: Translation for luci-app-diag-devinfo - 臺灣華語 (Taiwanese)
Package: luci-i18n-firewall-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4060
Filename: luci/luci-i18n-firewall-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 4842
MD5Sum: ef5e9a4ae08d53edb45586948b1888fc
SHA256sum: 8efbb18d4b4ea8dc25176a505b73af0ca66b6905f47026af0607e6ecfc5a824b
Description: Translation for luci-app-firewall - Català (Catalan)
Package: luci-i18n-firewall-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4206
Filename: luci/luci-i18n-firewall-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 4993
MD5Sum: 550d9d179138481a706491968f1a573b
SHA256sum: 7c6d8b5243a5b41bcc47e8f6d4b9a9d23140a2ec95fec65ef5395ee0396220b4
Description: Translation for luci-app-firewall - Čeština (Czech)
Package: luci-i18n-firewall-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4128
Filename: luci/luci-i18n-firewall-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4905
MD5Sum: d1c8fe54692969f92351fb966df8eb1b
SHA256sum: cd824a24d626b8a4beb113fe3491d2028a262d578e6dc39c8e8a50550ff5fcc7
Description: Translation for luci-app-firewall - Deutsch (German)
Package: luci-i18n-firewall-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 1812
Filename: luci/luci-i18n-firewall-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2643
MD5Sum: ae1b995c543282801f35b0db06ba1198
SHA256sum: 5eb0c902c76d6a2a1cdc77378677e63782ab821c7ad80e8e395c4ff5c89f4d33
Description: Translation for luci-app-firewall - Ελληνικά (Greek)
Package: luci-i18n-firewall-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 306
Filename: luci/luci-i18n-firewall-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: 7a7a69a9bfd08a94f11569e8e795a90f
SHA256sum: 415521f56e6a6ef82e07b3f5841a55cd366608c3d83323de1990f545bfc6ec3a
Description: Translation for luci-app-firewall - English
Package: luci-i18n-firewall-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4060
Filename: luci/luci-i18n-firewall-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4851
MD5Sum: 529a90e04b9e89375d90e1f5511aeacd
SHA256sum: 4587ae899fb54c524d634a8a39a3d5e8bf655cdbe36aa26b1bea5eba341b1b2d
Description: Translation for luci-app-firewall - Español (Spanish)
Package: luci-i18n-firewall-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 2823
Filename: luci/luci-i18n-firewall-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 3608
MD5Sum: 431d4cb344cb1e06b9f619d6f40efe40
SHA256sum: edadd014e952cda1af6d26ded004cf6a0cd3d651d6360d856e4b396c69a073d1
Description: Translation for luci-app-firewall - Français (French)
Package: luci-i18n-firewall-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci/luci-i18n-firewall-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1150
MD5Sum: 77ab7a8cb3596e7fb045f8103fddc93e
SHA256sum: 503d14c7b1a585572fd34a9881af51fada13ae9d95b3016db94f4ab79f4322c5
Description: Translation for luci-app-firewall - עִבְרִית (Hebrew)
Package: luci-i18n-firewall-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4395
Filename: luci/luci-i18n-firewall-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 5171
MD5Sum: dea8aed4fb841bdc294c9ab3112268df
SHA256sum: 5e013cc258e607e902ab5f9b5f6319fd354d20f2fa131d6060dd67d6b3e710d7
Description: Translation for luci-app-firewall - Magyar (Hungarian)
Package: luci-i18n-firewall-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 1317
Filename: luci/luci-i18n-firewall-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2122
MD5Sum: 32592363c370a70093c18a3d169c378d
SHA256sum: b02da6910d37c5a57830de66721fc91acaca821970881c2d9bce63497bfff345
Description: Translation for luci-app-firewall - Italiano (Italian)
Package: luci-i18n-firewall-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4151
Filename: luci/luci-i18n-firewall-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 4949
MD5Sum: 456621ce126caa9b8cf685cf8686732f
SHA256sum: 3f9b61b439af00bc0a0f5cf4213f0125626a38bdb5a0271c34d75b15d6f81308
Description: Translation for luci-app-firewall - 日本語 (Japanese)
Package: luci-i18n-firewall-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-firewall-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: b8e632cea62dc8a9704bc5b2a330d534
SHA256sum: b818d4cea6cf3251f6d8ecf24ad7abae1349f0eb9c4a09241031fb6c5d258ab7
Description: Translation for luci-app-firewall - Bahasa Melayu (Malay)
Package: luci-i18n-firewall-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4029
Filename: luci/luci-i18n-firewall-no_git-15.079.29361-3e37216-1_all.ipk
Size: 4809
MD5Sum: 85198716484a961a4d199c71f66ec33a
SHA256sum: 8cb299227612dd6b8cd4222f2ff8af7dbb936f75766d5020fd17315aaf22d0a5
Description: Translation for luci-app-firewall - Norsk (Norwegian)
Package: luci-i18n-firewall-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4251
Filename: luci/luci-i18n-firewall-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 5028
MD5Sum: bf0967b4915ba5508b7663310ff64f47
SHA256sum: 5a91979df2d7afb0b1e60a2b2173b42ee46073d0c30d658e5462360f8a16bd6e
Description: Translation for luci-app-firewall - Polski (Polish)
Package: luci-i18n-firewall-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4109
Filename: luci/luci-i18n-firewall-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4910
MD5Sum: e50a6558c16aaf8dc15ec70eac727a77
SHA256sum: 241ae2a0a771fad074b856d39c6664df5c5cc55573ffb0199d9d525670afc0d0
Description: Translation for luci-app-firewall - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-firewall-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 3477
Filename: luci/luci-i18n-firewall-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 4261
MD5Sum: 792459315dc8dbd84d928f8b46490122
SHA256sum: afefe73589429083b2834eb345e22a464d84189d7790e281984eff0eef0148bc
Description: Translation for luci-app-firewall - Português (Portuguese)
Package: luci-i18n-firewall-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 1779
Filename: luci/luci-i18n-firewall-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2593
MD5Sum: 8851ae29f160cea2292e147cb1d2aff3
SHA256sum: 0defed61768432847280ab728c65ada8b45d5ceb8cdaeeb853d9bc3bf955f826
Description: Translation for luci-app-firewall - Română (Romanian)
Package: luci-i18n-firewall-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4652
Filename: luci/luci-i18n-firewall-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 5465
MD5Sum: 3e6be61650f1cf1c22a8716be4ef46a8
SHA256sum: bbc8357af0bd57aac2c52716a245ee5c6821c2bcba45c9214738dc0cdf02c56b
Description: Translation for luci-app-firewall - Русский (Russian)
Package: luci-i18n-firewall-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-firewall-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: 965741d7ae81f209b23e7e3fb242ea71
SHA256sum: 4c2b9a4a1a74dae45e482f405f7c1d2006a71086294f45744805c4b17f02011d
Description: Translation for luci-app-firewall - Slovenčina (Slovene)
Package: luci-i18n-firewall-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-firewall-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: f72f8e81ac0771b5b7e023e323962485
SHA256sum: a8542228cc97d78daef4d84350dcf13a145b3899e55fa030638547fdf168154a
Description: Translation for luci-app-firewall - Svenska (Swedish)
Package: luci-i18n-firewall-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-firewall-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 7b7afaf820fe6584fa39800aba7b9ac8
SHA256sum: 5555cc7af4f9186d11dd8f84bb4f0c2fce15985b10904a69f8a12c0f8895ba6c
Description: Translation for luci-app-firewall - Türkçe (Turkish)
Package: luci-i18n-firewall-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4660
Filename: luci/luci-i18n-firewall-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 5483
MD5Sum: 31ddcb30f930139bd29990f834f6185d
SHA256sum: 0b124e73a3e95938f9ad9c05f0062793ec663beb8ceff824a4046814225e8a0b
Description: Translation for luci-app-firewall - украї́нська (Ukrainian)
Package: luci-i18n-firewall-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 842
Filename: luci/luci-i18n-firewall-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1671
MD5Sum: 44bdfda4af34fe586cc40c77dba588aa
SHA256sum: 33e0bb67dc65ac11efd68139fcd150616b667d171bec9feeb2a28a87df8d2c24
Description: Translation for luci-app-firewall - Tiếng Việt (Vietnamese)
Package: luci-i18n-firewall-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 3915
Filename: luci/luci-i18n-firewall-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 4710
MD5Sum: 61907a41a68e47be35af858d926c38d5
SHA256sum: 88f954a86864e285a6928c0abf22a3449774f211875009d225a9e7635a161c90
Description: Translation for luci-app-firewall - 普通话 (Chinese)
Package: luci-i18n-firewall-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4047
Filename: luci/luci-i18n-firewall-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 4848
MD5Sum: 520965cb23fbc605f975438c4255c625
SHA256sum: 4a7847994aa8ec83c08496e4ccf2390d79134052ecfed4c33aec6049f0eabe36
Description: Translation for luci-app-firewall - 臺灣華語 (Taiwanese)
Package: luci-i18n-freifunk-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3044
Filename: luci/luci-i18n-freifunk-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3819
MD5Sum: 036ff065a3546d761aeb3490d456e172
SHA256sum: 0077767a8cebd5b42684faffa18fdad84ce92ceb68c4144a28aac641c2015b81
Description: Translation for luci-mod-freifunk - Català (Catalan)
Package: luci-i18n-freifunk-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 2592
Filename: luci/luci-i18n-freifunk-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 3405
MD5Sum: 65e7913c458d90c17d684a1c8af9f98e
SHA256sum: 3c11dd22461a223aaf46506ada70eac8a327e502bf179c24a4d7ba8de74ee18e
Description: Translation for luci-mod-freifunk - Čeština (Czech)
Package: luci-i18n-freifunk-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3547
Filename: luci/luci-i18n-freifunk-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4322
MD5Sum: 3e77530e562d131f582359d7f5a94489
SHA256sum: 35ac10b9c94e00b146c383756b27c399e3e1298f850e3e9d58de9c6e8e62fc35
Description: Translation for luci-mod-freifunk - Deutsch (German)
Package: luci-i18n-freifunk-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1698
Filename: luci/luci-i18n-freifunk-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2530
MD5Sum: 510b22498def558df23c03d839594eca
SHA256sum: fec769947a0c6e8645873073cd44211a40970e31995eccfd47d7eb80161bcc09
Description: Translation for luci-mod-freifunk - Ελληνικά (Greek)
Package: luci-i18n-freifunk-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 305
Filename: luci/luci-i18n-freifunk-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1086
MD5Sum: 3c920c7015c2e21e6bcabf2cc4b2057c
SHA256sum: 884477a0eb67ce77a36d01c8187853cf34d84b8b263938dfbc74a532486e00a5
Description: Translation for luci-mod-freifunk - English
Package: luci-i18n-freifunk-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3553
Filename: luci/luci-i18n-freifunk-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4331
MD5Sum: 7cf08df374281d4163d4ee19644c7520
SHA256sum: 6379992fd18ab3532460298cd5636f437206c6dc0bc552387460512b155962d2
Description: Translation for luci-mod-freifunk - Español (Spanish)
Package: luci-i18n-freifunk-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-freifunk-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: b3d99bf3f3b4b4c673b842defc61f7e7
SHA256sum: 2157e020bbe5ef2f5a6a9307b4390406183b4b30cc34d92076983ab6fcf7e82a
Description: Translation for luci-mod-freifunk - Français (French)
Package: luci-i18n-freifunk-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1944
Filename: luci/luci-i18n-freifunk-he_git-15.079.29361-3e37216-1_all.ipk
Size: 2777
MD5Sum: b37f18a34d50cc5b03cb8f083ab905d1
SHA256sum: 2ad821e8918152273f773c36824a58555812fca802e83f276e3c73c71b8d8027
Description: Translation for luci-mod-freifunk - עִבְרִית (Hebrew)
Package: luci-i18n-freifunk-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-freifunk-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: acc9b2c61e996341407c1cfccc949436
SHA256sum: 379ea25fb56390d513b444adb6586b749d49f91ee2656b53e0ddd0b11b277d1c
Description: Translation for luci-mod-freifunk - Magyar (Hungarian)
Package: luci-i18n-freifunk-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3597
Filename: luci/luci-i18n-freifunk-it_git-15.079.29361-3e37216-1_all.ipk
Size: 4377
MD5Sum: 7a3cdbd311ba89376282e5b3d4b7f758
SHA256sum: b0765b3cdf030106c107b216bf586a99f95653ed8efa513888537b8e3d64e13e
Description: Translation for luci-mod-freifunk - Italiano (Italian)
Package: luci-i18n-freifunk-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-freifunk-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: fbaee548614a6ddeee368aa90b466b9e
SHA256sum: 256b15d2ca085afe3c063a5da3a11c2332b16786704d0ea2ba8c14c0c5610751
Description: Translation for luci-mod-freifunk - 日本語 (Japanese)
Package: luci-i18n-freifunk-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-freifunk-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 8bc2e71c608f57adaff75b8a1f4f92d5
SHA256sum: 044f30bf04311aeb8589b5c18541a9be0fe73fb3e4b88a785077da9582346819
Description: Translation for luci-mod-freifunk - Bahasa Melayu (Malay)
Package: luci-i18n-freifunk-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3119
Filename: luci/luci-i18n-freifunk-no_git-15.079.29361-3e37216-1_all.ipk
Size: 3893
MD5Sum: f83f82053b89d128e6456ed23e335749
SHA256sum: 7e6042290474448fe287bc33dc31ef540d1ead084d2e7cd37484e2fb883d56a8
Description: Translation for luci-mod-freifunk - Norsk (Norwegian)
Package: luci-i18n-freifunk-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3736
Filename: luci/luci-i18n-freifunk-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 4505
MD5Sum: 929b243b33eb4be8d51c1079f7c0cc77
SHA256sum: 99742acd17b0114203cb33c8e36549591b8a7d194a51f69ea9609409b517ba16
Description: Translation for luci-mod-freifunk - Polski (Polish)
Package: luci-i18n-freifunk-policyrouting-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 832
Filename: luci/luci-i18n-freifunk-policyrouting-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1636
MD5Sum: 15e9deb52d19c55cc19724d4d323a6b6
SHA256sum: 6e33d080dc9e9a5e6899e127e6bb054c08802caab368869a0ec724a66097e7fc
Description: Translation for luci-app-freifunk-policyrouting - Català (Catalan)
Package: luci-i18n-freifunk-policyrouting-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 533
Filename: luci/luci-i18n-freifunk-policyrouting-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1356
MD5Sum: 31e5e8012e6c650f3a5f4ea631c4dde6
SHA256sum: e3d24ff6b5ccf5aa77bceea9b82d2daf86c5227b1b87c61fe523f7b580416966
Description: Translation for luci-app-freifunk-policyrouting - Čeština (Czech)
Package: luci-i18n-freifunk-policyrouting-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 986
Filename: luci/luci-i18n-freifunk-policyrouting-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1798
MD5Sum: 6133c30b89f1fbdd86b673968deaef81
SHA256sum: eaeeaad73cb08a28db1b3a14f02a97780a81abcc9fc90f27d2f99555755815fd
Description: Translation for luci-app-freifunk-policyrouting - Deutsch (German)
Package: luci-i18n-freifunk-policyrouting-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci/luci-i18n-freifunk-policyrouting-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1167
MD5Sum: 1ab274da8ec192e8ee0df1947c7b1db7
SHA256sum: 3185096ffb037dcf6d55fa8762eb9da73db9057027c87836943d468e26506396
Description: Translation for luci-app-freifunk-policyrouting - Ελληνικά (Greek)
Package: luci-i18n-freifunk-policyrouting-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-freifunk-policyrouting-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 275d560a4378a5110d36efa1efa6d861
SHA256sum: 46cf0580dcea5e336f1e8f6ad0ddd4124e35d089c4705eada46a045c066eaca2
Description: Translation for luci-app-freifunk-policyrouting - English
Package: luci-i18n-freifunk-policyrouting-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 942
Filename: luci/luci-i18n-freifunk-policyrouting-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1756
MD5Sum: b89b25e992e75a8e2b73dca5dc3528e7
SHA256sum: a43c3e043c3b928d0f9cca6c16f38d389b0d8eed0d90bab9d65005166ec9b0db
Description: Translation for luci-app-freifunk-policyrouting - Español (Spanish)
Package: luci-i18n-freifunk-policyrouting-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci/luci-i18n-freifunk-policyrouting-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1141
MD5Sum: ae7fc6172e64ee5ad6223c3a1fa13ac9
SHA256sum: 7c1ec06491f8a26e0e5dedd395ad70347f086f053b3a25f9fc30a8459f953654
Description: Translation for luci-app-freifunk-policyrouting - Français (French)
Package: luci-i18n-freifunk-policyrouting-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 348
Filename: luci/luci-i18n-freifunk-policyrouting-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1173
MD5Sum: d1d0f2bf75a172d3134b3ff5f0273708
SHA256sum: 976d777d50b54d57cb7d28ff7905914fd07ecb514420a37c9a99a2d6d2295ab5
Description: Translation for luci-app-freifunk-policyrouting - עִבְרִית (Hebrew)
Package: luci-i18n-freifunk-policyrouting-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci/luci-i18n-freifunk-policyrouting-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1141
MD5Sum: 118304153b48e4c7558af4fa02576be3
SHA256sum: f989c59a38d97e4ee9afbead745e00623afaf76181c52c933a09b9dbe42f1ea9
Description: Translation for luci-app-freifunk-policyrouting - Magyar (Hungarian)
Package: luci-i18n-freifunk-policyrouting-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1076
Filename: luci/luci-i18n-freifunk-policyrouting-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1892
MD5Sum: e3bb1d095e2dfd7697e144ea47c49164
SHA256sum: eb8da67e59396289734a8c93cc7745a6d88235e9665cc833bb549cd669c59fc7
Description: Translation for luci-app-freifunk-policyrouting - Italiano (Italian)
Package: luci-i18n-freifunk-policyrouting-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci/luci-i18n-freifunk-policyrouting-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1165
MD5Sum: 29e64551a6a03c8e58ec6bc0b3c041b1
SHA256sum: 91a3e4ee5abd6439b606e59521a2a2a8a7c0b4c8359d6f9c5f55d14e88ad8a9d
Description: Translation for luci-app-freifunk-policyrouting - 日本語 (Japanese)
Package: luci-i18n-freifunk-policyrouting-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-freifunk-policyrouting-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1139
MD5Sum: 87a90c2863e5e9b55939f0d2c1eb116d
SHA256sum: 390bc770ea7e5feee57581020687af4db543fcc4a77b7136659d80fa5f47ae2c
Description: Translation for luci-app-freifunk-policyrouting - Bahasa Melayu (Malay)
Package: luci-i18n-freifunk-policyrouting-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci/luci-i18n-freifunk-policyrouting-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1134
MD5Sum: c5fc609768c50e0256b1bf3c9f594820
SHA256sum: 5b3b9247dff220e5bb45678166bce91be153376ff4d32cd453f30c5d8a42130b
Description: Translation for luci-app-freifunk-policyrouting - Norsk (Norwegian)
Package: luci-i18n-freifunk-policyrouting-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1038
Filename: luci/luci-i18n-freifunk-policyrouting-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1848
MD5Sum: 5aae84db6288245e46d78085f503ccba
SHA256sum: e0916fb5e8df544a7ba74ba67b5162299a606668b10355ee103e0bd799dd4557
Description: Translation for luci-app-freifunk-policyrouting - Polski (Polish)
Package: luci-i18n-freifunk-policyrouting-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1086
Filename: luci/luci-i18n-freifunk-policyrouting-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1922
MD5Sum: ccaa69e4ecc4e8ebfefcdd015515370d
SHA256sum: a898db7d861c90e332760f3b0e1dfd798838054c9c85dbbab0131ce904b2a36d
Description: Translation for luci-app-freifunk-policyrouting - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-freifunk-policyrouting-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 588
Filename: luci/luci-i18n-freifunk-policyrouting-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1402
MD5Sum: 3ee23f3a522f3ee7d4ca63c7d6643cab
SHA256sum: e4cf1932dc25b4374536216972103bdd51935ecf2932099375e91e3179b7e1bb
Description: Translation for luci-app-freifunk-policyrouting - Português (Portuguese)
Package: luci-i18n-freifunk-policyrouting-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 394
Filename: luci/luci-i18n-freifunk-policyrouting-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1204
MD5Sum: b8e56ffc2e4eda795d71a6a8e0fb1912
SHA256sum: ce48a2baad826b7e0e8e2bad262cb16816372e408c29696b5927217ab1f80b66
Description: Translation for luci-app-freifunk-policyrouting - Română (Romanian)
Package: luci-i18n-freifunk-policyrouting-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1150
Filename: luci/luci-i18n-freifunk-policyrouting-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1991
MD5Sum: dfc6afe8b0f0bcfc21d4a6f2139fa1ec
SHA256sum: 1d96bdca81e52efd958d3bb2a0f85374243c2e48a3deb9be250c02acb3a41679
Description: Translation for luci-app-freifunk-policyrouting - Русский (Russian)
Package: luci-i18n-freifunk-policyrouting-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-freifunk-policyrouting-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1140
MD5Sum: 0537d17a0c2a93ecc0ccb58ed04eb1bf
SHA256sum: 933a797b00b29b2f9c3b03a8c9e7ad1541d241770d5207b9fd5821695957e0fd
Description: Translation for luci-app-freifunk-policyrouting - Slovenčina (Slovene)
Package: luci-i18n-freifunk-policyrouting-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci/luci-i18n-freifunk-policyrouting-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1135
MD5Sum: 75927367f03010740fda512f55fceee3
SHA256sum: 28f7c6fd44e29e0d3c2ea448811da784e1c6f10bf1a24c1838d9d4dc5a50ac12
Description: Translation for luci-app-freifunk-policyrouting - Svenska (Swedish)
Package: luci-i18n-freifunk-policyrouting-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci/luci-i18n-freifunk-policyrouting-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1147
MD5Sum: 7e897ffe6d6e7800041d282b2005751b
SHA256sum: 8dcebc221d3d3463bcffba9e4802eb9697bb5280dc6825ee6ab4524e621578f2
Description: Translation for luci-app-freifunk-policyrouting - Türkçe (Turkish)
Package: luci-i18n-freifunk-policyrouting-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1247
Filename: luci/luci-i18n-freifunk-policyrouting-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2110
MD5Sum: e5c96c5b689ab2a4e8d5dd708b46b84d
SHA256sum: 99ac68028da826aa7c8911bb9f8cf745a19982b557d924a6fb549b21364f22a0
Description: Translation for luci-app-freifunk-policyrouting - украї́нська (Ukrainian)
Package: luci-i18n-freifunk-policyrouting-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci/luci-i18n-freifunk-policyrouting-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1173
MD5Sum: 0252dca120060398eabaac8c4ad77bc4
SHA256sum: df8b855a529854250c6661ec8c0b9fd3c6633583297eddb446f257241f918a1c
Description: Translation for luci-app-freifunk-policyrouting - Tiếng Việt (Vietnamese)
Package: luci-i18n-freifunk-policyrouting-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1045
Filename: luci/luci-i18n-freifunk-policyrouting-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1870
MD5Sum: 8bfbd4a8319c1be4f381796de933be3f
SHA256sum: 9055b2571bc38ff6fdb67c6667a767608b25585160effbaaaea9989602297120
Description: Translation for luci-app-freifunk-policyrouting - 普通话 (Chinese)
Package: luci-i18n-freifunk-policyrouting-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 357
Filename: luci/luci-i18n-freifunk-policyrouting-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1191
MD5Sum: 608c0390a8bfe7dec2f4d540e10362e6
SHA256sum: 57d7637eab92517e10d1d517d9d225fdb1ddae9f489b3cbd8b45de94bf794ff4
Description: Translation for luci-app-freifunk-policyrouting - 臺灣華語 (Taiwanese)
Package: luci-i18n-freifunk-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3698
Filename: luci/luci-i18n-freifunk-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4497
MD5Sum: 815a2098a2c1b7e5f9cd6d368184d843
SHA256sum: 6500139b7d18c2200982d815d7005cbf3b8cbabfe4eaff176446707c53bdc1d9
Description: Translation for luci-mod-freifunk - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-freifunk-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 944
Filename: luci/luci-i18n-freifunk-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1754
MD5Sum: 7ce46c57650fd463ad5589c22916f0cc
SHA256sum: 34005e81eb17d524bbf774b366d0726e4866bc4cd4e70aba1436acd7b66b0075
Description: Translation for luci-mod-freifunk - Português (Portuguese)
Package: luci-i18n-freifunk-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1317
Filename: luci/luci-i18n-freifunk-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2133
MD5Sum: a2d187af023d366db9ae65fb280deb71
SHA256sum: f6690ef0f52afbffca7dfa9b120bc1b02f6866fd604741ce299ae5df8bae1666
Description: Translation for luci-mod-freifunk - Română (Romanian)
Package: luci-i18n-freifunk-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 4067
Filename: luci/luci-i18n-freifunk-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4870
MD5Sum: f3f114378f4e8ea365bb1f20011375d4
SHA256sum: 918522f3c759ecaa303c2e2879d02429692167d37575d40059ef2af167032018
Description: Translation for luci-mod-freifunk - Русский (Russian)
Package: luci-i18n-freifunk-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-freifunk-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 5827008d66a42ef8c28afb8edf78a651
SHA256sum: eeb6e162b4fe86743d27017ae64d453052e4ac9f7afff1d0b03386154d99cdbf
Description: Translation for luci-mod-freifunk - Slovenčina (Slovene)
Package: luci-i18n-freifunk-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-freifunk-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 52a6634fa8661c58e49e99f0ccf79ba6
SHA256sum: 8476bc7c4a92d398c86fe8bea8ce83894dab22cd761931c46e6615fdca9848e0
Description: Translation for luci-mod-freifunk - Svenska (Swedish)
Package: luci-i18n-freifunk-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-freifunk-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 8fefd73b5fe68f0c9f02d96cdaf273fd
SHA256sum: 28d8d600b35a2068199392eac30cc350028ba7ce3d8ce928bce748cb8a72e72e
Description: Translation for luci-mod-freifunk - Türkçe (Turkish)
Package: luci-i18n-freifunk-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci/luci-i18n-freifunk-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1168
MD5Sum: ab35e914099c58cf4b466785a3c89b8b
SHA256sum: b461a825e0a4b45d22e0481afcfb42eb85e84af574505afbc7bacb9ae593d2e7
Description: Translation for luci-mod-freifunk - украї́нська (Ukrainian)
Package: luci-i18n-freifunk-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1253
Filename: luci/luci-i18n-freifunk-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2089
MD5Sum: aa4bcb3f4d578607ed8c82ab284c8b83
SHA256sum: d49e660b62e65bce7c87cf4b3098b6e64c7226297a9269ef6909b4db3082018b
Description: Translation for luci-mod-freifunk - Tiếng Việt (Vietnamese)
Package: luci-i18n-freifunk-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3589
Filename: luci/luci-i18n-freifunk-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 4370
MD5Sum: 548fe9f7b7aec4e966879b68862743e5
SHA256sum: cb7dff2310a8e097674114b6f2afc122f7022043e46a7769a1a25ec5cda7da56
Description: Translation for luci-mod-freifunk - 普通话 (Chinese)
Package: luci-i18n-freifunk-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci/luci-i18n-freifunk-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1166
MD5Sum: 72adf4c7c3eb99a37dfbb9ab3257b667
SHA256sum: 577a3dc26651dadb4f156aaf966689fa63b24f976d1139cdee9f57e792c50761
Description: Translation for luci-mod-freifunk - 臺灣華語 (Taiwanese)
Package: luci-i18n-hd-idle-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 602
Filename: luci/luci-i18n-hd-idle-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1406
MD5Sum: 21131849c87b41198f5e9319e272a87d
SHA256sum: 2014b84ae93a3b386c5831d30e15bca0f0fcbf31a6a9a85e2de157881fad569a
Description: Translation for luci-app-hd-idle - Català (Catalan)
Package: luci-i18n-hd-idle-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 579
Filename: luci/luci-i18n-hd-idle-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1387
MD5Sum: 990130a6b2ff1379e7701dc741aee6a3
SHA256sum: e4767b8e0c4715a28e931e773ee09f07bf86cd0dfe6c737608e7129a00ce4efa
Description: Translation for luci-app-hd-idle - Čeština (Czech)
Package: luci-i18n-hd-idle-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 643
Filename: luci/luci-i18n-hd-idle-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1437
MD5Sum: 2f43a9e36ae2e06b699067181011640b
SHA256sum: 1ec4655b0d70cfe84ff246df88eb363a4365937bd082f1c82792ec9debfc4eb2
Description: Translation for luci-app-hd-idle - Deutsch (German)
Package: luci-i18n-hd-idle-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 560
Filename: luci/luci-i18n-hd-idle-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1376
MD5Sum: 370f2255545f16d90efaf4f204663e10
SHA256sum: 998f07b6eb3a9f9554be6c81c1c83c35c172adb7e7a8b9cab3823f27aeeb754f
Description: Translation for luci-app-hd-idle - Ελληνικά (Greek)
Package: luci-i18n-hd-idle-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 304
Filename: luci/luci-i18n-hd-idle-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1089
MD5Sum: 57812c6ac6147cf7597e394e3e81f0c9
SHA256sum: 75944c5cd2e7747ff15a34a15f4a120afe34bb2fda38e320b8c30b4264e5ffe6
Description: Translation for luci-app-hd-idle - English
Package: luci-i18n-hd-idle-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 610
Filename: luci/luci-i18n-hd-idle-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1413
MD5Sum: 0a2dd4e4880485207b12fb8ea4a747e0
SHA256sum: a32ce08bdeeaed86f9569191296b9225730a6df0eac8bf217d7b975f332a6f9f
Description: Translation for luci-app-hd-idle - Español (Spanish)
Package: luci-i18n-hd-idle-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 609
Filename: luci/luci-i18n-hd-idle-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1417
MD5Sum: f35cf0d64459b76f108539b6058e9fff
SHA256sum: e87e0c03488e51973ef7d07d97190ecc0460d97ee06d359967c7f3f913ca2e91
Description: Translation for luci-app-hd-idle - Français (French)
Package: luci-i18n-hd-idle-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 695
Filename: luci/luci-i18n-hd-idle-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1517
MD5Sum: 78e5be22bd9a2c608a26c3def4367efb
SHA256sum: 19c1f112acf285ba74a6f4751d8cff64cde71f938001797ca5fcd273d72e7b32
Description: Translation for luci-app-hd-idle - עִבְרִית (Hebrew)
Package: luci-i18n-hd-idle-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 658
Filename: luci/luci-i18n-hd-idle-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1459
MD5Sum: 9ec86a6f9caf6e25bcab36bac7ab05cf
SHA256sum: d03ce3196ba7b32a694f433e1bda152ca6d9e4e1d6e6c19e9aae5dd9881c768d
Description: Translation for luci-app-hd-idle - Magyar (Hungarian)
Package: luci-i18n-hd-idle-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 616
Filename: luci/luci-i18n-hd-idle-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1411
MD5Sum: d19db2ddfdf166258c738485e5e4bf09
SHA256sum: 9b6a030512ee1b40cbc280aa71c0ab66eb8c013e66116dcebc0b06cfc77a9917
Description: Translation for luci-app-hd-idle - Italiano (Italian)
Package: luci-i18n-hd-idle-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 693
Filename: luci/luci-i18n-hd-idle-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1515
MD5Sum: b61ac514404f4f1d0c909327d55b26b0
SHA256sum: a1f2174f9874a75331c3c88f374008e0ef1b316a5e85713bcc327ecfb3ee465e
Description: Translation for luci-app-hd-idle - 日本語 (Japanese)
Package: luci-i18n-hd-idle-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-hd-idle-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: ed1ddaba1f2406ea7f5b6133d45571ce
SHA256sum: ff6c93cb73ac281e5e28812bb9a830bb4dd3712bcba6a338c622fdc459e6da85
Description: Translation for luci-app-hd-idle - Bahasa Melayu (Malay)
Package: luci-i18n-hd-idle-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 634
Filename: luci/luci-i18n-hd-idle-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1433
MD5Sum: 39b012397c2062d6ec454189cac48ebc
SHA256sum: 311e4d8efc8735250f2ad931642137eb7af608ec204ae8f057ed07a6eb68796f
Description: Translation for luci-app-hd-idle - Norsk (Norwegian)
Package: luci-i18n-hd-idle-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 640
Filename: luci/luci-i18n-hd-idle-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1434
MD5Sum: 153bc7b501455fadba0b7578f91cc7af
SHA256sum: 5b022fc4e828b01f4dd1b6e8eaf278949e13c79e69a60dfc4911aba233a4f936
Description: Translation for luci-app-hd-idle - Polski (Polish)
Package: luci-i18n-hd-idle-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 725
Filename: luci/luci-i18n-hd-idle-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1550
MD5Sum: 47a2ddd598f8ffddd320646738e906ed
SHA256sum: 52adb119d4e4e843ec6ff6a4b79f4d2c40e99c6a5cb7f22b8f9356ca12856420
Description: Translation for luci-app-hd-idle - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-hd-idle-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 631
Filename: luci/luci-i18n-hd-idle-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1435
MD5Sum: 532d063c9c98028559829b3f8f3b4304
SHA256sum: c8008cc5a91a50248f4af72c93d48435d5ff175a968b1bd94239e58a3e4ed14d
Description: Translation for luci-app-hd-idle - Português (Portuguese)
Package: luci-i18n-hd-idle-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 677
Filename: luci/luci-i18n-hd-idle-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1489
MD5Sum: 2b18f105a0e81bacc8b06e7867e78669
SHA256sum: 80e5df2ed576d23e7aa68035da6daaac444a3b21a883467aa0ec18d414a8f3c4
Description: Translation for luci-app-hd-idle - Română (Romanian)
Package: luci-i18n-hd-idle-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 712
Filename: luci/luci-i18n-hd-idle-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1532
MD5Sum: ae0c38d3344bc588d0505b2d7b270287
SHA256sum: 33f4495c9bfdae15d4bb2e54b9c79279384424ee65879da8f8d9492f45d3b7e3
Description: Translation for luci-app-hd-idle - Русский (Russian)
Package: luci-i18n-hd-idle-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-hd-idle-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 1848a66952881039f4e164527f338140
SHA256sum: 65e5e4e5ccc49154cf20f28bb0e5bc87657919c0b886bf9cd89d7b2c9d02053b
Description: Translation for luci-app-hd-idle - Slovenčina (Slovene)
Package: luci-i18n-hd-idle-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-hd-idle-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 2fd1a80f0a6974ff1e0273abc01aeabd
SHA256sum: 4f38abdfa1495289867fbfa39e01470d9faf12e7682208521bec2a045aab0c10
Description: Translation for luci-app-hd-idle - Svenska (Swedish)
Package: luci-i18n-hd-idle-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 634
Filename: luci/luci-i18n-hd-idle-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1439
MD5Sum: 0fbe69ff73ccbc9e80304615ad644461
SHA256sum: 0884c639dcf21ef4a5d3e78f13cd8c13fe0bbf8a53d3e64a95aed67a194180ff
Description: Translation for luci-app-hd-idle - Türkçe (Turkish)
Package: luci-i18n-hd-idle-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 604
Filename: luci/luci-i18n-hd-idle-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1439
MD5Sum: 7da4f3baaee4684239b5aa2b03a93dc7
SHA256sum: 41dcb12f55dcf3fceff7d960fe3188d8e20237769952f4546eba0ec8b328732c
Description: Translation for luci-app-hd-idle - украї́нська (Ukrainian)
Package: luci-i18n-hd-idle-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 633
Filename: luci/luci-i18n-hd-idle-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1452
MD5Sum: d9c384d0ef9414d74b5629f7004d40b9
SHA256sum: 9a84522cb4823a19c63241fc0f20821f6242e0ae5290fca46df67a35820be047
Description: Translation for luci-app-hd-idle - Tiếng Việt (Vietnamese)
Package: luci-i18n-hd-idle-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 653
Filename: luci/luci-i18n-hd-idle-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1460
MD5Sum: 601f7577a9013cbfb6756b3f9b54e4b9
SHA256sum: f1da5d9bcdeaa05403192c2c42383127b6ee4406e00ad2c33b8473c7eb6ca629
Description: Translation for luci-app-hd-idle - 普通话 (Chinese)
Package: luci-i18n-hd-idle-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 678
Filename: luci/luci-i18n-hd-idle-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1498
MD5Sum: 81395f9121623ffa50f968d1bc66ce3f
SHA256sum: 2fe896df1a6588cc40638e9d273b2a61fc645e3b93b51bd4e0c239749614f41a
Description: Translation for luci-app-hd-idle - 臺灣華語 (Taiwanese)
Package: luci-i18n-meshwizard-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1632
Filename: luci/luci-i18n-meshwizard-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2449
MD5Sum: 7bfa7757dad324303a8df7347189e6a9
SHA256sum: 8f313ef7bba6e603326953486207d4be77c9bcbef45146eeda4289b80cf52c2c
Description: Translation for luci-app-meshwizard - Català (Catalan)
Package: luci-i18n-meshwizard-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 792
Filename: luci/luci-i18n-meshwizard-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1608
MD5Sum: 79013f2e8e0670f88bb9e1d97bf9b243
SHA256sum: e132a23ed5bac70c93b5ba7a0b5e4364b4ffbf5c9015f455bbdfe50b11210395
Description: Translation for luci-app-meshwizard - Čeština (Czech)
Package: luci-i18n-meshwizard-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1725
Filename: luci/luci-i18n-meshwizard-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2537
MD5Sum: c65cf00d7c58c7a8d0e1624b627e84bf
SHA256sum: a9b9647327c39b040ddfe8becbeb61514e33c824ff6491f74689a20ebd88095c
Description: Translation for luci-app-meshwizard - Deutsch (German)
Package: luci-i18n-meshwizard-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 560
Filename: luci/luci-i18n-meshwizard-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1378
MD5Sum: 2bb2c495ae6cdd70c5c4665b9c3154d1
SHA256sum: b88b18ae4f0e5cf9ecf45eb33f9f948bd3264b9c05298faaf41dd62ce8cca4cf
Description: Translation for luci-app-meshwizard - Ελληνικά (Greek)
Package: luci-i18n-meshwizard-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci/luci-i18n-meshwizard-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1101
MD5Sum: 0975131f1e3944e6a18d8a6361cb8ffc
SHA256sum: 5d36ea5e006c6d10626304469694f320e8f47488872e856c10f1889d27f95d24
Description: Translation for luci-app-meshwizard - English
Package: luci-i18n-meshwizard-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1582
Filename: luci/luci-i18n-meshwizard-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2410
MD5Sum: e70f3237624f2d5af0fc63233a65ff2e
SHA256sum: 777873563eed2f17e82edb7c3b43baa96691a6a9e963f74c1bc5f0bc1a075f2f
Description: Translation for luci-app-meshwizard - Español (Spanish)
Package: luci-i18n-meshwizard-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1443
Filename: luci/luci-i18n-meshwizard-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2260
MD5Sum: 34fa2f39b7ef58b48e044d266ae2f5ef
SHA256sum: c5215a2f708aefca0f2f223d804431d39ad0e3f56adb591874d2e303928a1218
Description: Translation for luci-app-meshwizard - Français (French)
Package: luci-i18n-meshwizard-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci/luci-i18n-meshwizard-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1163
MD5Sum: 9e7e5abc87b64e95f85238d41495ca15
SHA256sum: 401753917c039377f74b83f51c0c30ec48eb7437ee1af065149c577d1566e775
Description: Translation for luci-app-meshwizard - עִבְרִית (Hebrew)
Package: luci-i18n-meshwizard-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 605
Filename: luci/luci-i18n-meshwizard-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1408
MD5Sum: d08fa285e5fc69432d76f85679fd8a59
SHA256sum: b047f54f29bc574bdafaa9b36d2bf2863e2312e35f935c362a991456a06bf9e7
Description: Translation for luci-app-meshwizard - Magyar (Hungarian)
Package: luci-i18n-meshwizard-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1723
Filename: luci/luci-i18n-meshwizard-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2530
MD5Sum: a43149c8942c6963fa27e274d1d8aa09
SHA256sum: fc31cfa15afbc25a4488a798eee630a6029f97ce23eb8a9a193ec653d5ae3103
Description: Translation for luci-app-meshwizard - Italiano (Italian)
Package: luci-i18n-meshwizard-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-meshwizard-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 987aa32df89273cf693e416c70d63388
SHA256sum: cd19fc3e4a8158a211fe7d21c6ee5efa3d2227ca751417921e09d99ea3a3cf84
Description: Translation for luci-app-meshwizard - 日本語 (Japanese)
Package: luci-i18n-meshwizard-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-meshwizard-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: 827ae825a4dda24691d97576f30f584b
SHA256sum: 5e5662326d2e79a9989cc6f1a6e7d541607a27375b952c2db698964d28f1eedb
Description: Translation for luci-app-meshwizard - Bahasa Melayu (Malay)
Package: luci-i18n-meshwizard-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-meshwizard-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: b697f2dbd0906ef7dad82a29f29b17e3
SHA256sum: 95d05211949eb69534790bf325025dc4ce87804d8f89dffec63417ac84a1b668
Description: Translation for luci-app-meshwizard - Norsk (Norwegian)
Package: luci-i18n-meshwizard-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1807
Filename: luci/luci-i18n-meshwizard-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2613
MD5Sum: 690122fec97f580fee7d35c669f13be2
SHA256sum: bc5dbac9a50d806a9173f1e081729c5591f96cbbef9f76e169e39b55cdf01858
Description: Translation for luci-app-meshwizard - Polski (Polish)
Package: luci-i18n-meshwizard-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1802
Filename: luci/luci-i18n-meshwizard-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2636
MD5Sum: ba1ab510e062115e9ad73676edd8f2c1
SHA256sum: e9a97d6fdeddec35c9c744cf73e34aea15dfe54af78c458add01dd6f25dbe33c
Description: Translation for luci-app-meshwizard - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-meshwizard-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1170
Filename: luci/luci-i18n-meshwizard-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1981
MD5Sum: 9ede156ab5c42d5737558f8eeafbd9c4
SHA256sum: 67b0eeb435b395b87cc3605d56cf642b97677c2d868bb5d8d421804cee1ea02b
Description: Translation for luci-app-meshwizard - Português (Portuguese)
Package: luci-i18n-meshwizard-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 858
Filename: luci/luci-i18n-meshwizard-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1678
MD5Sum: b3705be1c9dff6683b9cf00b9ff08bdc
SHA256sum: 5220c8ec1ee46d6a1bf02612798f6d6f816ee91a759f7f00206dc6bf6814f10d
Description: Translation for luci-app-meshwizard - Română (Romanian)
Package: luci-i18n-meshwizard-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1996
Filename: luci/luci-i18n-meshwizard-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2834
MD5Sum: ffd0431e9cd94b2efa9e1a92203efd65
SHA256sum: 289ebd0989cf23e75d5ec13b2b2abcd377c59ec55e7090c87fe2861408042bbe
Description: Translation for luci-app-meshwizard - Русский (Russian)
Package: luci-i18n-meshwizard-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-meshwizard-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 7643f15d421e8891cc5147bd019c8cb4
SHA256sum: 5dbd2c75a8af0c1374e5dd31942ce0447f725e54881a64b2aa7d1758a76bfbb8
Description: Translation for luci-app-meshwizard - Slovenčina (Slovene)
Package: luci-i18n-meshwizard-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-meshwizard-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 3b58e9b8e30040100a6c3e2679204ffe
SHA256sum: 289cd06df7cec95a03c9a8dee9b0e99f2d27503ca874fbe3a11fc1c6cee6c31f
Description: Translation for luci-app-meshwizard - Svenska (Swedish)
Package: luci-i18n-meshwizard-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci/luci-i18n-meshwizard-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1135
MD5Sum: f6cb9c017dcfb52527fe9ea29b8a7756
SHA256sum: 8ee6ecc945d3bd74551676e45b846e636813542a1d38f59891e30d4ce939a382
Description: Translation for luci-app-meshwizard - Türkçe (Turkish)
Package: luci-i18n-meshwizard-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 842
Filename: luci/luci-i18n-meshwizard-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1684
MD5Sum: e0cc5dc23458fe7a2aef88dd043e44ca
SHA256sum: c4696f72f20252572f6a425a0dcb11e0aabc408dfe5f91bb7c2dcc941680580d
Description: Translation for luci-app-meshwizard - украї́нська (Ukrainian)
Package: luci-i18n-meshwizard-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci/luci-i18n-meshwizard-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1157
MD5Sum: 2367ad4b5719ad3e1480a46eb8e59720
SHA256sum: a9e8b03fe0d34b5dc68109e0d5c019df6151e86416eedcca18ddd6f5412da611
Description: Translation for luci-app-meshwizard - Tiếng Việt (Vietnamese)
Package: luci-i18n-meshwizard-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1276
Filename: luci/luci-i18n-meshwizard-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2108
MD5Sum: 3decbcc5caa9019a5d5cfffe5a2089a3
SHA256sum: 7d40f6dead35b9138b1b9aecac4053eff3975062e2b587fbf1c4952d0ad7ac21
Description: Translation for luci-app-meshwizard - 普通话 (Chinese)
Package: luci-i18n-meshwizard-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 348
Filename: luci/luci-i18n-meshwizard-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1175
MD5Sum: 2dd7d9fde548a9fc7d6d42021a9e174e
SHA256sum: 6a83ee14a90cef504eb33b61198feaa4029e16d62ba1e96aba0a6a3d893aff22
Description: Translation for luci-app-meshwizard - 臺灣華語 (Taiwanese)
Package: luci-i18n-minidlna-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 895
Filename: luci/luci-i18n-minidlna-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1712
MD5Sum: c58c9c84f414503fb2e30e01568dd0ee
SHA256sum: 6af5b2c3a2a4fc1c9b2e2d042fb1ec89bc0a4caa9be0bed308c0ded7df9723c6
Description: Translation for luci-app-minidlna - Català (Catalan)
Package: luci-i18n-minidlna-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1178
Filename: luci/luci-i18n-minidlna-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1991
MD5Sum: fbcd89ca7f4b6deae3c7f3a8f47d23ad
SHA256sum: e4d122d4504dd71ad453b18f317ab7fc8bcf87258fcbaf2738686694d3322454
Description: Translation for luci-app-minidlna - Čeština (Czech)
Package: luci-i18n-minidlna-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2013
Filename: luci/luci-i18n-minidlna-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2828
MD5Sum: 9479ab110c79c4ca99ed4c08b373a10f
SHA256sum: 32f67409553fcb3f875cc6ad3fe670506cbad2155b7aacd0e2d5cb33e59ab881
Description: Translation for luci-app-minidlna - Deutsch (German)
Package: luci-i18n-minidlna-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-minidlna-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1147
MD5Sum: 3eb8d7c2880605d959cf90e11720985b
SHA256sum: 388264ed3403cfd14ff74ef52a22f0b97601273072f3c0ec47139ab6052defd5
Description: Translation for luci-app-minidlna - Ελληνικά (Greek)
Package: luci-i18n-minidlna-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 306
Filename: luci/luci-i18n-minidlna-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1097
MD5Sum: c0c0a23a549e3e672e0c918cbaee65d2
SHA256sum: 1ba537e466bf0e78977e885232321e60a670ea0f9870f7db95697fcf7f6c3b24
Description: Translation for luci-app-minidlna - English
Package: luci-i18n-minidlna-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1936
Filename: luci/luci-i18n-minidlna-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2756
MD5Sum: 39a8702c314a69d92357443c86f4c0dc
SHA256sum: 0a175034842a1bd6ffe6edad519e002c4fc17f353b9da02b6bf95e50ba7f0c69
Description: Translation for luci-app-minidlna - Español (Spanish)
Package: luci-i18n-minidlna-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-minidlna-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 4d5d769c0203512810b42a2ccd564200
SHA256sum: 45bfc6e39996cc5cf5c4c90e23df47b083a88c586dc8d8d7180208d710b6e48d
Description: Translation for luci-app-minidlna - Français (French)
Package: luci-i18n-minidlna-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-minidlna-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: 1f8ddb65428731279b55d98a26043aa2
SHA256sum: 2b2eabf5642443fb0f524c29069d6648c163f3cc4dc9f008e7ec5f9ceba10758
Description: Translation for luci-app-minidlna - עִבְרִית (Hebrew)
Package: luci-i18n-minidlna-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2111
Filename: luci/luci-i18n-minidlna-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2926
MD5Sum: f68e4b4551bb32d8d4e1ce28634f80b0
SHA256sum: 451d94157b997108f2d2a4f64e0d3a0f74c07541169a59cb54c1a2de5daeb54d
Description: Translation for luci-app-minidlna - Magyar (Hungarian)
Package: luci-i18n-minidlna-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2104
Filename: luci/luci-i18n-minidlna-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2905
MD5Sum: 1e87e3f73d2587288587c7c0f7672801
SHA256sum: 667a2bac131f866759d5d627ecdfd7b4ea4521df6ef31673e5e1fb116df37e20
Description: Translation for luci-app-minidlna - Italiano (Italian)
Package: luci-i18n-minidlna-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2237
Filename: luci/luci-i18n-minidlna-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3030
MD5Sum: 1c2ee5d2357d46134a292e80c7c776d1
SHA256sum: 8ed57a7a79078bff36764aabcbc1556d7df84a5356de29743a45403899a687f0
Description: Translation for luci-app-minidlna - 日本語 (Japanese)
Package: luci-i18n-minidlna-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-minidlna-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: b82a6cc03fb6b3ddb1b39ea161880b88
SHA256sum: 084fc38195b1fe7f6a11d2c35996be6de2d7cc7a173c67ab0e6e8cda8c996e10
Description: Translation for luci-app-minidlna - Bahasa Melayu (Malay)
Package: luci-i18n-minidlna-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1949
Filename: luci/luci-i18n-minidlna-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2764
MD5Sum: eea6070152d4aa3851225e11f54fa835
SHA256sum: dc5c6463626658a6ffca454b9593dca88f91c7c671c18c84d42ded9b2f2d0453
Description: Translation for luci-app-minidlna - Norsk (Norwegian)
Package: luci-i18n-minidlna-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2075
Filename: luci/luci-i18n-minidlna-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2886
MD5Sum: 3774255f19617f89ba8271f517fbac83
SHA256sum: d924c000c27bd7ca9963a89d7b6c33e38a74fb8166667901079e6006a2cedaf0
Description: Translation for luci-app-minidlna - Polski (Polish)
Package: luci-i18n-minidlna-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2083
Filename: luci/luci-i18n-minidlna-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2913
MD5Sum: 6318432fb76fc299250065e131702785
SHA256sum: 88887e1c7afb80b7f63fcda9bdce155cab9edf54ee801826bfb42debd42e97b3
Description: Translation for luci-app-minidlna - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-minidlna-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1110
Filename: luci/luci-i18n-minidlna-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1921
MD5Sum: 90994ccdc4516ad6979232feebd22265
SHA256sum: 19d966bf37e832b6b86a8bb1894c5725aad40684226008ea1b3b14f2347d9907
Description: Translation for luci-app-minidlna - Português (Portuguese)
Package: luci-i18n-minidlna-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 837
Filename: luci/luci-i18n-minidlna-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1656
MD5Sum: 13030e1155016a6932ce671be4f2d69f
SHA256sum: 7579b01e8c9612b312464508c5a8b27e7502aaa06d2374bf96e0bab8401c3926
Description: Translation for luci-app-minidlna - Română (Romanian)
Package: luci-i18n-minidlna-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2397
Filename: luci/luci-i18n-minidlna-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3195
MD5Sum: 03868758bf4ecacd4a6aa206a1a87777
SHA256sum: 0413caa7815b2f74ee4c689231233a90a665a4ef2bc3546ccf26831f4e9b6601
Description: Translation for luci-app-minidlna - Русский (Russian)
Package: luci-i18n-minidlna-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-minidlna-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: a9929f1e877ac2f78682739269bb2fac
SHA256sum: d67f34920cca8500f0029d213fdad514b6a1810e6abe925ef0d80e4a9cdd4c51
Description: Translation for luci-app-minidlna - Slovenčina (Slovene)
Package: luci-i18n-minidlna-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-minidlna-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1112
MD5Sum: 1a8552c8696b3677dec630d486ab296a
SHA256sum: 0f615fb50643bf4c514159542806168cd86219b6b7e3716f96841b085ac460e3
Description: Translation for luci-app-minidlna - Svenska (Swedish)
Package: luci-i18n-minidlna-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-minidlna-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: 8d8e43999d40ec9bd5553baecc750aed
SHA256sum: 6b54d989f2ad7f4caadac8de5bc21156a87b6f48ae5dc77aa8af5dedd95caa99
Description: Translation for luci-app-minidlna - Türkçe (Turkish)
Package: luci-i18n-minidlna-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci/luci-i18n-minidlna-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1175
MD5Sum: a36d56d9d06e335a08cf97822d4c871b
SHA256sum: c26eebbd4c76f9080372c71865c133bf3a399eef326f2ff3cf5f703b12658d60
Description: Translation for luci-app-minidlna - украї́нська (Ukrainian)
Package: luci-i18n-minidlna-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-minidlna-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1149
MD5Sum: 0213e3be9b39b0fc36f94827badce6f0
SHA256sum: 8d93ec9d19849029b6dd719d65a0b95f5f37301689b2b55dd5136ca207c57690
Description: Translation for luci-app-minidlna - Tiếng Việt (Vietnamese)
Package: luci-i18n-minidlna-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1822
Filename: luci/luci-i18n-minidlna-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2653
MD5Sum: 02bf7196f5d3a4adc416d0a48562431c
SHA256sum: 436007ae8d6054220788be2a3ec2e1ea1e0b55479f903e4ba47365ef9c1016c5
Description: Translation for luci-app-minidlna - 普通话 (Chinese)
Package: luci-i18n-minidlna-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 894
Filename: luci/luci-i18n-minidlna-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1734
MD5Sum: 5b078c03606d9ada36aacc65ea54aeb9
SHA256sum: 48b1283e0aefcd6b402ce3cf9aa6285b5290701faab4db5df9b63c53f7fb0565
Description: Translation for luci-app-minidlna - 臺灣華語 (Taiwanese)
Package: luci-i18n-mmc-over-gpio-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 485
Filename: luci/luci-i18n-mmc-over-gpio-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1284
MD5Sum: 80cd1e8f2c7141dcf8028ece0e95683e
SHA256sum: 02f929f06680b718bdfc629a25d21962b284256e0224eb47f092b176f25a0e36
Description: Translation for luci-app-mmc-over-gpio - Català (Catalan)
Package: luci-i18n-mmc-over-gpio-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 598
Filename: luci/luci-i18n-mmc-over-gpio-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1401
MD5Sum: ac897c2f8eeda842d3c8f2d58764fc30
SHA256sum: 4eea72db198a9da99862b3526ff3d2b5a666b80e5edbea6f563969a5a03efa94
Description: Translation for luci-app-mmc-over-gpio - Čeština (Czech)
Package: luci-i18n-mmc-over-gpio-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 570
Filename: luci/luci-i18n-mmc-over-gpio-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1372
MD5Sum: 48612cdc77382b9cb08ce4ebed8709f7
SHA256sum: 0ba05f1bd608eca9c45f3e3fbc5d778e6e4381b49be38b4f1111483a0a28fedf
Description: Translation for luci-app-mmc-over-gpio - Deutsch (German)
Package: luci-i18n-mmc-over-gpio-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 416
Filename: luci/luci-i18n-mmc-over-gpio-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1230
MD5Sum: 789e17c3c5e92f9f36ec030966197fe8
SHA256sum: 18c7b0c5950987a6d314f37562172a5e2f5fc6eaab3c22a721b0a0d71fe0afdf
Description: Translation for luci-app-mmc-over-gpio - Ελληνικά (Greek)
Package: luci-i18n-mmc-over-gpio-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci/luci-i18n-mmc-over-gpio-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 4f43c1cc3faa1bf8859880cf04e8a29d
SHA256sum: 9edcd96a896b4fb0cae15d32f3e2198beb7d410311f1fa243de5eb153908ffb3
Description: Translation for luci-app-mmc-over-gpio - English
Package: luci-i18n-mmc-over-gpio-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 596
Filename: luci/luci-i18n-mmc-over-gpio-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1404
MD5Sum: 51de812c24f113d21bbbed6c86357378
SHA256sum: f140b367aaa333a29d41c3fbd3add7611989bc803745ae49ce33ff98d2e9185d
Description: Translation for luci-app-mmc-over-gpio - Español (Spanish)
Package: luci-i18n-mmc-over-gpio-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 479
Filename: luci/luci-i18n-mmc-over-gpio-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1283
MD5Sum: 3795dc1976c0eaeade4f6749f3255cdf
SHA256sum: d951b2155069b9546c6ca51a283ef417a2bc1b94ef66e1c9b7971ca9d15b455d
Description: Translation for luci-app-mmc-over-gpio - Français (French)
Package: luci-i18n-mmc-over-gpio-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 455
Filename: luci/luci-i18n-mmc-over-gpio-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1280
MD5Sum: c5ffb9d3521b3fb94552be2c5419a38b
SHA256sum: 82755159d99241fc6ed043aaf9eb4031f1373c29a46edf9ba39b3457a97bbcb3
Description: Translation for luci-app-mmc-over-gpio - עִבְרִית (Hebrew)
Package: luci-i18n-mmc-over-gpio-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 520
Filename: luci/luci-i18n-mmc-over-gpio-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1319
MD5Sum: 5a705d87f808d413ef768131ed98b0b6
SHA256sum: 7d174c292a1e42325fb5481067a4e5ec5abad4f6fb7ab855c80bd2e65529c588
Description: Translation for luci-app-mmc-over-gpio - Magyar (Hungarian)
Package: luci-i18n-mmc-over-gpio-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 509
Filename: luci/luci-i18n-mmc-over-gpio-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1303
MD5Sum: 0d57dcca981c77379195066d3f16acb5
SHA256sum: 2c31b8d3aadb62b23b9ac6594aee35b2eba8969bb4b4c6e9a8ea18bdfc58e717
Description: Translation for luci-app-mmc-over-gpio - Italiano (Italian)
Package: luci-i18n-mmc-over-gpio-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 531
Filename: luci/luci-i18n-mmc-over-gpio-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1345
MD5Sum: 4392a90dba73b4b1ae8e389c39899d04
SHA256sum: b26f792b7e9e820320da78a89862c3df3014d0abdc641496c8869272a31426ae
Description: Translation for luci-app-mmc-over-gpio - 日本語 (Japanese)
Package: luci-i18n-mmc-over-gpio-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-mmc-over-gpio-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: e5662b071ba0c11a8ed9b2b1b5d6fe66
SHA256sum: f31fb510bc21ed4e3b00b5a81268289d8932d497689b017636c5d5e7e9b74ff9
Description: Translation for luci-app-mmc-over-gpio - Bahasa Melayu (Malay)
Package: luci-i18n-mmc-over-gpio-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 512
Filename: luci/luci-i18n-mmc-over-gpio-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1306
MD5Sum: e8ad88bd8e90eef8ff40c14d4073a673
SHA256sum: 761564504e2f1f1f2131e32e04faf8b8a5f3e999f4c8140f686b75afe8ec98fe
Description: Translation for luci-app-mmc-over-gpio - Norsk (Norwegian)
Package: luci-i18n-mmc-over-gpio-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 597
Filename: luci/luci-i18n-mmc-over-gpio-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1400
MD5Sum: 8273455cab8d6c8aac46a6b564ea1b45
SHA256sum: 92d4933da71f91380a225a7df68df0d260520f22a2895ce1737a44bc1aaa7118
Description: Translation for luci-app-mmc-over-gpio - Polski (Polish)
Package: luci-i18n-mmc-over-gpio-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 538
Filename: luci/luci-i18n-mmc-over-gpio-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1363
MD5Sum: cf80c28d1af7a51edb522483ef3243ad
SHA256sum: 83fc8bf64a930e222d598234c9e56fa3308403b6e34506f6dbab1d703dfb8dcc
Description: Translation for luci-app-mmc-over-gpio - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-mmc-over-gpio-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 513
Filename: luci/luci-i18n-mmc-over-gpio-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1316
MD5Sum: 770fab48901d44507fea6a7bfd0e229b
SHA256sum: ba49949ba031140241b7339ccc6ace27a11f58e66af282d72a70783f69622c30
Description: Translation for luci-app-mmc-over-gpio - Português (Portuguese)
Package: luci-i18n-mmc-over-gpio-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 503
Filename: luci/luci-i18n-mmc-over-gpio-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1313
MD5Sum: 1879532e8d8fabd5bd5c67c5a7ce81f6
SHA256sum: 41962e5662a4dc444cb4b9d83f2f19e8a621d9d4aee7415ed43f36578cefaf08
Description: Translation for luci-app-mmc-over-gpio - Română (Romanian)
Package: luci-i18n-mmc-over-gpio-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 643
Filename: luci/luci-i18n-mmc-over-gpio-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1457
MD5Sum: 0f085503eb031af0dbec3645b2c1aa32
SHA256sum: 4885f82674778ce8c9dc515cdc26d5063766588374007204dcb7728cde17e978
Description: Translation for luci-app-mmc-over-gpio - Русский (Russian)
Package: luci-i18n-mmc-over-gpio-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci/luci-i18n-mmc-over-gpio-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1127
MD5Sum: 7b961c9810b297a141121b0b1e85706d
SHA256sum: 914bcbe8f8a5d11b5d2ae83f9fb3ef1fc6651bdc3295dfae133497c28a13aeaa
Description: Translation for luci-app-mmc-over-gpio - Slovenčina (Slovene)
Package: luci-i18n-mmc-over-gpio-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-mmc-over-gpio-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 7f315177271dc2191b8e00aac840261c
SHA256sum: 0e2b7e97365e6eab7040246dd63cfd7f2468cb0060e68c45351cb492b16c47b1
Description: Translation for luci-app-mmc-over-gpio - Svenska (Swedish)
Package: luci-i18n-mmc-over-gpio-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 607
Filename: luci/luci-i18n-mmc-over-gpio-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1413
MD5Sum: 4924b9371fc7aad74549b728d4f19194
SHA256sum: 4f228d8244071bd84445bb4698973d0322a3e6abc8c2e41c63f0158685f6c6da
Description: Translation for luci-app-mmc-over-gpio - Türkçe (Turkish)
Package: luci-i18n-mmc-over-gpio-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 654
Filename: luci/luci-i18n-mmc-over-gpio-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1485
MD5Sum: 6a2100c6514ce9ef62db35c1a288d09a
SHA256sum: ed330aff90991cb5f6c18a52209370f993d134e776af0dc799c9c32ec48df632
Description: Translation for luci-app-mmc-over-gpio - украї́нська (Ukrainian)
Package: luci-i18n-mmc-over-gpio-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 408
Filename: luci/luci-i18n-mmc-over-gpio-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1222
MD5Sum: 31fe8d8b71c8d2289d3482833d9f56a8
SHA256sum: b579169da8cfd4d6be9c5c6b2e5996aa528ed7b643fc2712c7fe92b4d5ed01fe
Description: Translation for luci-app-mmc-over-gpio - Tiếng Việt (Vietnamese)
Package: luci-i18n-mmc-over-gpio-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 602
Filename: luci/luci-i18n-mmc-over-gpio-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1415
MD5Sum: 771c1cde9c0a346194c80c994603d856
SHA256sum: 16d9bc16873baada27754d56db062bade960c9ed0bd234dcf10ac160c8408900
Description: Translation for luci-app-mmc-over-gpio - 普通话 (Chinese)
Package: luci-i18n-mmc-over-gpio-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 628
Filename: luci/luci-i18n-mmc-over-gpio-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1454
MD5Sum: 065351ad9609b4a65822646112b01e66
SHA256sum: 34fa3260ef69da56a268a52b83cf5b9235783d195eec37df2594eecd43506b0b
Description: Translation for luci-app-mmc-over-gpio - 臺灣華語 (Taiwanese)
Package: luci-i18n-multiwan-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1243
Filename: luci/luci-i18n-multiwan-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2054
MD5Sum: 59903d5ba8036cd47d343d05660c6c7c
SHA256sum: c31e1d4e7d95244ad9221eced124de338a9639e7c5791c9f0ce464cbd76b5216
Description: Translation for luci-app-multiwan - Català (Catalan)
Package: luci-i18n-multiwan-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1293
Filename: luci/luci-i18n-multiwan-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2119
MD5Sum: 5dbae66df71e6777094474854672e942
SHA256sum: b6d1274f457ed186c4b462f0827e1b305a67918dc06adcfbd6ccf30fe4895546
Description: Translation for luci-app-multiwan - Čeština (Czech)
Package: luci-i18n-multiwan-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1319
Filename: luci/luci-i18n-multiwan-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2130
MD5Sum: e69cbdc5ee8634ba3aa07be1dc55b2f1
SHA256sum: 0d83147e57ae7f93bfae01b3391015825ff6d0360fac1282638f5efb5fdcd280
Description: Translation for luci-app-multiwan - Deutsch (German)
Package: luci-i18n-multiwan-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 518
Filename: luci/luci-i18n-multiwan-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1334
MD5Sum: 428c409a1695b3c5a6dadbec10e03520
SHA256sum: 5c51a8561db2b06c4514a088fad0354ea35363373be4401ac6f4f0e938b27e6e
Description: Translation for luci-app-multiwan - Ελληνικά (Greek)
Package: luci-i18n-multiwan-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 308
Filename: luci/luci-i18n-multiwan-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1093
MD5Sum: cfc3e04f8ad5cdf2704e815f9b6ab171
SHA256sum: 323d38407a6aaf8bd2264eb81ae3083c2158f2a8b9a15d4b40c8cc0ffef83aa7
Description: Translation for luci-app-multiwan - English
Package: luci-i18n-multiwan-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1261
Filename: luci/luci-i18n-multiwan-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2081
MD5Sum: 248e22b25251445a9791f8169a43c809
SHA256sum: 34abed3cc3e29183b14beb72a682a569ad4fb851201fc7dc2095a5917fc7e1de
Description: Translation for luci-app-multiwan - Español (Spanish)
Package: luci-i18n-multiwan-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1312
Filename: luci/luci-i18n-multiwan-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2133
MD5Sum: 7b5e77b455a72983822e83ef8bae12de
SHA256sum: 16ed7b1199d08e1a3e257a32c6755631e8a1183ba5a069b44e740e8faa0f22f1
Description: Translation for luci-app-multiwan - Français (French)
Package: luci-i18n-multiwan-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci/luci-i18n-multiwan-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1159
MD5Sum: bb77d8ae4cc14950e6a734b2e3110e78
SHA256sum: d8fa34b77038d2ad216775a642f779d03a34378d04e25737fdb6400ea2368c1c
Description: Translation for luci-app-multiwan - עִבְרִית (Hebrew)
Package: luci-i18n-multiwan-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1409
Filename: luci/luci-i18n-multiwan-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2227
MD5Sum: d96442148e4635132a2b5b95776396a1
SHA256sum: 30d88309fd4349f8be3c3e878215d82a21be5884a4060fff83bc92dc2382621d
Description: Translation for luci-app-multiwan - Magyar (Hungarian)
Package: luci-i18n-multiwan-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1068
Filename: luci/luci-i18n-multiwan-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1872
MD5Sum: 2cd4e43346fa2609bacdba17c0bd2105
SHA256sum: 4597b4d16765d2c16a20ed98b9e81464dfc0c65c5d59acc8dbd62aa5e6d8984e
Description: Translation for luci-app-multiwan - Italiano (Italian)
Package: luci-i18n-multiwan-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1174
Filename: luci/luci-i18n-multiwan-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1994
MD5Sum: 70fb4536131f1a74e044fad96f7503a0
SHA256sum: 35f5cbdb058283d783a4eb230aaaea220b886a58e0bb72e4203de366d987d821
Description: Translation for luci-app-multiwan - 日本語 (Japanese)
Package: luci-i18n-multiwan-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-multiwan-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 707b9bd59d0f4d739237ead864ecaea5
SHA256sum: 37fd2c6237fde38feb4c4d0c85e5b06d3bff6731c14d44ee2c02e270224068fe
Description: Translation for luci-app-multiwan - Bahasa Melayu (Malay)
Package: luci-i18n-multiwan-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1131
Filename: luci/luci-i18n-multiwan-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1931
MD5Sum: 2690750cc67485b2bef9c54432f88a2b
SHA256sum: 14dc24f75ec66b69fa9f1b0bc5dd24b858d15352a4c63bbe3128e61107a855a7
Description: Translation for luci-app-multiwan - Norsk (Norwegian)
Package: luci-i18n-multiwan-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1400
Filename: luci/luci-i18n-multiwan-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2212
MD5Sum: 85b159851bd07528edfba58449c06234
SHA256sum: b9472b5970de0e9f234af3ac86453608edf210674f9508c6ae5ef68bd453f9f7
Description: Translation for luci-app-multiwan - Polski (Polish)
Package: luci-i18n-multiwan-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1363
Filename: luci/luci-i18n-multiwan-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2197
MD5Sum: cf2196788ec22055e22f45ea3279366a
SHA256sum: 86ddb410f1e70cf0c81f7b83476d1809cb9953b6d53e667c50a1f27bc4f80af2
Description: Translation for luci-app-multiwan - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-multiwan-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 638
Filename: luci/luci-i18n-multiwan-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1444
MD5Sum: 057974b99a5e1ade13d5ae6f6810ef3d
SHA256sum: 65ebfa98a8b5380676713a98db9f32f252b95f585a9b379975e2e9aa7a1f3a90
Description: Translation for luci-app-multiwan - Português (Portuguese)
Package: luci-i18n-multiwan-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 675
Filename: luci/luci-i18n-multiwan-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1479
MD5Sum: cf55335404326af5c1b200a52a6c5585
SHA256sum: 5aa78d5e9fc5360ace39989f59de710012679396fb2a5fef1f0908ef2831c38a
Description: Translation for luci-app-multiwan - Română (Romanian)
Package: luci-i18n-multiwan-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1524
Filename: luci/luci-i18n-multiwan-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2356
MD5Sum: 9ee085535d832c2a0a5b339bc474ea61
SHA256sum: ee4dd4c55342fb1b420ffcb68cca4fcfa185f06245e4af9eb797d0f4051eda20
Description: Translation for luci-app-multiwan - Русский (Russian)
Package: luci-i18n-multiwan-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-multiwan-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: 0b35ae731b6f4ae1028e74d05140362f
SHA256sum: 97a041daa7ae021c3cdd22cf4004a978e29eee5dbe4daa08fa74ec01e3672e4c
Description: Translation for luci-app-multiwan - Slovenčina (Slovene)
Package: luci-i18n-multiwan-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-multiwan-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: a27a7091a2ef7579d71786e3dc574f40
SHA256sum: 302067cce768c7324368b248e04ecb1c490eb29447d1996b2f2ad52009f7f408
Description: Translation for luci-app-multiwan - Svenska (Swedish)
Package: luci-i18n-multiwan-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-multiwan-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 68bd1aa50fe774ef5129dd8394e7f9be
SHA256sum: 86efa602834ba716519acf6f8307c97eb8b706028166d2635e6bdd121dd0ca48
Description: Translation for luci-app-multiwan - Türkçe (Turkish)
Package: luci-i18n-multiwan-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 624
Filename: luci/luci-i18n-multiwan-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1457
MD5Sum: 01f79a16594f20f984d045eb559e79fd
SHA256sum: 2024daa4702790f55fb3949b77d425f300cff666f67a89bb3ddc7e142893b04b
Description: Translation for luci-app-multiwan - украї́нська (Ukrainian)
Package: luci-i18n-multiwan-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-multiwan-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: bfadc5fafdce535fa87671b71c568c37
SHA256sum: f540297880086e5e5621c8d70e876c71bcc5997e4ae32af20ccb26676e6329f7
Description: Translation for luci-app-multiwan - Tiếng Việt (Vietnamese)
Package: luci-i18n-multiwan-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1283
Filename: luci/luci-i18n-multiwan-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2114
MD5Sum: c39eeeb2bdc61b3b815c0faa28932349
SHA256sum: 3b991c538534cb71079b6256f398a42c29ad8281a3239d1e4ed98dc3f9fa7b9a
Description: Translation for luci-app-multiwan - 普通话 (Chinese)
Package: luci-i18n-multiwan-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1255
Filename: luci/luci-i18n-multiwan-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2094
MD5Sum: f9f0cb9ec9785f8c2930e1c90cd7b692
SHA256sum: 15f93f6068a8538a800991b226227c383de72e68086cf9e2e88ffba99acee767
Description: Translation for luci-app-multiwan - 臺灣華語 (Taiwanese)
Package: luci-i18n-ntpc-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 702
Filename: luci/luci-i18n-ntpc-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1499
MD5Sum: 920dcc8e87169397f4bf92d62c22612e
SHA256sum: af004444cd8664e1872fe7f3420e9c761a8850bc776707b41da1fd0e643ffa9e
Description: Translation for luci-app-ntpc - Català (Catalan)
Package: luci-i18n-ntpc-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 756
Filename: luci/luci-i18n-ntpc-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1560
MD5Sum: 0887d9e225bd17da56494e764a0ff38c
SHA256sum: 1e4154e202ff6e330477d0d5c530929f75360b17fdb906c89a580e152ef18b94
Description: Translation for luci-app-ntpc - Čeština (Czech)
Package: luci-i18n-ntpc-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 676
Filename: luci/luci-i18n-ntpc-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1466
MD5Sum: a168addcb8e3dde121474ecf4a04bbb3
SHA256sum: 9604deba6ed5be79ac0f52f9a05e096b6bb29f27dfd3903cea97e7ce9f7f2eeb
Description: Translation for luci-app-ntpc - Deutsch (German)
Package: luci-i18n-ntpc-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 817
Filename: luci/luci-i18n-ntpc-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1632
MD5Sum: ce425e0c821fc570dda61e429f3f9a98
SHA256sum: 11a59282e851931cf67dab95913e7d475236b794b72bb49efaca53b38da5f960
Description: Translation for luci-app-ntpc - Ελληνικά (Greek)
Package: luci-i18n-ntpc-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci/luci-i18n-ntpc-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1090
MD5Sum: 2a09e9b1078609d087f2dec659e62118
SHA256sum: de9479fcba57ea165ace10f48fc95af4464994ee353eb357a839eae184d43202
Description: Translation for luci-app-ntpc - English
Package: luci-i18n-ntpc-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 734
Filename: luci/luci-i18n-ntpc-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1536
MD5Sum: a088bc9a122bf4f02ba6760fe508f614
SHA256sum: 0d26ec4763fa885b1b207e26aa7ae588e9c6a394a53d080c28d1a2f51ecdfcf7
Description: Translation for luci-app-ntpc - Español (Spanish)
Package: luci-i18n-ntpc-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 733
Filename: luci/luci-i18n-ntpc-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1536
MD5Sum: 1607762dc92f653e90516ca63033e65f
SHA256sum: e24e6d0acb8fe5814eedb436c7c558335b250d26bae1b4fd735a7d565e8b0355
Description: Translation for luci-app-ntpc - Français (French)
Package: luci-i18n-ntpc-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 734
Filename: luci/luci-i18n-ntpc-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1562
MD5Sum: fc16b6949b1c31fe652e71248cb6a399
SHA256sum: 7687194fede1b20214045b511bf777662a809934880d290f76c7b437a97d7ac3
Description: Translation for luci-app-ntpc - עִבְרִית (Hebrew)
Package: luci-i18n-ntpc-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 723
Filename: luci/luci-i18n-ntpc-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1520
MD5Sum: efecfd0fae02eb1bd24893074186b634
SHA256sum: f6fa34f970fac07e11bd5d1f9678866a0b2256b888a3e3d652e7347eafa40a10
Description: Translation for luci-app-ntpc - Magyar (Hungarian)
Package: luci-i18n-ntpc-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 714
Filename: luci/luci-i18n-ntpc-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1502
MD5Sum: 049f6ca666926a81e231f5521ac945a4
SHA256sum: 35cd21f957103b10c2e3bdda37b08837bf6a6d0edf16d3207f29e4a46c80aef6
Description: Translation for luci-app-ntpc - Italiano (Italian)
Package: luci-i18n-ntpc-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 754
Filename: luci/luci-i18n-ntpc-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1575
MD5Sum: 1bfcba1ec4cf825873f28a2df7a6d3b6
SHA256sum: cb346dedb9fae25318dd8dcdb989698dcd79ab5ea525cf718c7ae607c834ff6e
Description: Translation for luci-app-ntpc - 日本語 (Japanese)
Package: luci-i18n-ntpc-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-ntpc-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 2b44fd7b5aa3a4f918714c733c61d4f4
SHA256sum: 2d9a2e97e6f4a5757c2aa91517462cdeed4ca2e4b1253da12339b79779a88df1
Description: Translation for luci-app-ntpc - Bahasa Melayu (Malay)
Package: luci-i18n-ntpc-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 696
Filename: luci/luci-i18n-ntpc-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1489
MD5Sum: 2747ac46a81ac06c23b809ac5edbf799
SHA256sum: b6ec273ba865b7237ee4152dd3b1ea15a7d46ee08402d3ed177051d723fd8e0a
Description: Translation for luci-app-ntpc - Norsk (Norwegian)
Package: luci-i18n-ntpc-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 724
Filename: luci/luci-i18n-ntpc-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1516
MD5Sum: 6943419c2a77eb064d466ce7a62df44b
SHA256sum: 96ecc4f9e0c17709b676ff7dfcdb5673e5d983003bf0264eaf5977fcde7e2b1a
Description: Translation for luci-app-ntpc - Polski (Polish)
Package: luci-i18n-ntpc-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 776
Filename: luci/luci-i18n-ntpc-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1594
MD5Sum: 6d158a700f0b6354e97cd4f91846b896
SHA256sum: 6b5c5c3541b94b23ff8b538ede91c678b6b9797b8a0a85db3ef45e0728e82af8
Description: Translation for luci-app-ntpc - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-ntpc-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 743
Filename: luci/luci-i18n-ntpc-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1547
MD5Sum: 2a9db971533855a23575eec153605baf
SHA256sum: 546c1d5f7fb99fca7d9add14236b2fd54ddc3924d6ef055dc89b098668b504a1
Description: Translation for luci-app-ntpc - Português (Portuguese)
Package: luci-i18n-ntpc-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 689
Filename: luci/luci-i18n-ntpc-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1490
MD5Sum: 869e2b72eed254f242c84df68b475b65
SHA256sum: 7a602d18160c3ca933d05648e83de28846980d25e1ad85e7a57ce25aa0c6e89b
Description: Translation for luci-app-ntpc - Română (Romanian)
Package: luci-i18n-ntpc-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 819
Filename: luci/luci-i18n-ntpc-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1632
MD5Sum: bd9df22814c7cbe8a000cd67caa47d5b
SHA256sum: 6643871f68aac11202c719cb31cb37734fadfefa90198ed5c417b1dfc2c01c45
Description: Translation for luci-app-ntpc - Русский (Russian)
Package: luci-i18n-ntpc-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-ntpc-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 5af4125cb21a71f26636cc332ad550b3
SHA256sum: 2aa3284a0d8b5e08483fcecc12db1423feb80d2ae9a6e98940f9378e90fbee83
Description: Translation for luci-app-ntpc - Slovenčina (Slovene)
Package: luci-i18n-ntpc-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-ntpc-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: 3b0b1fdb962c612f8d848cd22c273105
SHA256sum: c34450943a9b0824c5c3baaf1cba81d701ef23e59b38d025b96875eae7276ef2
Description: Translation for luci-app-ntpc - Svenska (Swedish)
Package: luci-i18n-ntpc-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 701
Filename: luci/luci-i18n-ntpc-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1499
MD5Sum: c15efb33bf16c25de16b9e0c771c53f2
SHA256sum: 754ed6d47873a6d117299466afbfcd4bb0259cc9424d2b54cdd489bcefa64c51
Description: Translation for luci-app-ntpc - Türkçe (Turkish)
Package: luci-i18n-ntpc-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 832
Filename: luci/luci-i18n-ntpc-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1654
MD5Sum: 6796b87597341b01705b1539e6054fba
SHA256sum: 1e3b8ee357285b503f38318128e2dcd41621d322aa749629a79d6c807cce3e9a
Description: Translation for luci-app-ntpc - украї́нська (Ukrainian)
Package: luci-i18n-ntpc-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 678
Filename: luci/luci-i18n-ntpc-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1493
MD5Sum: 3136baabb3ee3d7d9f7371c64c5bbfb3
SHA256sum: 317f8ea8007858c483754bce03238c86fa2eb920165d1355815ae27905e793c9
Description: Translation for luci-app-ntpc - Tiếng Việt (Vietnamese)
Package: luci-i18n-ntpc-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 722
Filename: luci/luci-i18n-ntpc-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1529
MD5Sum: 759cf1358c1a9f1c26d757ced6b90366
SHA256sum: 9b533e311508b487532f3d6ac10762799b876674adb6049c5d9e43d23b2934da
Description: Translation for luci-app-ntpc - 普通话 (Chinese)
Package: luci-i18n-ntpc-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 729
Filename: luci/luci-i18n-ntpc-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1544
MD5Sum: 1fb635ab135bbcad4c5fc97bb65ae7d2
SHA256sum: f37d47700b514ad8f2a2b4a908246d5214657946db814e14a1575d30c42dd41b
Description: Translation for luci-app-ntpc - 臺灣華語 (Taiwanese)
Package: luci-i18n-olsr-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 2306
Filename: luci/luci-i18n-olsr-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3115
MD5Sum: c71d9fa8d9ab7b690a80b3dc13faa518
SHA256sum: f8b5bbbecb1a9ee0cbb60432c817e229d8a0a27b7390716a1cafd6e4d075e2fc
Description: Translation for luci-app-olsr - Català (Catalan)
Package: luci-i18n-olsr-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1446
Filename: luci/luci-i18n-olsr-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2261
MD5Sum: d172ca9fd3ebcb1add092925df3c1c64
SHA256sum: a5c964a2c34e90df6398214e286194cd58e0720d6ef822668369473c4bfa3373
Description: Translation for luci-app-olsr - Čeština (Czech)
Package: luci-i18n-olsr-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 5999
Filename: luci/luci-i18n-olsr-de_git-15.079.29361-3e37216-1_all.ipk
Size: 6797
MD5Sum: 323fea6a0b2e41390f161b5fa93d98fb
SHA256sum: 0b4f7eeac815d0113ca8954c67e042abc2c6e79a19c479159fe25b98f485e5ae
Description: Translation for luci-app-olsr - Deutsch (German)
Package: luci-i18n-olsr-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 973
Filename: luci/luci-i18n-olsr-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1785
MD5Sum: 0d2e7456ee4a2dd4ec895e3aa4068139
SHA256sum: efaeaf5355da5c92d4b63dfb7e7d73190560252e74a4fd43a6b8da16e5918da4
Description: Translation for luci-app-olsr - Ελληνικά (Greek)
Package: luci-i18n-olsr-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 397
Filename: luci/luci-i18n-olsr-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1180
MD5Sum: 315bf4d59ca766a686f2d40dbe7900f3
SHA256sum: c7ce50c76c87cda74225031727b35ff8b9a5ba210c0126e461463c6624a186d0
Description: Translation for luci-app-olsr - English
Package: luci-i18n-olsr-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 6509
Filename: luci/luci-i18n-olsr-es_git-15.079.29361-3e37216-1_all.ipk
Size: 7350
MD5Sum: 3726ed9e613fab01b8da66f9d47d06e6
SHA256sum: ea7c3b4056cd6345ab404189b87b43cd89401f6c7f9a4030c687acb3c2105bc5
Description: Translation for luci-app-olsr - Español (Spanish)
Package: luci-i18n-olsr-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 387
Filename: luci/luci-i18n-olsr-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1179
MD5Sum: f9020dc4d2c7031bb2bdce345b982a33
SHA256sum: 1aabe51f2b5e42687b92e6ed3788a61ddc935be6924ceb5700c623a04cc47124
Description: Translation for luci-app-olsr - Français (French)
Package: luci-i18n-olsr-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci/luci-i18n-olsr-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1150
MD5Sum: 245879fe877119a50beeb0d3fc6e4e29
SHA256sum: 23566d5aede9dd9297a15c9f6386fe3aae2f401c81ca66c1e54f085be3ca814d
Description: Translation for luci-app-olsr - עִבְרִית (Hebrew)
Package: luci-i18n-olsr-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-olsr-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1099
MD5Sum: 607424d2d9c58e20273492910fb04437
SHA256sum: fe78d91258b89565f79f31151e584fe84e814d7bba19d0eaf51776f72dee4191
Description: Translation for luci-app-olsr - Magyar (Hungarian)
Package: luci-i18n-olsr-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 2400
Filename: luci/luci-i18n-olsr-it_git-15.079.29361-3e37216-1_all.ipk
Size: 3174
MD5Sum: 8ad61ffbf68cf2d993a1b905135efd3b
SHA256sum: 6bf6c36fe1f59ec5ac648db2209ec0b6f8948f45684ee6a3ff0fe9fc8fde238d
Description: Translation for luci-app-olsr - Italiano (Italian)
Package: luci-i18n-olsr-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 6236
Filename: luci/luci-i18n-olsr-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 7097
MD5Sum: c8a3b9dd488663ecf9f3f597e4137e0b
SHA256sum: 5b7a9cce961886d8a848975ea60ca644d2cf7537a6072d6ffcf8de5f6b72b229
Description: Translation for luci-app-olsr - 日本語 (Japanese)
Package: luci-i18n-olsr-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-olsr-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 13a23e3f468b69f57243b3433ff9d383
SHA256sum: 13ec44281b2b68fa45d9ab0c92e72f7847464d4f45456b13e5d304729c8810c9
Description: Translation for luci-app-olsr - Bahasa Melayu (Malay)
Package: luci-i18n-olsr-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 314
Filename: luci/luci-i18n-olsr-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1101
MD5Sum: bb2cdf20c876686a15dacb90b86bc392
SHA256sum: 72ed436b9ac80f5a25dc795f986ab2eb1c0d8e8287500349b251c0fbb9c5fc38
Description: Translation for luci-app-olsr - Norsk (Norwegian)
Package: luci-i18n-olsr-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 3969
Filename: luci/luci-i18n-olsr-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 4739
MD5Sum: e764de2a65feb7ec066495e255302065
SHA256sum: 7dea9e2d2c84adde559b4f213a6bb5fa99b3a0393b9c8bf258cb7c85f5ac6b1f
Description: Translation for luci-app-olsr - Polski (Polish)
Package: luci-i18n-olsr-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 7267
Filename: luci/luci-i18n-olsr-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 8096
MD5Sum: 20ce3659e45f3bc6361207b24d3102cd
SHA256sum: 3f2a7ca53c47a1d245f93a639535805cc6dfd252810e631c18f5e9821ca379e5
Description: Translation for luci-app-olsr - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-olsr-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 2505
Filename: luci/luci-i18n-olsr-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 3318
MD5Sum: 9d3490e3c1248766eb39f6fb50816076
SHA256sum: 3148f21e5bc77645c98fe4eb879232d21a9a65547d51975542368777967a14cc
Description: Translation for luci-app-olsr - Português (Portuguese)
Package: luci-i18n-olsr-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1046
Filename: luci/luci-i18n-olsr-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1854
MD5Sum: 24aea5db77785840d1a89f5a250966e0
SHA256sum: f5c3d5ef9d198cb5bd96b543fa1cfd8d69c06ae96dface60be36cc7d73c7b0b1
Description: Translation for luci-app-olsr - Română (Romanian)
Package: luci-i18n-olsr-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 6966
Filename: luci/luci-i18n-olsr-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 7805
MD5Sum: 49e62b5f30ebb5e7c216177d29a9601c
SHA256sum: 17f5a9b704b99bf313da007e3740c5bffe1e86356fec1843fa27c67a3b649b99
Description: Translation for luci-app-olsr - Русский (Russian)
Package: luci-i18n-olsr-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-olsr-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 66f9313537a70dad8b4e23e1b50cdff2
SHA256sum: e95eae24326ff0b9dfcd6ff1b2c8cdee62d50c0f630a915fb545d245f1f434ae
Description: Translation for luci-app-olsr - Slovenčina (Slovene)
Package: luci-i18n-olsr-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-olsr-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 58c0229f5cacfa5d1dd20e95bfacbae0
SHA256sum: 2b37e9cc304954e438668509ec39a036e98c08ae935d3443a7d971e4df479315
Description: Translation for luci-app-olsr - Svenska (Swedish)
Package: luci-i18n-olsr-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-olsr-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 88bc8e43b63203eb962f81187d016293
SHA256sum: 046bdd373b6450f6e7c8e95f24259947f1d171f8c305edfcf8f945f27ecbd286
Description: Translation for luci-app-olsr - Türkçe (Turkish)
Package: luci-i18n-olsr-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci/luci-i18n-olsr-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1171
MD5Sum: f0de8b4a974751b0235d23fb9d483b4c
SHA256sum: cc0d14aafcd8b91d460fc463a816d79b312b4b62afaeb966b3a12a43967b116a
Description: Translation for luci-app-olsr - украї́нська (Ukrainian)
Package: luci-i18n-olsr-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1297
Filename: luci/luci-i18n-olsr-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2125
MD5Sum: 8d086db36ccc3d4e15d7c241b87c42e4
SHA256sum: 064b5df99682f89d8177882e375f3f8fad4e7bd56af7c8ef624d48bade12b14a
Description: Translation for luci-app-olsr - Tiếng Việt (Vietnamese)
Package: luci-i18n-olsr-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1187
Filename: luci/luci-i18n-olsr-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2004
MD5Sum: b30ca6f54747f70bc673cd97b79cecaa
SHA256sum: c2f88274b29bac581c7123bad71f32553d9ba9a653089299056c2717d5d381b3
Description: Translation for luci-app-olsr - 普通话 (Chinese)
Package: luci-i18n-olsr-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1296
Filename: luci/luci-i18n-olsr-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2132
MD5Sum: a69ce8236988d36969f67064a3e4bb85
SHA256sum: cda2c5aa96974011b4f673bf6a07e3ac21b39ebd94d0b488787d013d89e02e22
Description: Translation for luci-app-olsr - 臺灣華語 (Taiwanese)
Package: luci-i18n-openvpn-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5404
Filename: luci/luci-i18n-openvpn-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 6181
MD5Sum: 1b4f14445148992e120c1a3fd2de81f6
SHA256sum: fff9eeaed0c53780a25fa870e48a1cac408e331bf3dda9899df164cbab4a549a
Description: Translation for luci-app-openvpn - Català (Catalan)
Package: luci-i18n-openvpn-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1630
Filename: luci/luci-i18n-openvpn-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2451
MD5Sum: 9898ddc91b5d19603a86dec0b7e27ddd
SHA256sum: 3fee4a3ff540ce9dd940463a997d9d24a6e044c2f3c7b54f2e7b664e065c43e9
Description: Translation for luci-app-openvpn - Čeština (Czech)
Package: luci-i18n-openvpn-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5615
Filename: luci/luci-i18n-openvpn-de_git-15.079.29361-3e37216-1_all.ipk
Size: 6405
MD5Sum: d5a3205220ebabb1b3eab690f6c26c18
SHA256sum: 8d477e270aeab434d845c33c55d19c22c0541ccdcfa05c76b3344ec9072abcbf
Description: Translation for luci-app-openvpn - Deutsch (German)
Package: luci-i18n-openvpn-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1688
Filename: luci/luci-i18n-openvpn-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2519
MD5Sum: c6a84e7a8c0310ea87a880d2d1162bf2
SHA256sum: b63f23e061bbec1930ab9ed5dd14d4f14ceed759fec5a2c860858583ce045caa
Description: Translation for luci-app-openvpn - Ελληνικά (Greek)
Package: luci-i18n-openvpn-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci/luci-i18n-openvpn-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: a33554ed848e0e35f2a9135fa56ba4cc
SHA256sum: 9a7763c25321c289ba2b605b8f2faf2b8553eb0c6736828d785aecb703999989
Description: Translation for luci-app-openvpn - English
Package: luci-i18n-openvpn-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5507
Filename: luci/luci-i18n-openvpn-es_git-15.079.29361-3e37216-1_all.ipk
Size: 6284
MD5Sum: b0989d6c56c6aa5d94782542c8692be1
SHA256sum: 84835a1b41d873dfbd26a1991f16d39ab95fe57bc93f1ba7034911753a84f9eb
Description: Translation for luci-app-openvpn - Español (Spanish)
Package: luci-i18n-openvpn-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5804
Filename: luci/luci-i18n-openvpn-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 6603
MD5Sum: 1ed18be1d6451de39506cf53f7a52f68
SHA256sum: fccca1c18ba05af67c1d336fb6d548f9b98559a66f1da9ddc277be03a4430cfb
Description: Translation for luci-app-openvpn - Français (French)
Package: luci-i18n-openvpn-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-openvpn-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1154
MD5Sum: b9c011dbed72e7293eea97792d24c327
SHA256sum: c6d18b941cc57122bae7ff2a6f6ef56ed560d1d3f2cc1308156f401ba7f1f584
Description: Translation for luci-app-openvpn - עִבְרִית (Hebrew)
Package: luci-i18n-openvpn-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 2868
Filename: luci/luci-i18n-openvpn-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 3650
MD5Sum: f0ae308b82e0f1f884101a9fb356c5af
SHA256sum: a09dc6d7c15bfcfcf1941bfcc98eba6e3788373b95acee17a26c821801b04058
Description: Translation for luci-app-openvpn - Magyar (Hungarian)
Package: luci-i18n-openvpn-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1874
Filename: luci/luci-i18n-openvpn-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2685
MD5Sum: b8b6a7f2042f982edc11da22e6460024
SHA256sum: 2b315986d9e4320f6a9c7fadd8a7b6f7f9ac7717aefb04d17a61a02382847d2e
Description: Translation for luci-app-openvpn - Italiano (Italian)
Package: luci-i18n-openvpn-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1793
Filename: luci/luci-i18n-openvpn-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2615
MD5Sum: b98f09566bc2305171d93723cc401056
SHA256sum: c98fbfeb82953ec9fc24830344eee3652d20bcb1fe97bbbd1f0e3361ffae3549
Description: Translation for luci-app-openvpn - 日本語 (Japanese)
Package: luci-i18n-openvpn-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-openvpn-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: f154b21e154635c79bbff73b3b24f4a2
SHA256sum: 230c384b17af1a5517c12bfbee4cf624e546aa76ef195e8c8046bf4cd5412fc2
Description: Translation for luci-app-openvpn - Bahasa Melayu (Malay)
Package: luci-i18n-openvpn-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-openvpn-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: a36c2a7764d6800b2508a07647f1766f
SHA256sum: 084eb67ecd925ca3a14f0844e1e446fc8f3d46fbf910e5ca81f62724edf7086f
Description: Translation for luci-app-openvpn - Norsk (Norwegian)
Package: luci-i18n-openvpn-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5702
Filename: luci/luci-i18n-openvpn-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 6488
MD5Sum: 103612ebf296969e83a77e499ad64733
SHA256sum: e04881b05d56fa77cf18f4b2c69616a836652b5e7b58b9046ea6ba2c569826e8
Description: Translation for luci-app-openvpn - Polski (Polish)
Package: luci-i18n-openvpn-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5732
Filename: luci/luci-i18n-openvpn-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 6544
MD5Sum: 26e51f24d4055cf5811993046d292ff8
SHA256sum: 4162c5646b8c6cb56e7ce4e17ff8687825bbc4086fe1418432d11e33217ec580
Description: Translation for luci-app-openvpn - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-openvpn-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5671
Filename: luci/luci-i18n-openvpn-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 6466
MD5Sum: c58e5463e1a7cfca26c76eb35069ac9e
SHA256sum: 0acf2800119dcf358a9596a124cb1c11c5bcd2b134cc921730155f253df84c2e
Description: Translation for luci-app-openvpn - Português (Portuguese)
Package: luci-i18n-openvpn-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci/luci-i18n-openvpn-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1136
MD5Sum: d8434d0b764154996456c8e2a41f787d
SHA256sum: f610d462b3f613414c1bd1f17378ed9356058a593f7cf023c868367f67f4db03
Description: Translation for luci-app-openvpn - Română (Romanian)
Package: luci-i18n-openvpn-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 6362
Filename: luci/luci-i18n-openvpn-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 7213
MD5Sum: ada4420264824c333751bcbf9d5f4f81
SHA256sum: ac2afee2e5ed6566d4e37799df6adcbbbae25a6b4af1490405d7a8f3a0fabbcd
Description: Translation for luci-app-openvpn - Русский (Russian)
Package: luci-i18n-openvpn-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-openvpn-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: d432bc89441d7eed68399b17418799a1
SHA256sum: 96c664e36c66ecfe4fd2a4c0ebb760d8f978cba49d168c0418ea5422a537018a
Description: Translation for luci-app-openvpn - Slovenčina (Slovene)
Package: luci-i18n-openvpn-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-openvpn-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 1d9b46f4a89e7b604936b52984374624
SHA256sum: 8f0893d21b57c26233ced676d5df4e75de2a77bf7adbf13224a7395c83e616a7
Description: Translation for luci-app-openvpn - Svenska (Swedish)
Package: luci-i18n-openvpn-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-openvpn-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1127
MD5Sum: a35c74c83540feeb83ac951910effe6e
SHA256sum: 58601db766b24a919f6247eb9ab0b09aac83c86141077ec46d2a7c2d473bfc57
Description: Translation for luci-app-openvpn - Türkçe (Turkish)
Package: luci-i18n-openvpn-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 560
Filename: luci/luci-i18n-openvpn-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1397
MD5Sum: fe2383ab2bb36e114feba5446dee7376
SHA256sum: d3a65386e29c1451ccb48877d154d44987b1a1b808dbadf87d4e8eed983df427
Description: Translation for luci-app-openvpn - украї́нська (Ukrainian)
Package: luci-i18n-openvpn-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5192
Filename: luci/luci-i18n-openvpn-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 5991
MD5Sum: bbcada80b439e87d671ac8131a26f98b
SHA256sum: 1cf00b1dd3b4f8c9bfab5fa00f52f4e9a46bf1c385287c6a08f52eebd3eacecf
Description: Translation for luci-app-openvpn - Tiếng Việt (Vietnamese)
Package: luci-i18n-openvpn-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5435
Filename: luci/luci-i18n-openvpn-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 6228
MD5Sum: 2fe8a798a93076524f3f44c234fb8dcc
SHA256sum: f90c60f5887cf4b2c601f470098e75eb356673f01d6458098bf5d04eb6412059
Description: Translation for luci-app-openvpn - 普通话 (Chinese)
Package: luci-i18n-openvpn-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 347
Filename: luci/luci-i18n-openvpn-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1165
MD5Sum: 328607fbc45b400a1c5bf9d9953fcff7
SHA256sum: 104fe7923ead4aa0bf6ebc4849272c6950962ba3f2019a716ef90cd6ceb3ba16
Description: Translation for luci-app-openvpn - 臺灣華語 (Taiwanese)
Package: luci-i18n-p2pblock-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 652
Filename: luci/luci-i18n-p2pblock-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1454
MD5Sum: c18c5d66dcb85d0cc895941fbacbee32
SHA256sum: eca352d0699580ac918c9d5293f14ce3480207e21d744a4ce57968ce43d5e535
Description: Translation for luci-app-p2pblock - Català (Catalan)
Package: luci-i18n-p2pblock-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 550
Filename: luci/luci-i18n-p2pblock-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1354
MD5Sum: 755378ce380511d20df3bc6337a47a5c
SHA256sum: f604850b7d63d61e8dc9c89af16fbb1339881b598888ca123108fbbb1d56f315
Description: Translation for luci-app-p2pblock - Čeština (Czech)
Package: luci-i18n-p2pblock-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 713
Filename: luci/luci-i18n-p2pblock-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1515
MD5Sum: 7b3e2dd2c9b1f70f26ea5978f207c20a
SHA256sum: 0446b8c86551888a864794d8da6761ece7a74d1c59792c732dd9ede021bc16f5
Description: Translation for luci-app-p2pblock - Deutsch (German)
Package: luci-i18n-p2pblock-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 407
Filename: luci/luci-i18n-p2pblock-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1218
MD5Sum: 0d33a6b7f0ee07709600445c3d2e9117
SHA256sum: 9f233344d39ef13efc5712e15c8e9a8fa8b7592e393b449f269164ea1011cc74
Description: Translation for luci-app-p2pblock - Ελληνικά (Greek)
Package: luci-i18n-p2pblock-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 309
Filename: luci/luci-i18n-p2pblock-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1096
MD5Sum: c72c1e5a6911753f23e3bf642b0a0314
SHA256sum: 08e8873a5c1a997b65ce462c897062fda6b7fe5d157663c7a08afa3dab4aad96
Description: Translation for luci-app-p2pblock - English
Package: luci-i18n-p2pblock-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 649
Filename: luci/luci-i18n-p2pblock-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1456
MD5Sum: 989a0209fd75f838eeb43e40ee5f4f46
SHA256sum: 8b6f532b0d09d010ca41dd8790ffe962c9fd826136cc2f88236bca042901a567
Description: Translation for luci-app-p2pblock - Español (Spanish)
Package: luci-i18n-p2pblock-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 650
Filename: luci/luci-i18n-p2pblock-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1454
MD5Sum: a6f861aba425de23e8dab77516b845e3
SHA256sum: cf4f2c45124a3f3f70139133c17304c1c8278bfefe01c7324df9bb18de66825d
Description: Translation for luci-app-p2pblock - Français (French)
Package: luci-i18n-p2pblock-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 705
Filename: luci/luci-i18n-p2pblock-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1526
MD5Sum: 3c5da17503b3ce05fd7a64c678656635
SHA256sum: 44c15c156baafa49e1229fa4fe68c3da21e528250fa9b4cb11ec46c9d0dc8cc8
Description: Translation for luci-app-p2pblock - עִבְרִית (Hebrew)
Package: luci-i18n-p2pblock-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 667
Filename: luci/luci-i18n-p2pblock-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1472
MD5Sum: 8709e7795ae51426f2a5619109665a9b
SHA256sum: a855f277514ad50ec12ebc8f3615557f56f0820b890876ecda25926d9d7c3633
Description: Translation for luci-app-p2pblock - Magyar (Hungarian)
Package: luci-i18n-p2pblock-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 655
Filename: luci/luci-i18n-p2pblock-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1452
MD5Sum: ee9be374cd412fcf37d26fcca65e3535
SHA256sum: 98d911cea00336c1738e521f8371ee7388edf79ab32f4039db8f6e26ac2e0973
Description: Translation for luci-app-p2pblock - Italiano (Italian)
Package: luci-i18n-p2pblock-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-p2pblock-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: c4e92f194d2b1ead02ded687f0db67af
SHA256sum: b96ffe17f64aee1eb306221b9923387c3b6c7a04b0a6852514b1bc02f9263205
Description: Translation for luci-app-p2pblock - 日本語 (Japanese)
Package: luci-i18n-p2pblock-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-p2pblock-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 609ebc14e0fd36f0f26cba3011ca9297
SHA256sum: f72e9ae0dc0c5c5142a96b643e878b6e2b66b84b3ef85747b7cfd4c827c6fa29
Description: Translation for luci-app-p2pblock - Bahasa Melayu (Malay)
Package: luci-i18n-p2pblock-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 631
Filename: luci/luci-i18n-p2pblock-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1425
MD5Sum: ca2ee7091fe49fedd92fb9e3baebb04e
SHA256sum: 9a9413d3d603d7e49c909b8909f29e05fd54826b47f84b5e570f4335548c0888
Description: Translation for luci-app-p2pblock - Norsk (Norwegian)
Package: luci-i18n-p2pblock-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 631
Filename: luci/luci-i18n-p2pblock-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1427
MD5Sum: 0cdd6e1b651f0cb700560879ab6ed801
SHA256sum: 657f8a0383e5808e86d38af99432795f496943d92008a7dcb260de2fa5e77879
Description: Translation for luci-app-p2pblock - Polski (Polish)
Package: luci-i18n-p2pblock-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 660
Filename: luci/luci-i18n-p2pblock-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1479
MD5Sum: e12d639df370132d40a269305205e5cf
SHA256sum: c06dec06de4e6c4b9b37c61a7f3a84d86247944309402033ae521f2705a326b9
Description: Translation for luci-app-p2pblock - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-p2pblock-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 656
Filename: luci/luci-i18n-p2pblock-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1460
MD5Sum: 11ce3831683a2a3a2e3ab96cdf11b587
SHA256sum: f5076e45ac720f37948ff00a0c369cb231fbc15fbefdba292731b4acf9b8919a
Description: Translation for luci-app-p2pblock - Português (Portuguese)
Package: luci-i18n-p2pblock-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 639
Filename: luci/luci-i18n-p2pblock-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1445
MD5Sum: 89b923db5cc94fbe9a318743dd2c8b2e
SHA256sum: 5ef0ea8af6c90126cdd3c99c85448ad66796e63769b5bf12e9b11804b3f233b8
Description: Translation for luci-app-p2pblock - Română (Romanian)
Package: luci-i18n-p2pblock-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 704
Filename: luci/luci-i18n-p2pblock-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1521
MD5Sum: 6e40cb550120822b314195b3e5c4b6dc
SHA256sum: c971a2bdd2f9b1211581641dac7ec9ec76f78b7af92322312aa32b47d4bea503
Description: Translation for luci-app-p2pblock - Русский (Russian)
Package: luci-i18n-p2pblock-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-p2pblock-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: d2606f9ea13f44c81126b72cc587e40d
SHA256sum: e5fc8cd6745b9db19d3761e2b3d7f2a66bc9c836b45106b1fe008bf4ea293ea4
Description: Translation for luci-app-p2pblock - Slovenčina (Slovene)
Package: luci-i18n-p2pblock-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-p2pblock-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: b7f7d2d320461e2ef084f81b6d8f2f50
SHA256sum: 979869b0ae8b52f121b8919035828a0f15c33d368ed0e8135dbdeb16419d95c4
Description: Translation for luci-app-p2pblock - Svenska (Swedish)
Package: luci-i18n-p2pblock-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 666
Filename: luci/luci-i18n-p2pblock-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1472
MD5Sum: 94b70958262e8e2f2b9d268e3b50d244
SHA256sum: 65b8603f18601313c7c34634ec442e39c438a8e4349ba076b322018f6438bb58
Description: Translation for luci-app-p2pblock - Türkçe (Turkish)
Package: luci-i18n-p2pblock-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 767
Filename: luci/luci-i18n-p2pblock-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1604
MD5Sum: 6763dbe2de1b44019fe27e78f856f801
SHA256sum: d56bcf0e3a0d5b0ddd77db9382a4c0d27dd65eb4c788fa7ad74ec3a128194480
Description: Translation for luci-app-p2pblock - украї́нська (Ukrainian)
Package: luci-i18n-p2pblock-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 628
Filename: luci/luci-i18n-p2pblock-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1447
MD5Sum: d8686995978a53bee53fa5650a291806
SHA256sum: 15960d08b029ae86424c5274e7b28c0320e41d60b5618aedc62aa1210826b224
Description: Translation for luci-app-p2pblock - Tiếng Việt (Vietnamese)
Package: luci-i18n-p2pblock-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 653
Filename: luci/luci-i18n-p2pblock-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1458
MD5Sum: 2f979325b281e11820b9c1172bdc66d7
SHA256sum: 6e28673e49f1b0d163803fee86b7a89778d674b7bb23811cf70a4d7f37404eb0
Description: Translation for luci-app-p2pblock - 普通话 (Chinese)
Package: luci-i18n-p2pblock-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 709
Filename: luci/luci-i18n-p2pblock-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1529
MD5Sum: b5d39cd21523ea4ec81709f351bffe22
SHA256sum: 3aa1e647273348cbda3164cd107752bb876e47bff507b4acadb370e3bf7f0a58
Description: Translation for luci-app-p2pblock - 臺灣華語 (Taiwanese)
Package: luci-i18n-p910nd-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 687
Filename: luci/luci-i18n-p910nd-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1485
MD5Sum: 549352b4429c37546765c5abe966d629
SHA256sum: bd296c5560dc99140796c432937215bf970b5e0044125443664a6726e9e3d9d8
Description: Translation for luci-app-p910nd - Català (Catalan)
Package: luci-i18n-p910nd-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 713
Filename: luci/luci-i18n-p910nd-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1519
MD5Sum: b63bbc0af4edd082e07c0bbb3fb91df4
SHA256sum: 1cf0dac8b49f6433c8df80ff4ca7c956ebd3400a47b84b3961f7a5f38f17c915
Description: Translation for luci-app-p910nd - Čeština (Czech)
Package: luci-i18n-p910nd-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 622
Filename: luci/luci-i18n-p910nd-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1419
MD5Sum: bafce513946506fef1e546c5817ed1d4
SHA256sum: 03070ebc2d291cd98ee3fcd9e8ddd0b9120122d766f6644e1103edf198743161
Description: Translation for luci-app-p910nd - Deutsch (German)
Package: luci-i18n-p910nd-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 762
Filename: luci/luci-i18n-p910nd-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1581
MD5Sum: 1a63e7222e900af1aaf281cdb2aa8bb8
SHA256sum: 19a76e9b6d1ea4394a0412c9b89f13d048d9ffe2563c1cf21b3554d12c3ef330
Description: Translation for luci-app-p910nd - Ελληνικά (Greek)
Package: luci-i18n-p910nd-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 304
Filename: luci/luci-i18n-p910nd-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1087
MD5Sum: 4f8728ac0c49be5a88aee8c33d165f61
SHA256sum: d34be77ff488cf33d2d9dc5c3b437f9d4fc1227f89dea6e72dc36bbd30e8f03d
Description: Translation for luci-app-p910nd - English
Package: luci-i18n-p910nd-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 708
Filename: luci/luci-i18n-p910nd-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1504
MD5Sum: a6a77d2aef419b62e15378023503ce37
SHA256sum: 279d208d694e349610b66b87bfb9649e02c4c9dce6e14503fd1307320ea22f88
Description: Translation for luci-app-p910nd - Español (Spanish)
Package: luci-i18n-p910nd-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 648
Filename: luci/luci-i18n-p910nd-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1445
MD5Sum: 00f473e7be464be9613199cac6194c23
SHA256sum: 1e12f2a31a257a01615b51d24c0df5f1fc69cf4ff36ffbe534819544133febec
Description: Translation for luci-app-p910nd - Français (French)
Package: luci-i18n-p910nd-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 693
Filename: luci/luci-i18n-p910nd-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1515
MD5Sum: 94f7a9b20725a54a0796b09572b3637d
SHA256sum: a5b806f9b048a2cc52a5cb6d7dc0c5e5cf2d1772604c2f23a389aa2abc045e53
Description: Translation for luci-app-p910nd - עִבְרִית (Hebrew)
Package: luci-i18n-p910nd-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 662
Filename: luci/luci-i18n-p910nd-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1457
MD5Sum: 358d537b0ec79928779b2676427b10d1
SHA256sum: 79e9232880d242be4b212c8bb4b777d30835c0f3692c5174d8e9e46f7bf2d41c
Description: Translation for luci-app-p910nd - Magyar (Hungarian)
Package: luci-i18n-p910nd-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 714
Filename: luci/luci-i18n-p910nd-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1502
MD5Sum: 86e1404d8b445060528bb334f698da17
SHA256sum: 39a9e5f43b48d642c0b32463274ce92cbce076f7a10d5c08fd38d83bd7c93394
Description: Translation for luci-app-p910nd - Italiano (Italian)
Package: luci-i18n-p910nd-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 728
Filename: luci/luci-i18n-p910nd-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1548
MD5Sum: 2213a4d860c71d100a3cea502e8c8039
SHA256sum: 7ed072462889542fab890805ae33a17b2953e24d98e61c2a06ab6945473eb67e
Description: Translation for luci-app-p910nd - 日本語 (Japanese)
Package: luci-i18n-p910nd-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-p910nd-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 7ba738322877b75a2a0fbbb06c5a2b3a
SHA256sum: b70410e62c9598cab5355d1dab6e5e396aafc70284fa78de0aba1782743e723d
Description: Translation for luci-app-p910nd - Bahasa Melayu (Malay)
Package: luci-i18n-p910nd-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 629
Filename: luci/luci-i18n-p910nd-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1425
MD5Sum: 2e6734b8989a41c2949b6293c621b00d
SHA256sum: 468c5323db3a34e229b7ec5ef506b75ae5497aa239158e2281889c5c31064ece
Description: Translation for luci-app-p910nd - Norsk (Norwegian)
Package: luci-i18n-p910nd-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 682
Filename: luci/luci-i18n-p910nd-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1476
MD5Sum: 80c32b96d5774b0b844eaac5f45d92b6
SHA256sum: f44d0f86af57ea4dc99cefb58a9b2339393fbfc4da821f4ef1de38732e8df6fc
Description: Translation for luci-app-p910nd - Polski (Polish)
Package: luci-i18n-p910nd-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 717
Filename: luci/luci-i18n-p910nd-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1534
MD5Sum: cddc1967870b71212945e1bcecf90923
SHA256sum: c9fa5b2c2993d9dd585bfdf82f691caf0aab2bda7ac220f4713e604d68c236fc
Description: Translation for luci-app-p910nd - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-p910nd-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 654
Filename: luci/luci-i18n-p910nd-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1458
MD5Sum: 2b15a71a8b5cd1d35c5f85fc486cb5a1
SHA256sum: 8f9286a90bb7f325f33eefa3a1de4e5b2c091950a295de2e44256f0092f3a05d
Description: Translation for luci-app-p910nd - Português (Portuguese)
Package: luci-i18n-p910nd-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 465
Filename: luci/luci-i18n-p910nd-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1266
MD5Sum: 131568a1598b01181b724de08c095ad0
SHA256sum: 0e065587a620802d80fbbdfecc2e518e85aac4feca93bbfbf2f3a49d74ae8919
Description: Translation for luci-app-p910nd - Română (Romanian)
Package: luci-i18n-p910nd-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 750
Filename: luci/luci-i18n-p910nd-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1570
MD5Sum: f543332895f34be9130bfb9e1f55e664
SHA256sum: f3678647eaefe7ad4d078eb3c083b308e219f72cf7cfbe46a0f21eb743490860
Description: Translation for luci-app-p910nd - Русский (Russian)
Package: luci-i18n-p910nd-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-p910nd-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 6b9e562b0c2bdeb6d33f690b23d8af45
SHA256sum: 29c288202789da8d49bb31be4514ab0453f01126a5eda6e5b1079ef2a53b9e72
Description: Translation for luci-app-p910nd - Slovenčina (Slovene)
Package: luci-i18n-p910nd-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-p910nd-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: 885cc33a14f38615d1509fd6e3f871a0
SHA256sum: 1e1a1e41400edd14a0413efb800345424003ef6bc86a64c3f56e7e7b2cd064c8
Description: Translation for luci-app-p910nd - Svenska (Swedish)
Package: luci-i18n-p910nd-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 644
Filename: luci/luci-i18n-p910nd-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1442
MD5Sum: 78a0be36cb831d5828635443a79be407
SHA256sum: 43ef98e43adaa4b2d3aca4cb40ea99e5517b4eb64bd53cb8dfff19cac4e42cec
Description: Translation for luci-app-p910nd - Türkçe (Turkish)
Package: luci-i18n-p910nd-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 751
Filename: luci/luci-i18n-p910nd-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1581
MD5Sum: 94d7120a64d731c0446847738307c7a3
SHA256sum: d08c89a0e617625859a1407b652251ef7383a702fe28d3ace21ae9bbd7cb51d1
Description: Translation for luci-app-p910nd - украї́нська (Ukrainian)
Package: luci-i18n-p910nd-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 576
Filename: luci/luci-i18n-p910nd-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1394
MD5Sum: c15f684856bc09f4945b9c980bc049da
SHA256sum: e3e46c34b4d77d8c7cc87afc3913f3b97809588216d7e76d66059129d52b9344
Description: Translation for luci-app-p910nd - Tiếng Việt (Vietnamese)
Package: luci-i18n-p910nd-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 687
Filename: luci/luci-i18n-p910nd-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1498
MD5Sum: 35f62ccb002755f2aa76acbdc2c11f84
SHA256sum: 8de2bc7e11672a7580509e3314750f3181db54f929753950bf198be49bf9ec24
Description: Translation for luci-app-p910nd - 普通话 (Chinese)
Package: luci-i18n-p910nd-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 687
Filename: luci/luci-i18n-p910nd-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1510
MD5Sum: a0ce8b8910c9760e9232e0034c7cd3a9
SHA256sum: 88c79eba311261255369b47094d310176550f2c0d60b72324a194d7fbb8fd3f2
Description: Translation for luci-app-p910nd - 臺灣華語 (Taiwanese)
Package: luci-i18n-pbx-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 2321
Filename: luci/luci-i18n-pbx-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3095
MD5Sum: ac901cab8910b2be845974d8e4d2d654
SHA256sum: 369b2c25309fbdb14d48cef299090c35aa706296db3c242093c447d6ef6b9627
Description: Translation for luci-app-pbx - Català (Catalan)
Package: luci-i18n-pbx-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1038
Filename: luci/luci-i18n-pbx-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1838
MD5Sum: 3cb67d4c2a9246cf624e4103210a4b8e
SHA256sum: 0a94f966f56967225972ea33c4d109b135ec7c254f1033662e2527648acd69f0
Description: Translation for luci-app-pbx - Čeština (Czech)
Package: luci-i18n-pbx-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 6545
Filename: luci/luci-i18n-pbx-de_git-15.079.29361-3e37216-1_all.ipk
Size: 7364
MD5Sum: a80c85b2c7600fe31de0ef50c49a0f34
SHA256sum: 20684c521f479782274d93dd48f0a6bf4c76e39060e309c6e1b6ae4ca629287d
Description: Translation for luci-app-pbx - Deutsch (German)
Package: luci-i18n-pbx-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 726
Filename: luci/luci-i18n-pbx-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1540
MD5Sum: ae96d9df23ded9e12c651cb2fc115d3a
SHA256sum: b5ac780ea666d20a8eee85b6600e7a09ec5ff07189afc60d2152358c40a634bf
Description: Translation for luci-app-pbx - Ελληνικά (Greek)
Package: luci-i18n-pbx-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 305
Filename: luci/luci-i18n-pbx-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1086
MD5Sum: a9f0a68f2a6dea7c7cece43e32e5f607
SHA256sum: 09974848230ca6c77e7d197b64c478133c264f259168f09cfefe9ede80498544
Description: Translation for luci-app-pbx - English
Package: luci-i18n-pbx-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 6552
Filename: luci/luci-i18n-pbx-es_git-15.079.29361-3e37216-1_all.ipk
Size: 7342
MD5Sum: 707b2390ff79af437d70aff5ba1bf6fd
SHA256sum: 281e418a3b5ad622389130746e5a66ba51beaeaf15f323cbc7c7da76846c68a2
Description: Translation for luci-app-pbx - Español (Spanish)
Package: luci-i18n-pbx-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-pbx-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: 3ecb37adc81dda7f26137bd8b851243c
SHA256sum: 60b24554bbf09ee9f9a744a2be00ab1895bbd5eccaf92ba485644af302cdb457
Description: Translation for luci-app-pbx - Français (French)
Package: luci-i18n-pbx-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-pbx-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1143
MD5Sum: bc18f56239c10b4482280ce66d157b98
SHA256sum: ad5ee1fa6d80929d6f6725dbda8b44860f9cdc35988673261f102b6e5f7d9162
Description: Translation for luci-app-pbx - עִבְרִית (Hebrew)
Package: luci-i18n-pbx-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-pbx-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 0f52a24138ea7648427e4e7a4793bf4d
SHA256sum: fc94edcde9767b28a8061306f16977ed061f02ca977f6ddefc070cd66f009b6f
Description: Translation for luci-app-pbx - Magyar (Hungarian)
Package: luci-i18n-pbx-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 370
Filename: luci/luci-i18n-pbx-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: 1aee3b9b207df4c13690ce9b5b8acc83
SHA256sum: e85a6f1e76033b4c2ab6fc45921b96392b279a08a1e6b06f07a5d0bf212dcd32
Description: Translation for luci-app-pbx - Italiano (Italian)
Package: luci-i18n-pbx-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 899
Filename: luci/luci-i18n-pbx-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1721
MD5Sum: eaf345128c2468b76260af2298e04ab7
SHA256sum: 752426a1d10ab95b52db41692d0426c998f1c3337c6d0e6b94fc6d5118ccc437
Description: Translation for luci-app-pbx - 日本語 (Japanese)
Package: luci-i18n-pbx-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-pbx-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: f1f409145091c92dac661dbd1e9e80db
SHA256sum: 3dde4095241bb7ff811d6752a5f6374ff9488571ef669a0b5d9a0be864154ffe
Description: Translation for luci-app-pbx - Bahasa Melayu (Malay)
Package: luci-i18n-pbx-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 313
Filename: luci/luci-i18n-pbx-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 175c2ce306c1e1737ef5565a8c8d68e8
SHA256sum: 64c3a24726b73b62f1712b7410829536144f498252ea8f0ffdbb4a555b6cfabf
Description: Translation for luci-app-pbx - Norsk (Norwegian)
Package: luci-i18n-pbx-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1782
Filename: luci/luci-i18n-pbx-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2585
MD5Sum: e473d51f83175311621df3f6764140ef
SHA256sum: d4fd490f2122fe53089fd6ab14a485c46f94d3b58bed587fb387363094bac2c4
Description: Translation for luci-app-pbx - Polski (Polish)
Package: luci-i18n-pbx-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 7343
Filename: luci/luci-i18n-pbx-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 8181
MD5Sum: 28dd0c436a85e68c23d61221385e6d8d
SHA256sum: db07a382837b1443bd0760cd3f5a814fe7705384f962ba7af5377146516ae48a
Description: Translation for luci-app-pbx - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-pbx-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 480
Filename: luci/luci-i18n-pbx-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1279
MD5Sum: 24309d40991541334eaa7d7927ada492
SHA256sum: 22dd4bae87d66220c370cfce1ffda704e097b4d3dbed76acc5537c16ded19e64
Description: Translation for luci-app-pbx - Português (Portuguese)
Package: luci-i18n-pbx-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 632
Filename: luci/luci-i18n-pbx-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1438
MD5Sum: 69ac9237ea18519f161ba875ef32b3cc
SHA256sum: 883dadc584c977a7c28487f7c85c7b1b53e4d70f5a6d91cb2754fa99361b2565
Description: Translation for luci-app-pbx - Română (Romanian)
Package: luci-i18n-pbx-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 2701
Filename: luci/luci-i18n-pbx-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3515
MD5Sum: 6c76bfb7863fa182d54ca4a7b016ac13
SHA256sum: 692f7e2f02bac91d27c84eba39a05e607fe7bf6bacef34b90332999524232108
Description: Translation for luci-app-pbx - Русский (Russian)
Package: luci-i18n-pbx-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-pbx-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: e65ed5d6b773773bf8413e12fef178d9
SHA256sum: 21829289ddf174e24e808404ce7f4c872917c9efe3775daef6efd444b750216a
Description: Translation for luci-app-pbx - Slovenčina (Slovene)
Package: luci-i18n-pbx-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 2321
Filename: luci/luci-i18n-pbx-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 3131
MD5Sum: eaa4e4f4b49d22bcb4f11cbec92715ee
SHA256sum: 08141bb218dd3efa7e711e1463ef8ee7502594736d158658add85f2f8084a05c
Description: Translation for luci-app-pbx - Svenska (Swedish)
Package: luci-i18n-pbx-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-pbx-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 5d0d353b503928c2ba828b829b72e0aa
SHA256sum: 67ec0e0d1197492efcb51176a5e668483df0533bc389ed83124658ed3e3543ca
Description: Translation for luci-app-pbx - Türkçe (Turkish)
Package: luci-i18n-pbx-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1353
Filename: luci/luci-i18n-pbx-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2193
MD5Sum: c1e696d52119b94c5fea1df6630b74cd
SHA256sum: cf02efcb34e83152069dcc4e6faa57f83aca6f925ab8f082f1eabeeb540497c8
Description: Translation for luci-app-pbx - украї́нська (Ukrainian)
Package: luci-i18n-pbx-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-pbx-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1140
MD5Sum: 3270a5705cf6c5bff0d4e2b677e8df6c
SHA256sum: 065d0278061b6932dd61263329a71550b7290ffe080e3fb754a6ac36a9a0ed55
Description: Translation for luci-app-pbx - Tiếng Việt (Vietnamese)
Package: luci-i18n-pbx-voicemail-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1123
Filename: luci/luci-i18n-pbx-voicemail-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1936
MD5Sum: 56d1523c7a54e24556f6518ccb349131
SHA256sum: 0272c3ae635a1fe21e59691e1d49edb39389065404303ea3212f99d7599d2e93
Description: Translation for luci-app-pbx-voicemail - Català (Catalan)
Package: luci-i18n-pbx-voicemail-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 559
Filename: luci/luci-i18n-pbx-voicemail-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1370
MD5Sum: e77254614af5c2608afe9895b8f10bbf
SHA256sum: 96a8d92cc7ce936189e8f17cc95102f3106f571a19b60ef3cbc80ca001e770ca
Description: Translation for luci-app-pbx-voicemail - Čeština (Czech)
Package: luci-i18n-pbx-voicemail-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1688
Filename: luci/luci-i18n-pbx-voicemail-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2505
MD5Sum: 7de2a49f17379ac7f5977b0180cf8095
SHA256sum: 167afe53ac66a33750e58cfb3316a2ac25e749ce1a6e3fd5b89e19ec329715f4
Description: Translation for luci-app-pbx-voicemail - Deutsch (German)
Package: luci-i18n-pbx-voicemail-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 398
Filename: luci/luci-i18n-pbx-voicemail-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1211
MD5Sum: ee0c9a4cebde2ab48289b2d7a060f48e
SHA256sum: 442a8d0f3074df3ee74ae9ab3ab97e07fb8b1580b940f485c53f76e5532e10aa
Description: Translation for luci-app-pbx-voicemail - Ελληνικά (Greek)
Package: luci-i18n-pbx-voicemail-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 311
Filename: luci/luci-i18n-pbx-voicemail-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: b616213930c67e9fc8e1005d626b30d9
SHA256sum: 2de4d13644e8e781c3ec74f0b240fea99b3e1e5018d64f5ee8619018618c702a
Description: Translation for luci-app-pbx-voicemail - English
Package: luci-i18n-pbx-voicemail-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1352
Filename: luci/luci-i18n-pbx-voicemail-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2174
MD5Sum: e516b1a11bb7f618f7463dddb09f82cd
SHA256sum: 430a2cdb5c6811bf5d803af528ecf8632c7baacfb3c0680d2689aefcb1881ff0
Description: Translation for luci-app-pbx-voicemail - Español (Spanish)
Package: luci-i18n-pbx-voicemail-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-pbx-voicemail-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1130
MD5Sum: 55de8a3a4e5e6969498b9833c57d2dab
SHA256sum: c5a1f27e23a6ce58b7a1ad9ea0fe3906ed75821747b31166ce98851c2928451a
Description: Translation for luci-app-pbx-voicemail - Français (French)
Package: luci-i18n-pbx-voicemail-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 341
Filename: luci/luci-i18n-pbx-voicemail-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1161
MD5Sum: a4bddb9421faa0e61ec16fa6c58c3212
SHA256sum: 55c9e738fde7f3d9da133843af8f0985564ab813d340c8b53e0c524ada702b89
Description: Translation for luci-app-pbx-voicemail - עִבְרִית (Hebrew)
Package: luci-i18n-pbx-voicemail-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-pbx-voicemail-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: 2f529c93761bd2e3b1464e8074e26fe4
SHA256sum: 5154e172eee53043b57c8be97dc44ca7d294dd80f732544a8f979f62ecb0108e
Description: Translation for luci-app-pbx-voicemail - Magyar (Hungarian)
Package: luci-i18n-pbx-voicemail-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1478
Filename: luci/luci-i18n-pbx-voicemail-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2292
MD5Sum: 1d7c088116c51436db7c7d38e96143ed
SHA256sum: 2aef4579e067327480111aeaf4637f25a47f08cca79b2f3f96c8d711278e475c
Description: Translation for luci-app-pbx-voicemail - Italiano (Italian)
Package: luci-i18n-pbx-voicemail-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-pbx-voicemail-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: f9bea0d177df5754027506fc6c430a7e
SHA256sum: 402ef0b1b1820aa31a08caf034e433a30c3805767a84e6fef376bf431939b024
Description: Translation for luci-app-pbx-voicemail - 日本語 (Japanese)
Package: luci-i18n-pbx-voicemail-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-pbx-voicemail-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: f76e03e3733ca5259042faee724d464e
SHA256sum: 1f42aefe9a74f09dcfef16c8f28d5c54bda23cbf2db94d6f3e43de8e954e2704
Description: Translation for luci-app-pbx-voicemail - Bahasa Melayu (Malay)
Package: luci-i18n-pbx-voicemail-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-pbx-voicemail-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: ac87665d3b112550e17996046d1cd480
SHA256sum: f7b582408074c6b7ba993ee7a0e9fb3ad1fc1725c6a995e4a334af49551090b1
Description: Translation for luci-app-pbx-voicemail - Norsk (Norwegian)
Package: luci-i18n-pbx-voicemail-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1480
Filename: luci/luci-i18n-pbx-voicemail-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2292
MD5Sum: 9fa51cafc789f71af6e119d21e52e70f
SHA256sum: 240458b5668bee0e6a0f454a00a17035fc67fa53780db32d6a23d46974c9faf6
Description: Translation for luci-app-pbx-voicemail - Polski (Polish)
Package: luci-i18n-pbx-voicemail-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1582
Filename: luci/luci-i18n-pbx-voicemail-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2428
MD5Sum: 2ccaf81eac4a857f9ae5322c13e1f949
SHA256sum: 32e113fb2748786e756905803128fca5d957f453d4761d6e084104a593275a1a
Description: Translation for luci-app-pbx-voicemail - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-pbx-voicemail-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 684
Filename: luci/luci-i18n-pbx-voicemail-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1497
MD5Sum: 53868d7f4f4d95fee62dd3173fe44f08
SHA256sum: 2e9648b23afb492cbccc60137c02730aca7f5656e8a8e66d35fe5bb288dfaa54
Description: Translation for luci-app-pbx-voicemail - Português (Portuguese)
Package: luci-i18n-pbx-voicemail-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 328
Filename: luci/luci-i18n-pbx-voicemail-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1133
MD5Sum: 64c50ce85e2d6b0b2a8b4ff1ef99a4a6
SHA256sum: ab13cf2ae6859e657e81f2dcf7bcc829791dd11f7ae83a31952a8c4774bccbb4
Description: Translation for luci-app-pbx-voicemail - Română (Romanian)
Package: luci-i18n-pbx-voicemail-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1719
Filename: luci/luci-i18n-pbx-voicemail-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2552
MD5Sum: 3d1a5dae6e49f538bea8754d8760d98b
SHA256sum: eafab3dba6c036197a1cbd69bf6da5748cae56d30a62bd0a5d4c01c5043ee32f
Description: Translation for luci-app-pbx-voicemail - Русский (Russian)
Package: luci-i18n-pbx-voicemail-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 327
Filename: luci/luci-i18n-pbx-voicemail-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1136
MD5Sum: 8adaacbf74fab46dea52e6d1f4c0b947
SHA256sum: e7d809eefe039fa2614985f0305a4fb365b99a7fbf40737b94c092b8b77a7ea5
Description: Translation for luci-app-pbx-voicemail - Slovenčina (Slovene)
Package: luci-i18n-pbx-voicemail-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-pbx-voicemail-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: fe804925145246704ca6317f0873609f
SHA256sum: 8c1232b03cd45a85374e9dce5830c72d68dd8b97534c6d102501e4ac858ebf6a
Description: Translation for luci-app-pbx-voicemail - Svenska (Swedish)
Package: luci-i18n-pbx-voicemail-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 328
Filename: luci/luci-i18n-pbx-voicemail-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1133
MD5Sum: 59d1327e15212afbcbbf7bac325922e5
SHA256sum: 4077d462c2dea1f06c3c849f5cda669a0e2603c678b3191fb3f9498ac0cbc1f1
Description: Translation for luci-app-pbx-voicemail - Türkçe (Turkish)
Package: luci-i18n-pbx-voicemail-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 351
Filename: luci/luci-i18n-pbx-voicemail-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1182
MD5Sum: 37f28c99a568b88cdc0372c32729c53f
SHA256sum: 2a9033374d15ad12d1313264c5e4b9d663bbdd346d3470abacc80f2bf8a7fc3f
Description: Translation for luci-app-pbx-voicemail - украї́нська (Ukrainian)
Package: luci-i18n-pbx-voicemail-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 339
Filename: luci/luci-i18n-pbx-voicemail-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1158
MD5Sum: e836307bca9f7765ebe7f764a36b4cb2
SHA256sum: 36115957fb8e9c161410a3a1887280bf1a0e134d001e07de06a707895bc2e2dd
Description: Translation for luci-app-pbx-voicemail - Tiếng Việt (Vietnamese)
Package: luci-i18n-pbx-voicemail-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1464
Filename: luci/luci-i18n-pbx-voicemail-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2300
MD5Sum: 4cc6050dd0ef669c50e5c3c23b7ab88c
SHA256sum: 6f9e36fc2fe340e3dc95786f055db3b82a8f4739c128db2d33d3f69722ab24a2
Description: Translation for luci-app-pbx-voicemail - 普通话 (Chinese)
Package: luci-i18n-pbx-voicemail-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1494
Filename: luci/luci-i18n-pbx-voicemail-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2347
MD5Sum: 65ee677a9f8ff3314a505caff8f08b5f
SHA256sum: f7e1693cedf33c201ba58648bbcaaaca32141bbda731b91d429ab678bc7c426c
Description: Translation for luci-app-pbx-voicemail - 臺灣華語 (Taiwanese)
Package: luci-i18n-pbx-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1966
Filename: luci/luci-i18n-pbx-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2786
MD5Sum: 41755d9e13f0f87c7c85ccd9a6515756
SHA256sum: 1ffa58b6a97877efb2c0d2b06c37e4f9f513e453c6a80bfa3fb51c535208d5e7
Description: Translation for luci-app-pbx - 普通话 (Chinese)
Package: luci-i18n-pbx-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 3015
Filename: luci/luci-i18n-pbx-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 3817
MD5Sum: abed8174d34505da8465a118778d1991
SHA256sum: 792e6655e18651b27aafce72c8df8c5496b7cb9642fe92039896dd9363a3358c
Description: Translation for luci-app-pbx - 臺灣華語 (Taiwanese)
Package: luci-i18n-polipo-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2178
Filename: luci/luci-i18n-polipo-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2982
MD5Sum: 58c4826cb8f1c4341fa3b46ce862f68e
SHA256sum: b1cf31fe2e4a206612111d1b457e5def6e66922320269f92001556895a4a9d6c
Description: Translation for luci-app-polipo - Català (Catalan)
Package: luci-i18n-polipo-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 620
Filename: luci/luci-i18n-polipo-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1423
MD5Sum: 8da5e95580d8ed664fc9ba09665b8320
SHA256sum: f26f11dc5f9ccd6add73c983a4d670495b714b25aa9c7c36cabe095d091fb986
Description: Translation for luci-app-polipo - Čeština (Czech)
Package: luci-i18n-polipo-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2654
Filename: luci/luci-i18n-polipo-de_git-15.079.29361-3e37216-1_all.ipk
Size: 3438
MD5Sum: 873af73ddf097d52b0fbcc213eb51d34
SHA256sum: a826d3c888d274b046e601337e9a89c57d31995c8a316cc9e099eafbb827ebde
Description: Translation for luci-app-polipo - Deutsch (German)
Package: luci-i18n-polipo-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 414
Filename: luci/luci-i18n-polipo-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1223
MD5Sum: 733ea353b80f9dad0808024a6e6bb256
SHA256sum: a120256bd52936ba76219840a1bbeea9f8b58e9332ea625b6e0022e4290f6ebf
Description: Translation for luci-app-polipo - Ελληνικά (Greek)
Package: luci-i18n-polipo-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 556
Filename: luci/luci-i18n-polipo-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1345
MD5Sum: 5700480adf0b46c6d2fe4dc0157e07be
SHA256sum: 25ada4c4b3d92adf8c4d0d1a12ab3d3595bfe44fd230d4346b989b0a5ae62f54
Description: Translation for luci-app-polipo - English
Package: luci-i18n-polipo-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2520
Filename: luci/luci-i18n-polipo-es_git-15.079.29361-3e37216-1_all.ipk
Size: 3296
MD5Sum: 2678e4ed34148aef0d047675f54ccea4
SHA256sum: 2216bf8039995bcd31486b911fd351fd45b3a21afd39450136f6379011cdcd85
Description: Translation for luci-app-polipo - Español (Spanish)
Package: luci-i18n-polipo-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-polipo-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 87e2b5874a8d3af0488c7c649fda038e
SHA256sum: 44326f35eceaae25ba71bc040e63584a00b4938d2714c88569e231b7b221bc11
Description: Translation for luci-app-polipo - Français (French)
Package: luci-i18n-polipo-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-polipo-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 8022a7eaf49c3b464e6ca8c586369437
SHA256sum: cb91f7431c6556e7afb1733cb0248162c62ea3a034b35833a91ec6532aa0d530
Description: Translation for luci-app-polipo - עִבְרִית (Hebrew)
Package: luci-i18n-polipo-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-polipo-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 30c0e59199118e023c82e6805b54ccd9
SHA256sum: 018832e4bfaee7de1d048ccc34e2001ceff4dfba65efa85408fcd3562e384fa0
Description: Translation for luci-app-polipo - Magyar (Hungarian)
Package: luci-i18n-polipo-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 1610
Filename: luci/luci-i18n-polipo-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2414
MD5Sum: 9b288e8594b1aaaa915886cde145dcab
SHA256sum: b0665e4dd1186cee7c69f0ab30063bd5a9b1edd3f17dc335e39a715626557813
Description: Translation for luci-app-polipo - Italiano (Italian)
Package: luci-i18n-polipo-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2394
Filename: luci/luci-i18n-polipo-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3189
MD5Sum: 88c849e5697a38bd42cd4794c42472d8
SHA256sum: 3f4ffa27e02e5b9a5d5070f309728c2954d25f8778d7503f06590d2805b301ac
Description: Translation for luci-app-polipo - 日本語 (Japanese)
Package: luci-i18n-polipo-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-polipo-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 749898c721796115fe2a0eeb127fcef8
SHA256sum: 46faa3cdbb10f377168ee0c25c1c6f659f1c4f1ceba8d2e2513e9e41f2fca282
Description: Translation for luci-app-polipo - Bahasa Melayu (Malay)
Package: luci-i18n-polipo-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 313
Filename: luci/luci-i18n-polipo-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1103
MD5Sum: 228cb2d70c42c83dd12604ccc42eb17e
SHA256sum: 92b485538a8eba90a0fea3b708bd44108fcff2d028842aedc6025d56877c53a6
Description: Translation for luci-app-polipo - Norsk (Norwegian)
Package: luci-i18n-polipo-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2616
Filename: luci/luci-i18n-polipo-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 3386
MD5Sum: 137ba3aac3a47b6ca8ee647201308840
SHA256sum: 571d863ea5934226949b4ae4781ff3f21c6f269f200df96d425a62000cc8a5f0
Description: Translation for luci-app-polipo - Polski (Polish)
Package: luci-i18n-polipo-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2569
Filename: luci/luci-i18n-polipo-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 3371
MD5Sum: 58d2a4155f0850109229bb087362119c
SHA256sum: 15190422f697261aed7df82d320d15a56e2b75a20c72568bb498be29e3af6ef2
Description: Translation for luci-app-polipo - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-polipo-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2557
Filename: luci/luci-i18n-polipo-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 3340
MD5Sum: 739d9cdc3bdd14e9f5f6414204ec9581
SHA256sum: fc9b3a6f8b3ffaa568c6d6c49c80597c8d566f783d00ebf71edb0db13ec183e0
Description: Translation for luci-app-polipo - Português (Portuguese)
Package: luci-i18n-polipo-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 385
Filename: luci/luci-i18n-polipo-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1187
MD5Sum: 9c90eb02ef948dd47cef745b1e0c6bc0
SHA256sum: 4aab2610c5f7b9ce3e9264dbb63405514068860d3a61c4d96bf69b64498dcf61
Description: Translation for luci-app-polipo - Română (Romanian)
Package: luci-i18n-polipo-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2830
Filename: luci/luci-i18n-polipo-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3631
MD5Sum: c7c4d033eea51c8abb311b4df1479576
SHA256sum: a601ecec2679503ab1b6b9472418ebaa701b55de6b805953f89eeb77781ec62e
Description: Translation for luci-app-polipo - Русский (Russian)
Package: luci-i18n-polipo-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-polipo-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: e71dbe7dfd59056293bd8bf74749918e
SHA256sum: da41e17245443665258c45acf5c9d7feafb26fa83eb2cae655299aca46f7c30f
Description: Translation for luci-app-polipo - Slovenčina (Slovene)
Package: luci-i18n-polipo-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-polipo-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1109
MD5Sum: 375b256a2928160413dcfb85655163a5
SHA256sum: c2131481067c8340fc268155643b1a169792755829b05785e0a6ed244bed1724
Description: Translation for luci-app-polipo - Svenska (Swedish)
Package: luci-i18n-polipo-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-polipo-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: a058692af5acf02cec33499f2740b995
SHA256sum: b0b6ecbe390d6f6039ec5fe2506e88934ec512704430550826488d4366d07556
Description: Translation for luci-app-polipo - Türkçe (Turkish)
Package: luci-i18n-polipo-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 475
Filename: luci/luci-i18n-polipo-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1304
MD5Sum: 82d81459514b7c87e0af6e513dac77fa
SHA256sum: 2bac75d70aa054ffce792a4f68f1372b4d491eeb8ae63de908cbc8489428fcf0
Description: Translation for luci-app-polipo - украї́нська (Ukrainian)
Package: luci-i18n-polipo-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 1839
Filename: luci/luci-i18n-polipo-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2671
MD5Sum: 0f45752d3e6388e0a9112e8405fb7d67
SHA256sum: 80cab12837f077d755eff6f71687e96ac0bfa3d7fd823268f773b0bde042d01d
Description: Translation for luci-app-polipo - Tiếng Việt (Vietnamese)
Package: luci-i18n-polipo-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 1097
Filename: luci/luci-i18n-polipo-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1916
MD5Sum: affc30373299edaf88c0141560eb9062
SHA256sum: efa75772cf54d6c1ff2fb2f5a20380b548b8a166047657c3f83a3477a126a763
Description: Translation for luci-app-polipo - 普通话 (Chinese)
Package: luci-i18n-polipo-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2134
Filename: luci/luci-i18n-polipo-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2975
MD5Sum: 27c7381f891a90afe0972011e1079381
SHA256sum: ddcb7bb2f7ddb7cdaee7526bc12700ebc4109202a8821e3cfbb71189bfd09ee8
Description: Translation for luci-app-polipo - 臺灣華語 (Taiwanese)
Package: luci-i18n-privoxy-de
Version: 1.0.3-1
Depends: libc, luci-app-privoxy
Source: feeds/luci/applications/luci-app-privoxy
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 5001
Filename: luci/luci-i18n-privoxy-de_1.0.3-1_all.ipk
Size: 5822
MD5Sum: 19a3cb27528775b4ba40f48fbbda7f1b
SHA256sum: d0cccfb40abae34eced4945de060677d075ebb433a60adb41ec66e509d4f61f1
Description: Translation for luci-app-privoxy - Deutsch (German)
Package: luci-i18n-qos-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 894
Filename: luci/luci-i18n-qos-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1694
MD5Sum: 31aaae55eb897683d4576b463c9ab4db
SHA256sum: d270ed9eaf91a19e4f9ebb42e9eeec0e749ce54211614602ba53c372f47fcc96
Description: Translation for luci-app-qos - Català (Catalan)
Package: luci-i18n-qos-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1131
Filename: luci/luci-i18n-qos-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1933
MD5Sum: de61b2ccd3b4d4fe995e9d5437c842be
SHA256sum: 62f98fd7b5ba5d4a784698c61d671ead3cb8e93a370858d345cbc2e34fa299dc
Description: Translation for luci-app-qos - Čeština (Czech)
Package: luci-i18n-qos-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 927
Filename: luci/luci-i18n-qos-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1723
MD5Sum: 17939addd4b735a656f90d8994881918
SHA256sum: d2c9f39df95d65e2d26d6b874ef32b92a96693f88fec01a89a234446915d5e81
Description: Translation for luci-app-qos - Deutsch (German)
Package: luci-i18n-qos-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 964
Filename: luci/luci-i18n-qos-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1782
MD5Sum: f6001bf1970b67a26aa96909dbcbd306
SHA256sum: 073860c2f0d270e8efffd634b7a40beee0697742310c01c8ba1e5b4688d6a96c
Description: Translation for luci-app-qos - Ελληνικά (Greek)
Package: luci-i18n-qos-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 303
Filename: luci/luci-i18n-qos-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1082
MD5Sum: 88c0eb1fa6b6efbce71740f1bdc4b0b6
SHA256sum: e367387b146b08e69453cd3795634b2e41479708f6e54f5f826e5df1f7392c5c
Description: Translation for luci-app-qos - English
Package: luci-i18n-qos-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 952
Filename: luci/luci-i18n-qos-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1752
MD5Sum: 45ff93b4ee52975af9ec89f5815bb777
SHA256sum: bc8e56108fe63d998b0c0fa74e43d8e82fa63adf7963113101d6955ddd649124
Description: Translation for luci-app-qos - Español (Spanish)
Package: luci-i18n-qos-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 932
Filename: luci/luci-i18n-qos-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1734
MD5Sum: e5fe7d857afc63056c31b5a56cbc713c
SHA256sum: f67c93a77f8f4a1afd54b96ff7cf37846cb8bf06aef41080a521c7413957d676
Description: Translation for luci-app-qos - Français (French)
Package: luci-i18n-qos-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-qos-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: f2c5827a2ffcc6c7019e9d2aaf5017af
SHA256sum: 7e9713acbabd1ab2f07b727286b05dcfcb06fec93f74803ebb5b9fd8a2b9fa71
Description: Translation for luci-app-qos - עִבְרִית (Hebrew)
Package: luci-i18n-qos-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1018
Filename: luci/luci-i18n-qos-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1817
MD5Sum: 17d694b336d1401b1eb4e0441f81a51c
SHA256sum: 327d1d10617acef08aefea2839455faf4c1b31f726e9eefa20dd32d0c85ef555
Description: Translation for luci-app-qos - Magyar (Hungarian)
Package: luci-i18n-qos-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 923
Filename: luci/luci-i18n-qos-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1718
MD5Sum: e2bae769d28fa8ca4f9271ca491dc4a0
SHA256sum: 3b3228578245b0f724bc99f02547b2d10f855164b9c955ec34dd45a948936fcd
Description: Translation for luci-app-qos - Italiano (Italian)
Package: luci-i18n-qos-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1050
Filename: luci/luci-i18n-qos-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1862
MD5Sum: 6cbbf737a8081278962647ac178b7021
SHA256sum: a81850c20b819bff261b1ca292b8a10c58b4bcf74f3f5e0758cac8187966f80c
Description: Translation for luci-app-qos - 日本語 (Japanese)
Package: luci-i18n-qos-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-qos-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: a8f67ac7ef4fe8ee2337788016a9cfbf
SHA256sum: 00f2efe86f08e6f6ccfa9447b4f2ab18ac4321fdfa1eb6b88445fe0bca3cdccc
Description: Translation for luci-app-qos - Bahasa Melayu (Malay)
Package: luci-i18n-qos-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 910
Filename: luci/luci-i18n-qos-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1716
MD5Sum: ec3c5e06f536806fdf4d1cff497a267d
SHA256sum: 84fd37ac831db1b774e6434ffcc661546a0232038f91c6b48de76bc24d6300e5
Description: Translation for luci-app-qos - Norsk (Norwegian)
Package: luci-i18n-qos-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1025
Filename: luci/luci-i18n-qos-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1818
MD5Sum: f076150680400996f4c8f4ed3760298b
SHA256sum: 55bb45b1586e9054be2320f774505cbcba6966a9fd51d3efb9d90ea5011723ff
Description: Translation for luci-app-qos - Polski (Polish)
Package: luci-i18n-qos-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1000
Filename: luci/luci-i18n-qos-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1818
MD5Sum: 1b0cd005338b5f93e4347784257aed01
SHA256sum: 255acaaa1ae4f0394f61f50414c6b86b0abdef2fe51a2a24dcf90c5752cee3b3
Description: Translation for luci-app-qos - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-qos-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 912
Filename: luci/luci-i18n-qos-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1725
MD5Sum: 03ff8222874b9cec25c43c562921dfdb
SHA256sum: 633d61132a0ac068ffa40c003540ab635c5c69b3e095c26b73188533fd93cca0
Description: Translation for luci-app-qos - Português (Portuguese)
Package: luci-i18n-qos-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 575
Filename: luci/luci-i18n-qos-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1383
MD5Sum: 7e1ece4ffd18660108eb5aaabebea1a3
SHA256sum: a97b6edc351ed800125546e6499e9bd73b99326088a6b2876feb65362bb0c61d
Description: Translation for luci-app-qos - Română (Romanian)
Package: luci-i18n-qos-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1150
Filename: luci/luci-i18n-qos-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1968
MD5Sum: 153b4269306c811b4280e0edbccc86f7
SHA256sum: 84beae41ec3defbde3ef073066feeb4ddee5dd79f99cd12f33ec6b7769439fb4
Description: Translation for luci-app-qos - Русский (Russian)
Package: luci-i18n-qos-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-qos-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 40c3d0e4e2bf05cf94467a69974f3beb
SHA256sum: 0ba0076b6cf36e5b14cb56e77b2fdb674f64a22f556517944423520989e6d5d3
Description: Translation for luci-app-qos - Slovenčina (Slovene)
Package: luci-i18n-qos-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-qos-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1103
MD5Sum: f3acb4a954f416d7c68ddc43846bbe2c
SHA256sum: 4dc8cef59e30a2bb331a7ea991b52ae0a468df295719657804afb7d9e204698e
Description: Translation for luci-app-qos - Svenska (Swedish)
Package: luci-i18n-qos-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-qos-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 3d8368976278c4a620901cc631d4bbc0
SHA256sum: 7e8651a393872882056546c20d54830b0b1670e0009123a2bad4f898b370940f
Description: Translation for luci-app-qos - Türkçe (Turkish)
Package: luci-i18n-qos-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1193
Filename: luci/luci-i18n-qos-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2026
MD5Sum: 3507f69a4d517c685bf66a151ca9f218
SHA256sum: aa6e9dad46019524ceff06af855758351e193ac4a7fc0e83254477cf0ed244a1
Description: Translation for luci-app-qos - украї́нська (Ukrainian)
Package: luci-i18n-qos-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 792
Filename: luci/luci-i18n-qos-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1615
MD5Sum: aacc604f0870211c0a12281fc2120cc0
SHA256sum: 8679dcb9a91014c890a500f1462e11cb0776bf118c7598aa2d035a07c8cd520d
Description: Translation for luci-app-qos - Tiếng Việt (Vietnamese)
Package: luci-i18n-qos-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 955
Filename: luci/luci-i18n-qos-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1782
MD5Sum: 4bee7a45924268ddabf0077cc0b125f0
SHA256sum: 1c8551739ecdc93f16f83b3d38048c832a1ae394173e2b8f148e2ce5d53c0a42
Description: Translation for luci-app-qos - 普通话 (Chinese)
Package: luci-i18n-qos-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1039
Filename: luci/luci-i18n-qos-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1873
MD5Sum: 89a99dc35c148079a3f134fa9bc4f282
SHA256sum: 019a727ecffc6969707d9f1095f4c8d1d7eb36a52a44d8722398106149f13500
Description: Translation for luci-app-qos - 臺灣華語 (Taiwanese)
Package: luci-i18n-radvd-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1531
Filename: luci/luci-i18n-radvd-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2345
MD5Sum: a290a6b718e034a4d8dd63fc7d08de1b
SHA256sum: 833ba129a802ab15bd4d52baebe7a10a64c3dbec53cd0c4b4335df8ce3109d50
Description: Translation for luci-app-radvd - Català (Catalan)
Package: luci-i18n-radvd-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2004
Filename: luci/luci-i18n-radvd-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2819
MD5Sum: 378d026ab7f15ebfb4b52ca916dfcfff
SHA256sum: 0ee9cb9a0a012787823c951c0efcb871f5cfc9c49421a7e27aaffa111d2ec121
Description: Translation for luci-app-radvd - Čeština (Czech)
Package: luci-i18n-radvd-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3424
Filename: luci/luci-i18n-radvd-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4209
MD5Sum: 47bbd304c6b0889828a91f69f98a7f93
SHA256sum: f3bbf51198a9ba64549f2d50f52969b8a6992b37326ef81129993f4d70147d78
Description: Translation for luci-app-radvd - Deutsch (German)
Package: luci-i18n-radvd-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 684
Filename: luci/luci-i18n-radvd-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1492
MD5Sum: 0bc49406c6165284082e001824fae96b
SHA256sum: 2f917640f7e73724876fe4115f5009ed76b981bc50654f9a7e49d53809f99d26
Description: Translation for luci-app-radvd - Ελληνικά (Greek)
Package: luci-i18n-radvd-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 304
Filename: luci/luci-i18n-radvd-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1084
MD5Sum: c93556d1aaa8547f2138916eec3ab188
SHA256sum: 599336d78796674bd8531a3ae3511c7e3ecdfbdf007ca2001111706159341657
Description: Translation for luci-app-radvd - English
Package: luci-i18n-radvd-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3221
Filename: luci/luci-i18n-radvd-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4000
MD5Sum: 6c9d5c3bdb3f81ec08edf78b2320f10b
SHA256sum: c83116feb5ecdb425f17efa22fd61d07906abbb9676ff8d325af2c6903ab36e5
Description: Translation for luci-app-radvd - Español (Spanish)
Package: luci-i18n-radvd-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3192
Filename: luci/luci-i18n-radvd-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 3968
MD5Sum: ef8a24301f3a900d59da77414ba4ba35
SHA256sum: d07e51f48d4cc37c9234464e2a4e2156717a92d2d61121701145591adf760663
Description: Translation for luci-app-radvd - Français (French)
Package: luci-i18n-radvd-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-radvd-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1146
MD5Sum: 7de56136901105afb2f965790cd50da4
SHA256sum: 4714e9074c1430ca5d4dbc8329ed3de1de95d4b0d8db61bfaf9d9f6853273953
Description: Translation for luci-app-radvd - עִבְרִית (Hebrew)
Package: luci-i18n-radvd-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1080
Filename: luci/luci-i18n-radvd-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1881
MD5Sum: 475b81c076ec005e0913eed75bd42a1c
SHA256sum: 6ed951158eb9bbe12e07661216cb68d3e4036ab0737b70b15b5cfdb8cb4d52a5
Description: Translation for luci-app-radvd - Magyar (Hungarian)
Package: luci-i18n-radvd-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 716
Filename: luci/luci-i18n-radvd-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1508
MD5Sum: 3bbeb6c0d70ce2571eb2481124a412cc
SHA256sum: 586aad824cc55e3996eb8396189b176da28a30cc91648cf312d4262cab36decc
Description: Translation for luci-app-radvd - Italiano (Italian)
Package: luci-i18n-radvd-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2008
Filename: luci/luci-i18n-radvd-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2835
MD5Sum: 819d28c04e15303ded445022e5bad153
SHA256sum: dd5bfdd81c9e98d083d57d465a0fb015e59543c0d60bfe762f9f5ecc5c97f550
Description: Translation for luci-app-radvd - 日本語 (Japanese)
Package: luci-i18n-radvd-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-radvd-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1109
MD5Sum: c152d6d97f312e67c0f23fd748a21c37
SHA256sum: 1521e556267ef3d1c44f2e57400aec09ac479cc296621d82aaa729165d8d0a31
Description: Translation for luci-app-radvd - Bahasa Melayu (Malay)
Package: luci-i18n-radvd-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2978
Filename: luci/luci-i18n-radvd-no_git-15.079.29361-3e37216-1_all.ipk
Size: 3749
MD5Sum: 3066c8b4a87be5f3d41f3823444be202
SHA256sum: e8b42e5ab46906c6d006fae3f32b4b91e54a17508910d624bbeccc3aa5c0367e
Description: Translation for luci-app-radvd - Norsk (Norwegian)
Package: luci-i18n-radvd-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1239
Filename: luci/luci-i18n-radvd-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2040
MD5Sum: 3da1c1b9b091e23b9ed51550b4226581
SHA256sum: 7270e935eb50bdd8ba12bb48b3b57f7714588da384bd326557b98900c768ff4c
Description: Translation for luci-app-radvd - Polski (Polish)
Package: luci-i18n-radvd-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3369
Filename: luci/luci-i18n-radvd-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4173
MD5Sum: 2686962f5f8c2bb89cced439bcfacb7e
SHA256sum: c3ce9dd3c6694a4a085505c7554aaafd9a820b99f1d2654564edef21f57b6032
Description: Translation for luci-app-radvd - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-radvd-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-radvd-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: f7845263a20536485fa6b01c3ba7f185
SHA256sum: 3daf86c971bf2eb4787d371666bb916d10d71f4628472ff84c1765f8c661afc3
Description: Translation for luci-app-radvd - Português (Portuguese)
Package: luci-i18n-radvd-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1495
Filename: luci/luci-i18n-radvd-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2308
MD5Sum: 5c03c83f1f51f1eff9f23cab62315a85
SHA256sum: 9a9ca6f513d5abf6f45a25b6510e7e679c9f35e4b5698fd107d06cca2ca94c9d
Description: Translation for luci-app-radvd - Română (Romanian)
Package: luci-i18n-radvd-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3883
Filename: luci/luci-i18n-radvd-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4691
MD5Sum: 9dc56b836b9e9abfb92dfc682c3e0e75
SHA256sum: 77d01594a179d54a86aab8108b08a9d0df7667e117ddcd8756363bf250a15295
Description: Translation for luci-app-radvd - Русский (Russian)
Package: luci-i18n-radvd-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-radvd-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: a578e891fc7f5ccca4d8334a0cb3b9bc
SHA256sum: 9ab5b98344217329d40e87ebacd05fa80e55ef745dc20b9d74d5e200074de67e
Description: Translation for luci-app-radvd - Slovenčina (Slovene)
Package: luci-i18n-radvd-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-radvd-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 2da297a8aa0e169d4745f2753c81ba19
SHA256sum: a368b65fd48c8a32ae770e94d0f9eec202c7816ea1d78121cbb9d6c0c73e64a0
Description: Translation for luci-app-radvd - Svenska (Swedish)
Package: luci-i18n-radvd-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 327
Filename: luci/luci-i18n-radvd-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1129
MD5Sum: caef06d014019f5164fcbe455df1124c
SHA256sum: ed555382a31b4d645f03c20bff82fcde60b460450b30c36127e921e4ea2f38e8
Description: Translation for luci-app-radvd - Türkçe (Turkish)
Package: luci-i18n-radvd-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1235
Filename: luci/luci-i18n-radvd-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2077
MD5Sum: 760c96a07d17b6b54c2a233b8f3211b4
SHA256sum: 8cb0e41876d0359ff7405fb5e994ef96fc345c038a703cff24e4de8371fc1e91
Description: Translation for luci-app-radvd - украї́нська (Ukrainian)
Package: luci-i18n-radvd-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-radvd-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1141
MD5Sum: 76958e9072147b36819c01a036f9e60c
SHA256sum: 5394cd75f47a578f07d73b64523190cc9b4e474412f5365c46ee0312d8103ea4
Description: Translation for luci-app-radvd - Tiếng Việt (Vietnamese)
Package: luci-i18n-radvd-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2957
Filename: luci/luci-i18n-radvd-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 3752
MD5Sum: cedc10329b5b31b8bc1773749136526b
SHA256sum: 63c7e7b3ca5632fc9b817f80aff336b97b0ec2562858004373af49b34fed0705
Description: Translation for luci-app-radvd - 普通话 (Chinese)
Package: luci-i18n-radvd-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci/luci-i18n-radvd-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1164
MD5Sum: a63c1d556b2dd65bf401ed389251cfa2
SHA256sum: 880d3114feaf224d1c57371e9d2b7b68764bf8fb8782632437d70594ec7162e1
Description: Translation for luci-app-radvd - 臺灣華語 (Taiwanese)
Package: luci-i18n-samba-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1060
Filename: luci/luci-i18n-samba-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1862
MD5Sum: 6df15c974610c160e033b988560faff0
SHA256sum: 3f663e29ed06ba8e698fc842631016aa39fd6a5ceccf352d6996c372a9ffc3a3
Description: Translation for luci-app-samba - Català (Catalan)
Package: luci-i18n-samba-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1105
Filename: luci/luci-i18n-samba-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1909
MD5Sum: 972cd515302a57fce008107b20258404
SHA256sum: 8ad3fec466bea5dbd2fcec3c55399ed85ebd6aee8bfcf09e37ca1a4242d4723e
Description: Translation for luci-app-samba - Čeština (Czech)
Package: luci-i18n-samba-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1077
Filename: luci/luci-i18n-samba-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1873
MD5Sum: 58db0f2f983487a97a3cb92b6ce6eb9b
SHA256sum: f192fe5e93ee79eaaf187febe77ebc9631cda526a12b3d48a3a70e0bb4864859
Description: Translation for luci-app-samba - Deutsch (German)
Package: luci-i18n-samba-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 391
Filename: luci/luci-i18n-samba-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1204
MD5Sum: bf1265c069c99eceb884ca593361e40e
SHA256sum: d3107e54f7aee91db5b65ce2aeb79f8668e726395ed47eac5eb2a610e66acc09
Description: Translation for luci-app-samba - Ελληνικά (Greek)
Package: luci-i18n-samba-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 614
Filename: luci/luci-i18n-samba-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1407
MD5Sum: 90bd111cc6a8893129645684d8e13fa5
SHA256sum: c2edb66ec78c0c533ee2d231c3b789fc3a9bb1c0000995ca60696c46ee26be8d
Description: Translation for luci-app-samba - English
Package: luci-i18n-samba-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1051
Filename: luci/luci-i18n-samba-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1852
MD5Sum: 1b868cf3658bdcf5f2ed0a081a066b1c
SHA256sum: 43c662904f38460eaf430436eec564c2c123b62caa402b44935e11539ad68a50
Description: Translation for luci-app-samba - Español (Spanish)
Package: luci-i18n-samba-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1079
Filename: luci/luci-i18n-samba-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1883
MD5Sum: b7fec06e03371c41468251fd09e0e8b5
SHA256sum: e9656aa455d4bd2aae9fda1bcc9fde9c580219488bee0c68c0cbe9c4714dcf2d
Description: Translation for luci-app-samba - Français (French)
Package: luci-i18n-samba-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci/luci-i18n-samba-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 7403b04814279a5252897f10ba4a9237
SHA256sum: d636431020dd3f965326093481a3bf7d4a73f888c8cf26542d3a0916929d54f7
Description: Translation for luci-app-samba - עִבְרִית (Hebrew)
Package: luci-i18n-samba-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1124
Filename: luci/luci-i18n-samba-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1923
MD5Sum: f0e93aa90be22fbecce9b6736c9cc7a4
SHA256sum: a4f477b6bf31af0d4903b0ce0921f292083dde3fc9a0b38d1d2813f9dedb07cb
Description: Translation for luci-app-samba - Magyar (Hungarian)
Package: luci-i18n-samba-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1061
Filename: luci/luci-i18n-samba-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1853
MD5Sum: 64896177cf6d9b709cad09d9d779df7f
SHA256sum: 6ccadb7082fc9a4cd62fbeef5045221e0387fb513fe5bd5691811ce6d25ec370
Description: Translation for luci-app-samba - Italiano (Italian)
Package: luci-i18n-samba-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1114
Filename: luci/luci-i18n-samba-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1932
MD5Sum: bc9470b2c5d42c8be0408a742f30643f
SHA256sum: e63127fbe41289c26f2462410a2b01a7ef5f41ba960eedbc0ad0a7377a80a0f1
Description: Translation for luci-app-samba - 日本語 (Japanese)
Package: luci-i18n-samba-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-samba-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 7bda807ba181327897263e169d841c71
SHA256sum: 09ae52604f9461718e3da562419978767393ab5678ed8fb025f0c0fc9fd9a5bf
Description: Translation for luci-app-samba - Bahasa Melayu (Malay)
Package: luci-i18n-samba-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1029
Filename: luci/luci-i18n-samba-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1831
MD5Sum: 030f2c77be838c586e51834e31a84886
SHA256sum: fe31c4429cb3e603aa05d19fd41b9eafe85127cdf06d4e327cda5cbb85ca0029
Description: Translation for luci-app-samba - Norsk (Norwegian)
Package: luci-i18n-samba-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1114
Filename: luci/luci-i18n-samba-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1911
MD5Sum: bcf3d53e400399be2a45a257123b31a7
SHA256sum: 36d3d99c583bf5c28bdcbefca79dee67d3eaa761c414c28d11bd6857409057c9
Description: Translation for luci-app-samba - Polski (Polish)
Package: luci-i18n-samba-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1099
Filename: luci/luci-i18n-samba-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1927
MD5Sum: 76ab12985052c4dd5445e4753b689f8b
SHA256sum: 45cbc5215d91d1abcb72f66dea6c239da717e43f18ab17d09989054fa3c01216
Description: Translation for luci-app-samba - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-samba-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1074
Filename: luci/luci-i18n-samba-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1875
MD5Sum: 586ad53ee3bf22d839ed174ef1e8b8eb
SHA256sum: 62a5cd4f6ef48aae5d0bf807890828bfda25ecd1483d0ab55933fd3cf80f677a
Description: Translation for luci-app-samba - Português (Portuguese)
Package: luci-i18n-samba-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1024
Filename: luci/luci-i18n-samba-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1822
MD5Sum: e3d15318103eebee05ace0dd9facdd4a
SHA256sum: 86b737fe7bc0b2fd8c56d4c43c53dc8ef891a7e873bb06a6acb83417af4440ca
Description: Translation for luci-app-samba - Română (Romanian)
Package: luci-i18n-samba-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1238
Filename: luci/luci-i18n-samba-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2062
MD5Sum: 909134806a3f397fb88ea0aae23d9938
SHA256sum: 16201bbe4eaf5e131cbe816fedfcc60e90fcdf714395799de158a7246d11d023
Description: Translation for luci-app-samba - Русский (Russian)
Package: luci-i18n-samba-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-samba-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: f3b4b17c47710233af19b9a8666b711b
SHA256sum: 1e57e049f8fcf047b8b968091e4fa1562bb715517dc016e152f0c666cd9a46f2
Description: Translation for luci-app-samba - Slovenčina (Slovene)
Package: luci-i18n-samba-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-samba-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 100f838f150860709a34430fdb52138a
SHA256sum: f1c057b2d340e588c74e2c6699703db65eae0f2c7ccdc12b0556f7d4518b4f60
Description: Translation for luci-app-samba - Svenska (Swedish)
Package: luci-i18n-samba-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-samba-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 88e944075d572ef59f2bb9fd3a7edce4
SHA256sum: a487b6dbaa2b0166d09206886d7f476d0127f7d8d0bed13762eec4a929012a47
Description: Translation for luci-app-samba - Türkçe (Turkish)
Package: luci-i18n-samba-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1258
Filename: luci/luci-i18n-samba-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2096
MD5Sum: cdb0cb54bb9846af34cb09eaf3f6b76f
SHA256sum: be01c6e9b221085ea514dd99539a76929bab9734dada7fc4e6cdcec6a9678d3b
Description: Translation for luci-app-samba - украї́нська (Ukrainian)
Package: luci-i18n-samba-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 849
Filename: luci/luci-i18n-samba-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1670
MD5Sum: e02f0d67d3b7cd0ec5d67eb22e81645e
SHA256sum: a0ddb55fd73501061277f7f840b9989aa629191e5c71c1047dfc4da7aeb08e66
Description: Translation for luci-app-samba - Tiếng Việt (Vietnamese)
Package: luci-i18n-samba-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 960
Filename: luci/luci-i18n-samba-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1787
MD5Sum: a27d0d6b9353bd05311697dc450b9863
SHA256sum: db66f4cb252a0cbfead741325bdac6d19205f2352790bdf2d2f5a696470489b4
Description: Translation for luci-app-samba - 普通话 (Chinese)
Package: luci-i18n-samba-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 968
Filename: luci/luci-i18n-samba-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1805
MD5Sum: a9a2807274cd3c5ed34c9274a2b38a11
SHA256sum: c0c47a3fcca5a75e478e2493a58e3bf94d746eb2d3b0c42cfeb2ef7a618e0cff
Description: Translation for luci-app-samba - 臺灣華語 (Taiwanese)
Package: luci-i18n-splash-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 2428
Filename: luci/luci-i18n-splash-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3243
MD5Sum: 8c4c31b86f51e79c331b09b2bc9e2f6b
SHA256sum: 9f0a0372eee7e34e5d921a3c7311d456182a0df553f5c25e564c1fdefbb19089
Description: Translation for luci-app-splash - Català (Catalan)
Package: luci-i18n-splash-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 2354
Filename: luci/luci-i18n-splash-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 3174
MD5Sum: ac85ba2fd6070f73007dc05203341ca8
SHA256sum: b4770d7fb35c6bbfa6d4d91bd4df6ed339c912ba547bf7938932e52873b57b22
Description: Translation for luci-app-splash - Čeština (Czech)
Package: luci-i18n-splash-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3977
Filename: luci/luci-i18n-splash-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4759
MD5Sum: bf74492063a394e7696701917e7832fd
SHA256sum: a6be45d9e82b6918a2231c495e12b1a1ff60450b9018b2ca09d33ee00bd946ed
Description: Translation for luci-app-splash - Deutsch (German)
Package: luci-i18n-splash-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 514
Filename: luci/luci-i18n-splash-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1327
MD5Sum: d40ebf049d6e8d5856c785b3b9205866
SHA256sum: 94ef436bb290059485bcbc0dfc246c255e9ff09f177f1fe09d7181d109d911ba
Description: Translation for luci-app-splash - Ελληνικά (Greek)
Package: luci-i18n-splash-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 305
Filename: luci/luci-i18n-splash-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1096
MD5Sum: 91379f0b4841960aff896e1c3bffb05c
SHA256sum: e95553d7d3feecc42a2d4101781c8f75458cacf3b862a1e6a552c59db56d964f
Description: Translation for luci-app-splash - English
Package: luci-i18n-splash-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3651
Filename: luci/luci-i18n-splash-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4430
MD5Sum: 75c2e77b66cb2c6b13e9b1273b2bbda8
SHA256sum: acac317723a4962b26214904165ac35ee98ee7f059eba06f3b605046d627d988
Description: Translation for luci-app-splash - Español (Spanish)
Package: luci-i18n-splash-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1670
Filename: luci/luci-i18n-splash-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2482
MD5Sum: ba429e00c739018033a85d9fa87698cd
SHA256sum: c7e4c72945870363b9fd33bf269dde141da44dea593364cc09bfd14344a951b4
Description: Translation for luci-app-splash - Français (French)
Package: luci-i18n-splash-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1655
Filename: luci/luci-i18n-splash-he_git-15.079.29361-3e37216-1_all.ipk
Size: 2487
MD5Sum: 3f1de4558df2d347de52edbdf5beb93d
SHA256sum: 11079202ab89fd9a3b9e54c8bbfbc8c4c0721447ccf65d886dc00c1e13a75b13
Description: Translation for luci-app-splash - עִבְרִית (Hebrew)
Package: luci-i18n-splash-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-splash-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 6ea14cb42b652b3baa2044f4b99a6ff8
SHA256sum: 6232e19fdf40b9657a2e41797e41cd906b8a8909044ecdbf4bb3bb4ac7a1853e
Description: Translation for luci-app-splash - Magyar (Hungarian)
Package: luci-i18n-splash-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 2711
Filename: luci/luci-i18n-splash-it_git-15.079.29361-3e37216-1_all.ipk
Size: 3488
MD5Sum: 0fd586da2ea122ea87e40bd68a203925
SHA256sum: 7a6f6ab3abc79f1d702257f5ba845534ef2dc742866a63080d11ed116c27f5c7
Description: Translation for luci-app-splash - Italiano (Italian)
Package: luci-i18n-splash-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci/luci-i18n-splash-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: d692ebd477969bd855df48fc1b250388
SHA256sum: f9c6d4fe953e84505d2084fed9905b752752b5bb516975833ff0cb245f7e7e1b
Description: Translation for luci-app-splash - 日本語 (Japanese)
Package: luci-i18n-splash-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-splash-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 6667d96aa719af8ee85f8b02c5375306
SHA256sum: 5318aec4bafc170fc9699b32c34b8003ee77ce772761a4857f91e1d32f259440
Description: Translation for luci-app-splash - Bahasa Melayu (Malay)
Package: luci-i18n-splash-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-splash-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: accc07bba5367228adbe5a94b3c8684f
SHA256sum: e59e8f0cc7ed3a2899ee1b8563b2de5bd60691641d421c2bd0449c1d7c3b4cbf
Description: Translation for luci-app-splash - Norsk (Norwegian)
Package: luci-i18n-splash-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3845
Filename: luci/luci-i18n-splash-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 4617
MD5Sum: 1f7941de272d64dff22d30b9508f4e2b
SHA256sum: c969266126118f83af2bd943c44710484ebb60f896482f809b3af4d8bc35cbb5
Description: Translation for luci-app-splash - Polski (Polish)
Package: luci-i18n-splash-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3833
Filename: luci/luci-i18n-splash-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4631
MD5Sum: 8a4b104b3c23126862a9bbc300fde91d
SHA256sum: e01930e57c4d82e199e000307b09c55f7fdfef5fc643d865e3c373116478f50a
Description: Translation for luci-app-splash - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-splash-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1117
Filename: luci/luci-i18n-splash-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1920
MD5Sum: 2e6cc830de71cbf6ab643ec4fc13e7c7
SHA256sum: 214e46ac26af5749d107dd415de71ffdb52f44cac8e1d64cc6c34b65cbf21bf5
Description: Translation for luci-app-splash - Português (Portuguese)
Package: luci-i18n-splash-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-splash-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: 1f12e6deea82a1b33cad4a44dc158cc9
SHA256sum: 7f2afd19dbe1e0816b28bf3f938d4f2c2a3397bc17dd222056504b31faa3068a
Description: Translation for luci-app-splash - Română (Romanian)
Package: luci-i18n-splash-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3223
Filename: luci/luci-i18n-splash-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4024
MD5Sum: 59e34de9aae270b4ce83322ac32e529b
SHA256sum: eda3465f1ecf6e2ab45cfce25298e4c39d7bb6063bf7a5ee1a2c0dc33f02caa3
Description: Translation for luci-app-splash - Русский (Russian)
Package: luci-i18n-splash-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-splash-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 6a7469c637162736a0fe5061beb925c4
SHA256sum: 331b4f9ea8624b40d8df860181fb0e43c46fa61ce3422867b05d2df4fee4a325
Description: Translation for luci-app-splash - Slovenčina (Slovene)
Package: luci-i18n-splash-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-splash-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 20acf1627c3ffd93cd440cc93885c036
SHA256sum: 104d1e7e3befab610cbf006bac02d367960d838928769054a235049225f23cd6
Description: Translation for luci-app-splash - Svenska (Swedish)
Package: luci-i18n-splash-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-splash-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 6d0b13aa4a5b0ddbc9969ce56e8df546
SHA256sum: ef272735160ed2e639a81c5039ec73c3c9b55eec75050383c0ff7cde8f4c1b09
Description: Translation for luci-app-splash - Türkçe (Turkish)
Package: luci-i18n-splash-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 343
Filename: luci/luci-i18n-splash-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1170
MD5Sum: 8e34dfe699e0fc7b8bdc5317d53f6cf3
SHA256sum: 9eaeb3ae42769e6eee78805e9f3e4f56aadd68fab5330c9c785f0c0c2f86cfb0
Description: Translation for luci-app-splash - украї́нська (Ukrainian)
Package: luci-i18n-splash-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-splash-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1140
MD5Sum: 4f0bc4320040b5e71d48cdd7598f81a0
SHA256sum: 1d5ef038b97f692b3c218ff24ccdb8a9cd87e04bf23b40a03efc2f6bd7a418a1
Description: Translation for luci-app-splash - Tiếng Việt (Vietnamese)
Package: luci-i18n-splash-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1902
Filename: luci/luci-i18n-splash-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2727
MD5Sum: bc52ffac1615bd0b55d39b0a299e001b
SHA256sum: fe21fdde3daf8f27b2ee58b7fc0541d62998bfb7860555d48b269292867deb96
Description: Translation for luci-app-splash - 普通话 (Chinese)
Package: luci-i18n-splash-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 343
Filename: luci/luci-i18n-splash-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1164
MD5Sum: b32163e4a88dcdbf372a77b219ac36fc
SHA256sum: 20f4f199633496c2c0bcd6a5fa26193f04c0be8da95bce213d66cc28abf8ef6d
Description: Translation for luci-app-splash - 臺灣華語 (Taiwanese)
Package: luci-i18n-statistics-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6503
Filename: luci/luci-i18n-statistics-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 7350
MD5Sum: e57a80675b956a009e4c77141aaeddc0
SHA256sum: ed3db6333e817c7b9373e3dc291e71e54fd6567ffbf33806095d70c8ff00a245
Description: Translation for luci-app-statistics - Català (Catalan)
Package: luci-i18n-statistics-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6384
Filename: luci/luci-i18n-statistics-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 7237
MD5Sum: 9eed1509d0fdcfe30687a53327c6f206
SHA256sum: 39fc3ef7d70195ca30fdd119668375067ee124acf0c4e0bb8646f31ce5bf2f7b
Description: Translation for luci-app-statistics - Čeština (Czech)
Package: luci-i18n-statistics-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 7011
Filename: luci/luci-i18n-statistics-de_git-15.079.29361-3e37216-1_all.ipk
Size: 7855
MD5Sum: bb9c902fa822549f708680c1f39dae6b
SHA256sum: 7b22ca452ebf31ac582a06b15f21ad9d44c1b9b97ce2d62f84d086d9ff8e78cc
Description: Translation for luci-app-statistics - Deutsch (German)
Package: luci-i18n-statistics-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1700
Filename: luci/luci-i18n-statistics-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2534
MD5Sum: 3e595a5d0115171b7343b185f36846dc
SHA256sum: 8c78014f1e8127c594b85d09468498fb61707b393cda3d665165ccc2e8ba496e
Description: Translation for luci-app-statistics - Ελληνικά (Greek)
Package: luci-i18n-statistics-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1737
Filename: luci/luci-i18n-statistics-en_git-15.079.29361-3e37216-1_all.ipk
Size: 2542
MD5Sum: e04d1d5d3053d0314c5a178d09672d30
SHA256sum: c447c7b6ebe559d3100d20dc3ca24b09b58a197fda5637d1c9de5464c44f2a84
Description: Translation for luci-app-statistics - English
Package: luci-i18n-statistics-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6965
Filename: luci/luci-i18n-statistics-es_git-15.079.29361-3e37216-1_all.ipk
Size: 7827
MD5Sum: 09edabfea163e987d18af2037f9fc3a3
SHA256sum: e06946773634e807f05aafa35a6a671f3c5047ea0c9208ed3aa61d159bb64336
Description: Translation for luci-app-statistics - Español (Spanish)
Package: luci-i18n-statistics-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 4673
Filename: luci/luci-i18n-statistics-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 5462
MD5Sum: 95beb988998635d3ba1f0146d28ff7b5
SHA256sum: f3b82adb3330b5bd73f53a61b9434e814bed3fd23a9cccd29cbdc68f25407f7f
Description: Translation for luci-app-statistics - Français (French)
Package: luci-i18n-statistics-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 425
Filename: luci/luci-i18n-statistics-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1249
MD5Sum: 81dcec284ca5bccfc7c4a8f5d0aee9e7
SHA256sum: 17e8b8da0863416b2b8858e49106f4e382eb273e46d43d0f7ee21cbb630b9118
Description: Translation for luci-app-statistics - עִבְרִית (Hebrew)
Package: luci-i18n-statistics-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6179
Filename: luci/luci-i18n-statistics-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 7030
MD5Sum: 8c80737af985f2c1bd97aa74a07be77d
SHA256sum: ca92e82dee1e0cecc93c465e60f60d2048777648d02dc7d5425b523a4a75140e
Description: Translation for luci-app-statistics - Magyar (Hungarian)
Package: luci-i18n-statistics-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 841
Filename: luci/luci-i18n-statistics-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1640
MD5Sum: 2a44feb78c2c3caad09f9f8231e2c680
SHA256sum: 71c85e2ab20652f32947bd9cff83e89e75a02878b862069a1a187953c0bcd333
Description: Translation for luci-app-statistics - Italiano (Italian)
Package: luci-i18n-statistics-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1616
Filename: luci/luci-i18n-statistics-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2451
MD5Sum: a0ed127aa082ca48527e2ed7500c30c1
SHA256sum: 8b5d6b0e787d5c0a75408c4a5e7fc58b5cc42b3e6fb53c55657a2fd3be86e3cb
Description: Translation for luci-app-statistics - 日本語 (Japanese)
Package: luci-i18n-statistics-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-statistics-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 539668efd343cbf5d82291b001d1d5f2
SHA256sum: 16965a340ff5dac53fcf51250f10878993e459accccb5b6e36183b4a7d602f03
Description: Translation for luci-app-statistics - Bahasa Melayu (Malay)
Package: luci-i18n-statistics-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 5894
Filename: luci/luci-i18n-statistics-no_git-15.079.29361-3e37216-1_all.ipk
Size: 6694
MD5Sum: 85601d6f55469231f737cfda57495aad
SHA256sum: 04954ff9b564d583d35885eb612b12649eba5bce29300c5143b3f14e9ad89513
Description: Translation for luci-app-statistics - Norsk (Norwegian)
Package: luci-i18n-statistics-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6976
Filename: luci/luci-i18n-statistics-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 7821
MD5Sum: ae1962a86258062f07355d36ea8ff228
SHA256sum: d649c2ce67dd95913f5d07b0a42c90a0270fa25f10d87ac3b6ca2ed65f525203
Description: Translation for luci-app-statistics - Polski (Polish)
Package: luci-i18n-statistics-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6986
Filename: luci/luci-i18n-statistics-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 7853
MD5Sum: 4c828272bd7bc927b6707a6c17807677
SHA256sum: 97c987efa8ab92b06e4e26433ee3179e5e1859e4195e959e88f37cdcecc0dd85
Description: Translation for luci-app-statistics - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-statistics-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6215
Filename: luci/luci-i18n-statistics-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 7069
MD5Sum: 079b2fba767bd16f1dbf90d0fc6779dc
SHA256sum: 17c65e8729e16e8e5cc9900685da1e749dcaec3e271fa1b1677701b1e4191304
Description: Translation for luci-app-statistics - Português (Portuguese)
Package: luci-i18n-statistics-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1382
Filename: luci/luci-i18n-statistics-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2203
MD5Sum: 72c10a0823740fc6e1ba4f359bfcfcd3
SHA256sum: c0e4bf20e3d5770eabb152e441b10a8f903a066418f6b24724e63f95ccc80849
Description: Translation for luci-app-statistics - Română (Romanian)
Package: luci-i18n-statistics-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 7510
Filename: luci/luci-i18n-statistics-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 8364
MD5Sum: 4a488719e45b5e457a447ef3c398a695
SHA256sum: 28c732dd5513c2be235018776227e7f0cf9d726708893df14f4a92822d0b99e2
Description: Translation for luci-app-statistics - Русский (Russian)
Package: luci-i18n-statistics-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-statistics-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: a98877136f57818bc0d6d785d55c3185
SHA256sum: ab8d9088864ef30f3f7a0e10190de43a168f1aeec361106d2408e55dcd2b9091
Description: Translation for luci-app-statistics - Slovenčina (Slovene)
Package: luci-i18n-statistics-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-statistics-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 1a976410c03b4c45d6f8e500ea97ccc5
SHA256sum: 6c0ff4afe0f5da51e36342b559e54f72a8d6a133dafba5d00e1b6a782c9aead6
Description: Translation for luci-app-statistics - Svenska (Swedish)
Package: luci-i18n-statistics-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-statistics-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1125
MD5Sum: 048200e02dff38f0b715c2c250b815f8
SHA256sum: 71dc9f27df8ce71d39affb3a2de8a91328a47f3897b77da831fc3c586b786422
Description: Translation for luci-app-statistics - Türkçe (Turkish)
Package: luci-i18n-statistics-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 525
Filename: luci/luci-i18n-statistics-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1364
MD5Sum: ddf603e13c89e0f42606ad359c7f2485
SHA256sum: b9cbc2b5c9a895417e9ee4b5ac4b5617a160a5d014a06e345c68463c15acd854
Description: Translation for luci-app-statistics - украї́нська (Ukrainian)
Package: luci-i18n-statistics-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 4156
Filename: luci/luci-i18n-statistics-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 4961
MD5Sum: 5e24260fd67a451ed23e5410c03a3623
SHA256sum: 2600979230d12a248562633133f752cfacf1afb658117b1225a5e33cc6b154ff
Description: Translation for luci-app-statistics - Tiếng Việt (Vietnamese)
Package: luci-i18n-statistics-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 5418
Filename: luci/luci-i18n-statistics-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 6237
MD5Sum: 476eab5bb66b832e280423a9a9841666
SHA256sum: 590dd8a1c3ac0f007e0a8952d78a8b2635d9f20c4660097a74ec7f91d8cd6ba1
Description: Translation for luci-app-statistics - 普通话 (Chinese)
Package: luci-i18n-statistics-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 348
Filename: luci/luci-i18n-statistics-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1169
MD5Sum: da4c7a9f734f42b88923c98f7c6db221
SHA256sum: 921a358094292cec5221514537c7e143c9c2181712b0ca8e126f4f257dc3cc89
Description: Translation for luci-app-statistics - 臺灣華語 (Taiwanese)
Package: luci-i18n-tinyproxy-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1466
Filename: luci/luci-i18n-tinyproxy-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2287
MD5Sum: e90db471f75293f55c71556d528fd948
SHA256sum: 5234cc19b517deb2fa9013eb49b4512c57daff3fd5eecca2160b90a1fa31d6e9
Description: Translation for luci-app-tinyproxy - Català (Catalan)
Package: luci-i18n-tinyproxy-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1021
Filename: luci/luci-i18n-tinyproxy-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1832
MD5Sum: 5ccf627d0cafae2cdeddfcbbae8d04d0
SHA256sum: bc76c2bc08210af13cc8d3ac77e25d9d6c227c592c54f325074d839c423915a4
Description: Translation for luci-app-tinyproxy - Čeština (Czech)
Package: luci-i18n-tinyproxy-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2992
Filename: luci/luci-i18n-tinyproxy-de_git-15.079.29361-3e37216-1_all.ipk
Size: 3772
MD5Sum: 31638bd251af92b7904d7f1a3b72628e
SHA256sum: 34ec2a3401cb239f014ae2ee7426976e2f5eb32cea2bfe4d5aed8fbfd733dfd9
Description: Translation for luci-app-tinyproxy - Deutsch (German)
Package: luci-i18n-tinyproxy-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1763
Filename: luci/luci-i18n-tinyproxy-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2596
MD5Sum: 228b292fb26a0bcd6c121f2575696448
SHA256sum: 8ea517926344dcc902f850adf7f77f921d7f5cca1c89c5e7a91a2b0d7d3e1407
Description: Translation for luci-app-tinyproxy - Ελληνικά (Greek)
Package: luci-i18n-tinyproxy-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 308
Filename: luci/luci-i18n-tinyproxy-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: 163ff0eba9db53098ec8bd1e70eff9d6
SHA256sum: b97db0da9f397efb7fa91be19cd43fae00b1f6ddf4f2b1cdcafdf047a0580816
Description: Translation for luci-app-tinyproxy - English
Package: luci-i18n-tinyproxy-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2753
Filename: luci/luci-i18n-tinyproxy-es_git-15.079.29361-3e37216-1_all.ipk
Size: 3541
MD5Sum: 4c20890dfa5d2a6ff59a941b730acda7
SHA256sum: 9267648698e8429522f4951132bedc1a37a408b3a6ab907f503760385d74b278
Description: Translation for luci-app-tinyproxy - Español (Spanish)
Package: luci-i18n-tinyproxy-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2950
Filename: luci/luci-i18n-tinyproxy-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 3736
MD5Sum: 15a1092e02d5ec8384aa29536cf1e160
SHA256sum: 7e306d92bdc77649332ffc4d018baf4369ecab5ce7375f25a50d412f05bdbec4
Description: Translation for luci-app-tinyproxy - Français (French)
Package: luci-i18n-tinyproxy-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci/luci-i18n-tinyproxy-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1156
MD5Sum: 5d35c49e5538503b5b2dc8e07d659262
SHA256sum: 4f42412db63bdd0ba2efa94b020a1f632b265ecfefd73024d9f70d99d8d3b0e0
Description: Translation for luci-app-tinyproxy - עִבְרִית (Hebrew)
Package: luci-i18n-tinyproxy-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-tinyproxy-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 108500ad19cd16386acd2d0606e8f83f
SHA256sum: 9e4a7e652e501c3f0151677cfd22027fbb3561281088f87af114920e7ac79c49
Description: Translation for luci-app-tinyproxy - Magyar (Hungarian)
Package: luci-i18n-tinyproxy-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 821
Filename: luci/luci-i18n-tinyproxy-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1622
MD5Sum: ec7844b548bb496b8708ad2e529bb328
SHA256sum: e26939487ce4d41eb37aea265e883a5418d8db558b8aa842118c1c6fd42cc293
Description: Translation for luci-app-tinyproxy - Italiano (Italian)
Package: luci-i18n-tinyproxy-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2423
Filename: luci/luci-i18n-tinyproxy-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3222
MD5Sum: 08b7e6417dfb8d64983deefabc965442
SHA256sum: 52981294e4a8e763e577c15d24d43aad9221363a9d2bf0f64f50154dfeb1bf15
Description: Translation for luci-app-tinyproxy - 日本語 (Japanese)
Package: luci-i18n-tinyproxy-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-tinyproxy-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1125
MD5Sum: 872d9d90e605d0b82f3b0ca2a05bacee
SHA256sum: eeb4d7e69fae63e6be38165dcf4af6481a9e7bfc9b49c2c63f4003f485971ff7
Description: Translation for luci-app-tinyproxy - Bahasa Melayu (Malay)
Package: luci-i18n-tinyproxy-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-tinyproxy-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 557a3e0d027795593382d5bec6b48d92
SHA256sum: 377511f5ccff69a83752545b5dfb6aa07d02a2621701cef4355e4a29d01479fe
Description: Translation for luci-app-tinyproxy - Norsk (Norwegian)
Package: luci-i18n-tinyproxy-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 3080
Filename: luci/luci-i18n-tinyproxy-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 3860
MD5Sum: 301585701740e051fb9c0d513ce1be47
SHA256sum: 68677394bfc874716d67ecf796af01f8820686a0166a28efbaa746126d2af7c6
Description: Translation for luci-app-tinyproxy - Polski (Polish)
Package: luci-i18n-tinyproxy-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2974
Filename: luci/luci-i18n-tinyproxy-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 3767
MD5Sum: 99151561b5a3755abdb223b86b6e6fc3
SHA256sum: df80a94bdb5dd8dbdf7334c2355fecebf2961b16e272d352bcfafbe304ccde91
Description: Translation for luci-app-tinyproxy - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-tinyproxy-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1160
Filename: luci/luci-i18n-tinyproxy-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1968
MD5Sum: 2010eb95f04bf813997b95fd4d693217
SHA256sum: d425dad450dc834ff53f8705a491535dfdaccefdf6ca0a18b5e55e2acfdb3fac
Description: Translation for luci-app-tinyproxy - Português (Portuguese)
Package: luci-i18n-tinyproxy-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci/luci-i18n-tinyproxy-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1131
MD5Sum: 69bea7181dd29afda3501eda182b43a9
SHA256sum: 55c0cf979852386b6b79bf01f56847a1dae16690293ea91e09c551dcc92a490f
Description: Translation for luci-app-tinyproxy - Română (Romanian)
Package: luci-i18n-tinyproxy-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 3249
Filename: luci/luci-i18n-tinyproxy-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4051
MD5Sum: b2764a8cb16d966d8eb91539843ebbca
SHA256sum: 71f74e9cb374fc32ffd05cef6d1a40a9f5597f55c1767d01782ae0c549653a99
Description: Translation for luci-app-tinyproxy - Русский (Russian)
Package: luci-i18n-tinyproxy-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci/luci-i18n-tinyproxy-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1127
MD5Sum: 0e6364c98d7d1b1ddee7d730039c399e
SHA256sum: 55464ad327a506a2596e0c0f35530f68580018a0332dbef5a52f322d01f5b112
Description: Translation for luci-app-tinyproxy - Slovenčina (Slovene)
Package: luci-i18n-tinyproxy-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-tinyproxy-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: cd6050bab9a53e1e2cc4d9141e03a3b5
SHA256sum: 1826a92e3da8d911bdc5deeb06ef14854c5a80657c01f54cbb0c749ccd66e5f2
Description: Translation for luci-app-tinyproxy - Svenska (Swedish)
Package: luci-i18n-tinyproxy-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 327
Filename: luci/luci-i18n-tinyproxy-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1130
MD5Sum: 395334649791514d8becb710c333387d
SHA256sum: c7d93ea70b97e8df4405d0e3f0c25cdd03a1766ba531064ded925a6a33b0af6a
Description: Translation for luci-app-tinyproxy - Türkçe (Turkish)
Package: luci-i18n-tinyproxy-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 349
Filename: luci/luci-i18n-tinyproxy-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1176
MD5Sum: 55139ef8ecf5ffc773a28bf1a8ba56b7
SHA256sum: d284a1440088221d16055f93e22a062294983fe81e6a7f44a8156af848fb6d85
Description: Translation for luci-app-tinyproxy - украї́нська (Ukrainian)
Package: luci-i18n-tinyproxy-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 576
Filename: luci/luci-i18n-tinyproxy-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1391
MD5Sum: 4ffd7758485dc89694865d562c06d7ce
SHA256sum: fd30449a5fb59e8b11a42ee8a8c48ec9195dea796f5c1b54a311f0bd191a668b
Description: Translation for luci-app-tinyproxy - Tiếng Việt (Vietnamese)
Package: luci-i18n-tinyproxy-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2763
Filename: luci/luci-i18n-tinyproxy-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 3560
MD5Sum: f893ae42ae6b273058c81521665e013b
SHA256sum: 233a247a8990c1a5fefbec6e8ab2a0ca87fe82370c023ab43c725d93ec3e8143
Description: Translation for luci-app-tinyproxy - 普通话 (Chinese)
Package: luci-i18n-tinyproxy-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 347
Filename: luci/luci-i18n-tinyproxy-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1176
MD5Sum: ba09e183d914db6795dfb4bd77235f86
SHA256sum: 53c9c8971a139f44aabe67ab55eb4e5e8b1eafbe0c4096cb297f3c9976f8140e
Description: Translation for luci-app-tinyproxy - 臺灣華語 (Taiwanese)
Package: luci-i18n-transmission-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 1668
Filename: luci/luci-i18n-transmission-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2479
MD5Sum: 9c5f1381835c2ab12028a7297f84c676
SHA256sum: 4bd4faefcc5cbfaac034320c3b76299de5990ea60860ed8f0b315d861cdecb6d
Description: Translation for luci-app-transmission - Català (Catalan)
Package: luci-i18n-transmission-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2087
Filename: luci/luci-i18n-transmission-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2902
MD5Sum: 0ebf4a51aa6077f97ec52ded5a002a17
SHA256sum: 187e427f57a950053d9755c2361d4c9d69d5f66d6ae49c385ec41734e0d32dbd
Description: Translation for luci-app-transmission - Čeština (Czech)
Package: luci-i18n-transmission-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2737
Filename: luci/luci-i18n-transmission-de_git-15.079.29361-3e37216-1_all.ipk
Size: 3522
MD5Sum: 6c647e18504823e4930f304f6998d1c9
SHA256sum: 2a646b95c9528dd7169e6f80cebc59bab553852f0fa12ae8ef5fa65dcd841fd5
Description: Translation for luci-app-transmission - Deutsch (German)
Package: luci-i18n-transmission-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-transmission-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 04ec4384e044856d0c4c322b065a03e8
SHA256sum: 1ec3141055bb1f4d716cc562888d0fd28fb84819825421f0d4dee134b9c106bb
Description: Translation for luci-app-transmission - Ελληνικά (Greek)
Package: luci-i18n-transmission-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci/luci-i18n-transmission-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1096
MD5Sum: dc982c0e18570da5290bb0eb692e24e4
SHA256sum: c0ef6d65c6d3017a73676ecacbbf1be6e2dbfff32fc104f867bbcc7a001cb7e0
Description: Translation for luci-app-transmission - English
Package: luci-i18n-transmission-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2675
Filename: luci/luci-i18n-transmission-es_git-15.079.29361-3e37216-1_all.ipk
Size: 3461
MD5Sum: 26ee3fd8d6134a227520188c6b8ed87c
SHA256sum: eb31b6e352f39b2ca2f487a904fae900f98629656a4ff0f88a288c52da7aaabf
Description: Translation for luci-app-transmission - Español (Spanish)
Package: luci-i18n-transmission-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-transmission-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: f1a7690d1fff8c5ebae6d0ea1db92d4e
SHA256sum: 86be5fb67409752dc9231b3003c6b4cb0b179e71f61d20b3d71d33524744855d
Description: Translation for luci-app-transmission - Français (French)
Package: luci-i18n-transmission-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci/luci-i18n-transmission-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1159
MD5Sum: cfaf2681b612dd0415e4fb547be10411
SHA256sum: ce939d1d09efab14324306ec967899f8060775aea04ae68d2860f666be317a6c
Description: Translation for luci-app-transmission - עִבְרִית (Hebrew)
Package: luci-i18n-transmission-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2752
Filename: luci/luci-i18n-transmission-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 3535
MD5Sum: e82c842d6a2a08efc033cd997b59fab6
SHA256sum: 5e2d7f446658cdc239b6eecc1c1e175c50af2cb6e6e72dac42b2a412c3782cb7
Description: Translation for luci-app-transmission - Magyar (Hungarian)
Package: luci-i18n-transmission-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 651
Filename: luci/luci-i18n-transmission-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1449
MD5Sum: 570599882376d1e887abaaaf37c33fb3
SHA256sum: 478fbd0afde6422f1ecae8205699f3239928003581cbd269cbc910831bba3784
Description: Translation for luci-app-transmission - Italiano (Italian)
Package: luci-i18n-transmission-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2229
Filename: luci/luci-i18n-transmission-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3053
MD5Sum: 0fd2a0f4982c5281e30add87b71d4d9a
SHA256sum: 6d5fff71167839c0487794a493a59ae4a1cabaf6c66510f49120e346001733b1
Description: Translation for luci-app-transmission - 日本語 (Japanese)
Package: luci-i18n-transmission-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-transmission-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: ac1adb6607117eedda6efd34451c6c6b
SHA256sum: 071d0835a1dbf008cc2f372779539047e25940d3135526e4c8ffe3a52b13c623
Description: Translation for luci-app-transmission - Bahasa Melayu (Malay)
Package: luci-i18n-transmission-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 1756
Filename: luci/luci-i18n-transmission-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2563
MD5Sum: 6aad8db0acbaeb29cedd76be1e99b42b
SHA256sum: f7c8698b858b57f218698f72314d777fa404dd87fb12d6fabbe0f8c623ec08fe
Description: Translation for luci-app-transmission - Norsk (Norwegian)
Package: luci-i18n-transmission-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2877
Filename: luci/luci-i18n-transmission-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 3655
MD5Sum: 8e52fd9056e1961846878620452b63d0
SHA256sum: c183f8ace7865d2acac592f935cd2d7eb384b1d24dad75ea3d838221aa1b3564
Description: Translation for luci-app-transmission - Polski (Polish)
Package: luci-i18n-transmission-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2828
Filename: luci/luci-i18n-transmission-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 3626
MD5Sum: 7cb635d1796f5c3820565b47ce46e9ee
SHA256sum: f1fb14527ba9c54f9016f90b9d00faeaf0864372d3e09d916afe47efd2191434
Description: Translation for luci-app-transmission - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-transmission-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 1012
Filename: luci/luci-i18n-transmission-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1816
MD5Sum: 710f0935c27c553af82ad611aa85af02
SHA256sum: 59d5be25f1987818603484ecd39d07f47519eef5cd50b3f3cabb310ab731d2f9
Description: Translation for luci-app-transmission - Português (Portuguese)
Package: luci-i18n-transmission-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 711
Filename: luci/luci-i18n-transmission-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1520
MD5Sum: 5aa5a51a3308ded16eb1d19d11a06f6f
SHA256sum: 5a8a32ba4acb937887ab99adcc3ae71cac63a1cf0522742d7fda39b933cd5fad
Description: Translation for luci-app-transmission - Română (Romanian)
Package: luci-i18n-transmission-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 3119
Filename: luci/luci-i18n-transmission-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3917
MD5Sum: 21354b62f1bb7f1c8f53c458c20b5114
SHA256sum: 75f8db014ad8c7f69a82c678fa10c71ecba481f19168bb38a4a80abfa121f349
Description: Translation for luci-app-transmission - Русский (Russian)
Package: luci-i18n-transmission-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-transmission-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 7f0f3178327c9ea185c2131b34bbe5a0
SHA256sum: 077206dfea7c6aaa1c666512ec9e24eb389c76e3e671b3402da9d4f64dcfc651
Description: Translation for luci-app-transmission - Slovenčina (Slovene)
Package: luci-i18n-transmission-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-transmission-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 09160c251d8459d64f0e05daf9de8867
SHA256sum: 015daa425cd74e7874e7df634600033bc887573f2c22b5139501489b61b51ad1
Description: Translation for luci-app-transmission - Svenska (Swedish)
Package: luci-i18n-transmission-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci/luci-i18n-transmission-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 8baf64b91f0b403003b5cd6ba8283643
SHA256sum: 41a8ccdf66d63b6a7fe7c4e29e2867c533d6c40794f0e310bac2fc113977f960
Description: Translation for luci-app-transmission - Türkçe (Turkish)
Package: luci-i18n-transmission-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 496
Filename: luci/luci-i18n-transmission-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1329
MD5Sum: 007457444622c3378bd37420122ea09c
SHA256sum: 0e447c477f9377bc467a8c875b887ef7690fed87631c3c7965c3b538baef398f
Description: Translation for luci-app-transmission - украї́нська (Ukrainian)
Package: luci-i18n-transmission-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 339
Filename: luci/luci-i18n-transmission-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1149
MD5Sum: 1c4d8b136e6bd99a3e6a9dbba5d22af9
SHA256sum: dec676155db566f52ba689bb1fb12c3587feca9761f46be010440eeafd1fe8cd
Description: Translation for luci-app-transmission - Tiếng Việt (Vietnamese)
Package: luci-i18n-transmission-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2508
Filename: luci/luci-i18n-transmission-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 3341
MD5Sum: 1f32bc192bd89a1fdc326980ad3f72d2
SHA256sum: 7f2e81a5b8cb14db6084e3462ffcc9ebb834fa199c5499fb34a511585ae654f3
Description: Translation for luci-app-transmission - 普通话 (Chinese)
Package: luci-i18n-transmission-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2623
Filename: luci/luci-i18n-transmission-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 3461
MD5Sum: d8eca25fcc66b4a9c387c2f71129cce6
SHA256sum: 97a31c539873696f62703ac8c51b7a356906e69f517ef6026732d4e0ef0705cb
Description: Translation for luci-app-transmission - 臺灣華語 (Taiwanese)
Package: luci-i18n-upnp-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1463
Filename: luci/luci-i18n-upnp-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2270
MD5Sum: 0b72682934ec4d6fb2a82c29f5335d5e
SHA256sum: d5ca0e1302b751f205043b6dddad7b1948d125930537fdeaf658836ae0caf528
Description: Translation for luci-app-upnp - Català (Catalan)
Package: luci-i18n-upnp-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1519
Filename: luci/luci-i18n-upnp-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2334
MD5Sum: eb646330449f01a1271a213629698135
SHA256sum: b97f0ee647eaa58b7767709b88021d6dd177be549993e72980ecd8914c0c2019
Description: Translation for luci-app-upnp - Čeština (Czech)
Package: luci-i18n-upnp-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1466
Filename: luci/luci-i18n-upnp-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2268
MD5Sum: 5f0a073491a82332d456ede26e7f3fc8
SHA256sum: 1ac8c9444f2483b8fef3ec956dde2a753d08aa7029543e95e5c3cfbe83787544
Description: Translation for luci-app-upnp - Deutsch (German)
Package: luci-i18n-upnp-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci/luci-i18n-upnp-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: bd90bfa0747772d87ccf645ebc909584
SHA256sum: 8276e8ea190189da05f040da218d9ae8520c1d04c485980766394b3ee0c2c5db
Description: Translation for luci-app-upnp - Ελληνικά (Greek)
Package: luci-i18n-upnp-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 303
Filename: luci/luci-i18n-upnp-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1088
MD5Sum: 804c0c4ef8069dd62a28317ae71ea6ef
SHA256sum: 2fccf488739d418e46b508346cd92961ea31ba87abb623a53df3c2322f30eb12
Description: Translation for luci-app-upnp - English
Package: luci-i18n-upnp-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1570
Filename: luci/luci-i18n-upnp-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2382
MD5Sum: 6fd52bba838ec115de1382d05d64d914
SHA256sum: c01743b41738f41ea075c045b5be356a2b60f2cff58108e6c6cc29cb7c817d48
Description: Translation for luci-app-upnp - Español (Spanish)
Package: luci-i18n-upnp-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1530
Filename: luci/luci-i18n-upnp-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2350
MD5Sum: 3fb12b92814c3d9eaee2f44d2ebe0899
SHA256sum: 90f9330f70ec4e3b4ee182a1e859f12863dd5b06f603e0f2ee2f402f959a5c9e
Description: Translation for luci-app-upnp - Français (French)
Package: luci-i18n-upnp-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-upnp-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: 58a2f571fa88d6f3e0f714430ba29a66
SHA256sum: 06394de0020d053abd5cc6b617d30a18bdc80291bf862fc98e6ca78c1db1158c
Description: Translation for luci-app-upnp - עִבְרִית (Hebrew)
Package: luci-i18n-upnp-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1632
Filename: luci/luci-i18n-upnp-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2440
MD5Sum: 4678010496c11d0a64c1c54d9f0b7688
SHA256sum: 3adfd2c562a22b1887b2567dad8a119a76ec65b9bc674847bdc7f0a2e292c163
Description: Translation for luci-app-upnp - Magyar (Hungarian)
Package: luci-i18n-upnp-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1425
Filename: luci/luci-i18n-upnp-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2228
MD5Sum: 9075082cd87c960aacf5206c6710d770
SHA256sum: 8cfa750538bb87940ca3fd4b5764bdc250a20f5035484c93c284a382171543a5
Description: Translation for luci-app-upnp - Italiano (Italian)
Package: luci-i18n-upnp-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1588
Filename: luci/luci-i18n-upnp-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2414
MD5Sum: 70575160b95be1a425aa2e8ed827cd2c
SHA256sum: cf8b834066a85b0733929d808e38d1a07a77836f138034c66a4b031ba8c262a9
Description: Translation for luci-app-upnp - 日本語 (Japanese)
Package: luci-i18n-upnp-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-upnp-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 57ad9ce3bbffdc22a138770400e3ec97
SHA256sum: fad200549282fac6fdca39d3e540137b76828394be3bd0c3c473ce2085cdd105
Description: Translation for luci-app-upnp - Bahasa Melayu (Malay)
Package: luci-i18n-upnp-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1456
Filename: luci/luci-i18n-upnp-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2260
MD5Sum: d6b587e793c28572f11bdb9d030e419c
SHA256sum: be8aa060020933f898a569edc5e13ed0f1f6bca4bf310e1b9962ecad24184e15
Description: Translation for luci-app-upnp - Norsk (Norwegian)
Package: luci-i18n-upnp-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1510
Filename: luci/luci-i18n-upnp-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2309
MD5Sum: 54ddbb9467a2a6ba6f8bd9500845ac6e
SHA256sum: ab11d8e0fc2b0f0314928f46bab4a2b6961b2656c07f2e4e2593f1fec6fae389
Description: Translation for luci-app-upnp - Polski (Polish)
Package: luci-i18n-upnp-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1679
Filename: luci/luci-i18n-upnp-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2510
MD5Sum: f4de29034a32ed187c5c14d524d8968d
SHA256sum: 6708bf5572f9b2b0ebf79fb3f32cf26d4315108ec79495abc32561766f1bcbd8
Description: Translation for luci-app-upnp - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-upnp-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 446
Filename: luci/luci-i18n-upnp-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1240
MD5Sum: c751f56805357dad0bf19b6fc0b0e840
SHA256sum: 96916bf2f301c409739d465a31a811cb227c345735fe7eb02d2e434f7f1618ab
Description: Translation for luci-app-upnp - Português (Portuguese)
Package: luci-i18n-upnp-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1427
Filename: luci/luci-i18n-upnp-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2242
MD5Sum: 08d193cf4082325c857dfb4d60e558a8
SHA256sum: 0f4c227bde6c5615564e88d902a76810c0bdae5be983f0e264fe89cff8c6d6f6
Description: Translation for luci-app-upnp - Română (Romanian)
Package: luci-i18n-upnp-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1727
Filename: luci/luci-i18n-upnp-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2556
MD5Sum: a18fca3c9d3022f48e5acef856b93328
SHA256sum: d8ed6567cc23c5021c64515ef1b9629f4faf81b2527f24f2ef39bf6114a5cdca
Description: Translation for luci-app-upnp - Русский (Russian)
Package: luci-i18n-upnp-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-upnp-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: e7dbf3bdb4b6fc2ec9e65eaf5da76476
SHA256sum: 9064bb2215abb1344e44eebbf2699dcfed782a6efe1de631398daa5e6801d091
Description: Translation for luci-app-upnp - Slovenčina (Slovene)
Package: luci-i18n-upnp-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-upnp-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: c68a85f80964cf69965a021784761b33
SHA256sum: 7c1f2e0be147de8beab0f5924a95f4841c66ce9ec545527e93ec68ddf39151eb
Description: Translation for luci-app-upnp - Svenska (Swedish)
Package: luci-i18n-upnp-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-upnp-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: 2806ee61a0a7a1a343ed1010ad97d161
SHA256sum: 8f846904828197708bb29acabd477ce8769e881f2ee46c56c0654fc892d5d099
Description: Translation for luci-app-upnp - Türkçe (Turkish)
Package: luci-i18n-upnp-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1762
Filename: luci/luci-i18n-upnp-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2606
MD5Sum: d8bd6bafa10361f19e644ece7f2d85aa
SHA256sum: b82ac559ccea0dce738718eb8aa160ce3f9ba71e068d7a88de41c4a918210942
Description: Translation for luci-app-upnp - украї́нська (Ukrainian)
Package: luci-i18n-upnp-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 418
Filename: luci/luci-i18n-upnp-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1228
MD5Sum: d29d23f41e59725d3ec91ef65084143f
SHA256sum: 6714be70d4c28fb4965c19ee94652331942ae3c1dc58135a06e89f714da35482
Description: Translation for luci-app-upnp - Tiếng Việt (Vietnamese)
Package: luci-i18n-upnp-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1550
Filename: luci/luci-i18n-upnp-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2380
MD5Sum: 7c650312cc4e9d74927068427494e592
SHA256sum: 2843ee57a05e941c6b8ff2a1c48df224e9a6889de428a42f4208da10b4eb4574
Description: Translation for luci-app-upnp - 普通话 (Chinese)
Package: luci-i18n-upnp-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1586
Filename: luci/luci-i18n-upnp-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2426
MD5Sum: 435e531ff7629a2509a143f2629d57d8
SHA256sum: e1c3aaf56ac16b2933715d444d1f2bca24dc32f7d960a0da8a711762497b4d92
Description: Translation for luci-app-upnp - 臺灣華語 (Taiwanese)
Package: luci-i18n-vnstat-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 852
Filename: luci/luci-i18n-vnstat-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1660
MD5Sum: 7d291052f527195d1306364ed7f74cd7
SHA256sum: ad2e0ffaf9d509fb2603caa5866e7296a38a88512efe7124fca727a225f0a853
Description: Translation for luci-app-vnstat - Català (Catalan)
Package: luci-i18n-vnstat-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 879
Filename: luci/luci-i18n-vnstat-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1697
MD5Sum: 8e05558972954c2baf8b470d77a0b984
SHA256sum: a4a8de287ec719750b22d64816a05fafab67015986fb55b10630d3502d05ea98
Description: Translation for luci-app-vnstat - Čeština (Czech)
Package: luci-i18n-vnstat-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 880
Filename: luci/luci-i18n-vnstat-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1673
MD5Sum: 16b167fd48c6d810e0af15b44e33965c
SHA256sum: 9390d42de974824dad15d9d832be0cbdda5f92aaf7559b62e99a08017727cec1
Description: Translation for luci-app-vnstat - Deutsch (German)
Package: luci-i18n-vnstat-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci/luci-i18n-vnstat-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1143
MD5Sum: a976256963cc1015774a6c39cf2ff8d9
SHA256sum: 36a9c4598add1be45f32097eeb8b3f40369fdffe5996add3a2cd2adacd254515
Description: Translation for luci-app-vnstat - Ελληνικά (Greek)
Package: luci-i18n-vnstat-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 306
Filename: luci/luci-i18n-vnstat-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1092
MD5Sum: 9eb04c94b266cfab41aa2a8b3af53aeb
SHA256sum: 6e05f2e6bd889cd216303cff5bba29f584fa0636635cd255eff02d2b7d59b451
Description: Translation for luci-app-vnstat - English
Package: luci-i18n-vnstat-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 865
Filename: luci/luci-i18n-vnstat-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1667
MD5Sum: 6e3312f77fbc7ba211013c6bb7f1018a
SHA256sum: e36b9269be4b032e418f70814ffacec2ae5d19cc568549f3528814d81eaed890
Description: Translation for luci-app-vnstat - Español (Spanish)
Package: luci-i18n-vnstat-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 853
Filename: luci/luci-i18n-vnstat-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1652
MD5Sum: 7f74bbfca767ecd6d14d6bc0d0ecfe0d
SHA256sum: ddc02fbf445825dc6bf0aa6127dad70dcc60b990fe2e02b31d7514b85bdc6483
Description: Translation for luci-app-vnstat - Français (French)
Package: luci-i18n-vnstat-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-vnstat-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1151
MD5Sum: d49aeefac72a32c364b71b8977f3f710
SHA256sum: 71ad11000284b7e13fec6fc77fdee0330807b482e62f4b9dcd192ca128ef5317
Description: Translation for luci-app-vnstat - עִבְרִית (Hebrew)
Package: luci-i18n-vnstat-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 870
Filename: luci/luci-i18n-vnstat-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1683
MD5Sum: 799f4dc175e9dd66e1511583fb307ae2
SHA256sum: aab872604aee8aced7a6ed6a279b10ec1469b602570b4b8568246314fd5a4cad
Description: Translation for luci-app-vnstat - Magyar (Hungarian)
Package: luci-i18n-vnstat-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 788
Filename: luci/luci-i18n-vnstat-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1583
MD5Sum: a0ad81ccf0a837bb677f55cdba3eea54
SHA256sum: f1e36bfa2749b6db469fa368a76a72917b940dc177450193a87152806b641b18
Description: Translation for luci-app-vnstat - Italiano (Italian)
Package: luci-i18n-vnstat-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 916
Filename: luci/luci-i18n-vnstat-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1735
MD5Sum: 26d6ec76118864212170dbf02d785cfd
SHA256sum: 72fc3a0f5786607f8db229fc9c92d90c7750915839b10fd98531793cdac27ca1
Description: Translation for luci-app-vnstat - 日本語 (Japanese)
Package: luci-i18n-vnstat-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-vnstat-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 274066aaaa4b6a7dbe8394e152e1e21c
SHA256sum: 3949ce4828718e566e9cd4486433648f94c8e5bc675172b6d0d5f4969a6bacf4
Description: Translation for luci-app-vnstat - Bahasa Melayu (Malay)
Package: luci-i18n-vnstat-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 830
Filename: luci/luci-i18n-vnstat-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1633
MD5Sum: c36d5e616e26d49393919f50fd2eecc6
SHA256sum: 1091f4b53dc5673a26b193851765214ebf1777adfc08363bd440bab46cfe083c
Description: Translation for luci-app-vnstat - Norsk (Norwegian)
Package: luci-i18n-vnstat-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 865
Filename: luci/luci-i18n-vnstat-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1664
MD5Sum: 9b4b55972b061f4bde75353239de25da
SHA256sum: bfef01d74b7ce38ab60da3bb4ad9d20257ffc594379b1752d2fa31b6da827917
Description: Translation for luci-app-vnstat - Polski (Polish)
Package: luci-i18n-vnstat-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 873
Filename: luci/luci-i18n-vnstat-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1705
MD5Sum: 44b3d023c771748a60c691f3dfca7241
SHA256sum: 07456a2ec5606d8c2c756e430d6a45de19b3815b7f767c24275cac5638c21763
Description: Translation for luci-app-vnstat - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-vnstat-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 848
Filename: luci/luci-i18n-vnstat-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1656
MD5Sum: d78cdc0b6bdeea79c576ede1b460c97c
SHA256sum: 97ee820c1b21a3b8a1eef6202f2256829850fa13be16b5bc066bb794ec3fd5ff
Description: Translation for luci-app-vnstat - Português (Portuguese)
Package: luci-i18n-vnstat-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 830
Filename: luci/luci-i18n-vnstat-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1637
MD5Sum: c8f01410c462f6297b0dc338c8308c59
SHA256sum: 351561602ec4b282b18974807206955feeea0d03fded0a902973db6ad368d776
Description: Translation for luci-app-vnstat - Română (Romanian)
Package: luci-i18n-vnstat-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 925
Filename: luci/luci-i18n-vnstat-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1747
MD5Sum: 77ad8c555dbf150ca258b54439e05421
SHA256sum: a689b9db1592bb06df136ff7540d2ad97cace5a747e41bb149973f87036bf796
Description: Translation for luci-app-vnstat - Русский (Russian)
Package: luci-i18n-vnstat-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-vnstat-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 8fd3b186b7d2c72f201480428600156a
SHA256sum: 792b8c0b222845008410475d084bf025beb32be7008a4f3b4ab8b311ecfdcbe9
Description: Translation for luci-app-vnstat - Slovenčina (Slovene)
Package: luci-i18n-vnstat-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-vnstat-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 51c3d6c0bcacba873445a837768e07e4
SHA256sum: c5da7dc43f7f8a857c04d16fd44cc7e8afa32060a6ecbe810c0ebbe945d42107
Description: Translation for luci-app-vnstat - Svenska (Swedish)
Package: luci-i18n-vnstat-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-vnstat-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 638ad8539ce0ac6a23f049f88e33206c
SHA256sum: 20508646c3b2e27ca6830cbda6d3b1de1d3877652d8683ea3ef57571383e1112
Description: Translation for luci-app-vnstat - Türkçe (Turkish)
Package: luci-i18n-vnstat-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 972
Filename: luci/luci-i18n-vnstat-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1805
MD5Sum: dd648f8d9bc7841e9e2dd3365f75e63c
SHA256sum: 0ada289fc698b29aede8d227c84f0038d0fc569e0471ffef1c3baa6c4abbb219
Description: Translation for luci-app-vnstat - украї́нська (Ukrainian)
Package: luci-i18n-vnstat-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-vnstat-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1150
MD5Sum: fc81f18c813bc39ef1e7715d09b690b3
SHA256sum: dabfc5b8ac0053722390e828aeebe7a9164b4208c467e3acbe4669c113bfdcf1
Description: Translation for luci-app-vnstat - Tiếng Việt (Vietnamese)
Package: luci-i18n-vnstat-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 835
Filename: luci/luci-i18n-vnstat-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1660
MD5Sum: 1c8849d64de48e2e875f1aa8e60a819e
SHA256sum: d1ac8de11746df6a4b4be630ba48b206d8efc5068aa559433d594df7fe64f337
Description: Translation for luci-app-vnstat - 普通话 (Chinese)
Package: luci-i18n-vnstat-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 867
Filename: luci/luci-i18n-vnstat-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1702
MD5Sum: 8972f45c8e142c40aba33a31b1fa94e0
SHA256sum: efa8cafa2bbbce46d03b77b78b51d44cb882cf6fafbaefd2405de8944fcb098d
Description: Translation for luci-app-vnstat - 臺灣華語 (Taiwanese)
Package: luci-i18n-voice-core-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 411
Filename: luci/luci-i18n-voice-core-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1203
MD5Sum: 1caa0ef3f8bd420440680001a0a4c0dc
SHA256sum: 5ba68c8ef32b1abf0335b767ba0cea7e1dd64ffdd00a362db5d6cc8130bd87cb
Description: Translation for luci-app-voice-core - Català (Catalan)
Package: luci-i18n-voice-core-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 413
Filename: luci/luci-i18n-voice-core-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1216
MD5Sum: 73c90c386338c5c729501570a535f795
SHA256sum: cfe437a3b013043d165846455a40fab2da79ba5feb4b9887a9073e89675643c0
Description: Translation for luci-app-voice-core - Čeština (Czech)
Package: luci-i18n-voice-core-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 408
Filename: luci/luci-i18n-voice-core-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1200
MD5Sum: e9f412cb33621a5f2b66cdbc8f7b61ce
SHA256sum: cfc8c695016fc308ea020a2454f8f8446ebd2f0a572bc5a180b49ca21fde510a
Description: Translation for luci-app-voice-core - Deutsch (German)
Package: luci-i18n-voice-core-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 406
Filename: luci/luci-i18n-voice-core-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1220
MD5Sum: 581d59d4c9834130586836606df8406f
SHA256sum: f1a901fe831834a648f97118fc2b3b77322cce512e779a707dcf4a3164d8171b
Description: Translation for luci-app-voice-core - Ελληνικά (Greek)
Package: luci-i18n-voice-core-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 309
Filename: luci/luci-i18n-voice-core-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1097
MD5Sum: 257a3f3dd9275013581ddcb1f5bb0d6d
SHA256sum: 5d5b60bedf2d5bb708d09fea5f0edfec409ed03a7ce354d9a24e6158abebff7c
Description: Translation for luci-app-voice-core - English
Package: luci-i18n-voice-core-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 418
Filename: luci/luci-i18n-voice-core-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1216
MD5Sum: d30511dfd371cea1f61ffac54a8ea114
SHA256sum: 88d7f2c1def157ab57a0c27ef5e4e21765f601ccd45a9f8f9bc7bc0b1d0db2bd
Description: Translation for luci-app-voice-core - Español (Spanish)
Package: luci-i18n-voice-core-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 418
Filename: luci/luci-i18n-voice-core-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1221
MD5Sum: 63ed80b86c3ab1530504501fc02e8295
SHA256sum: 0050c6bcbed0f448d9d14f2e4ead1e3843dd69758aad60723ade92cfc9dd3140
Description: Translation for luci-app-voice-core - Français (French)
Package: luci-i18n-voice-core-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 435
Filename: luci/luci-i18n-voice-core-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1253
MD5Sum: 3bd4a97f95eeb208349f949876f7eec4
SHA256sum: 8450592219280a9a717d9b4775c5779078832c8b2845e8db9b76410a112f4056
Description: Translation for luci-app-voice-core - עִבְרִית (Hebrew)
Package: luci-i18n-voice-core-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 411
Filename: luci/luci-i18n-voice-core-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1209
MD5Sum: 343cd7aa965cf066c1b6568791ed16e4
SHA256sum: ed4d8568ba6c0fadb02538f335b116af43cb8804314109bc407aa69b3f77e7e2
Description: Translation for luci-app-voice-core - Magyar (Hungarian)
Package: luci-i18n-voice-core-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 401
Filename: luci/luci-i18n-voice-core-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1189
MD5Sum: 711e446c8145bf7a11ca7401e843d3cd
SHA256sum: 4a96e79b47afd86f5d6e97f6cfb75b705c08b5b8371c34c9fd1177b677be8d4c
Description: Translation for luci-app-voice-core - Italiano (Italian)
Package: luci-i18n-voice-core-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 399
Filename: luci/luci-i18n-voice-core-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1211
MD5Sum: 2db33a4b72880d51545726de3ecd9e0a
SHA256sum: 7eb4e68a3a16862b0ed649fdd473c9ecbd1745356b1d1641268bb9a14db80650
Description: Translation for luci-app-voice-core - 日本語 (Japanese)
Package: luci-i18n-voice-core-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-voice-core-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 93eab04b687b304697bdca8fa309b7b4
SHA256sum: 6ae1c76fb458627608c5490ac06cff601f60fa758dbebb1093af7d3056ed83cd
Description: Translation for luci-app-voice-core - Bahasa Melayu (Malay)
Package: luci-i18n-voice-core-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 386
Filename: luci/luci-i18n-voice-core-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1186
MD5Sum: 073a2faabe7d22d2954a05c891a828e5
SHA256sum: 4885b66453b045f31b351f4e039e7d7ed9b5329782742f1a4392ace11f3e5015
Description: Translation for luci-app-voice-core - Norsk (Norwegian)
Package: luci-i18n-voice-core-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 408
Filename: luci/luci-i18n-voice-core-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1203
MD5Sum: 143422b51420ff777b2085a6bc1e2fb3
SHA256sum: a82edb85c1a0a446b4c5330dd9172f21f4a6419a18ad1ccaff58061ed386a680
Description: Translation for luci-app-voice-core - Polski (Polish)
Package: luci-i18n-voice-core-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 439
Filename: luci/luci-i18n-voice-core-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1257
MD5Sum: 8672738e4eee512e88ec7b6872bd5226
SHA256sum: 9801bb219d31c744715bc5d8ff7ea517f0f0171281fe083db8c1ed1992349518
Description: Translation for luci-app-voice-core - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-voice-core-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 415
Filename: luci/luci-i18n-voice-core-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1218
MD5Sum: 04fca6cb60dd20153822d33035d23a60
SHA256sum: 94e0c20c25d5bf6a1f05e55c8f6e2f8fac2f80bbf679fdc7c44e206525e4510f
Description: Translation for luci-app-voice-core - Português (Portuguese)
Package: luci-i18n-voice-core-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 414
Filename: luci/luci-i18n-voice-core-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1216
MD5Sum: 0ea6f4d14a2a932a0507dfa66766ad74
SHA256sum: e06694d33bd9f8872a936a3d9dac47532f24165a543a0a4fafe17f9c0ce185db
Description: Translation for luci-app-voice-core - Română (Romanian)
Package: luci-i18n-voice-core-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 436
Filename: luci/luci-i18n-voice-core-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1250
MD5Sum: dcadbef642bf900a805cc946b962a6a2
SHA256sum: 99b6aed4acfa550d95e745ad843a821650d973ca5062aaacdef83d826670b9f1
Description: Translation for luci-app-voice-core - Русский (Russian)
Package: luci-i18n-voice-core-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-voice-core-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: 3e5915b43d3748c8eb59b763369d5e95
SHA256sum: 7f4d753eb0191897a741b07ee4228b8bd15661fe2e4ad98192e8f9903fe2b0a6
Description: Translation for luci-app-voice-core - Slovenčina (Slovene)
Package: luci-i18n-voice-core-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 416
Filename: luci/luci-i18n-voice-core-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1215
MD5Sum: 2a2f2d4505dbb9ef3b78030253d5d387
SHA256sum: fe0bb74e9fa9528c1b8d67739fc4be5a143ac96b556c5e55c030122188bc6ccb
Description: Translation for luci-app-voice-core - Svenska (Swedish)
Package: luci-i18n-voice-core-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 410
Filename: luci/luci-i18n-voice-core-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1209
MD5Sum: bf0c48931e52bafd701a786c82c7d85b
SHA256sum: 653680954681259af882f977c96e56667455acb8740c48ca32e610ce12d69edf
Description: Translation for luci-app-voice-core - Türkçe (Turkish)
Package: luci-i18n-voice-core-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 447
Filename: luci/luci-i18n-voice-core-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1279
MD5Sum: 6a5e6f49fd4cab2f27d8cfa26d41698b
SHA256sum: 700f4da3c1671e72c43895fe0bcaa18a94c881d3096c9acc3d88aee845454dd0
Description: Translation for luci-app-voice-core - украї́нська (Ukrainian)
Package: luci-i18n-voice-core-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-voice-core-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1154
MD5Sum: 1697ab71aa6f7fabba6b4eb173629151
SHA256sum: b568f6134e9b3f1033a98265ba43f191c487177cf433fd80d56e6b2a562dea77
Description: Translation for luci-app-voice-core - Tiếng Việt (Vietnamese)
Package: luci-i18n-voice-core-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 429
Filename: luci/luci-i18n-voice-core-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1240
MD5Sum: d58bc30b1795e18a157e00098beab25f
SHA256sum: 9cce9cd7ac5be988f02c4d870da4336f4108b27e742c85a29831c65fce829a18
Description: Translation for luci-app-voice-core - 普通话 (Chinese)
Package: luci-i18n-voice-core-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 438
Filename: luci/luci-i18n-voice-core-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1260
MD5Sum: 7c2514bd49fae6587091d511517f54ee
SHA256sum: 44eca1e45e742a267460c7837ea240ddc3c58c6c3ebca1f594cafc0631e4e7ee
Description: Translation for luci-app-voice-core - 臺灣華語 (Taiwanese)
Package: luci-i18n-voice-diag-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 581
Filename: luci/luci-i18n-voice-diag-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1390
MD5Sum: ca4a21e9906c4a29165d33bdf587ebb2
SHA256sum: b0c427cc498a4f3885b2ca34b23a961e107b693ac0f2ad7634c8f423264873b1
Description: Translation for luci-app-voice-diag - Català (Catalan)
Package: luci-i18n-voice-diag-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 617
Filename: luci/luci-i18n-voice-diag-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1422
MD5Sum: 21190e4082df6a4baacbbc285d88d2ed
SHA256sum: c3e99cfbb841706b9d88afd72520a091a376f4ace89e12ee393b288bbb4da632
Description: Translation for luci-app-voice-diag - Čeština (Czech)
Package: luci-i18n-voice-diag-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 570
Filename: luci/luci-i18n-voice-diag-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1372
MD5Sum: e6b421950dc2c9b3ba6544cfdadd8852
SHA256sum: 5f6c75c521207b2181041655fdd893dca9c6feaea30802be860b6edd4033a552
Description: Translation for luci-app-voice-diag - Deutsch (German)
Package: luci-i18n-voice-diag-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 735
Filename: luci/luci-i18n-voice-diag-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1549
MD5Sum: 0a29850cd524baab1624d8489f631809
SHA256sum: 2f69c92c2f24a7c6052a74e0c7ef1eaa84cbba02f104840ff00181bbeecf9526
Description: Translation for luci-app-voice-diag - Ελληνικά (Greek)
Package: luci-i18n-voice-diag-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 470
Filename: luci/luci-i18n-voice-diag-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1266
MD5Sum: 15349b13e5d7a4a5f13c7a888c238587
SHA256sum: 7c7109cbed6b45b11e9650cd71b592437f56aa4e9da53664df8774064039a4ef
Description: Translation for luci-app-voice-diag - English
Package: luci-i18n-voice-diag-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 604
Filename: luci/luci-i18n-voice-diag-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1409
MD5Sum: f14fac47f1c2ed2b41698fdc2255ceea
SHA256sum: afc77af0dca31685321687e66efa74629bb4f371f1bd6594653164b3d4c41d03
Description: Translation for luci-app-voice-diag - Español (Spanish)
Package: luci-i18n-voice-diag-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 565
Filename: luci/luci-i18n-voice-diag-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1373
MD5Sum: 86a46faa31c91817352d239720977bc5
SHA256sum: 618046dc55e99783f2bb5eacf096ea4a6f4572b518f53037eb4aba241cced06e
Description: Translation for luci-app-voice-diag - Français (French)
Package: luci-i18n-voice-diag-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci/luci-i18n-voice-diag-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: c32906cf6fb39b3798e2675f78a75b31
SHA256sum: 5639f0a9291b2587d30d55a408c1232314a6d6514de823d0d54da4c15d0fe727
Description: Translation for luci-app-voice-diag - עִבְרִית (Hebrew)
Package: luci-i18n-voice-diag-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 616
Filename: luci/luci-i18n-voice-diag-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1423
MD5Sum: 2fac857675880612f8181294698df341
SHA256sum: 964bc6682e0dc788e725efb3ce60cd5f4b3fcc571bf5616acae5b48474c87c5f
Description: Translation for luci-app-voice-diag - Magyar (Hungarian)
Package: luci-i18n-voice-diag-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 573
Filename: luci/luci-i18n-voice-diag-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1374
MD5Sum: 6fcf8e5bb9f1682f7218538ae3a9a0f5
SHA256sum: bf010ba6a2c49b58779d380101222ab4298a9175e77f58625511eab9b5399e5f
Description: Translation for luci-app-voice-diag - Italiano (Italian)
Package: luci-i18n-voice-diag-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-voice-diag-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: 6669e7933bcffdc977d1e218bdd10b80
SHA256sum: e20b54169bde5b0891bff48439e1cf39b259442e7053258e9831fad214d43c2f
Description: Translation for luci-app-voice-diag - 日本語 (Japanese)
Package: luci-i18n-voice-diag-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci/luci-i18n-voice-diag-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 702c990426eb876cb6f625d741deef4a
SHA256sum: 81306ed9918e6fa517d22446898f372aa27e041f8aa8756e69493702c3256cbd
Description: Translation for luci-app-voice-diag - Bahasa Melayu (Malay)
Package: luci-i18n-voice-diag-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 587
Filename: luci/luci-i18n-voice-diag-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1392
MD5Sum: 35368db7a0403b78b0e77d8b6052a478
SHA256sum: 194f43b8cab56c1010315c8d66c18cd8926797b8a1c939bf2a656d97a16b887a
Description: Translation for luci-app-voice-diag - Norsk (Norwegian)
Package: luci-i18n-voice-diag-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 572
Filename: luci/luci-i18n-voice-diag-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1374
MD5Sum: bb8b9ece4d66f17b29d80a33aec875d1
SHA256sum: a008311af8ee24c0458e0fc4a4ed85093f75bea26772b4641ee0eebd3f2da551
Description: Translation for luci-app-voice-diag - Polski (Polish)
Package: luci-i18n-voice-diag-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 614
Filename: luci/luci-i18n-voice-diag-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1437
MD5Sum: b2fd180036654424ea3746ed13ec4cd0
SHA256sum: df755f38c986f372204746db8ac10a2c3135e6f2b3439a4fa9de0185340aeb4a
Description: Translation for luci-app-voice-diag - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-voice-diag-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 582
Filename: luci/luci-i18n-voice-diag-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1389
MD5Sum: a07353f71a99bf75dcc8a852f71d2245
SHA256sum: 979d547e87fd42921b82a9e95a885ca5c2995e3726116cf1687ef0a98671ab35
Description: Translation for luci-app-voice-diag - Português (Portuguese)
Package: luci-i18n-voice-diag-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 570
Filename: luci/luci-i18n-voice-diag-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1381
MD5Sum: 3b06db89f790738bc81eedd785c870cd
SHA256sum: 41e10ff4ee71eaaafce13b3baa56daeb735b510510acf1a967b04504f5688ec2
Description: Translation for luci-app-voice-diag - Română (Romanian)
Package: luci-i18n-voice-diag-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 657
Filename: luci/luci-i18n-voice-diag-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1476
MD5Sum: 6f1de24beeaf6c336f69106b8d15a43b
SHA256sum: a3aa16eb1853485d0c36025786370cc0215020690b76b7fb5bb965175badb956
Description: Translation for luci-app-voice-diag - Русский (Russian)
Package: luci-i18n-voice-diag-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-voice-diag-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 0ef00b0cba2cebe61419d374f8e3604c
SHA256sum: 08280dd39ac32b6ab2fd712aaf5ffe7e5579921ea9c4f547df7835c0ef24a552
Description: Translation for luci-app-voice-diag - Slovenčina (Slovene)
Package: luci-i18n-voice-diag-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-voice-diag-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: e8787dd73917aaedd66f5616c8fd4c67
SHA256sum: 78c791b33286be3c16281e44076ba3621d90b21765521979b1977cec20cdf522
Description: Translation for luci-app-voice-diag - Svenska (Swedish)
Package: luci-i18n-voice-diag-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-voice-diag-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1129
MD5Sum: 225d489dbd19a17d3f1458283ac1a143
SHA256sum: f3b89bcd1710a14097a773bbe73ce303e7c518ee170793b02868e5272559ea75
Description: Translation for luci-app-voice-diag - Türkçe (Turkish)
Package: luci-i18n-voice-diag-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 683
Filename: luci/luci-i18n-voice-diag-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1519
MD5Sum: 9e3b9ed6c9eb431f71f42dd6a932e3e9
SHA256sum: 100297c55ff710c74ad64a04259e1374eb5701bd2b087bbed8f21e2cffc536f9
Description: Translation for luci-app-voice-diag - украї́нська (Ukrainian)
Package: luci-i18n-voice-diag-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-voice-diag-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1151
MD5Sum: b4b897ecf518159ac5330c637b628336
SHA256sum: cb1e0eab17082f17a3d587f67b695c358799f7b1239b43a34c54252360d688cd
Description: Translation for luci-app-voice-diag - Tiếng Việt (Vietnamese)
Package: luci-i18n-voice-diag-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 577
Filename: luci/luci-i18n-voice-diag-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1391
MD5Sum: 2c44fd54405c02e705dc3de22fa2dca6
SHA256sum: 3a27c37ae4b7c066037158f4cb16628f68f792bc29b1db58db6e28a26dfd0bd7
Description: Translation for luci-app-voice-diag - 普通话 (Chinese)
Package: luci-i18n-voice-diag-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 598
Filename: luci/luci-i18n-voice-diag-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1425
MD5Sum: 42c30d72618e07e2081f9cad8f269893
SHA256sum: 997061e9ddea2cd0e2380cf302a36df49a70a1eea90fd5d5e77c724bf00a10ab
Description: Translation for luci-app-voice-diag - 臺灣華語 (Taiwanese)
Package: luci-i18n-watchcat-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 957
Filename: luci/luci-i18n-watchcat-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1761
MD5Sum: b718b850f3ae45fc7e93c46195ff60ef
SHA256sum: b175ef4bb4a621fd2267d8803abcd0c343d44c3af6632fb71c12904f7326da76
Description: Translation for luci-app-watchcat - Català (Catalan)
Package: luci-i18n-watchcat-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1147
Filename: luci/luci-i18n-watchcat-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1963
MD5Sum: 9ff961af72fb1cf4ef6967009e054516
SHA256sum: cff070b9a6e64ec94f981c7b11c9b865b9949e6c1e16f3e08283edb9393e5945
Description: Translation for luci-app-watchcat - Čeština (Czech)
Package: luci-i18n-watchcat-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1072
Filename: luci/luci-i18n-watchcat-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1878
MD5Sum: 22f4e56e35b7e88f563677c122e9d66b
SHA256sum: 06e12a629344a6fd02ca4cf5b36285a89ca97ecb0507107470497bbb3f5bc8f3
Description: Translation for luci-app-watchcat - Deutsch (German)
Package: luci-i18n-watchcat-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-watchcat-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1146
MD5Sum: 56915ac47ecdd937b64bc1d30566856a
SHA256sum: 9541c9bdb13f8bb9a611d39c8b5731023925e5ac2d417e761be5ea7bbd8dfb30
Description: Translation for luci-app-watchcat - Ελληνικά (Greek)
Package: luci-i18n-watchcat-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 583
Filename: luci/luci-i18n-watchcat-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1379
MD5Sum: 18e66adbd9ecbb049e054e2941a149d8
SHA256sum: 809b283e2e4c6841cbb7bdff1c4585de9c7f58cc86d17b16089dc999324a9056
Description: Translation for luci-app-watchcat - English
Package: luci-i18n-watchcat-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 892
Filename: luci/luci-i18n-watchcat-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1697
MD5Sum: f730d06a8f73b29a155ec62cb67924b9
SHA256sum: 1f9276e476706adf0ee2e0c4ecf77ad7c18ae39d5fa2015a7be1dec325bb0265
Description: Translation for luci-app-watchcat - Español (Spanish)
Package: luci-i18n-watchcat-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-watchcat-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: cc355223bea60a843cb3b009033b5703
SHA256sum: 8f27085f7d37243176dfa38c8b340afa768b2fe038f0b0685c9409262119c4cc
Description: Translation for luci-app-watchcat - Français (French)
Package: luci-i18n-watchcat-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci/luci-i18n-watchcat-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1156
MD5Sum: 298850ed3834ddfbc5ff4df89003a241
SHA256sum: f681954b56332352970555bba0524fd2075e2b403f1bc3a98a279acb0684a77c
Description: Translation for luci-app-watchcat - עִבְרִית (Hebrew)
Package: luci-i18n-watchcat-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 794
Filename: luci/luci-i18n-watchcat-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1607
MD5Sum: 6e5e818ac9685239532c6fc47e6d6566
SHA256sum: da67a3199789075d40b6fd66004711e28238555589002c1a521a525e9aa2ac83
Description: Translation for luci-app-watchcat - Magyar (Hungarian)
Package: luci-i18n-watchcat-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 967
Filename: luci/luci-i18n-watchcat-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1770
MD5Sum: 546b2d8f8387f99aae0934af573e7d6b
SHA256sum: 4522b9e00387cfde951e5ce1d38583dedc02f3c27153bc9bda769e6ac2b8e096
Description: Translation for luci-app-watchcat - Italiano (Italian)
Package: luci-i18n-watchcat-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1063
Filename: luci/luci-i18n-watchcat-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1885
MD5Sum: 92f464319b9ded2b36df2688ebfe731d
SHA256sum: 317ff2d86d1aad89e7f375137af2b41f7ca0913bb51c9237417126d37a630104
Description: Translation for luci-app-watchcat - 日本語 (Japanese)
Package: luci-i18n-watchcat-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-watchcat-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: c710c4e890f35d26e5c634c772bf1999
SHA256sum: c43fb491cf4e6dd984654b40840664d11d5dfdc9dc419010b9f1c58580ad62c2
Description: Translation for luci-app-watchcat - Bahasa Melayu (Malay)
Package: luci-i18n-watchcat-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci/luci-i18n-watchcat-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 253f137281e936f2ecd74ed3fe2719eb
SHA256sum: 513ae7222dfc0def1caba5f07549eea34dcb409967ce3d452b9b30ceac55eacd
Description: Translation for luci-app-watchcat - Norsk (Norwegian)
Package: luci-i18n-watchcat-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1007
Filename: luci/luci-i18n-watchcat-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1808
MD5Sum: 4cc6f377863efcd93d25dfda747f0814
SHA256sum: 7f5a348f9b2f8af4d43ef00cabd2db9b1fb49de712599d1ee8f51bbf87ce04e6
Description: Translation for luci-app-watchcat - Polski (Polish)
Package: luci-i18n-watchcat-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1037
Filename: luci/luci-i18n-watchcat-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1861
MD5Sum: a05627667e938eaa5f8b2f95ca574d8b
SHA256sum: cf2b2f9342e1921236d8987d7fa8df5f99d56408f530cc7aa9be6f67b5d023b5
Description: Translation for luci-app-watchcat - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-watchcat-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 476
Filename: luci/luci-i18n-watchcat-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1280
MD5Sum: 0f5f43a9c3af4138ea4d2157d240bc55
SHA256sum: 2b15828fbb13e28993ba3f531981c6ee55a07a06b6dd270dcbe689e54b972fd6
Description: Translation for luci-app-watchcat - Português (Portuguese)
Package: luci-i18n-watchcat-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 390
Filename: luci/luci-i18n-watchcat-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1190
MD5Sum: 40cadcfbc519e30b2099bb3dbaf12760
SHA256sum: f8fe03012275c3a50337e457aaa9238f441659e2302404c654b1aacc67363d25
Description: Translation for luci-app-watchcat - Română (Romanian)
Package: luci-i18n-watchcat-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1192
Filename: luci/luci-i18n-watchcat-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2023
MD5Sum: daf6c04901cbea1aa9fbcbf769e99ae7
SHA256sum: 96f57736a8e78931705b7d495dc567592488d8d07a0041c726155a7ede55cc68
Description: Translation for luci-app-watchcat - Русский (Russian)
Package: luci-i18n-watchcat-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-watchcat-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 06e0e795b5f55efd46745951cb2a3664
SHA256sum: 0efe0be94ced61d59c33fd4bb762d126d931b4de3f47e798eeb6e50a088ef020
Description: Translation for luci-app-watchcat - Slovenčina (Slovene)
Package: luci-i18n-watchcat-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-watchcat-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: b8a840b918c59f46f4f83ee7eb98d876
SHA256sum: 598546527fa01409786702bd36a255f3770639348dedf6160c7dacb8cd4cc20b
Description: Translation for luci-app-watchcat - Svenska (Swedish)
Package: luci-i18n-watchcat-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci/luci-i18n-watchcat-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: faa5c01365283ad3ba644498edc08dbc
SHA256sum: a810b6848db00cefc411b690bc25b25cd5a4c43c15391c25bb7a9e0651c081ed
Description: Translation for luci-app-watchcat - Türkçe (Turkish)
Package: luci-i18n-watchcat-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 765
Filename: luci/luci-i18n-watchcat-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1601
MD5Sum: 9bddb72d59924af701ac292f87eaea91
SHA256sum: 747679c6417a2aff0e568b13971f6430bc7c708f94ac06565226e142acf75863
Description: Translation for luci-app-watchcat - украї́нська (Ukrainian)
Package: luci-i18n-watchcat-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-watchcat-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: e63d2646291d34612967c2474e65ce3b
SHA256sum: 3d971b2b6025fcedf7cec728e9b37adfc0007629042c4287f89bcc1e755faff3
Description: Translation for luci-app-watchcat - Tiếng Việt (Vietnamese)
Package: luci-i18n-watchcat-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1015
Filename: luci/luci-i18n-watchcat-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1838
MD5Sum: 2d2cc83af5a6026a367e00b5c4c66e70
SHA256sum: 71cae7ee5e553d24951f9d3774500c6bd28608b84bca47ce3f3c0e4840bbe871
Description: Translation for luci-app-watchcat - 普通话 (Chinese)
Package: luci-i18n-watchcat-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1019
Filename: luci/luci-i18n-watchcat-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1856
MD5Sum: b810a712d6ac7c01f9b395f5eb1bb7b2
SHA256sum: c047c3c3d169e6a1bc1ef215052c6b8741b016a207f0a93def93d1582ce2a191
Description: Translation for luci-app-watchcat - 臺灣華語 (Taiwanese)
Package: luci-i18n-wol-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 814
Filename: luci/luci-i18n-wol-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1613
MD5Sum: 604e938ef8233d4b5fe23aa19b808cdf
SHA256sum: 49361d8826c8ad67a4f1a4ce2dc2b8f9814f7f2c1db0dada564cc44b312d6327
Description: Translation for luci-app-wol - Català (Catalan)
Package: luci-i18n-wol-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 891
Filename: luci/luci-i18n-wol-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1705
MD5Sum: 5e106d4f907b798b939dc46648902311
SHA256sum: 0ce001bba4cd778cae4b7b10686417418826c1db22e2016099dcab8a6a601940
Description: Translation for luci-app-wol - Čeština (Czech)
Package: luci-i18n-wol-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 826
Filename: luci/luci-i18n-wol-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1624
MD5Sum: 9c588a64fbe3da06b24411051bb8a0a6
SHA256sum: 832c13c4fd742bd83e674a949b083e5f2cb8abf2725d58d4097af4540349f318
Description: Translation for luci-app-wol - Deutsch (German)
Package: luci-i18n-wol-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci/luci-i18n-wol-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1139
MD5Sum: 3db9427dfa02e9aefab99c299d188f78
SHA256sum: 7c309be906e253a7746ac1883ad1817bbfa76014440bc9d86d5f6f45bce66b28
Description: Translation for luci-app-wol - Ελληνικά (Greek)
Package: luci-i18n-wol-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 409
Filename: luci/luci-i18n-wol-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1197
MD5Sum: d2f8b452bb5c409b1eed0e6197106043
SHA256sum: d1d434dff17693f7a9e776f42e8644247ec428ca93188b6a35538b5c59cad7d1
Description: Translation for luci-app-wol - English
Package: luci-i18n-wol-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 793
Filename: luci/luci-i18n-wol-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1595
MD5Sum: 5cb035faf545f73c316361713fec2744
SHA256sum: a45e9a89d284f7b0328fb143442205006c7dfe8e0da68b4e7a6ade882f2036f3
Description: Translation for luci-app-wol - Español (Spanish)
Package: luci-i18n-wol-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 832
Filename: luci/luci-i18n-wol-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1641
MD5Sum: 068f57206a972ac9707cb70c549bf5a4
SHA256sum: fabd394fb103323d2423c9b33ec47ae1fd84d072de45d30cc13022b7125f964a
Description: Translation for luci-app-wol - Français (French)
Package: luci-i18n-wol-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci/luci-i18n-wol-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: 4ea1c20dc522f09e975f10a72b5a48a8
SHA256sum: 5507a8a320b839ed35c4e444220792d53c4eb7a884a44b28f329806163252dc8
Description: Translation for luci-app-wol - עִבְרִית (Hebrew)
Package: luci-i18n-wol-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 836
Filename: luci/luci-i18n-wol-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1640
MD5Sum: f5556868f1f22fd3f0a9d0a54156ee3c
SHA256sum: 745faff29d85ea11a0cbd1c45ed3555e55592b78aee05eaf2007c5a10c861074
Description: Translation for luci-app-wol - Magyar (Hungarian)
Package: luci-i18n-wol-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 805
Filename: luci/luci-i18n-wol-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1602
MD5Sum: d8ba8df9454a05dc10942d0d95ba6cd8
SHA256sum: 5e3f79158229a234da04b8d35ef9898ca21db66217a089e662bfe5916c63bdc6
Description: Translation for luci-app-wol - Italiano (Italian)
Package: luci-i18n-wol-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 895
Filename: luci/luci-i18n-wol-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1717
MD5Sum: b1b602d7ec871f8e1694c1cb1c1fb357
SHA256sum: b0c0197d102349fd81fdaf69452b7836832746f7684c151326e3a83de5a657fd
Description: Translation for luci-app-wol - 日本語 (Japanese)
Package: luci-i18n-wol-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci/luci-i18n-wol-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: d4bb3b49a1f966e367b048ede5300db8
SHA256sum: 8b8e61019423b5d4232231def9eea35dfc4ef681f8986d454aaba8bda666c39d
Description: Translation for luci-app-wol - Bahasa Melayu (Malay)
Package: luci-i18n-wol-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 792
Filename: luci/luci-i18n-wol-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1592
MD5Sum: 76fb3d0843a287405c411d1dec72d0aa
SHA256sum: e0acf72e59b940a13dba360367655922de8781a3e9224846fed516630707bc88
Description: Translation for luci-app-wol - Norsk (Norwegian)
Package: luci-i18n-wol-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 825
Filename: luci/luci-i18n-wol-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1627
MD5Sum: d7b2e0a9ac717efce46d1454f57cb2bc
SHA256sum: ae9704e72a4185f65845f2665c29a438cd4a837558d934076f9234276a05f676
Description: Translation for luci-app-wol - Polski (Polish)
Package: luci-i18n-wol-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 812
Filename: luci/luci-i18n-wol-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1638
MD5Sum: 8922017085b6c74610f2398716dd8d7a
SHA256sum: 29f1a7a0c79fd703b1a030b74f92b1274e1a7da27bafe9e3cb5c5120c401d6be
Description: Translation for luci-app-wol - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-wol-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 778
Filename: luci/luci-i18n-wol-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1583
MD5Sum: f673ac771a768f37b972a57ceeb6cec8
SHA256sum: 00ba18869621591d54b704c26a074cd90600179bc4d02a648c4b285b13510a10
Description: Translation for luci-app-wol - Português (Portuguese)
Package: luci-i18n-wol-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 804
Filename: luci/luci-i18n-wol-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1613
MD5Sum: 6fa03d8714b45e54329654b48581eff4
SHA256sum: c5e52d287da5f7124735b31b5fd788c1320bf21132aacd6fc76994c982587379
Description: Translation for luci-app-wol - Română (Romanian)
Package: luci-i18n-wol-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 1060
Filename: luci/luci-i18n-wol-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1885
MD5Sum: 5520894b5f7cdc5cf309c30ac634f6b5
SHA256sum: f44e228351787fe925affaefa3ed091fe54770fea2527e79015418533e104953
Description: Translation for luci-app-wol - Русский (Russian)
Package: luci-i18n-wol-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci/luci-i18n-wol-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: aa1dfa38a26ff3e4307ba1318b277723
SHA256sum: d2459eacfdf1b1c685fc6348db41d09f3ab792c0410f5d4accd07a8779a2ea12
Description: Translation for luci-app-wol - Slovenčina (Slovene)
Package: luci-i18n-wol-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci/luci-i18n-wol-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: 16efec794edaa115bc67ab323fa82df8
SHA256sum: 0ae95d0f47da7f4e2a991942be2c040dfb4ed33595b8203017de5f75dc11d9e1
Description: Translation for luci-app-wol - Svenska (Swedish)
Package: luci-i18n-wol-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci/luci-i18n-wol-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 4324c6fe11698c493e9c2ef12f0f9633
SHA256sum: 9e67c5200fdd7c3c9b61090d4c1a8aa236ac8b053b988025cc4b5df9d790dadf
Description: Translation for luci-app-wol - Türkçe (Turkish)
Package: luci-i18n-wol-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 980
Filename: luci/luci-i18n-wol-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1807
MD5Sum: 162be2edcc79384a5a061c6e983f67d2
SHA256sum: 098cc9fa648e3a5dbd42820db557209ab9bf54a010a2436b7eae0753d1bea62b
Description: Translation for luci-app-wol - украї́нська (Ukrainian)
Package: luci-i18n-wol-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci/luci-i18n-wol-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1137
MD5Sum: a97e80a797bfed88890b197fc345bdf4
SHA256sum: 11327edf4c1d368f007c3791e5fd4d9b0e2baa9fa4406ea5981355a43cdc8ad0
Description: Translation for luci-app-wol - Tiếng Việt (Vietnamese)
Package: luci-i18n-wol-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 834
Filename: luci/luci-i18n-wol-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1654
MD5Sum: 98021190dd0c94537640f1e266fd3b6b
SHA256sum: 27d2ac08089ac5d8aa8c2c8798485dd905310b479a0a605bbdc94af3903678cf
Description: Translation for luci-app-wol - 普通话 (Chinese)
Package: luci-i18n-wol-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 856
Filename: luci/luci-i18n-wol-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1685
MD5Sum: 1350f139a15e4f05c4b69f209a5d2c89
SHA256sum: ad0e5fc9c72a270014ec5c20b43eb509c240d03d480eb2b4fa4f15d8938ab4e5
Description: Translation for luci-app-wol - 臺灣華語 (Taiwanese)
Package: luci-i18n-wshaper-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 805
Filename: luci/luci-i18n-wshaper-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1621
MD5Sum: 44e16e26c8671d585bc39bc3853b6ef2
SHA256sum: de5a0f546297b43a220f129f2d1b7f0285f2ce5cdab7632c9864b63c2d7b7f50
Description: Translation for luci-app-wshaper - Català (Catalan)
Package: luci-i18n-wshaper-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 899
Filename: luci/luci-i18n-wshaper-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1710
MD5Sum: f1b8e83446ae2247600330580577c613
SHA256sum: f460a7f907b7b8aa6cc4047a1df33a29d8dfe7f8cd8a94022f45f68eb578d4d6
Description: Translation for luci-app-wshaper - Čeština (Czech)
Package: luci-i18n-wshaper-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 813
Filename: luci/luci-i18n-wshaper-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1615
MD5Sum: 332a82c0f232e20e8dad68ac9ac328ca
SHA256sum: 42729de229acef052c5f60ad76f7b0a684130a2ad843c3216b74c6f158a37917
Description: Translation for luci-app-wshaper - Deutsch (German)
Package: luci-i18n-wshaper-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 406
Filename: luci/luci-i18n-wshaper-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1214
MD5Sum: 35d31e1826d22300463aedc642efb168
SHA256sum: 2f2e45e248f1b85b9be2af472e23be49c7af2815993bcbd9efdcc79b462d89d2
Description: Translation for luci-app-wshaper - Ελληνικά (Greek)
Package: luci-i18n-wshaper-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci/luci-i18n-wshaper-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: e2e44c0f0eae7c88233b6d88d3fa12d8
SHA256sum: d17a590c5fff409544dcd824c75896b73f1a17c40dd7039b001a6ebfe16de38d
Description: Translation for luci-app-wshaper - English
Package: luci-i18n-wshaper-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 794
Filename: luci/luci-i18n-wshaper-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1605
MD5Sum: c60ca4166a586115c7f0846b1f562d02
SHA256sum: abca829d89fbc17eb8d7ab2146594ef5b0b2d81917eaa1ad5f8b4e3d5e9a0642
Description: Translation for luci-app-wshaper - Español (Spanish)
Package: luci-i18n-wshaper-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 794
Filename: luci/luci-i18n-wshaper-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1610
MD5Sum: c447996efb4ef7b06712073e16ba0f4b
SHA256sum: 2eff5437155abb1bf0f20f1a76e1c5de961ced54077aed1b64a09f8a61c3e4e6
Description: Translation for luci-app-wshaper - Français (French)
Package: luci-i18n-wshaper-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci/luci-i18n-wshaper-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: bd4f8333715190088227968dc8d953b4
SHA256sum: 69fd1e0c8e2474850ad55dc2cb84f6d12b480d71903f1e8eeff09cc719d988dd
Description: Translation for luci-app-wshaper - עִבְרִית (Hebrew)
Package: luci-i18n-wshaper-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 826
Filename: luci/luci-i18n-wshaper-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1636
MD5Sum: 3996a88b243406a371a7109f85f76809
SHA256sum: 7922626102bdb2cc6221ee836d079052f6754f37ce61682f5a9e08e28075ae73
Description: Translation for luci-app-wshaper - Magyar (Hungarian)
Package: luci-i18n-wshaper-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 782
Filename: luci/luci-i18n-wshaper-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1584
MD5Sum: 480e68573bc3645e60b3a15bd4acddf0
SHA256sum: 03445d24c83e0cdc15ef22dc8a80df3441e77e344bbd7036178262c63e08f1d6
Description: Translation for luci-app-wshaper - Italiano (Italian)
Package: luci-i18n-wshaper-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 881
Filename: luci/luci-i18n-wshaper-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1709
MD5Sum: 56e9d4900e5683e38e80166baaf7f82e
SHA256sum: 9d4d4db6fbb9925089c64bcfc902c8a169561394adda9f35937b9179be7cf6fb
Description: Translation for luci-app-wshaper - 日本語 (Japanese)
Package: luci-i18n-wshaper-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci/luci-i18n-wshaper-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: 569e8c253771c446052da55999bca985
SHA256sum: d93716f23e9e2ece26b57765a73fa5984dd781e09fc2a555b0dcb00e290d9953
Description: Translation for luci-app-wshaper - Bahasa Melayu (Malay)
Package: luci-i18n-wshaper-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-wshaper-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1106
MD5Sum: c6c946a00b9199cc867547d8f8345523
SHA256sum: 494ee57b5a75309193ada230bebf1cf961b55b9dec144190bc42fa2e2902122a
Description: Translation for luci-app-wshaper - Norsk (Norwegian)
Package: luci-i18n-wshaper-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 765
Filename: luci/luci-i18n-wshaper-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1565
MD5Sum: e623dc860cc432b395b798dea1f5ebde
SHA256sum: 7494ef55a8b4546b036f5a411cd14e7854c3668a6a4e12a74284231ea2dcf274
Description: Translation for luci-app-wshaper - Polski (Polish)
Package: luci-i18n-wshaper-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 833
Filename: luci/luci-i18n-wshaper-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1661
MD5Sum: ffb15cde54d46012a5c68b3aad844bda
SHA256sum: ead2945b14a04b6f48c888de474a0c3f699e795fa2de014f12b31cd396836695
Description: Translation for luci-app-wshaper - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-wshaper-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 484
Filename: luci/luci-i18n-wshaper-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1288
MD5Sum: b127502eeb84288f77d2a4af7881c3cc
SHA256sum: d967c6af532b3cea151e72ea6ee75f21c5b3b90d6eea0249f0b2992d0d940b45
Description: Translation for luci-app-wshaper - Português (Portuguese)
Package: luci-i18n-wshaper-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci/luci-i18n-wshaper-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: 3078903554f9393d713bc6baf34ba51b
SHA256sum: 45df22ef756a6d46163520364da2088438b39f3499f0bdaa055c0ebba58d11c7
Description: Translation for luci-app-wshaper - Română (Romanian)
Package: luci-i18n-wshaper-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 945
Filename: luci/luci-i18n-wshaper-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1765
MD5Sum: d2cf75476689ab729527dbdb1e89acae
SHA256sum: abda089eeddeb86cb831e012488d719bebdfe8002a753bd8777a0d5da5ff67e2
Description: Translation for luci-app-wshaper - Русский (Russian)
Package: luci-i18n-wshaper-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-wshaper-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 9d8d4dde718ab346d0d7087898c1cf32
SHA256sum: ea3bdf385f876c575588afc8f99cb92fecacaceb9990d7b5469dbb9f5001d987
Description: Translation for luci-app-wshaper - Slovenčina (Slovene)
Package: luci-i18n-wshaper-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci/luci-i18n-wshaper-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1109
MD5Sum: 3b03fc1fe3fcecc02239babac76ae3c6
SHA256sum: eeccdf4d59f4256c5e366af237da96ec1708e0fa62c80d81108602c876f18131
Description: Translation for luci-app-wshaper - Svenska (Swedish)
Package: luci-i18n-wshaper-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci/luci-i18n-wshaper-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 735ab939daaceacb4b9186177b9078c7
SHA256sum: ad22874b608a3b0ed0a6513f1b3d6946e9b2e933826fa01c3ae2fa2e6bd37590
Description: Translation for luci-app-wshaper - Türkçe (Turkish)
Package: luci-i18n-wshaper-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 946
Filename: luci/luci-i18n-wshaper-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1782
MD5Sum: 65228e9473a73f87c0e66abeb0b7ccf3
SHA256sum: a844ae5667f3e855e9f94dd40a0475ccb3389b439c0dfc1482762808e0d588e9
Description: Translation for luci-app-wshaper - украї́нська (Ukrainian)
Package: luci-i18n-wshaper-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci/luci-i18n-wshaper-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: bf3a8ba0704f909a64d00472753ed904
SHA256sum: 3274370bd6ae8df89970a3ce1c1866097d97828c8060ed7cff77e4b0d42bfe81
Description: Translation for luci-app-wshaper - Tiếng Việt (Vietnamese)
Package: luci-i18n-wshaper-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 799
Filename: luci/luci-i18n-wshaper-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1610
MD5Sum: 1bf07f458d7a8a4442ef2f1905408930
SHA256sum: 2162a8807767f6358ff3ad801067a6b632967278635870154c1722d1a75d8236
Description: Translation for luci-app-wshaper - 普通话 (Chinese)
Package: luci-i18n-wshaper-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 866
Filename: luci/luci-i18n-wshaper-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1701
MD5Sum: e7eb2ba20c0cf25d8dd58b2c61a75d60
SHA256sum: 071626e1f7b033f98ea9ed1d555079ab34a3d1b279bbddf67b35f57e45691be7
Description: Translation for luci-app-wshaper - 臺灣華語 (Taiwanese)
Package: luci-lib-httpclient
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base, luci-lib-nixio
Source: feeds/luci/libs/luci-lib-httpclient
Section: luci
Architecture: all
Installed-Size: 4826
Filename: luci/luci-lib-httpclient_git-15.079.29361-3e37216-1_all.ipk
Size: 5506
MD5Sum: 87f63221a7e0abb91dcb1f71258e3279
SHA256sum: 8046fbd81515fe60351cd839c4aa4c69ed5b5891d9927b838b13bf59190f1de8
Description: HTTP(S) client library
Package: luci-lib-ip
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua, libnl-tiny
Source: feeds/luci/libs/luci-lib-ip
Section: luci
Architecture: ramips_24kec
Installed-Size: 9386
Filename: luci/luci-lib-ip_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 10091
MD5Sum: 9d79be209ef76b1806bbce879b383094
SHA256sum: 6e977a190474b8585de8edbe90d23b67534bbbad2287cf5d87fec511f9741e3a
Description: Lua library for IP calculation and routing information
Package: luci-lib-json
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/libs/luci-lib-json
Section: luci
Architecture: all
Installed-Size: 3111
Filename: luci/luci-lib-json_git-15.079.29361-3e37216-1_all.ipk
Size: 3802
MD5Sum: f5d1cf0b61b7da6f343af74082739c20
SHA256sum: b4a38429c45518071c393c62a6252af30fb7c43bd447659a1ddcaf1e5ec3b25e
Description: LuCI JSON library
Package: luci-lib-jsonc
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua, libjson-c
Source: feeds/luci/libs/luci-lib-jsonc
Section: luci
Architecture: ramips_24kec
Installed-Size: 3783
Filename: luci/luci-lib-jsonc_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 4480
MD5Sum: 65bbb19d9126389be3b20d6493eec956
SHA256sum: d02b33b6dbc7c7e603e30c31825acc21e6ad6d1214ff335aaad83fc6a4aae2f8
Description: Lua binding for JSON-C
Package: luci-lib-luaneightbl
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua
Source: feeds/luci/libs/luci-lib-luaneightbl
Section: luci
Architecture: ramips_24kec
Installed-Size: 2342
Filename: luci/luci-lib-luaneightbl_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 3075
MD5Sum: 4b727f5a3f8d065358c6fc2dccd126f8
SHA256sum: 273f2c744ae00f5d545e164ccaaeaf84cb36b0ae032fe24dca13560f3fcd9bb0
Description: neightbl - Lua lib for IPv6 neighbors
Package: luci-lib-nixio
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua
Source: feeds/luci/libs/luci-lib-nixio
Section: luci
Architecture: ramips_24kec
Installed-Size: 29094
Filename: luci/luci-lib-nixio_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 29691
MD5Sum: e82c9da862d684f9e7fdab1a8be325df
SHA256sum: ff237ddd0d1365464121eb45452368a210dcc5fdd9e18a1179d4636e456f5566
Description: NIXIO POSIX library
Package: luci-lib-px5g
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua
Source: feeds/luci/libs/luci-lib-px5g
Section: luci
Architecture: ramips_24kec
Installed-Size: 28575
Filename: luci/luci-lib-px5g_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 29293
MD5Sum: f706f614a5c4d7449cc164e0df8f3341
SHA256sum: d6ac79a38c563bc59bfafd949f4f7e62c493ff9514c6b5a41afc314e31a97284
Description: RSA/X.509 Key Generator (required for LuCId SSL support)
Package: luci-mod-admin-full
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base, libubus-lua
Source: feeds/luci/modules/luci-mod-admin-full
Section: luci
Architecture: ramips_24kec
Installed-Size: 67543
Filename: luci/luci-mod-admin-full_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 68401
MD5Sum: 205dc9c5f653ff27b987016169b48849
SHA256sum: 81b8d10e0571187e19ec7ff901911843f19ea07c86813b2cedb63dd50dd0a8b1
Description: LuCI Administration - full-featured for full control
Package: luci-mod-failsafe
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-mod-failsafe
Section: luci
Architecture: all
Installed-Size: 3932
Filename: luci/luci-mod-failsafe_git-15.079.29361-3e37216-1_all.ipk
Size: 4654
MD5Sum: 9b6d4f5212c86c58a0aa9e4307ff1f50
SHA256sum: be54f751010a6472739cf78b2c4ac00a61656a5fc5004bbb4d3777c87c47be0c
Description: LuCI Fail-Safe - Fail-Safe sysupgrade module
Package: luci-mod-freifunk-community
Version: git-15.079.29361-3e37216-1
Depends: libc, iptables-mod-nat-extra, iptables-mod-ipopt, luci-app-splash, olsrd, olsrd-mod-dyn-gw-plain, olsrd-mod-jsoninfo, olsrd-mod-nameservice, olsrd-mod-watchdog, kmod-tun, ip, freifunk-watchdog, luci-app-olsr, luci-app-olsr-services, freifunk-gwcheck, freifunk-mapupdate
Source: feeds/luci/modules/luci-mod-freifunk-community
Section: luci
Architecture: all
Installed-Size: 105
Filename: luci/luci-mod-freifunk-community_git-15.079.29361-3e37216-1_all.ipk
Size: 903
MD5Sum: 87744bb0f381900a744a35396b5e8363
SHA256sum: 7e8553a76bb9e061d974455a9f0247a0c938a85aa752ff36ec690d420d383799
Description: Freifunk Community Meta-Package
Package: luci-mod-freifunk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-admin-full, luci-lib-json, freifunk-firewall, freifunk-common
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 19613
Filename: luci/luci-mod-freifunk_git-15.079.29361-3e37216-1_all.ipk
Size: 20381
MD5Sum: 2ed47ce295bbc84cd7ad1d7768617665
SHA256sum: 8dd71d3f0553aac919defcdccaeb1c07086ba4120552e9494528daf3e196ed92
Description: LuCI Freifunk module
Package: luci-mod-rpc
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-lib-json
Source: feeds/luci/modules/luci-mod-rpc
Section: luci
Architecture: all
Installed-Size: 2570
Filename: luci/luci-mod-rpc_git-15.079.29361-3e37216-1_all.ipk
Size: 3266
MD5Sum: 4e7ad77be5a47acf08fc39bd91792005
SHA256sum: 0134bbcaeae6ddf0f3b7d9563858a43e0e8a9f4ac3dfa3bbee0001ef53897bb9
Description: LuCI RPC - JSON-RPC API
Package: luci-proto-3g
Version: git-15.079.29361-3e37216-1
Depends: libc, comgt
Source: feeds/luci/protocols/luci-proto-3g
Section: luci
Architecture: all
Installed-Size: 1690
Filename: luci/luci-proto-3g_git-15.079.29361-3e37216-1_all.ipk
Size: 2401
MD5Sum: 0db5bcb732fdf9df030c170e78815744
SHA256sum: 0de2fcd7eb6de298f792fdb008a4d6750bd98f50cd3ebbbba18fbcb077585f1f
Description: Support for 3G
Package: luci-proto-ipv6
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/protocols/luci-proto-ipv6
Section: luci
Architecture: all
Installed-Size: 4363
Filename: luci/luci-proto-ipv6_git-15.079.29361-3e37216-1_all.ipk
Size: 5061
MD5Sum: 0d0ef3ec94c564a3e3d4026f9dbb9b6a
SHA256sum: 1d13c2ced8164631dcedc57b554472d80956de89bac9bec9f9ab4c11b8913535
Description: Support for DHCPv6/6in4/6to4/6rd/DS-Lite/aiccu
Package: luci-proto-openconnect
Version: git-15.079.29361-3e37216-1
Depends: libc, openconnect
Source: feeds/luci/protocols/luci-proto-openconnect
Section: luci
Architecture: all
Installed-Size: 1284
Filename: luci/luci-proto-openconnect_git-15.079.29361-3e37216-1_all.ipk
Size: 2006
MD5Sum: 8b4813276641779d0c67802d9f044691
SHA256sum: c9c54c5f8c8a9f5fa09dcc2af67f991f3a8937456cfecc56a5ade430b2f40539
Description: Support for OpenConnect VPN
Package: luci-proto-ppp
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/protocols/luci-proto-ppp
Section: luci
Architecture: all
Installed-Size: 2624
Filename: luci/luci-proto-ppp_git-15.079.29361-3e37216-1_all.ipk
Size: 3329
MD5Sum: f8be237803c7cc9aa78ed0caef5738c4
SHA256sum: 1d97a0c3b95649d7eac5844576b8c337fe5b2e05c8f712f4e9015bb94f719701
Description: Support for PPP/PPPoE/PPPoA/PPtP
Package: luci-proto-relay
Version: git-15.079.29361-3e37216-1
Depends: libc, relayd
Source: feeds/luci/protocols/luci-proto-relay
Section: luci
Architecture: all
Installed-Size: 1840
Filename: luci/luci-proto-relay_git-15.079.29361-3e37216-1_all.ipk
Size: 2537
MD5Sum: c763de31053010ae476d2ce5d67dc2fd
SHA256sum: 9f9f64d74abe2e93dd8185cb90f7e059d983e9433b1eb7d01cd75a16847e638d
Description: Support for relayd pseudo bridges
Package: luci-ssl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci, libustream-polarssl, px5g
Source: feeds/luci/collections/luci-ssl
Section: luci
Architecture: all
Installed-Size: 105
Filename: luci/luci-ssl_git-15.079.29361-3e37216-1_all.ipk
Size: 813
MD5Sum: e3f8779df572be627d2066f6d06fd00d
SHA256sum: 83d9ae6bbcdf9db212af122e68b625b04ca35acefb96aeb5ff0e38887270edb0
Description: Standard OpenWrt set with HTTPS support
Package: luci-theme-bootstrap
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-bootstrap
Section: luci
Architecture: all
Installed-Size: 13044
Filename: luci/luci-theme-bootstrap_git-15.079.29361-3e37216-1_all.ipk
Size: 13764
MD5Sum: 29ec8ec07767c46e43429480d94fbe5d
SHA256sum: a81f73dfd3a807c7a5a94e1bb346fe12920b77b1ed1289dd0b89dabdaf1475d3
Description: Bootstrap Theme (default)
Package: luci-theme-freifunk-bno
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-freifunk-bno
Section: luci
Architecture: all
Installed-Size: 15495
Filename: luci/luci-theme-freifunk-bno_git-15.079.29361-3e37216-1_all.ipk
Size: 16219
MD5Sum: 608f16be5bf050964b0f169f5c735d7b
SHA256sum: 2d929dd8c1962ca5144cde48edc9652cb93f3d4be0b34ca6291216a21f62e318
Description: Freifunk Berlin Nordost Theme
Package: luci-theme-freifunk-generic
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-freifunk-generic
Section: luci
Architecture: all
Installed-Size: 12780
Filename: luci/luci-theme-freifunk-generic_git-15.079.29361-3e37216-1_all.ipk
Size: 13560
MD5Sum: 473bec7d8d05f3ff6359a181280d688c
SHA256sum: 07c3072a0fb946108fa06fe281252f8999195b085b812b18d20ddf22b5b400f5
Description: Freifunk Generic Theme
Package: luci-theme-openwrt
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-openwrt
Section: luci
Architecture: all
Installed-Size: 6975
Filename: luci/luci-theme-openwrt_git-15.079.29361-3e37216-1_all.ipk
Size: 7788
MD5Sum: dd83a6029dd504a9eb22ca9a1d7c65f8
SHA256sum: 44c7a04e301a305a427289ce49278f3ef46fe5d45efd04a231919475944f063e
Description: LuCI OpenWrt.org theme
Package: luci
Version: git-15.079.29361-3e37216-1
Depends: libc, uhttpd, uhttpd-mod-ubus, luci-mod-admin-full, luci-theme-bootstrap, luci-app-firewall, luci-proto-ppp, libiwinfo-lua
Source: feeds/luci/collections/luci
Section: luci
Architecture: all
Installed-Size: 105
Filename: luci/luci_git-15.079.29361-3e37216-1_all.ipk
Size: 872
MD5Sum: 95501ee79ff9ad9917ec61d9e1bacab3
SHA256sum: 366e695bdae73895df23d56ffee5bfa3fccde695461ba1687a37b526ac931c67
Description: Standard OpenWrt set including full admin with ppp support and the default Bootstrap theme
Package: meshwizard
Version: 0.1.1
Depends: libc, firewall
Source: feeds/luci/contrib/package/meshwizard
Section: luci
Architecture: ramips_24kec
Installed-Size: 12715
Filename: luci/meshwizard_0.1.1_ramips_24kec.ipk
Size: 13444
MD5Sum: 9a5e4aa2e301610031310377b6132b27
SHA256sum: e27c7e965413ef115034a0ab7655d71e844c4aa208609b850c894cb469758203
Description: A shellscript based wizard to simplify the setup of a typical mesh node (e.g. for Freifunk.net)
Package: freecwmp
Version: 2014-06-12-8f3c163fc85337e63bfa64da3c02f10d1fe3b169
Depends: libc, libcurl, libfreecwmp, libuci, libubox, libubus, libmicroxml, shflags
Source: feeds/management/freecwmp
License: GPL-2.0+
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28651
Filename: management/freecwmp_2014-06-12-8f3c163fc85337e63bfa64da3c02f10d1fe3b169_ramips_24kec.ipk
Size: 29454
MD5Sum: b3a06c1d48a7a79b18badccd55ae48a5
SHA256sum: 0966a9ace28e8be35c72717f362c95e9c783be2506a4ed9e22e2937c11afcab7
Description: A free client implementation of CWMP (TR-069) protocol
Package: freenetconfd
Version: 2015-02-05-1b72de4d3fe7dd98a6ebdedecad080fe4ae1c07c
Depends: libc, libuci, libubox, libubus, libroxml
Source: feeds/management/freenetconfd
License: GPL-2.0+
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14203
Filename: management/freenetconfd_2015-02-05-1b72de4d3fe7dd98a6ebdedecad080fe4ae1c07c_ramips_24kec.ipk
Size: 14962
MD5Sum: 0a5aa45eb2177f84837abfcaf8203def
SHA256sum: f1ca3d5d8fd940492cdf6aee2a795d4d042aba67602e9c979f18d7900ce2e3db
Description: netconf server
Package: freesub
Version: 2014-12-03-a1a38e80c6642af723d6aa65f64910dcf27cb3da
Depends: libc, libubox
Source: feeds/management/freesub
License: GPL-2.0+
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2781
Filename: management/freesub_2014-12-03-a1a38e80c6642af723d6aa65f64910dcf27cb3da_ramips_24kec.ipk
Size: 3564
MD5Sum: a3d3bf02e467a406413f2aeb24001ecc
SHA256sum: f2645515d1c21291f3054de236ad14370f21f32abcf8f838d96ffc1f66b0b307
Description: SSH subsystem helper
Package: libev
Version: 4.15-3
Depends: libc
Source: feeds/management/libev
License: BSD-2-Clause
Section: libs
Architecture: ramips_24kec
Installed-Size: 20053
Filename: management/libev_4.15-3_ramips_24kec.ipk
Size: 20836
MD5Sum: 0d1c15a55f6456153d61757e5b4c088f
SHA256sum: f0ed236138e7ef30d659da2d167a5148f9f5f0c2604255c276b6704c59f35a52
Description: A full-featured and high-performance event loop that is loosely modelled after
libevent, but without its limitations and bugs.
Package: libfreecwmp
Version: 2014-06-12-d2fdd97d66fde14859c06228a922066d9e8b669b
Depends: libc
Source: feeds/management/libfreecwmp
License: GPL-2.0+
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2284
Filename: management/libfreecwmp_2014-06-12-d2fdd97d66fde14859c06228a922066d9e8b669b_ramips_24kec.ipk
Size: 3053
MD5Sum: bc462bc25c2af7a78c29ea973df2e436
SHA256sum: 50cd4824393938a6b404692760e235ac2b3d8b305b3689bf98b324c505f7b66e
Description: CWMP library
Package: libmicroxml
Version: 2012-06-11-72965423184f24cc0b963d91c2d1863cdb01b6aa
Depends: libc
Source: feeds/management/libmicroxml
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17588
Filename: management/libmicroxml_2012-06-11-72965423184f24cc0b963d91c2d1863cdb01b6aa_ramips_24kec.ipk
Size: 18264
MD5Sum: 016642d9f86998945065b28d0c23e6f2
SHA256sum: d14c8af400465457abf9e113dd216db485a7d03d0fb3e4325e9dc9637d899854
Description: A micro sized XML library
Package: libnetconf
Version: 0.9.1-1
Depends: libc, libxml2, zlib, libxslt, libcurl, libssh2
Source: feeds/management/libnetconf
License: BSD-3-Clause
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167414
Filename: management/libnetconf_0.9.1-1_ramips_24kec.ipk
Size: 168209
MD5Sum: b2afec868b28ffa89fa9b965848b20f5
SHA256sum: be7b5920d0e08b983decccdc8dda72ca7752ad6ee0cceee57c9f80b929f4b89a
Description: libnetconf is the NETCONF library in C intended for building NETCONF clients and servers.
libnetconf provides basic functions to connect NETCONF client and server to each other via
SSH, to send and receive NETCONF messages and to store and work with the configuration data
in a datastore.
Package: libssh
Version: 2014-07-10-59a179950150d0305d6189ce9c126a9a0c5f6ab4
Depends: libc, libpthread, librt, zlib, libopenssl
Source: feeds/management/libssh
License: LGPL-2.1+ BSD-2-Clause
Section: lib
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99589
Filename: management/libssh_2014-07-10-59a179950150d0305d6189ce9c126a9a0c5f6ab4_ramips_24kec.ipk
Size: 100448
MD5Sum: 3e776ca250d93914db942a68d149df75
SHA256sum: 7a962978a00fade1282e5dd759f2ac4f1cfbc10a240c0975c72797bc3d017c66
Description: libssh is a mulitplatform C library implementing the SSHv2 and SSHv1 protocol
for client and server implementations.
Package: shflags
Version: 2012-06-11_r133-1.0.x
Depends: libc, getopt
Source: feeds/management/shflags
License: LGPL-2.1
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4293
Filename: management/shflags_2012-06-11_r133-1.0.x_ramips_24kec.ipk
Size: 5029
MD5Sum: 88566e01f4a2a6310fdf925120777ffc
SHA256sum: 42ffadad2ef21a21bf560ef86a4752d951e2ab288085e3f98cceb6a3c10e84d7
Description: command-line flags module for Unix shell scripts
Package: shtool
Version: 2.0.8-1
Depends: libc
Source: feeds/management/shtool
License: GPL-2.0+
Section: utils
Architecture: ramips_24kec
Installed-Size: 32124
Filename: management/shtool_2.0.8-1_ramips_24kec.ipk
Size: 32939
MD5Sum: 3b2b45e71e94a772f7e125705b689acb
SHA256sum: f32c14c8255c1c1aca947384f61c5edf272b1fbe1a850bf7c6f295bf3c63ecbc
Description: GNU shtool is a compilation of small but very stable and portable shell
scripts into a single shell tool.
Package: acl
Version: 20140812-1
Depends: libc, libacl
Source: feeds/packages/utils/acl
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17950
Filename: packages/acl_20140812-1_ramips_24kec.ipk
Size: 18738
MD5Sum: 4ff92d56a1059479561e76b1acf13454
SHA256sum: 2115fb35216deb054c4b7e0f5cddd44acce895e9473f79ae9c0a0132c3243758
Description: Access control list support
This package provides ACL manipulation utilities
- chacl
- getfacl
- setfacl
Package: aiccu
Version: 20070115-12
Depends: libc, libpthread, ip, kmod-sit, kmod-tun
Source: feeds/packages/ipv6/aiccu
License: BSD-3-Clause
LicenseFiles: doc/LICENSE
Section: net
Maintainer: Ondrej Caletka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25664
Filename: packages/aiccu_20070115-12_ramips_24kec.ipk
Size: 26368
MD5Sum: 1b618607b6f13f9bca5de282e5b3b3de
SHA256sum: d3ad76d898dae91a6ee28f105a7fc4a98e939eb8bdcaa021dd20ddc0fb95b75a
Description: SixXS Automatic IPv6 Connectivity Client Utility
Package: aircrack-ng
Version: 1.2-rc1-1
Depends: libc, libpcap, libpthread, libopenssl, libnl, wireless-tools, ethtool
Source: feeds/packages/net/aircrack-ng
License: GPLv2
Section: net
Maintainer: Rick Farina <[email protected]>
Architecture: ramips_24kec
Installed-Size: 396368
Filename: packages/aircrack-ng_1.2-rc1-1_ramips_24kec.ipk
Size: 396283
MD5Sum: a6cabae2d4279b168c63c383a2c1059d
SHA256sum: 69961c30d8fe2472744b640295aa35ed173d3cfd6f2aa880619da3a3f0b1e2b8
Description: WLAN tools for breaking 802.11 WEP/WPA keys
Package: alpine-nossl
Version: 2.20-1
Depends: libc, libopenssl, libncurses, libpthread, libpam
Source: feeds/packages/mail/alpine
License: Apache-2.0
LicenseFiles: LICENSE
Section: mail
Maintainer: Antti Seppälä <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1622282
Filename: packages/alpine-nossl_2.20-1_ramips_24kec.ipk
Size: 1621805
MD5Sum: 0305b1556b04403e1111c0ec1b3fe164
SHA256sum: 936ad89c3b9ffe8c3ee19eb11b81cadb5fdf8b69eb8cdc9300d1545d1f52bd8f
Description: Alpine (Alternatively Licenced Program for Internet News and Email) is a
free software email client developed at the University of Washington.
It is suitable for both the inexperienced email user as well as for
the most demanding power user.
This package is built without OpenSSL support.
Package: alpine
Version: 2.20-1
Depends: libc, libopenssl, libncurses, libpthread, libpam, libcrypto, libopenssl
Source: feeds/packages/mail/alpine
License: Apache-2.0
LicenseFiles: LICENSE
Section: mail
Maintainer: Antti Seppälä <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1653259
Filename: packages/alpine_2.20-1_ramips_24kec.ipk
Size: 1652137
MD5Sum: 8de6803ca4bb5fa807e1219b32a01fbf
SHA256sum: 0f0d178529a054533c8c5595dfec6f97267866224b725525deaa047a079e289a
Description: Alpine (Alternatively Licenced Program for Internet News and Email) is a
free software email client developed at the University of Washington.
It is suitable for both the inexperienced email user as well as for
the most demanding power user.
This package is built with OpenSSL support.
Package: alsa-lib
Version: 1.0.28-1
Depends: libc, kmod-sound-core, libpthread, librt
Source: feeds/packages/libs/alsa-lib
License: LGPLv2.1 GPLv2
LicenseFiles: COPYING aserver/COPYING
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 287001
Filename: packages/alsa-lib_1.0.28-1_ramips_24kec.ipk
Size: 285313
MD5Sum: 5a218d39d51c9dc3af899ec31df7bbc7
SHA256sum: 56ad882882fd91d78f0b95900367628fbe7742c24658ab95a03371bc52c86a79
Description: This is the library package for alsa, needed by some userspace programs.
You must have enabled the ALSA support in the kernel.
Package: alsa-utils-seq
Version: 1.0.28-2
Depends: libc, alsa-lib, libpthread
Source: feeds/packages/utils/alsa-utils
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29019
Filename: packages/alsa-utils-seq_1.0.28-2_ramips_24kec.ipk
Size: 29617
MD5Sum: d6a049d5c74c3ba2e8ffcb7c34be9113
SHA256sum: 9f4b69752b203d781617e49870e9685b0527c802ee5c38459143c6a8c0ef4a33
Description: ALSA sequencer utilities
Package: alsa-utils-tests
Version: 1.0.28-2
Depends: libc, alsa-lib, libpthread
Source: feeds/packages/utils/alsa-utils
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 896870
Filename: packages/alsa-utils-tests_1.0.28-2_ramips_24kec.ipk
Size: 897480
MD5Sum: 880a71850998dd3a64d60515df92777b
SHA256sum: 0d0638c5b453fc721c8494ac52310980e564a35231db8ed4a1c78cb778ab2b75
Description: ALSA utilities test data (adds ~1.3M to image)
Package: alsa-utils
Version: 1.0.28-2
Depends: libc, alsa-lib, libncurses, libpthread
Source: feeds/packages/utils/alsa-utils
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 124411
Filename: packages/alsa-utils_1.0.28-2_ramips_24kec.ipk
Size: 124098
MD5Sum: bb5df36edac975760fdab94ab1c88418
SHA256sum: 9bfc8a1883523109b2c0004178b51d1bb89692072ea7e3e56218f10651027efa
Description: ALSA (Advanced Linux Sound Architecture) utilities
Package: announce
Version: 1.0.1-1
Depends: libc, libpthread
Source: feeds/packages/net/announce
License: BSD-3-Clause
LicenseFiles: src/LICENSE.txt
Section: net
Maintainer: Simon Peter <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9295
Filename: packages/announce_1.0.1-1_ramips_24kec.ipk
Size: 10131
MD5Sum: 0b666ca6c59493255b73a6016119d27f
SHA256sum: bd97daddf961607f57d6c9ce1cd34880b0daca5e7afb03ea97c911ee65f25a85
Description: Announce services on the network with Zeroconf/Bonjour.
This announces services such as ssh, sftp, and http running on the local machine
to the network.
Package: apache-icons
Version: 2.2.29-1
Depends: libc, apache
Source: feeds/packages/net/apache
License: Apache License
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71456
Filename: packages/apache-icons_2.2.29-1_ramips_24kec.ipk
Size: 72403
MD5Sum: 155792df1c95bfd25794e20288dd79cf
SHA256sum: 5ccac334f5e42c72869062a3f501dd180a1cede58ee2eb32bd3ba2d26dcb3a99
Description: The Apache Web Server is a powerful and flexible HTTP/1.1 compliant
web server. Originally designed as a replacement for the NCSA HTTP
Server, it has grown to be the most popular web server on the Internet.
.
This package contains the icons from Apache.
Package: apache
Version: 2.2.29-1
Depends: libc, libapr, libaprutil, libpcre, libopenssl, unixodbc
Source: feeds/packages/net/apache
License: Apache License
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 456650
Filename: packages/apache_2.2.29-1_ramips_24kec.ipk
Size: 458044
MD5Sum: a9338c4cb1de67b83b062777bc8a9c1a
SHA256sum: 04a77e1c42f0b517fff7b00f24d7e73fe043ecbf4f48da2b760cdbc0df384f4e
Description: The Apache Web Server is a powerful and flexible HTTP/1.1 compliant
web server. Originally designed as a replacement for the NCSA HTTP
Server, it has grown to be the most popular web server on the Internet.
.
This package contains the Apache web server and utility programs.
.
Take care that you don't include apache at the moment into your image
please select it only as module because busybox will override
/usr/sbin/httpd. It'll be solved soon. If you need to include this
package in the image anyway, remove httpd from busybox
(Base system --> Configuration --> Networking Utilities --> httpd).
Also you should take care for the initscripts, apache's httpd isn't
compatible with the one from busybox, so if you want to use apache
for running your webif, you'll need to change the parameters in the
scripts and configure the rest in /etc/httpd.conf.
Package: apcupsd-cgi
Version: 3.14.13-4
Depends: libc, libpthread, libgd
Source: feeds/packages/net/apcupsd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23208
Filename: packages/apcupsd-cgi_3.14.13-4_ramips_24kec.ipk
Size: 23869
MD5Sum: dc362ca84cef41b990c59803c4ff45d2
SHA256sum: b67557e79fcd16405eb35f026f6fb5e6d3130cee53a630873d9be98cfc8bef0e
Description: UPS control software CGI module
Package: apcupsd
Version: 3.14.13-4
Depends: libc, libpthread, libusb-compat
Source: feeds/packages/net/apcupsd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 218333
Filename: packages/apcupsd_3.14.13-4_ramips_24kec.ipk
Size: 218825
MD5Sum: 9e854ef4f233ebd5cca87a6bc6f54067
SHA256sum: db06c67637dbf56850bdfe9dc0667544d8f96c048304ef175ec5610326fbe4c5
Description: UPS control software
Package: aria2
Version: 1.18.7-1
Depends: libc, zlib, libstdcpp, libopenssl
Source: feeds/packages/net/aria2
License: GPLv2
LicenseFiles: COPYING
Section: net
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 586246
Filename: packages/aria2_1.18.7-1_ramips_24kec.ipk
Size: 585816
MD5Sum: 93c3e6a5e3e75db3790704bc2bd85dcf
SHA256sum: 305de8237d05b4d9da4c439390035b28c90dae0b52721d12cd73651222aa881d
Description: aria2 is a lightweight multi-protocol & multi-source command-line download
utility
Package: attr
Version: 20150220-1
Depends: libc, libattr
Source: feeds/packages/utils/attr
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12530
Filename: packages/attr_20150220-1_ramips_24kec.ipk
Size: 13312
MD5Sum: aecec1636f439dbc451f22dd5943cb86
SHA256sum: f6f8b72a6cb8434f8dd5554f99abae488ab2e7a7398887463c5a73b7cff7da73
Description: Extended attributes support
This package provides xattr manipulation utilities
- attr
- getfattr
- setfattr
Package: avahi-autoipd
Version: 0.6.31-11
Depends: libc, libdaemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14179
Filename: packages/avahi-autoipd_0.6.31-11_ramips_24kec.ipk
Size: 15350
MD5Sum: ddfb1dcb8edb1a19d965ad0426dc121e
SHA256sum: 7a23c7628b52132634268b182f15323d37d5dfed3683c741152f7e6e86af5aef
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package implements IPv4LL, "Dynamic Configuration of IPv4 Link-Local
Addresses" (IETF RFC3927), a protocol for automatic IP address configuration
from the link-local 169.254.0.0/16 range without the need for a central
server. It is primarily intended to be used in ad-hoc networks which lack a
DHCP server.
Package: avahi-daemon-service-http
Version: 0.6.31-11
Depends: libc, avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 386
Filename: packages/avahi-daemon-service-http_0.6.31-11_ramips_24kec.ipk
Size: 1466
MD5Sum: 9242b894cd2c14601e700dc03ce78046
SHA256sum: 78ebefaea9ba305f458ce5e77c018f5c9cd49db7c5f5da8d7293ce5e19d2b703
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains the service definition for announcing HTTP service.
Package: avahi-daemon-service-ssh
Version: 0.6.31-11
Depends: libc, avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 365
Filename: packages/avahi-daemon-service-ssh_0.6.31-11_ramips_24kec.ipk
Size: 1447
MD5Sum: 342a10a4dc48f75b7a9ddc3c8db475ea
SHA256sum: eb4c11faf5bd3494be24bec67dcc78816de0edc40ce3318376101ace436ecf82
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains the service definition for announcing SSH service.
Package: avahi-dbus-daemon
Version: 0.6.31-11
Depends: libc, libavahi-dbus-support, libexpat, librt, libdaemon
Provides: avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34933
Filename: packages/avahi-dbus-daemon_0.6.31-11_ramips_24kec.ipk
Size: 35988
MD5Sum: 1abe62b25f57310ea6d4304f66087d29
SHA256sum: 49da1bae7c7164a1fd7e080874d655546851af261926cb74f52804fe65a5058b
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains an mDNS/DNS-SD daemon.
Package: avahi-dnsconfd
Version: 0.6.31-11
Depends: libc, libavahi, libdaemon, libpthread
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7016
Filename: packages/avahi-dnsconfd_0.6.31-11_ramips_24kec.ipk
Size: 8175
MD5Sum: f98ed3bf6654518905f780f2ed2e2bba
SHA256sum: efce9a96501f438a323ecce528f56ab7fe99bdaabd08175a36a01684b72943bd
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains a Unicast DNS server from mDNS/DNS-SD configuration
daemon, which may be used to configure conventional DNS servers using mDNS
in a DHCP-like fashion. Especially useful on IPv6.
Package: avahi-nodbus-daemon
Version: 0.6.31-11
Depends: libc, libavahi-nodbus-support, libexpat, librt, libdaemon
Provides: avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20740
Filename: packages/avahi-nodbus-daemon_0.6.31-11_ramips_24kec.ipk
Size: 21786
MD5Sum: e1800975e38a189f8bee2387967b38dc
SHA256sum: e2bcc769e2497100abda63d9fcff0fe8a92622c3b9b78c9a84fb8b4320c81c0e
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains an mDNS/DNS-SD daemon.
Package: avahi-utils
Version: 0.6.31-11
Depends: libc, libavahi-client, libgdbm
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28497
Filename: packages/avahi-utils_0.6.31-11_ramips_24kec.ipk
Size: 29397
MD5Sum: 93fb71cad80daa4e98c34f98cba3b247
SHA256sum: 5c6a620e6a68945bb181e8e9ef78faf348e9ceaf870831afd7dbb858c8fde545
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This packages installs the following avahi utility programs:
avahi-browse, avahi-publish, avahi-resolve, avahi-set-host-name.
It also automatically adds the required libavahi-client package.
For more information please see the avahi documentation.
Package: bash
Version: 4.3.33-1
Depends: libc, libncurses
Source: feeds/packages/utils/bash
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 347336
Filename: packages/bash_4.3.33-1_ramips_24kec.ipk
Size: 348097
MD5Sum: e0d69c0e390ac8cc49db6a1de00682f7
SHA256sum: d07a59d2a60c973462d11cc8fa68101487cbbecc1787640ecba93b132aa9b256
Description: Bash is an sh-compatible command language interpreter that executes
commands read from the standard input or from a file. Bash also
incorporates useful features from the Korn and C shells (ksh and csh).
Package: bcp38
Version: 4-1
Depends: libc, ipset
Source: feeds/packages/net/bcp38
Section: net
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1855
Filename: packages/bcp38_4-1_ramips_24kec.ipk
Size: 2735
MD5Sum: 8cab4a5593ebfbc69453f5a00ca34759
SHA256sum: 4f735c0c607b649787d9a846a8870b6aff789d8d08ebbc0f02925143ecadbc2e
Description: bcp38 implements IETF BCP38 for home routers. See https://tools.ietf.org/html/bcp38.
Package: bind-check
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14164
Filename: packages/bind-check_9.9.6-P1-2_ramips_24kec.ipk
Size: 14900
MD5Sum: fcd3b7f0873a752e66381c7ec657a1d2
SHA256sum: ac20fcff476b1ef31ac89089a1f5ca47e50a506ae18871cc2409dd86594f33b3
Description: bind administration tools (named-checkconf and named-checkzone only)
Package: bind-client
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19298
Filename: packages/bind-client_9.9.6-P1-2_ramips_24kec.ipk
Size: 20044
MD5Sum: 3bc19e6ec98e25b123ebf59e01cc389c
SHA256sum: 464261cb6d9654887a65a2511ef5f75fb52e7a031406992376f98606590bda97
Description: bind dynamic DNS client
Package: bind-dig
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36206
Filename: packages/bind-dig_9.9.6-P1-2_ramips_24kec.ipk
Size: 37010
MD5Sum: 6062d261f0a08a25f9d4cf8d25ecb132
SHA256sum: 9f9c259199363f296a60102e7aa112efa3f1d1ea85f2112561323d8312ddd7dd
Description: bind DNS excavation tool
Package: bind-dnssec
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 59324
Filename: packages/bind-dnssec_9.9.6-P1-2_ramips_24kec.ipk
Size: 59941
MD5Sum: 73070e34985d5ff50441d13f2a32329d
SHA256sum: fc3f3c1ca48f68fd1e905958cde0a17e6415eee1da9edca82667df747bb7a81e
Description: bind administration tools (dnssec-keygen and dnssec-signzone only)
Package: bind-host
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30882
Filename: packages/bind-host_9.9.6-P1-2_ramips_24kec.ipk
Size: 31595
MD5Sum: d968bbe1ed8b53a97fef48b67395f232
SHA256sum: afd20c6f557757050cac508a0bae7f7b05183d57b644e586d1d53fe8e28a96da
Description: bind simple DNS client
Package: bind-libs
Version: 9.9.6-P1-2
Depends: libc, libopenssl
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: libs
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 807869
Filename: packages/bind-libs_9.9.6-P1-2_ramips_24kec.ipk
Size: 806705
MD5Sum: 4f7549f6e94b31cc5abe854cf27f06f0
SHA256sum: df08d15ba47d4d49aab75517abc991150c94579cdd7f5905db4fef30fa2e7c71
Description: bind shared libraries
Package: bind-rndc
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14438
Filename: packages/bind-rndc_9.9.6-P1-2_ramips_24kec.ipk
Size: 15211
MD5Sum: 55b41f08b9e26855a6a4546879bbe30a
SHA256sum: fc40f440a8a3b14c57a83a5e2d2e2540b71148ef66cce82514ffe2771c49f814
Description: bind administration tools (rndc and rndc-confgen only)
Package: bind-server
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 193909
Filename: packages/bind-server_9.9.6-P1-2_ramips_24kec.ipk
Size: 193175
MD5Sum: c152462d213463c45f2001312680c4ef
SHA256sum: 8f4ba6506ae84ffad4b0c0d3976653ec25996a516e7a6ca4fd2ec5734dd6bc91
Description: bind DNS server
Package: bind-tools
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153184
Filename: packages/bind-tools_9.9.6-P1-2_ramips_24kec.ipk
Size: 153686
MD5Sum: 8680aa8da9c21af0b1df040dd9f89eb1
SHA256sum: 8f249a0899438e46c49440e4d9291084772ce38ce02ca80920ff9145f1c059df
Description: bind administration tools (all)
Package: bluelog-live
Version: 1.1.2-1
Depends: libc, bluez-libs, kmod-bluetooth, bluelog
Source: feeds/packages/utils/bluelog
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31225
Filename: packages/bluelog-live_1.1.2-1_ramips_24kec.ipk
Size: 32240
MD5Sum: 84c04b20a0a94f03a6683c5bc7d22130
SHA256sum: 9d72e104cf4bdbb32c561f8d474d84b93579b5aa4e943e0e56e2b2440c887459
Description: Bluelog is a simple Bluetooth scanner designed to tell you how many
discoverable devices there are in an area as quickly as possible. It is
intended to be used as a site survey tool, identifying the number of possible
Bluetooth targets there are in the surrounding environment.
This package contains the files for "Bluelog Live", an optional mode of
Bluelog which creates a real-time webpage of discovered Bluetooth devices.
Package: bluelog
Version: 1.1.2-1
Depends: libc, bluez-libs, kmod-bluetooth
Source: feeds/packages/utils/bluelog
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10656
Filename: packages/bluelog_1.1.2-1_ramips_24kec.ipk
Size: 11561
MD5Sum: 9e6d7177701d710cb6fc08c82c281a80
SHA256sum: ec9589bf31de23f53d6526632d040129d2f48a5a3645cc681d289033d2be8bfb
Description: Bluelog is a simple Bluetooth scanner designed to tell you how many
discoverable devices there are in an area as quickly as possible. It is
intended to be used as a site survey tool, identifying the number of possible
Bluetooth targets there are in the surrounding environment.
Package: bluez-libs
Version: 5.28-1
Depends: libc, libpthread
Source: feeds/packages/utils/bluez
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41167
Filename: packages/bluez-libs_5.28-1_ramips_24kec.ipk
Size: 41788
MD5Sum: 1af2f03e8dd927f43b41f6f44e10b640
SHA256sum: 1237b1e78f368db22e754f4993d69e6a7b953caad6139cc768d00dadb1f3c60b
Description: Bluetooth library
Package: bluez-utils
Version: 5.28-1
Depends: libc, bluez-libs, libpthread, dbus, glib2, libical, libncurses, libreadline
Source: feeds/packages/utils/bluez
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 652358
Filename: packages/bluez-utils_5.28-1_ramips_24kec.ipk
Size: 652165
MD5Sum: eb83f2d9f0af02b3b62b8657ec8ab934
SHA256sum: 45574894d9346e22fa1145e4ec7757d0c8fad651afaf34e333dbe1b3b30a5533
Description: Bluetooth utilities
Package: bmon
Version: 3.5-1
Depends: libc, libncursesw, libnl, confuse
Source: feeds/packages/net/bmon
License: MIT
Section: net
Maintainer: Baptiste Jonglez <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33508
Filename: packages/bmon_3.5-1_ramips_24kec.ipk
Size: 34142
MD5Sum: 677783dec3a7bc0e84e46b9493e97296
SHA256sum: f67e08858afc19dcd951957fea4776bb67f4c9e96f901ab39e26b5ffb345d0f5
Description: bmon is a portable bandwidth monitor
and rate estimator running on various
operating systems. It supports various
input methods for different architectures.
Package: bogofilter
Version: 1.2.4-3
Depends: libc, libdb47
Source: feeds/packages/mail/bogofilter
License: GPLv2
LicenseFiles: COPYING
Section: mail
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 305760
Filename: packages/bogofilter_1.2.4-3_ramips_24kec.ipk
Size: 305852
MD5Sum: b9e55a41b0d0eccc78c8a236295058a8
SHA256sum: d20af169812b42213a9e8a820941d173d0d334e7a3ddab3f6cf116600f8739f6
Description: Bogofilter is a fast Bayesian spam filter
Package: boost-atomic
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1580
Filename: packages/boost-atomic_1_57_0-3_ramips_24kec.ipk
Size: 2435
MD5Sum: aedb470ca8e1ca98424c344cf3f3daf0
SHA256sum: aa07c742e4f0a4e3a846a6b28f298abb436d6602ddb406f8a38d7f957d967365
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost atomic library.
Package: boost-chrono
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7663
Filename: packages/boost-chrono_1_57_0-3_ramips_24kec.ipk
Size: 8530
MD5Sum: ee4bd539fc995ca801a563835e2a5595
SHA256sum: 5cf8935c40bfda3f2459e25e7111c0c281fe51771ef09d14a3e135dd20d554a7
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost chrono library.
Package: boost-container
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19991
Filename: packages/boost-container_1_57_0-3_ramips_24kec.ipk
Size: 20821
MD5Sum: db9b316000ecb5756271403b8b0f31cb
SHA256sum: db9ab6530bef220d8c3610abee07625a91855d3c6fc5f9ef463dba41d87d6e06
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost container library.
Package: boost-context
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1407
Filename: packages/boost-context_1_57_0-3_ramips_24kec.ipk
Size: 2245
MD5Sum: f078eb9a8cb9d854031597693e8dec97
SHA256sum: 707d577e97b8b2568a112c07796829daff6ebd71f54641708fa8209b6e10babd
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost context library.
Package: boost-coroutine
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system, boost-chrono, boost-context, boost-thread
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10309
Filename: packages/boost-coroutine_1_57_0-3_ramips_24kec.ipk
Size: 11178
MD5Sum: a455b5ba74cd925f8d70f6c7298f7c2d
SHA256sum: 89c4bf216d8cd6afcb36c460a04c7c5d2f17cea745452c5b4d1dec3b0e8ea1a5
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost coroutine library.
Package: boost-date_time
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13931
Filename: packages/boost-date_time_1_57_0-3_ramips_24kec.ipk
Size: 14752
MD5Sum: 6a66633aabac234369242770055c149c
SHA256sum: 53eaa8dd1c429c0a391d62205d1e8a75ed194870a8b9cc2ed39b752d8d506145
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost date_time library.
Package: boost-filesystem
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27630
Filename: packages/boost-filesystem_1_57_0-3_ramips_24kec.ipk
Size: 28502
MD5Sum: aad3a226b3c789ce6cfcb3c7e6c9a7da
SHA256sum: 41befe53d6067416cd95f0cf4af687f12931d1deeb708a44729fc20d7e9e47a4
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost filesystem library.
Package: boost-graph
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-regex
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87085
Filename: packages/boost-graph_1_57_0-3_ramips_24kec.ipk
Size: 87896
MD5Sum: 4ce434c43d0fff0ea1f0fca1766440ef
SHA256sum: 2a289af27123c5ad75e29906bce54cd5c501853f766b8ee28f257c458b29f986
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost graph library.
Package: boost-iostreams
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, zlib
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20033
Filename: packages/boost-iostreams_1_57_0-3_ramips_24kec.ipk
Size: 20892
MD5Sum: d4f5b26e7b8e3e9b54a4c6cc2955fe5b
SHA256sum: ea4dd73e9b60e44f4a6bc6227d77990eec1520e3b0c57ccbfa9325ec0d4a900f
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost iostreams library.
Package: boost-libs
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-atomic, boost-chrono, boost-container, boost-context, boost-coroutine, boost-date_time, boost-filesystem, boost-graph, boost-iostreams, boost-locale, boost-log, boost-math, boost-program_options, boost-random, boost-python, boost-regex, boost-serialization, boost-signals, boost-system, boost-thread, boost-timer, boost-wave
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 104
Filename: packages/boost-libs_1_57_0-3_ramips_24kec.ipk
Size: 1085
MD5Sum: 64dac48350c045e80a83f43eca712070
SHA256sum: f2760391ca20a0a0d5fbe12e83fbf5c0e794d4df41655e621cf29dde2754b070
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This meta package contains only dependencies to the other libraries from
the boost libraries collection.
Package: boost-locale
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 124627
Filename: packages/boost-locale_1_57_0-3_ramips_24kec.ipk
Size: 125181
MD5Sum: cc95fe36dbffe92880645f9d556a6e2b
SHA256sum: 0db04a0e17e5dd0ff5f6e1b4a3803f5c17c360ec079e2348dfd33df69ab4cfd8
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost locale library.
Package: boost-log
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system, boost-chrono, boost-date_time, boost-thread, boost-filesystem, boost-regex
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 418681
Filename: packages/boost-log_1_57_0-3_ramips_24kec.ipk
Size: 418337
MD5Sum: 129829bfb7be537a5159f6aee0811503
SHA256sum: 4127e9745c59160f24168f54cd79513f41118451dd852426877a9dc66b2f1540
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost log library.
Package: boost-math
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 332918
Filename: packages/boost-math_1_57_0-3_ramips_24kec.ipk
Size: 332697
MD5Sum: 314e4d12c3428ce3098fa809303092d0
SHA256sum: b6f3bd20f71a3d74761b915418662112e1da3781004b920e8f5b6b07eaa87e08
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost math library.
Package: boost-program_options
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 92906
Filename: packages/boost-program_options_1_57_0-3_ramips_24kec.ipk
Size: 93659
MD5Sum: f1677c284dcd09369237055a31eaaafb
SHA256sum: 86da563744c5a19fcebad20f8019685801a7ea6d4ec83ba6a62f328693cd6870
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost program_options library.
Package: boost-python
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, python
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87368
Filename: packages/boost-python_1_57_0-3_ramips_24kec.ipk
Size: 88173
MD5Sum: 64e0ba34459844ce9bf7c184320b22eb
SHA256sum: 3ed77f6e257119be2a43b42901d416d0643beceac7722b55a450adc1d7eb9d28
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost python library.
Package: boost-random
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6419
Filename: packages/boost-random_1_57_0-3_ramips_24kec.ipk
Size: 7283
MD5Sum: e60fe4c40df9ae4e8c1150f3bcaf05a3
SHA256sum: e2c8de7ff050f9e1e6ab739515bf538f85a7de9c65ff495a7e47b292ae935bd7
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost random library.
Package: boost-regex
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243017
Filename: packages/boost-regex_1_57_0-3_ramips_24kec.ipk
Size: 243405
MD5Sum: 9385be644bab80284a0809ae4cf331b0
SHA256sum: 86fbe186b22d0c9af1d3051781aca1a7404130229a4138270bdec94ddff53ab3
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost regex library.
Package: boost-serialization
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 75625
Filename: packages/boost-serialization_1_57_0-3_ramips_24kec.ipk
Size: 76458
MD5Sum: 6980e387ed1bf9d2033eef2326c51f9d
SHA256sum: 4376d80a1888a89e39c4e4aa3e879ba2b3ced9caa8cfb24092ecfd6ae7c40c18
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost serialization library.
Package: boost-signals
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22078
Filename: packages/boost-signals_1_57_0-3_ramips_24kec.ipk
Size: 22917
MD5Sum: 4505c01d926e2853d549c2c0365630b1
SHA256sum: dab6a4bf0af739e8db78aef514dc1a63bde0e035e24ef9781b83ed9ab5f92afb
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost signals library.
Package: boost-system
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3809
Filename: packages/boost-system_1_57_0-3_ramips_24kec.ipk
Size: 4622
MD5Sum: 7424b13bd0289f941a1bcb43e703c888
SHA256sum: 150dd4c689a918352864eb9365bab1c042f1eea7726a42771ceaf3847e292090
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost system library.
Package: boost-test
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167513
Filename: packages/boost-test_1_57_0-3_ramips_24kec.ipk
Size: 168170
MD5Sum: 2739c809368135a741cbe347026cafa5
SHA256sum: f2a856c07c5ce5e4b591dcac725a92e0c3a9c6b31fa58bd0474826e86442ecae
Description: Boost C++ source library (test)
Package: boost-thread
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system, boost-chrono, boost-atomic
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37170
Filename: packages/boost-thread_1_57_0-3_ramips_24kec.ipk
Size: 38113
MD5Sum: 2a6530a9b58594b249359de27631cafc
SHA256sum: a233fe9e0fc47e8644156ac87556155f49aeeee44f866baf9d1f4fc52a731590
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost thread library.
Package: boost-timer
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-chrono
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4733
Filename: packages/boost-timer_1_57_0-3_ramips_24kec.ipk
Size: 5545
MD5Sum: 909d064576b595c83ff1703cba37f966
SHA256sum: 6463c3b84a87fdd1975a6c6990e2b757cf520f0197a2b0871b9cf0dc5a43d586
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost timer library.
Package: boost-wave
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-date_time, boost-thread, boost-filesystem
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 188765
Filename: packages/boost-wave_1_57_0-3_ramips_24kec.ipk
Size: 188846
MD5Sum: 5d5dfc56222db6464dadd42f7ad9395b
SHA256sum: 8ba403c8655a633011fdf68067be856c0a24b76bc95b33127ae055d9b3661437
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost wave library.
Package: btrfs-progs
Version: 3.17.3-2
Depends: libc, libattr, libuuid, zlib, libext2fs, libblkid, liblzo, libpthread
Source: feeds/packages/utils/btrfs-progs
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1597448
Filename: packages/btrfs-progs_3.17.3-2_ramips_24kec.ipk
Size: 1592780
MD5Sum: fedb6ff0d54b332f926bc036174e8608
SHA256sum: c535698e0dedb63b3d30eaf83e116887e77ced635c5ab21ef0a010a121dbf8be
Description: Btrfs is a new copy on write filesystem for Linux aimed at implementing
advanced features while focusing on fault tolerance, repair and easy
administration. Initially developed by Oracle, Btrfs is licensed under the
GPL and open for contribution from anyone.
Package: bwm-ng
Version: 0.6-1
Depends: libc
Source: feeds/packages/net/bwm-ng
License: GPL2-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12584
Filename: packages/bwm-ng_0.6-1_ramips_24kec.ipk
Size: 13371
MD5Sum: b720a22d7484b937d7775e1f2b731dd0
SHA256sum: 1417ec7288531ec6d39a4c0f7702979e55d245bf0fb21ee7e608cf2ddd5d2ad5
Description: Bandwidth Monitor NG is a small and simple console-based live
network and disk io bandwidth monitor.
Package: bzip2
Version: 1.0.6-1
Depends: libc, libbz2
Source: feeds/packages/utils/bzip2
License: BZIP2
LicenseFiles: LICENSE
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12429
Filename: packages/bzip2_1.0.6-1_ramips_24kec.ipk
Size: 13223
MD5Sum: 654aecc0dd1a92507f36741f349c2423
SHA256sum: e9c66d562096fd95ab8041beee0df26309a17ca86e2275fbfdfebf8b6f272cf6
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This package provides the binary.
Package: ccid
Version: 1.4.18-1
Depends: libc, libusb-1.0, libpcsclite
Source: feeds/packages/utils/ccid
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37581
Filename: packages/ccid_1.4.18-1_ramips_24kec.ipk
Size: 38490
MD5Sum: 0bd01e69581f68585df7f733893197e8
SHA256sum: dfc4e47202f8d575988a71c7681ae59f72478c235ecaa1fae942b98fb721a948
Description: Generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD
(Integrated Circuit(s) Card Devices).
Package: ccrypt
Version: 1.10-2
Depends: libc
Source: feeds/packages/utils/ccrypt
License: GPLv2+
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22374
Filename: packages/ccrypt_1.10-2_ramips_24kec.ipk
Size: 22551
MD5Sum: ba97738546381a1242b421dbb2400a09
SHA256sum: e18361eaaecf62c65a2959b0c8356c4b787ea0686f662102a83d4d5c24d23386
Description: ccrypt is a utility for encrypting and decrypting files and streams
Package: certtool
Version: 3.3.13-3
Depends: libc, libgnutls
Source: feeds/packages/libs/gnutls
Section: utils
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86663
Filename: packages/certtool_3.3.13-3_ramips_24kec.ipk
Size: 87500
MD5Sum: 181b9228983470fbcef4ce8c14eefd76
SHA256sum: d758f3802f1b1a9da2ae3ee5553787bb397978731cb58a732a0e38b1619e2a8f
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS certtool utility.
Package: check
Version: 0.9.14-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/check
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17521
Filename: packages/check_0.9.14-1_ramips_24kec.ipk
Size: 18461
MD5Sum: 5285ea997f47258a1dfacbc558e2607f
SHA256sum: bbaccc468f649a6d528cdc863c9d257c0f47d6feecba2e7c68f8490199b6c2ac
Description: Check features a simple interface for defining unit tests, putting little in
the way of the developer. Tests are run in a separate address space, so Check
can catch both assertion failures and code errors that cause segmentation
faults or other signals. The output from unit tests can be used within source
code editors and IDEs.
Package: cmdpad
Version: 0.0.3-3
Depends: libc
Source: feeds/packages/utils/cmdpad
License: MIT
LicenseFiles: doc/COPYING
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7153
Filename: packages/cmdpad_0.0.3-3_ramips_24kec.ipk
Size: 8187
MD5Sum: 6afd2b751190abec300a84dec49f45b1
SHA256sum: ff5e3b3e5997c0a06cb8206d26ad536755abecfc823e0491129880d0a6ca1e29
Description: cmdpad - execute commands when a key is pressed, released or hold down.
Should be started from /etc/rc or /etc/rc.local. To run it as deamon you
need to start it with '&'. All logs are printed to standard out and standard
error (to write the log to disk use cmdpad > /var/log/cmdpad). Cmdpad
searches for /etc/cmdpad.conf and load the key bindings. Then wait for
key event and check each command to see if it should be run.
Package: collectd-mod-apache
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5584
Filename: packages/collectd-mod-apache_5.4.2-1_ramips_24kec.ipk
Size: 6324
MD5Sum: 11fd35dc7992ee69d447c28fa409becc
SHA256sum: 2ad8cee170a1cded9ab5b0f2ec6dce7164edd99fe50b16e4b6f708d90960eb49
Description: apache status input plugin
Package: collectd-mod-apcups
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: packages/collectd-mod-apcups_5.4.2-1_ramips_24kec.ipk
Size: 4849
MD5Sum: 007b982c2f4754cb4bdc05617e3a28ec
SHA256sum: 4774f5c2afe89078400abbaefc736f6a3f7b7eebd653939d7cbfdfc8a867ef4d
Description: apcups status input plugin
Package: collectd-mod-ascent
Version: 5.4.2-1
Depends: libc, collectd, libcurl, libxml2
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5256
Filename: packages/collectd-mod-ascent_5.4.2-1_ramips_24kec.ipk
Size: 5965
MD5Sum: a091aedb6f1ab5c619d2b189f2f7daf5
SHA256sum: 7cedae57e75bec095a080a1cb3436c6b93fd585945c704dd9fe6a8aa980bcd45
Description: ascent status input plugin
Package: collectd-mod-bind
Version: 5.4.2-1
Depends: libc, collectd, libcurl, libxml2
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8492
Filename: packages/collectd-mod-bind_5.4.2-1_ramips_24kec.ipk
Size: 9159
MD5Sum: 0047c16bac8953d250fec8a78fe88d3e
SHA256sum: db14af3facfb7e54fc63942181b2502abe5f5397dbf2e04b5c6eadcd7641b311
Description: BIND server/zone input plugin
Package: collectd-mod-conntrack
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1867
Filename: packages/collectd-mod-conntrack_5.4.2-1_ramips_24kec.ipk
Size: 2615
MD5Sum: 9e1115abce4d80a51f618886ce4800d5
SHA256sum: abfd39d94ffe9e13c1f83056dda0fd9099347774c00d05ef0b8d6f293bd1e6bb
Description: connection tracking table size input plugin
Package: collectd-mod-contextswitch
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2082
Filename: packages/collectd-mod-contextswitch_5.4.2-1_ramips_24kec.ipk
Size: 2828
MD5Sum: c19b3a2f9336b9f0db489d29746f3b07
SHA256sum: a340186605299637ae3ba63535a4b00f779adcef7c183c2d47bc474a206df890
Description: context switch input plugin
Package: collectd-mod-cpu
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2379
Filename: packages/collectd-mod-cpu_5.4.2-1_ramips_24kec.ipk
Size: 3114
MD5Sum: 14932afb40a5dc75f798acc3ec50acd5
SHA256sum: 44566471b668629c241d5c367a8071002f1d7b61f104842729df0ff1cbb5edc3
Description: CPU input plugin
Package: collectd-mod-csv
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3626
Filename: packages/collectd-mod-csv_5.4.2-1_ramips_24kec.ipk
Size: 4323
MD5Sum: dedb356e35a8a61d2405b7857dc41950
SHA256sum: e61b995ecea026cb68565e7bf73451dec64563bf61dd3304be48153e92766447
Description: CSV output plugin
Package: collectd-mod-curl
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5245
Filename: packages/collectd-mod-curl_5.4.2-1_ramips_24kec.ipk
Size: 5958
MD5Sum: 2a888682081b66857e542374f41a7c18
SHA256sum: cdff126bae94c6ae3c8c3464e1d81b70721772eb8394b0699ee3facebbd16227
Description: cURL input plugin
Package: collectd-mod-df
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5912
Filename: packages/collectd-mod-df_5.4.2-1_ramips_24kec.ipk
Size: 6636
MD5Sum: f02836e14929181ffd2af8a0c2785a88
SHA256sum: ca4f821574912e4837329a1ab86a76ff56b3fb23f95f5d119af9ad1b57fec9dc
Description: disk space input plugin
Package: collectd-mod-disk
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4022
Filename: packages/collectd-mod-disk_5.4.2-1_ramips_24kec.ipk
Size: 4728
MD5Sum: bbeea078988063f3eaff3b97c6382461
SHA256sum: b5506a4cdbf1601a6e1692fbf8527b055da3ff62aea15868f7e93df3ae4d2e95
Description: disk usage/timing input plugin
Package: collectd-mod-dns
Version: 5.4.2-1
Depends: libc, collectd, libpcap
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8109
Filename: packages/collectd-mod-dns_5.4.2-1_ramips_24kec.ipk
Size: 8881
MD5Sum: c703771f75ed2bd37b31889a74f6bcbc
SHA256sum: ccece03a8c77566cc168db632cb4e993d7eb8a6d9b574ff65e21417126e29233
Description: DNS traffic input plugin
Package: collectd-mod-email
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5449
Filename: packages/collectd-mod-email_5.4.2-1_ramips_24kec.ipk
Size: 6159
MD5Sum: 6a37f621881c02ba2bb6dbf565096cfe
SHA256sum: e2a753a6aa6dc793a6369961e7ef22e56c6a88a83c2926b13b881bcad08387f1
Description: email output plugin
Package: collectd-mod-exec
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8759
Filename: packages/collectd-mod-exec_5.4.2-1_ramips_24kec.ipk
Size: 9487
MD5Sum: 0559199fb3cf1a0e7889b639c9219ca9
SHA256sum: 76b2d9530ce5f79ac6348fe08bbb35ecb65f79ab04801d686fba7fd911996ff0
Description: process exec input plugin
Package: collectd-mod-filecount
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4276
Filename: packages/collectd-mod-filecount_5.4.2-1_ramips_24kec.ipk
Size: 4978
MD5Sum: adaf8806c60406ab8433040bd4125350
SHA256sum: dbae7e7887c428ff5ae7fc0ca9be3a632f58c95c3f9aa38577cd54e31258be28
Description: file count input plugin
Package: collectd-mod-fscache
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2202
Filename: packages/collectd-mod-fscache_5.4.2-1_ramips_24kec.ipk
Size: 2960
MD5Sum: d8c632cdbb510a47cba8e1b73f733c2e
SHA256sum: 1fc37f686b942ce0be97316bb0cbd312c5029d9a021231451452ec33fc75d97f
Description: file-system based caching framework input plugin
Package: collectd-mod-interface
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2245
Filename: packages/collectd-mod-interface_5.4.2-1_ramips_24kec.ipk
Size: 2992
MD5Sum: 1c31c0eeedd796e10c54426591e562c2
SHA256sum: 43be0692f27357a7e37fa36477118a928b878921bdb8dae05f4c67a16952e057
Description: network interfaces input plugin
Package: collectd-mod-iptables
Version: 5.4.2-1
Depends: libc, collectd, iptables, libiptc
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3426
Filename: packages/collectd-mod-iptables_5.4.2-1_ramips_24kec.ipk
Size: 4137
MD5Sum: 8b74e8efcb0a61f6aa9becb53b6938ff
SHA256sum: a12201c94966b78eb4705462906f07b5f6f33d113b33e90424f5ed35bd14702b
Description: iptables status input plugin
Package: collectd-mod-irq
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2533
Filename: packages/collectd-mod-irq_5.4.2-1_ramips_24kec.ipk
Size: 3267
MD5Sum: 762e7387613900b0c47abb83584e06dc
SHA256sum: 38fc36ba9e210ca492b8c3446bfdecbe1ce3d233968a3858a21d6863816246b0
Description: interrupt usage input plugin
Package: collectd-mod-iwinfo
Version: 5.4.2-1
Depends: libc, collectd, libiwinfo
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2764
Filename: packages/collectd-mod-iwinfo_5.4.2-1_ramips_24kec.ipk
Size: 3507
MD5Sum: 6aae35267b9d5e7845947606b40cb0cd
SHA256sum: 91e9a861510955a1bf954a24684476dde2d02edc5684dfc9bddfd393954c0bd2
Description: libiwinfo wireless statistics plugin
Package: collectd-mod-load
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1978
Filename: packages/collectd-mod-load_5.4.2-1_ramips_24kec.ipk
Size: 2725
MD5Sum: c8257198427b452a651e3fe6789c865a
SHA256sum: 65ed7eef2d21149dab8b357a7be5869d2481746e7b35c06449fd8f994c9a138b
Description: system load input plugin
Package: collectd-mod-logfile
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3085
Filename: packages/collectd-mod-logfile_5.4.2-1_ramips_24kec.ipk
Size: 3829
MD5Sum: 2db704c944b1d49a1585b881f91a6216
SHA256sum: 6b397b894ecc9ee9e863e2e9c0eb082ae5d3eaee6cb9869525f6c78a75ae1e86
Description: log files output plugin
Package: collectd-mod-madwifi
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7609
Filename: packages/collectd-mod-madwifi_5.4.2-1_ramips_24kec.ipk
Size: 8295
MD5Sum: 7319dadbf7c3d62dfdb83b4d813886dd
SHA256sum: 648b67a1c74eb5aa1e4e5ccc96621cc957e0402f527929c428cfc80f5a5bae44
Description: MadWifi status input plugin
Package: collectd-mod-memory
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2425
Filename: packages/collectd-mod-memory_5.4.2-1_ramips_24kec.ipk
Size: 3179
MD5Sum: e3235ae5a6948dd05b3a65f4df630aa5
SHA256sum: 7a4e7cb11983bbb9fdcc010129858a9345e5ae85a1962bcfda57701b2e2e6122
Description: physical memory usage input plugin
Package: collectd-mod-modbus
Version: 5.4.2-1
Depends: libc, collectd, libmodbus
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5587
Filename: packages/collectd-mod-modbus_5.4.2-1_ramips_24kec.ipk
Size: 6313
MD5Sum: ad9fdc54d3149e39e59090ef85bd4305
SHA256sum: 8c14fbf09394e4ba3358d042c0d6a3bed94e4eb428f79f9c8c50004f2da3df04
Description: read variables through libmodbus plugin
Package: collectd-mod-network
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13704
Filename: packages/collectd-mod-network_5.4.2-1_ramips_24kec.ipk
Size: 14394
MD5Sum: 36a10dcd8b351954f344d9f56b900498
SHA256sum: 26a4445faa32cc81e173adf790fb083667d9204fe66ed13207ec8eb1ad951d66
Description: network input/output plugin
Package: collectd-mod-nginx
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3571
Filename: packages/collectd-mod-nginx_5.4.2-1_ramips_24kec.ipk
Size: 4280
MD5Sum: 0bfa5fbf8810679b3e5ea93bdc86529a
SHA256sum: 296619725c4faa8c6e88265767ec0cfabbce3a8938fa92e87ecc192ad47a3fa3
Description: nginx status input plugin
Package: collectd-mod-ntpd
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6075
Filename: packages/collectd-mod-ntpd_5.4.2-1_ramips_24kec.ipk
Size: 6778
MD5Sum: 331249bc2739ebc7a9de963a9a68454f
SHA256sum: 38d18e88878076435525b750cb353b7824ca086941a44bdb239b7955260bf946
Description: NTP daemon status input plugin
Package: collectd-mod-olsrd
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4971
Filename: packages/collectd-mod-olsrd_5.4.2-1_ramips_24kec.ipk
Size: 5682
MD5Sum: 2124a5717e2ce8daf00bf05b8732eaed
SHA256sum: 3af1d97b64bbcf1c772428e2a121a3b1e41e148d1b92b4f34688021fc221610b
Description: OLSRd status input plugin
Package: collectd-mod-openvpn
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4844
Filename: packages/collectd-mod-openvpn_5.4.2-1_ramips_24kec.ipk
Size: 5569
MD5Sum: b49895098bce98603646f36f96813695
SHA256sum: c0a8e819bf3f805246fd2cddf800924572e2e04967a684049ff3c9a12d72a3b4
Description: OpenVPN traffic/compression input plugin
Package: collectd-mod-ping
Version: 5.4.2-1
Depends: libc, collectd, liboping
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5412
Filename: packages/collectd-mod-ping_5.4.2-1_ramips_24kec.ipk
Size: 6124
MD5Sum: b7ac79462265bf38c84856eb3174a349
SHA256sum: fb797b5fea6d49fd8fa7a8ef305332f5c2438e4641aae1e5cfba4bacd8c5f223
Description: ping status input plugin
Package: collectd-mod-postgresql
Version: 5.4.2-1
Depends: libc, collectd, libpq
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13367
Filename: packages/collectd-mod-postgresql_5.4.2-1_ramips_24kec.ipk
Size: 14096
MD5Sum: 8aca3e9d93973abb75624ced56b6186b
SHA256sum: e6d0ac8cbdc5def3a53eac0a6bb149c33c3fb4b6d38498955fd55c42932825ea
Description: PostgreSQL status input plugin
Package: collectd-mod-powerdns
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7351
Filename: packages/collectd-mod-powerdns_5.4.2-1_ramips_24kec.ipk
Size: 8091
MD5Sum: cc7eaaf7edc3211219f4714175f69f93
SHA256sum: 6e996ddcf48780bd0090ce7afc65d432e212b8e9ae18274429bf30926845554a
Description: PowerDNS server status input plugin
Package: collectd-mod-processes
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6978
Filename: packages/collectd-mod-processes_5.4.2-1_ramips_24kec.ipk
Size: 7747
MD5Sum: 9aa02dfffd845b7af1c8f6ec917a5aac
SHA256sum: 284ddc70b820f1d636143af5f2acec61b26685c110b17446b6db8348c7c2b09f
Description: process status input plugin
Package: collectd-mod-protocols
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2946
Filename: packages/collectd-mod-protocols_5.4.2-1_ramips_24kec.ipk
Size: 3691
MD5Sum: 5533e19dae0adb9f676a2cd5469fbc5d
SHA256sum: 439ef451dcae951dd3fe558bd6a3071746a22a5997387f66183cc908d169c87f
Description: network protocols input plugin
Package: collectd-mod-rrdtool
Version: 5.4.2-1
Depends: libc, collectd, librrd1
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11084
Filename: packages/collectd-mod-rrdtool_5.4.2-1_ramips_24kec.ipk
Size: 11789
MD5Sum: 59c7afc875df0a8f0fe4fc283cbee097
SHA256sum: 4c11672db2362253ff5ab7522c07634b448db7812cf45391b80958504b5c420d
Description: RRDtool output plugin
Package: collectd-mod-sensors
Version: 5.4.2-1
Depends: libc, collectd, libsensors
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3347
Filename: packages/collectd-mod-sensors_5.4.2-1_ramips_24kec.ipk
Size: 4044
MD5Sum: b83a8a07113ff59af9a23959974b17e9
SHA256sum: 9bf47bce4d3746de642996990a96b8e407a5d047e9215dc3e4bbbd29f9c2526b
Description: lm_sensors input plugin
Package: collectd-mod-snmp
Version: 5.4.2-1
Depends: libc, collectd, libnetsnmp
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8885
Filename: packages/collectd-mod-snmp_5.4.2-1_ramips_24kec.ipk
Size: 9630
MD5Sum: d9a7fc1c7a161073cdccef97bfa7ea2f
SHA256sum: 729ff2023137ec0a4bccaaef3f992fc312922b34f1708844cb25d032c85b6c29
Description: SNMP input plugin
Package: collectd-mod-syslog
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2249
Filename: packages/collectd-mod-syslog_5.4.2-1_ramips_24kec.ipk
Size: 2990
MD5Sum: b969c54484840482194dafb7a91a47bf
SHA256sum: 5aef3bff268a486bfde043eb818e7004971a9df70c113f007e08d241cc4c7066
Description: syslog output plugin
Package: collectd-mod-table
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5239
Filename: packages/collectd-mod-table_5.4.2-1_ramips_24kec.ipk
Size: 5943
MD5Sum: 98f07af5880d8570fb8b93cc1edc1019
SHA256sum: 4591c6c9b13a30214fe104f6308a7640a4c7cd96b32d607797d6a10bd6bacdbf
Description: table-like structured file input plugin
Package: collectd-mod-tail
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3103
Filename: packages/collectd-mod-tail_5.4.2-1_ramips_24kec.ipk
Size: 3836
MD5Sum: c429abe1be2f1ece60ef3a13b5706acd
SHA256sum: 5bd44eccf018bd6361bd1687691534a15779265cb8e5a154c0b8e97feb050f7f
Description: tail input plugin
Package: collectd-mod-tcpconns
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4278
Filename: packages/collectd-mod-tcpconns_5.4.2-1_ramips_24kec.ipk
Size: 4980
MD5Sum: f8d0ba339fb5cca93533b87295fd98fb
SHA256sum: 4eea0cfc5f11c409c97c38bd9019ddc52cbaa1fe60ae3ef6ec3cade91ea5fc38
Description: TCP connection tracking input plugin
Package: collectd-mod-teamspeak2
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5286
Filename: packages/collectd-mod-teamspeak2_5.4.2-1_ramips_24kec.ipk
Size: 6008
MD5Sum: 8a960753c365751bb3e013efdc027245
SHA256sum: 94047a07b176d8bd2fa5dfd63835d52b5ce25c25c4a160096ff4ea22836ad70a
Description: TeamSpeak2 input plugin
Package: collectd-mod-ted
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3480
Filename: packages/collectd-mod-ted_5.4.2-1_ramips_24kec.ipk
Size: 4175
MD5Sum: e4afec73ed64a2cda81ec26ae8d7fdcc
SHA256sum: a5f80ae140ecdbb7fdbd6843624457fb0004f6224e9a76b8d377b4d5fc7df4ff
Description: The Energy Detective input plugin
Package: collectd-mod-thermal
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3490
Filename: packages/collectd-mod-thermal_5.4.2-1_ramips_24kec.ipk
Size: 4197
MD5Sum: ae305c7da9d4a8ca0a6cfd1ef9bd24b5
SHA256sum: 9b18643b41db5417d31ef601a5582c438edb59f8d9879470b7df0beff9e91960
Description: system temperatures input plugin
Package: collectd-mod-unixsock
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8689
Filename: packages/collectd-mod-unixsock_5.4.2-1_ramips_24kec.ipk
Size: 9443
MD5Sum: b07e0588568ecffab577f9bfbb261893
SHA256sum: 8d1fed6560d69f42ff23e4d0de25b7a1f58ce06bf6e82bd7d6393115b84c795b
Description: unix socket output plugin
Package: collectd-mod-uptime
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2177
Filename: packages/collectd-mod-uptime_5.4.2-1_ramips_24kec.ipk
Size: 2911
MD5Sum: 6c18a4d5515d9552b69c6f08b02cafa7
SHA256sum: eb93e4ec2d55460c320184d08433ba3df7aedbdaf5da4dd96ff4d2f2bda4b448
Description: uptime status input plugin
Package: collectd-mod-users
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1761
Filename: packages/collectd-mod-users_5.4.2-1_ramips_24kec.ipk
Size: 2500
MD5Sum: db3f69428eb77530ff214622a285eea3
SHA256sum: a1d26339d99e0faa59b843b64ddf22a019414cf6f9c0c470accaf8eb87fdc710
Description: user logged in status input plugin
Package: collectd-mod-vmem
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2988
Filename: packages/collectd-mod-vmem_5.4.2-1_ramips_24kec.ipk
Size: 3737
MD5Sum: a1adad2ec893e87edb53cb967ed18ca2
SHA256sum: 5c9a651539483a6827370dc816fe26604c19e4f43aa4976837de02cb10880811
Description: virtual memory usage input plugin
Package: collectd-mod-wireless
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2714
Filename: packages/collectd-mod-wireless_5.4.2-1_ramips_24kec.ipk
Size: 3453
MD5Sum: a04049dcf1f67b4c673cedb3266fa147
SHA256sum: fa997cdcdf00980644bc83cb76a57095fa88d60a3219295fbe379665ef762960
Description: wireless status input plugin
Package: collectd-mod-write-http
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7251
Filename: packages/collectd-mod-write-http_5.4.2-1_ramips_24kec.ipk
Size: 8019
MD5Sum: 09d3fec6f1ad28cf49a75f1fdeeebd05
SHA256sum: c78967e5fd41c796099808112c9365fcd3315ee1a44f7affa2086e0becc2d324
Description: HTTP POST output plugin
Package: collectd
Version: 5.4.2-1
Depends: libc, libpthread, zlib, libltdl, libip4tc
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58124
Filename: packages/collectd_5.4.2-1_ramips_24kec.ipk
Size: 59011
MD5Sum: 27494e7c3c07f8e44f047d494aa5e88c
SHA256sum: 0d9971aaad5bc6acf76274cbc6c6d803a1d86a55e80d72f63b1cbfac3343e2e6
Description: collectd is a small daemon which collects system information periodically
and provides mechanismns to store the values in a variety of ways.
Package: confuse
Version: 2.7-1
Depends: libc
Source: feeds/packages/libs/confuse
License: ISC
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15711
Filename: packages/confuse_2.7-1_ramips_24kec.ipk
Size: 16749
MD5Sum: f4be04c28a9973b27dca4092ff926d0e
SHA256sum: 8fdb0be5372bb66d4c4befb2775af46488789321cea4285882ffc242665fa036
Description: libConfuse is a configuration file parser library, licensed under the
terms of the ISC license, and written in C. It supports sections and
(lists of) values (strings, integers, floats, booleans or other
sections), as well as some other features (such as single/double-quoted
strings, environment variable expansion, functions and nested include
statements). It makes it very easy to add configuration file capability
to a program using a simple API.
The goal of libConfuse is not to be the configuration file parser
library with a gazillion of features. Instead, it aims to be easy to use
and quick to integrate with your code. libConfuse was called libcfg
before, but was changed to not confuse with other similar libraries.
Package: convbin
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 288846
Filename: packages/convbin_2.4.2_p9_ramips_24kec.ipk
Size: 289092
MD5Sum: 40331635692d65f167e9fd8a3c60848d
SHA256sum: d8d6a888bc984e86ab79f0f3fc9fc9479616016f0ec7b8ab8d4ad59338003e1a
Description: RINEX Converter
Package: coova-chilli
Version: 1.3.0+20141128-1
Depends: libc, kmod-tun, librt
Source: feeds/packages/net/coova-chilli
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 225163
Filename: packages/coova-chilli_1.3.0+20141128-1_ramips_24kec.ipk
Size: 225716
MD5Sum: c48ab0b76f8319c0958ea542c4f55c99
SHA256sum: cbe02da75c2a6023b2400ec9f7f498c957ec621c809d51e437f9beab60ddd729
Description: CoovaChilli is an open source access controller for wireless LAN
access points and is based on ChilliSpot. It is used for authenticating
users of a wireless (or wired) LAN. It supports web based login (UAM)
which is today's standard for public HotSpots and it supports Wireless
Protected Access (WPA) which is the standard of the future.
Authentication, authorization and accounting (AAA) is handled by your
favorite radius server.
Package: coreutils-base64
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15272
Filename: packages/coreutils-base64_8.23-1_ramips_24kec.ipk
Size: 16015
MD5Sum: a1f1406a3f366dc29104b4af69190bbf
SHA256sum: d2173552cfdef9e53a437cb160eab3c247c87bcb5cd54f463fd10313b55b60a4
Description: Full version of standard GNU base64 utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-basename
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12000
Filename: packages/coreutils-basename_8.23-1_ramips_24kec.ipk
Size: 12800
MD5Sum: 69c7c5ee9453b4daedf0132bbe592790
SHA256sum: 6e1cc9d27bd952869ed1ccb359495509da5f4aad26101a9bc86c294d68045c35
Description: Full version of standard GNU basename utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cat
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18559
Filename: packages/coreutils-cat_8.23-1_ramips_24kec.ipk
Size: 19369
MD5Sum: ba9f8c7cbcc9e97be9a4779e9f6cf1a0
SHA256sum: 466db783bef097373f60246c3587d3c7203395f9d2333bb10d9f4c778762658a
Description: Full version of standard GNU cat utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chcon
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24129
Filename: packages/coreutils-chcon_8.23-1_ramips_24kec.ipk
Size: 24859
MD5Sum: 7c32bed6d431e8728c3bc9ba533d5748
SHA256sum: 5a7f386f2b5631026c7a4eaba34d18d9a982354503796f81c674c6025b2e9976
Description: Full version of standard GNU chcon utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chgrp
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26191
Filename: packages/coreutils-chgrp_8.23-1_ramips_24kec.ipk
Size: 26911
MD5Sum: 1df714d7edc7ed16d3956cf5d7daf5f1
SHA256sum: 3ef6177be4178ee208e10190bd2c084ac74fbb84822c8e5ff027dc5840254d20
Description: Full version of standard GNU chgrp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chmod
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23263
Filename: packages/coreutils-chmod_8.23-1_ramips_24kec.ipk
Size: 23977
MD5Sum: bb81535475bf8be9fb4deb67e8ceb7fd
SHA256sum: dda566c66b1de047136e0ed92e351dcb9a5c821b61ea5ec14f847df33d69f94b
Description: Full version of standard GNU chmod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chown
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27023
Filename: packages/coreutils-chown_8.23-1_ramips_24kec.ipk
Size: 27810
MD5Sum: 8d4f1120ab7c64b2d5872df446b84fa6
SHA256sum: 91c2748944b5d4cfa84b94d36bd061272ebce6f78f1e5987350d254f6332ce24
Description: Full version of standard GNU chown utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chroot
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14879
Filename: packages/coreutils-chroot_8.23-1_ramips_24kec.ipk
Size: 15627
MD5Sum: ecdbd7d874ac247e591ec9fadb0bff11
SHA256sum: 2a84044d26780ff2559ac025813b93bb54e22cbdbb5e14b2dfa227808f11f9bb
Description: Full version of standard GNU chroot utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cksum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13547
Filename: packages/coreutils-cksum_8.23-1_ramips_24kec.ipk
Size: 14328
MD5Sum: 59b1ae17f546d38c8b28cb18ba777f99
SHA256sum: fc81c3ed18a795ba265aad15bc2f94af5b35cffbb7af20686993b16cc982416b
Description: Full version of standard GNU cksum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-comm
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14134
Filename: packages/coreutils-comm_8.23-1_ramips_24kec.ipk
Size: 14877
MD5Sum: 665e2121b122b8ce77f36fed272f859b
SHA256sum: ab924d10de53c53caa53bc5fcaab5d4fe309e465bd4319ae8731f21653d5c884
Description: Full version of standard GNU comm utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cp
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43822
Filename: packages/coreutils-cp_8.23-1_ramips_24kec.ipk
Size: 44625
MD5Sum: 6ad6002c89811d1bf54fa7b3a702795c
SHA256sum: 4e416f37840b7610a92ca1faa0bedd8a6629ffb595a90955ea974a7c94ec36d4
Description: Full version of standard GNU cp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-csplit
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47913
Filename: packages/coreutils-csplit_8.23-1_ramips_24kec.ipk
Size: 48760
MD5Sum: f7d5cef62b8e1fc0b884333e19f5ebd4
SHA256sum: dd7c996869ad361e9164036ac518319f4fecd532d3be4e393d0cfb6616ef4ffa
Description: Full version of standard GNU csplit utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cut
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15531
Filename: packages/coreutils-cut_8.23-1_ramips_24kec.ipk
Size: 16282
MD5Sum: e47fdb546fe9ec16d7614b2e746ef9a1
SHA256sum: ba4acd5426cd9ed039981c17edb95ab70db537f680d917ac05a7c028650dfbd1
Description: Full version of standard GNU cut utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-date
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27586
Filename: packages/coreutils-date_8.23-1_ramips_24kec.ipk
Size: 28389
MD5Sum: bd17acc62aaca03e517dfbb75d3ca41a
SHA256sum: 446621b3511369811299bc8a7e658fc9ab69af74cd31b012a8dd0d0d2ef4517d
Description: Full version of standard GNU date utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dd
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26132
Filename: packages/coreutils-dd_8.23-1_ramips_24kec.ipk
Size: 26860
MD5Sum: bbd6cca5ed0ced2547d0277310555a73
SHA256sum: e9de07090d02eeb43f5f4cbe9e9a117259096d9c461db2f9d1c1b2df2e0fca3e
Description: Full version of standard GNU dd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dir
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52126
Filename: packages/coreutils-dir_8.23-1_ramips_24kec.ipk
Size: 52932
MD5Sum: 8af40da28495ff37780462f79578cbc3
SHA256sum: 2ffe073241be427826a8016267252c68075d6200199dfbd25c6da3241b46b3e2
Description: Full version of standard GNU dir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dircolors
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16204
Filename: packages/coreutils-dircolors_8.23-1_ramips_24kec.ipk
Size: 16987
MD5Sum: 29230e6e8cec7c654e6b342cfa23a87b
SHA256sum: 5dc13b42bc3a32a79f5effaa97995b9a56afe3cb0082e4dcecaf7c29692dd21e
Description: Full version of standard GNU dircolors utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dirname
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11742
Filename: packages/coreutils-dirname_8.23-1_ramips_24kec.ipk
Size: 12548
MD5Sum: 8d1c2a9ce15cea399225866923e2049e
SHA256sum: d7d014c6fc20c54d7ffa6a0d8694baa5e5a10a376204f0a33367d345db717b89
Description: Full version of standard GNU dirname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-du
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 77268
Filename: packages/coreutils-du_8.23-1_ramips_24kec.ipk
Size: 78060
MD5Sum: e7e3441d057bc19dfb716f9ef1526fb6
SHA256sum: 19dcb47d15e11966c5be22ed68260999ffab1d7707a09a688fe95cedcbfd1dae
Description: Full version of standard GNU du utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-echo
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10307
Filename: packages/coreutils-echo_8.23-1_ramips_24kec.ipk
Size: 11087
MD5Sum: 5d1c467a71f52dd29392f2af3e1f1e25
SHA256sum: 96885b216857281c55087f6954d38805fff6a5185821c7e623d793a39f1b3398
Description: Full version of standard GNU echo utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-env
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11964
Filename: packages/coreutils-env_8.23-1_ramips_24kec.ipk
Size: 12757
MD5Sum: 62ef31edaf6a8c16ee8fd34ab6dffd75
SHA256sum: 0287dba49190a91d6b8a5da840c10248d73bb6dcb5f88d6104c2fd45de8c59c0
Description: Full version of standard GNU env utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-expand
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13289
Filename: packages/coreutils-expand_8.23-1_ramips_24kec.ipk
Size: 14089
MD5Sum: 631eba11a325ab31a3d37e1534490059
SHA256sum: 5dad1c2d5cfb8628088afad5674b0aa7a9fd1e64d3593ae2e20e7d3a071f4cc3
Description: Full version of standard GNU expand utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-expr
Version: 8.23-1
Depends: libc, coreutils, libgmp
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43613
Filename: packages/coreutils-expr_8.23-1_ramips_24kec.ipk
Size: 44413
MD5Sum: ebcb4cc8c1915a31c151e148afc81077
SHA256sum: e79eebfa80124dc959c43491e27988218cbebe1fd9825a2a777fbc18ed380fcf
Description: Full version of standard GNU expr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-factor
Version: 8.23-1
Depends: libc, coreutils, libgmp
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48604
Filename: packages/coreutils-factor_8.23-1_ramips_24kec.ipk
Size: 49433
MD5Sum: 898840656d6d263f9c344edea7a8ffb3
SHA256sum: 1282d465d1100e139260f1f1e42bf27f8119bcb17739f174015a681b8a6e6c64
Description: Full version of standard GNU factor utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-false
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9172
Filename: packages/coreutils-false_8.23-1_ramips_24kec.ipk
Size: 9940
MD5Sum: 8b0d68bdc642dcd9db3d9897f1477c13
SHA256sum: dec5717d3d852038e69f83d829405434e3e412e49203b7fc9e51da5a1555b34c
Description: Full version of standard GNU false utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-fmt
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15701
Filename: packages/coreutils-fmt_8.23-1_ramips_24kec.ipk
Size: 16443
MD5Sum: 11b22cd277dedb669fbc86bcdcff1190
SHA256sum: 3ef81518ac40c6925056cc8124f802386c073051dc4bf15406dad521f0aa5bf0
Description: Full version of standard GNU fmt utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-fold
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13046
Filename: packages/coreutils-fold_8.23-1_ramips_24kec.ipk
Size: 13843
MD5Sum: 85527b9361c2858d30805bfd20d5ad3a
SHA256sum: 41b557177aac4be6f3a3085e39b933a5c80398a0594228bf37b4927ed30907da
Description: Full version of standard GNU fold utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-groups
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12777
Filename: packages/coreutils-groups_8.23-1_ramips_24kec.ipk
Size: 13576
MD5Sum: ad55c125c0eac92b666afc0f97757442
SHA256sum: f28bd0b27c048c99fdc18799cdade6f4ef16b0524773d91a10bcf08edac43640
Description: Full version of standard GNU groups utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-head
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16555
Filename: packages/coreutils-head_8.23-1_ramips_24kec.ipk
Size: 17374
MD5Sum: a117fa5fe2e4e14fbef1a8ba921ad3c4
SHA256sum: 7f61d9d4f59d350624c16509e062dc8e733b07d9815e19ef0e32747e8c252844
Description: Full version of standard GNU head utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-hostid
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11352
Filename: packages/coreutils-hostid_8.23-1_ramips_24kec.ipk
Size: 12139
MD5Sum: 92cdd8afbe822067fbe4ac9d4807d179
SHA256sum: 540c02503e86dd66641625a234b9be8ca3a18cc3b4dbd0d848306ffdc82fee23
Description: Full version of standard GNU hostid utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-id
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15203
Filename: packages/coreutils-id_8.23-1_ramips_24kec.ipk
Size: 15959
MD5Sum: 08c10a86b45db1f033e5a88de52b4c6f
SHA256sum: 7a7d7c9550a25d4dbd379ed08cee692cf4c1a5be4235d84a7cae931bc71981d2
Description: Full version of standard GNU id utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-install
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47819
Filename: packages/coreutils-install_8.23-1_ramips_24kec.ipk
Size: 48680
MD5Sum: 2a499807c05f61ba9315af8ffcb514f3
SHA256sum: 11c578ee37dd60eb0fdffaa88998d18bd58c78f9b65a6f22a7e202e221ea40dd
Description: Full version of standard GNU install utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-join
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18113
Filename: packages/coreutils-join_8.23-1_ramips_24kec.ipk
Size: 18940
MD5Sum: a7952eb7b4abe1cf3f4697048335a5ed
SHA256sum: 5bf3779209c7ad3b144f286f2d38379fa5c6292d8bd91a497bd90fee98111d92
Description: Full version of standard GNU join utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-kill
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13541
Filename: packages/coreutils-kill_8.23-1_ramips_24kec.ipk
Size: 14347
MD5Sum: c99a6593b7d919c18d11573281ddfb8a
SHA256sum: f7918a849b21dcdbd9921cfd73660e76ca56f4832fb9a3edc9c2bbb0df3e659a
Description: Full version of standard GNU kill utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-link
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11490
Filename: packages/coreutils-link_8.23-1_ramips_24kec.ipk
Size: 12265
MD5Sum: d8fd021e5f53919d95243cf7bdff5071
SHA256sum: 81f64ca0a1fb00af81f58834274df4f85b0072d510e43b11f2763d4f188b9926
Description: Full version of standard GNU link utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ln
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23041
Filename: packages/coreutils-ln_8.23-1_ramips_24kec.ipk
Size: 23816
MD5Sum: 16c71021456e94cad0b834f885e20e19
SHA256sum: a58da116793315ccfd453faf812193e011d8390ab070a0e4fb314003a1d5bfbe
Description: Full version of standard GNU ln utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-logname
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11393
Filename: packages/coreutils-logname_8.23-1_ramips_24kec.ipk
Size: 12178
MD5Sum: 6b4c38799fde2b42b2bf73dc9a05f92c
SHA256sum: 8c17805079a7e1a47f71157b5092cb0f5fe0b58ba8f3c13e60a808a632795f4d
Description: Full version of standard GNU logname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ls
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52126
Filename: packages/coreutils-ls_8.23-1_ramips_24kec.ipk
Size: 52924
MD5Sum: 3d253cf26f6e4f7fa7e9372a645716db
SHA256sum: 59d1cd4fbb469475cf5c33f1976348dfdd85aa679d27ab37ceef3e37436a6606
Description: Full version of standard GNU ls utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-md5sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17614
Filename: packages/coreutils-md5sum_8.23-1_ramips_24kec.ipk
Size: 18417
MD5Sum: cd048be4ccc3c37d23bf2dd823441819
SHA256sum: bfaf333b1eba31eb6124038260f65ce822ff61c7cafccfffad03361310e3b06b
Description: Full version of standard GNU md5sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mkdir
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22244
Filename: packages/coreutils-mkdir_8.23-1_ramips_24kec.ipk
Size: 23019
MD5Sum: 25277921f83aa0ffda97a2e6368a84ca
SHA256sum: e637eba00eb30589fed9e6c01895dd9a21abaa3b57cd2a29a0a58fb1f61ec347
Description: Full version of standard GNU mkdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mkfifo
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12786
Filename: packages/coreutils-mkfifo_8.23-1_ramips_24kec.ipk
Size: 13590
MD5Sum: 210d1cd975882834063a965a94727851
SHA256sum: adf96ce26f35ec4932e133479ebef078be3963f223c383335d77e1637c8d799a
Description: Full version of standard GNU mkfifo utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mknod
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14624
Filename: packages/coreutils-mknod_8.23-1_ramips_24kec.ipk
Size: 15383
MD5Sum: 3671a75c2d0a53eb355087389c9974b3
SHA256sum: ba2661217518fbdfdea98b561f9d7d41f545fb425b557f0c4f536dc2c02abe0f
Description: Full version of standard GNU mknod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mktemp
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15751
Filename: packages/coreutils-mktemp_8.23-1_ramips_24kec.ipk
Size: 16522
MD5Sum: 468749c3f9eced6086cebe5c3682f009
SHA256sum: f44fcb151b615f248fbf398a043c60f146c91f72b900aff84dfb7545fba45255
Description: Full version of standard GNU mktemp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mv
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43199
Filename: packages/coreutils-mv_8.23-1_ramips_24kec.ipk
Size: 43985
MD5Sum: 8e2154dffca1ae7ad8445c86135e7055
SHA256sum: 884118c981704cfb782ca51a32dcc486ec0607cabf43042e88d003ed79dbc58f
Description: Full version of standard GNU mv utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nice
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12696
Filename: packages/coreutils-nice_8.23-1_ramips_24kec.ipk
Size: 13501
MD5Sum: 475d77f1acb4a7267851d5b58ed69713
SHA256sum: 9c41cc7b0814af5815c3b10b55839bf2a90f018e4322fb4211d26eb04739dcda
Description: Full version of standard GNU nice utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nl
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44166
Filename: packages/coreutils-nl_8.23-1_ramips_24kec.ipk
Size: 45007
MD5Sum: 94f8701d56005019a48dacfb5da5d4da
SHA256sum: adfe2bc3d8310ff86f922af8ff5cf87ff2242a4900ad87f4d3a01766ac8e32d3
Description: Full version of standard GNU nl utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nohup
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12866
Filename: packages/coreutils-nohup_8.23-1_ramips_24kec.ipk
Size: 13670
MD5Sum: 558b9156a090c88990f2cd0bec9c85e5
SHA256sum: a9861f668142957328921ece49f30ef3c772f567acb717eb2e859a5846308a00
Description: Full version of standard GNU nohup utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nproc
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12423
Filename: packages/coreutils-nproc_8.23-1_ramips_24kec.ipk
Size: 13224
MD5Sum: a514fb52e5980fd646c7ce387b3b81d3
SHA256sum: d101664cbf5339d3f49447b78e7d31d995b30e5adab0a465004a4f10d44ad022
Description: Full version of standard GNU nproc utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-od
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29852
Filename: packages/coreutils-od_8.23-1_ramips_24kec.ipk
Size: 30618
MD5Sum: 34e8818254a113029d897b4dc563a2c6
SHA256sum: d2aa456d113c85e1d52fb6406ca509b18a6b177cf4d26e613788f8d7364b6832
Description: Full version of standard GNU od utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-paste
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12891
Filename: packages/coreutils-paste_8.23-1_ramips_24kec.ipk
Size: 13682
MD5Sum: 1aad0a47b0d80e3c2b105cd64bff78ae
SHA256sum: 6ba04622d3ddb3deaed1a4297d360630bdd1785c9589d9a093681fc6839f544b
Description: Full version of standard GNU paste utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pathchk
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12243
Filename: packages/coreutils-pathchk_8.23-1_ramips_24kec.ipk
Size: 13054
MD5Sum: cd54b57a3d8c072a197e086193efeb93
SHA256sum: 2c01410883a958236390957bcc2e8a154c7be1bb34b2a2ee2e19e4980b17f53e
Description: Full version of standard GNU pathchk utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pinky
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14467
Filename: packages/coreutils-pinky_8.23-1_ramips_24kec.ipk
Size: 15188
MD5Sum: c950626261397086c7dc6bd525017a3f
SHA256sum: 221810e0cba8acba01ddd134a8bfff748c447ab8ddc3513e1aec42f10d463b94
Description: Full version of standard GNU pinky utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pr
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27228
Filename: packages/coreutils-pr_8.23-1_ramips_24kec.ipk
Size: 28053
MD5Sum: a6a482fd4428a635861a61c506870b4c
SHA256sum: 28c1b8f4dab71af3bbf2f042b5defd05e4253ecb4bc82d3a35f7a14f67b5e96d
Description: Full version of standard GNU pr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-printenv
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11717
Filename: packages/coreutils-printenv_8.23-1_ramips_24kec.ipk
Size: 12518
MD5Sum: 592debde6119ae6a17a9ef5336112dfd
SHA256sum: b64bb621aa79322eab27943f13456267329744572d2d31b2281d37a32bcb31ae
Description: Full version of standard GNU printenv utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-printf
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19668
Filename: packages/coreutils-printf_8.23-1_ramips_24kec.ipk
Size: 20424
MD5Sum: 87b94b4d4d730c0dd29b86255d98ae7d
SHA256sum: a3b5672779fa3fe1e0271fc7c0e80ef177fd19a94769f060383abcea0073f628
Description: Full version of standard GNU printf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ptx
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54240
Filename: packages/coreutils-ptx_8.23-1_ramips_24kec.ipk
Size: 55063
MD5Sum: 3dc8b5becef595e5eb127ecf24e84f44
SHA256sum: 19bcf0400fe17ac0809990ae74bb4aab4330217f56f7ab650fc134e5a0619f9b
Description: Full version of standard GNU ptx utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pwd
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15092
Filename: packages/coreutils-pwd_8.23-1_ramips_24kec.ipk
Size: 15838
MD5Sum: 71d7b353eaccefeada20d0b1a8f1e300
SHA256sum: ba2c2e0c9bf9633d7995aa87a20ca6a564a435e8adfb7c5ee8be35e6e3ff481e
Description: Full version of standard GNU pwd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-readlink
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17332
Filename: packages/coreutils-readlink_8.23-1_ramips_24kec.ipk
Size: 18162
MD5Sum: b8fad4bfa969e22d0e9263d0f8fc8f60
SHA256sum: 87d2c32463880cb7860019486edea4158b4bc8ca49788f3d8e916acaa1e037f8
Description: Full version of standard GNU readlink utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-realpath
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22950
Filename: packages/coreutils-realpath_8.23-1_ramips_24kec.ipk
Size: 23657
MD5Sum: d5d90b44b794c8288e7f1182c63bf810
SHA256sum: af68de730cd7eff52eaafa5e15fd12dec8db1d090f05065a9d9980c50d7eb70b
Description: Full version of standard GNU realpath utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-rm
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24633
Filename: packages/coreutils-rm_8.23-1_ramips_24kec.ipk
Size: 25364
MD5Sum: ec7882110b28a51182cbe2baa4131404
SHA256sum: aca35490b30399a43a02313038f28d65d6d31d52b3232ae0b6901e63b2a1f1fe
Description: Full version of standard GNU rm utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-rmdir
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18544
Filename: packages/coreutils-rmdir_8.23-1_ramips_24kec.ipk
Size: 19372
MD5Sum: ecbd031bef6cfe7516f1dd07c246c7ae
SHA256sum: 1a454bc40776f21a84f4dbf9d463322cc29783e08caffed54dd6d0d10b41ad04
Description: Full version of standard GNU rmdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-runcon
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12173
Filename: packages/coreutils-runcon_8.23-1_ramips_24kec.ipk
Size: 12978
MD5Sum: 4c758c32d9f789aaca906d504c0449e9
SHA256sum: aaeeefb7c25e62b162efe7ec6404cd3b5e653b995e4d8b5f218a7b8b18edf2f4
Description: Full version of standard GNU runcon utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-seq
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20713
Filename: packages/coreutils-seq_8.23-1_ramips_24kec.ipk
Size: 21459
MD5Sum: f6c13397c743966391405ed311737834
SHA256sum: 1aac2784905aeb5bd18cb064fc2084bae2cad67aa079bca58bf1555117828415
Description: Full version of standard GNU seq utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha1sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18326
Filename: packages/coreutils-sha1sum_8.23-1_ramips_24kec.ipk
Size: 19136
MD5Sum: 25e7f3d15ebeb7e9a954a1bad68160b7
SHA256sum: e8a62eaf9e6de866522860e336723a589e75322dac3c908bc82f7d6c9ed3045f
Description: Full version of standard GNU sha1sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha224sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22635
Filename: packages/coreutils-sha224sum_8.23-1_ramips_24kec.ipk
Size: 23387
MD5Sum: 97207928d6ed57306574c060611f8a7d
SHA256sum: 59e3d60399217c412db4fa6c48330b16bfa31f9a5efb3d0ace849e3977313d9c
Description: Full version of standard GNU sha224sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha256sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22630
Filename: packages/coreutils-sha256sum_8.23-1_ramips_24kec.ipk
Size: 23374
MD5Sum: cc4d459ca929dad6c92fc7082e73f8b6
SHA256sum: 55971cd672e573459769f698160e03280ccce6df0b0dcc748eb9e446ebb392d0
Description: Full version of standard GNU sha256sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha384sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46498
Filename: packages/coreutils-sha384sum_8.23-1_ramips_24kec.ipk
Size: 47287
MD5Sum: 19d420258cbab1c3a6a4d44c6abcf617
SHA256sum: cabf239d9bf58f039f3960df7f3f7ec867fa70d6586c77c8edc9d7e4399d19b0
Description: Full version of standard GNU sha384sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha512sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46499
Filename: packages/coreutils-sha512sum_8.23-1_ramips_24kec.ipk
Size: 47258
MD5Sum: 25389d6e9ed188cfd6776e0730e7a563
SHA256sum: c3529e953df5ade7204ccb54602f6621b8c0361589264edfc20b5ccb791d6d2e
Description: Full version of standard GNU sha512sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-shred
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23123
Filename: packages/coreutils-shred_8.23-1_ramips_24kec.ipk
Size: 23887
MD5Sum: d7a08d786bc0554f679a47140577f6ca
SHA256sum: f33c6f35ac7b8fca37515aaa1ab526ecdf250cd38bf56aa0cbf06fdb1d417d08
Description: Full version of standard GNU shred utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-shuf
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20492
Filename: packages/coreutils-shuf_8.23-1_ramips_24kec.ipk
Size: 21276
MD5Sum: f92b64775a890b4a4ac5a61cc2c0b073
SHA256sum: 8ced43744741431e35f7fcf0bf57480cef4eb787384843e7321f43046bdaa384
Description: Full version of standard GNU shuf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sleep
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14085
Filename: packages/coreutils-sleep_8.23-1_ramips_24kec.ipk
Size: 14836
MD5Sum: 15a7fee660b1cad132f7200bb149ff97
SHA256sum: 1fddb22a07eddaf7cdb365a44eaae4ab04793d0ac045d1643cce55998ab2e8b5
Description: Full version of standard GNU sleep utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sort
Version: 8.23-1
Depends: libc, coreutils, libpthread
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43141
Filename: packages/coreutils-sort_8.23-1_ramips_24kec.ipk
Size: 43966
MD5Sum: c88b99dc4e15e8b3b38c57ef79f234cd
SHA256sum: 2c930c8e72043e93060112982f0d304be7f8401ec66a37e7a4d48079fce5c6fe
Description: Full version of standard GNU sort utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-split
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27055
Filename: packages/coreutils-split_8.23-1_ramips_24kec.ipk
Size: 27829
MD5Sum: 76156d9111ad515ecfc05640c856202d
SHA256sum: 59cb7c0e69a638d956758d0479b987d8af789315f4e1a1b53aa17768748a3464
Description: Full version of standard GNU split utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-stat
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32479
Filename: packages/coreutils-stat_8.23-1_ramips_24kec.ipk
Size: 33326
MD5Sum: 7eab1b73caccff4a916c2edd2ad89a49
SHA256sum: 6c366c8b796e3b4ed27e2bfc1988835868a802bf83522d2f674240139055209d
Description: Full version of standard GNU stat utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-stdbuf
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25672
Filename: packages/coreutils-stdbuf_8.23-1_ramips_24kec.ipk
Size: 26404
MD5Sum: 3a758b5b3e5ede027ddc34e2016df4a8
SHA256sum: 25cfa6887abd65d2596f863174351f20851698d4792cbf5d0b61364f9150f9b3
Description: Full version of standard GNU stdbuf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-stty
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26930
Filename: packages/coreutils-stty_8.23-1_ramips_24kec.ipk
Size: 27751
MD5Sum: 44e75aaa1f5aba7437c1a14bb6623a28
SHA256sum: 891da069b479c7c02f5f1dabad4cbd5d42f0f28280d6cbd88ccfe7239a2d8092
Description: Full version of standard GNU stty utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16147
Filename: packages/coreutils-sum_8.23-1_ramips_24kec.ipk
Size: 16901
MD5Sum: 76b228992324f3b334e431b9531a8ab4
SHA256sum: 14586c87b180c71a4c31b4235cc547366e0ee45f47e1311c728ae07a42ecf36a
Description: Full version of standard GNU sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sync
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11333
Filename: packages/coreutils-sync_8.23-1_ramips_24kec.ipk
Size: 12110
MD5Sum: 32e0edb08f5ed4627e403d3bc3a83d46
SHA256sum: 9b2098f8f060cb4a35f29564f39bc54833afd813d03ceb4dc4a8662b4a7da1d3
Description: Full version of standard GNU sync utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tac
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42755
Filename: packages/coreutils-tac_8.23-1_ramips_24kec.ipk
Size: 43573
MD5Sum: 618705918b9397d93d7f82808d041898
SHA256sum: 2ca75d942d57a0c6c7e3c0754ba66e22011451bb2c8bbf39129f91d17a3d42a8
Description: Full version of standard GNU tac utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tail
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28751
Filename: packages/coreutils-tail_8.23-1_ramips_24kec.ipk
Size: 29550
MD5Sum: 43427270383a4670400cda90f0a6e288
SHA256sum: f37f84f6273f9caa94320af7dfb12dceef59a2544f48624b8c0420ae82cfed3b
Description: Full version of standard GNU tail utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tee
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12435
Filename: packages/coreutils-tee_8.23-1_ramips_24kec.ipk
Size: 13229
MD5Sum: e8cf826c8d9054cec6afab68ec537900
SHA256sum: dbf688192ca38dfc74ad89063c67e33b61dce8e9a4ed35eb2a9a3c2f2855654d
Description: Full version of standard GNU tee utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-test
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12907
Filename: packages/coreutils-test_8.23-1_ramips_24kec.ipk
Size: 13702
MD5Sum: c192f5691fb4de426b8bd30468434833
SHA256sum: 71076d5c757fc6b0a151fb8d448b3f107b7d770d4d81dea5dc241c9e0e321fe2
Description: Full version of standard GNU test utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-timeout
Version: 8.23-1
Depends: libc, coreutils, librt
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21473
Filename: packages/coreutils-timeout_8.23-1_ramips_24kec.ipk
Size: 22095
MD5Sum: 9316e00a95c2089cc707fb34a6ab2df1
SHA256sum: 4ce7ff9ab4d54c1940c59b395cc235751799d295c125cce05cd4d478883a2663
Description: Full version of standard GNU timeout utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-touch
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26653
Filename: packages/coreutils-touch_8.23-1_ramips_24kec.ipk
Size: 27325
MD5Sum: 65d0da89a892f66f25c55eddb71c9ac6
SHA256sum: 1cc8ba1ab291f1fa8418f41e0c2eec504cbfa8d5968d98430b94f45d02889596
Description: Full version of standard GNU touch utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tr
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19281
Filename: packages/coreutils-tr_8.23-1_ramips_24kec.ipk
Size: 20034
MD5Sum: 735f31b8e7cb35355d0206d2213b8733
SHA256sum: a2b7582e8498723ef905c8748a17268d4b0e6fdd60a7f1c52973f9cb39005722
Description: Full version of standard GNU tr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-true
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9171
Filename: packages/coreutils-true_8.23-1_ramips_24kec.ipk
Size: 9949
MD5Sum: 0292970100f0e9d3d88a3ffc03a03028
SHA256sum: 970137214c4175f8412861f09633107103340ff028c002b26a9be07c653fbfce
Description: Full version of standard GNU true utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-truncate
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19261
Filename: packages/coreutils-truncate_8.23-1_ramips_24kec.ipk
Size: 20008
MD5Sum: 2384199ed5218b2742f83c12036437f6
SHA256sum: 5dae8a52ea7b99afc5ed50483cc7af75199f6c7a5ac35d258dc1a51bc35fe778
Description: Full version of standard GNU truncate utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tsort
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13844
Filename: packages/coreutils-tsort_8.23-1_ramips_24kec.ipk
Size: 14643
MD5Sum: bcd79d25bd1117f6041a762882554ac5
SHA256sum: 19face7750e2b50816cfa28027e438a83e2845ba705a977d96e4607e7c7db708
Description: Full version of standard GNU tsort utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tty
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11433
Filename: packages/coreutils-tty_8.23-1_ramips_24kec.ipk
Size: 12222
MD5Sum: 5d9d8e165629cb80e7b4229a8c4936fa
SHA256sum: fb3030ea35f0e450acccea5f86622d2d591f9ec0bec1a083dc52cf4670dfdec5
Description: Full version of standard GNU tty utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-uname
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12069
Filename: packages/coreutils-uname_8.23-1_ramips_24kec.ipk
Size: 12872
MD5Sum: 4a61e8a89b5b98fef1a06bf9054b8d80
SHA256sum: 59df5466f2e7f9df21dc440cfe5426e98e8e3835bb06c09f0ca9b27a6081e5ac
Description: Full version of standard GNU uname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-unexpand
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13736
Filename: packages/coreutils-unexpand_8.23-1_ramips_24kec.ipk
Size: 14541
MD5Sum: ed7df82ca8cadcddb916fbe210fdb1fc
SHA256sum: 2a601986baac5220a0ebf68192b392f27d44fff741ae26c1742d5b8301de95b7
Description: Full version of standard GNU unexpand utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-uniq
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16699
Filename: packages/coreutils-uniq_8.23-1_ramips_24kec.ipk
Size: 17520
MD5Sum: 8e99ad5b5656372d9215a626b1913052
SHA256sum: bc8d95e5aa461ce9f4e9282018859c2ed8bb1344e4852cd15a67285df67440e8
Description: Full version of standard GNU uniq utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-unlink
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11420
Filename: packages/coreutils-unlink_8.23-1_ramips_24kec.ipk
Size: 12204
MD5Sum: be213aa5c98d145801bec532d62b9179
SHA256sum: 105dd81d663a3dbb9e9c9ff51984896ef651d814791ff3cfc85dbab5811346da
Description: Full version of standard GNU unlink utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-uptime
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18508
Filename: packages/coreutils-uptime_8.23-1_ramips_24kec.ipk
Size: 19330
MD5Sum: b11d7f807d5d51c75c4f09108477c99a
SHA256sum: 7dd9d788ad37d8d8da43c5230da3967f666fa1f63351149d264d5cbc4cf12599
Description: Full version of standard GNU uptime utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-users
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12158
Filename: packages/coreutils-users_8.23-1_ramips_24kec.ipk
Size: 12953
MD5Sum: 41ad21baa78716d5d5b257bd902787b1
SHA256sum: fc370d9d15e4d18d74e42358cb73aa5a4d285da612d29dadc6f3a412575641dd
Description: Full version of standard GNU users utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-vdir
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52133
Filename: packages/coreutils-vdir_8.23-1_ramips_24kec.ipk
Size: 52924
MD5Sum: b17139fd2bf597fa980d9401eb2800a8
SHA256sum: ff34b581e98276b926f060cdb2d0a7c6b26735073460dc6a4aec40aa2fd90765
Description: Full version of standard GNU vdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-wc
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17372
Filename: packages/coreutils-wc_8.23-1_ramips_24kec.ipk
Size: 18126
MD5Sum: ae93200962e6b0afc5fe23259c25c768
SHA256sum: 49b89d523e19098764a0213ec84dbecc653b87a8b97b39f08fb22fd5d71f1b13
Description: Full version of standard GNU wc utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-who
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21559
Filename: packages/coreutils-who_8.23-1_ramips_24kec.ipk
Size: 22275
MD5Sum: eaeea5d9bb6a43b2d5a0b31436f4f87e
SHA256sum: 65eb0e5acd34b1f2ffb6c30f705edcf8a08e2edb033a3c4b46e5e5efe0ef9485
Description: Full version of standard GNU who utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-whoami
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11503
Filename: packages/coreutils-whoami_8.23-1_ramips_24kec.ipk
Size: 12294
MD5Sum: 5f55ee76a2f3969be61215c46a133413
SHA256sum: d46fac3e918b7a7e65f7556bbf7e57ee2d65198b0b20c3525cc701f1c0e544b3
Description: Full version of standard GNU whoami utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-yes
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11521
Filename: packages/coreutils-yes_8.23-1_ramips_24kec.ipk
Size: 12304
MD5Sum: 110cfde96b53e1cd953b7db3aacb1667
SHA256sum: 55a1a461090a2c1140410d326f39f5dd03a87b6746e9e4f81cfc203a99a99c6f
Description: Full version of standard GNU yes utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils
Version: 8.23-1
Depends: libc
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/coreutils_8.23-1_ramips_24kec.ipk
Size: 886
MD5Sum: 8f00584a0aa5c429ae717b2e22349e12
SHA256sum: d557dfd35914a5111074c27b7fc0ed5f646c28756b126c4cc894b13fc1ff6342
Description: Full versions of standard GNU utilities. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient and
smaller.
Package: crtmpserver
Version: r811-1
Depends: libc, libopenssl, libstdcpp, liblua
Source: feeds/packages/multimedia/crtmpserver
License: GPL-3.0
Section: multimedia
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1143056
Filename: packages/crtmpserver_r811-1_ramips_24kec.ipk
Size: 1142401
MD5Sum: 5ff9348a1ea0878a73406bc87cba37fb
SHA256sum: 4edd747a6c6f2cd39bdbb157c45072fcb190b3f05492caa76fb1ff8f2163fde4
Description: C++ RTMP Server it is a high performance streaming server able to
stream (live or recorded) in the following technologies:
* To and from Flash (RTMP,RTMPE, RTMPS, RTMPT, RTMPTE)
* To and from embedded devices: iPhone, Android
* From surveillance cameras
* IP-TV using MPEG-TS and RTSP/RTCP/RTP protocols
Also, crtmpserver can be used as a high performance rendes-vous
server. For example, it enables you to do:
* Audio/Video conferencing
* Online gaming
* Online collaboration
* Simple/complex chat applications
Package: cryptsetup-openssl
Version: 1.6.6-1
Depends: libc, libblkid, libuuid, libpopt, lvm2, libdevmapper, libopenssl
Source: feeds/packages/utils/cryptsetup
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING COPYING.LGPL
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 81812
Filename: packages/cryptsetup-openssl_1.6.6-1_ramips_24kec.ipk
Size: 82566
MD5Sum: ca529da75e852fd708cb7154140fa5f1
SHA256sum: 4f04574a09f8dea638ff8747bbb490d027955b013ee41bec9ecc52021034eb55
Description: Cryptsetup-luks
linked against openssl
Package: cryptsetup
Version: 1.6.6-1
Depends: libc, libblkid, libuuid, libpopt, lvm2, libdevmapper, libgcrypt
Source: feeds/packages/utils/cryptsetup
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING COPYING.LGPL
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82061
Filename: packages/cryptsetup_1.6.6-1_ramips_24kec.ipk
Size: 82786
MD5Sum: cf844d5426232d3d2be49d27fa724134
SHA256sum: 4a6d2630320def5bb1bab05365943d8ded1080e57f31ad26c68cbd1c89b61f1a
Description: Cryptsetup-luks
linked against libgcrypt
Package: cshark
Version: 2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b
Depends: libc, libjson-c, libpcap, libuci, libubox, libuclient, libustream-polarssl
Source: feeds/packages/net/cshark
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8868
Filename: packages/cshark_2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b_ramips_24kec.ipk
Size: 9659
MD5Sum: 9da261ee4d71ad6a428dcda2eb740942
SHA256sum: 34a8e9f13eaa2620a6107d31080e1a9f38f5d301072c9db247a9bddfe07473c8
Description: CloudShark capture tool
Package: ctorrent-nossl
Version: dnh3.3.2-6
Depends: libc, uclibcxx
Source: feeds/packages/net/ctorrent
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86608
Filename: packages/ctorrent-nossl_dnh3.3.2-6_ramips_24kec.ipk
Size: 87410
MD5Sum: 73a55f4dbc462512c42948b583c5c619
SHA256sum: 6b370b729a7affeff1c6727c9a08cb21d9d78e66ce6d9f6b5f17890b6acd664b
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with builtin (Steve Reid's public-domain) SHA-1 support
Package: ctorrent-svn-nossl
Version: r322-1
Depends: libc, uclibcxx
Source: feeds/packages/net/ctorrent-svn
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 113921
Filename: packages/ctorrent-svn-nossl_r322-1_ramips_24kec.ipk
Size: 114480
MD5Sum: 9914deb96a9bdc2ba07f59248bab557c
SHA256sum: b544872ce06ff0f6b0c9a08f3bedfa3af710759dd1c5e3a9b9b2ebcd98b7bffb
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with builtin (Steve Reid's public-domain) SHA-1 support
Package: ctorrent-svn
Version: r322-1
Depends: libc, uclibcxx, libopenssl
Source: feeds/packages/net/ctorrent-svn
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 111232
Filename: packages/ctorrent-svn_r322-1_ramips_24kec.ipk
Size: 111574
MD5Sum: 8cf308dfede31cc618c06349a064d591
SHA256sum: 333eaff276b6a0ebfd9f06ad290f69724d7ea46b045aac690320f1a72f5ce918
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with OpenSSL support.
Package: ctorrent
Version: dnh3.3.2-6
Depends: libc, uclibcxx, libopenssl
Source: feeds/packages/net/ctorrent
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86734
Filename: packages/ctorrent_dnh3.3.2-6_ramips_24kec.ipk
Size: 87557
MD5Sum: 3facef461dddbdd54a0da4c464dd6076
SHA256sum: 4d016656a488c854f0ca734581632237751fb12f8d1bce8c09e972a189265736
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with OpenSSL support.
Package: dansguardian
Version: 2.12.0.3-1
Depends: libc, libpthread, uclibcxx, zlib
Source: feeds/packages/net/dansguardian
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 285351
Filename: packages/dansguardian_2.12.0.3-1_ramips_24kec.ipk
Size: 285523
MD5Sum: 1aeaa22191a42778437e4a2de5ed04b3
SHA256sum: a311ea77c6ac1383c531569f092a89adc26d1a610299e9444606f0efc8a077b0
Description: DansGuardian
Package: davfs2
Version: 1.5.2-1
Depends: libc, libopenssl, libneon, libiconv, libintl, libexpat, kmod-fuse, libfuse
Source: feeds/packages/net/davfs2
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45760
Filename: packages/davfs2_1.5.2-1_ramips_24kec.ipk
Size: 46689
MD5Sum: cd5f410b96b1ab6ea44c9304359524bd
SHA256sum: 5f1310cf6356e94afd4e5dd6e10bf8502e7ed9d10b4fa9135c85f86e9525cb9f
Description: Web Distributed Authoring and Versioning (WebDAV), an extension to the HTTP-protocol,
allows authoring of resources on a remote web server.davfs2 provides the ability to
access such resources like a typical filesystem, allowing for use by standard
applications with no built-in support for WebDAV.
davfs2 is designed to fully integrate into the filesystem semantics of Unix-like
systems (mount, umount, etc.). davfs2 makes mounting by unprivileged users as easy
and secure as possible.
davfs2 does extensive caching to make the file system responsive, to avoid
unnecessary network traffic and to prevent data loss, and to cope for slow or
unreliable connections.
davfs2 will work with most WebDAV servers needing little or no configuration.
Package: dbus-utils
Version: 1.9.10-1
Depends: libc, dbus
Source: feeds/packages/utils/dbus
License: AFL-2.1
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13931
Filename: packages/dbus-utils_1.9.10-1_ramips_24kec.ipk
Size: 14520
MD5Sum: ca8b7a1a0c8cdaaab5044b67b9c29cc3
SHA256sum: eacdc1ea44b67eb6e5ad94efc41145d340142c0226e33ef58100c86b701bdda4
Description: Simple interprocess messaging system (utilities)
Package: dbus
Version: 1.9.10-1
Depends: libc, libexpat, libdbus
Source: feeds/packages/utils/dbus
License: AFL-2.1
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 282576
Filename: packages/dbus_1.9.10-1_ramips_24kec.ipk
Size: 283229
MD5Sum: 9409070b2944bd18476722ca5a410cc1
SHA256sum: 7465924af27d191ade2b7b8291d45ee6a602b242ae15cd7a6e9fc9e5c3253503
Description: Simple interprocess messaging system (daemon)
Package: ddns-scripts
Version: 2.4.0-1
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 10139
Filename: packages/ddns-scripts_2.4.0-1_all.ipk
Size: 11259
MD5Sum: 8422e9f12a46789f1c90e0ef5ab0ae8f
SHA256sum: 079212d7127a257bf7f130f02a58f22b5b899bcfd777aae83a83b6c3fb888caf
Description: Dynamic DNS Client scripts (with IPv6 support) - Info: http://wiki.openwrt.org/doc/howto/ddns.client
Package: ddns-scripts_cloudflare
Version: 2.4.0-1
Depends: ddns-scripts
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 33177
Filename: packages/ddns-scripts_cloudflare_2.4.0-1_all.ipk
Size: 34122
MD5Sum: 8e4a6e3213fc141ec3e5f220aa371b47
SHA256sum: 7fcfd6dbe76ed9b4ed0c33df102bb620881b9363525b2d1ef08b7b9f0be19218
Description: Dynamic DNS Client scripts extension for CloudFlare
Package: ddns-scripts_no-ip_com
Version: 2.4.0-1
Depends: ddns-scripts
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 759
Filename: packages/ddns-scripts_no-ip_com_2.4.0-1_all.ipk
Size: 1646
MD5Sum: f3d51a4cbf172444990e2e34ef656794
SHA256sum: 9dd4b2d1c60b2f84f64fd1088816ebca67bbf846852371a8737c2c05c7448188
Description: Dynamic DNS Client scripts extension for No-IP.com
Package: ddns-scripts_nsupdate
Version: 2.4.0-1
Depends: ddns-scripts, bind-client
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 731
Filename: packages/ddns-scripts_nsupdate_2.4.0-1_all.ipk
Size: 1635
MD5Sum: 928fadd0457e737d1373bed7927bdf0e
SHA256sum: ac0647d31e56740a54f734bcdb4fdb704d0883037b5511edf7646a93109635a8
Description: Dynamic DNS Client scripts extension for direct updates using Bind nsupdate
Package: debootstrap
Version: 1.0.66-1
Depends: libc, coreutils, coreutils-chroot, coreutils-sha1sum, ar
Source: feeds/packages/admin/debootstrap
License: Unique
LicenseFiles: debian/copyright
Section: admin
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26571
Filename: packages/debootstrap_1.0.66-1_ramips_24kec.ipk
Size: 26772
MD5Sum: 881defd30cd183bb6798782362455ec0
SHA256sum: cbd9d5a746234414857a85552b761311958933fdbac2ab098fb2b39ac61f9df2
Description: debootstrap is used to create a Debian base system from scratch, without
requiring the availability of dpkg or apt. It does this by downloading .deb
files from a mirror site, and carefully unpacking them into a directory which
can eventually be chrooted into.
Package: dhcpcd
Version: 6.4.3-1
Depends: libc
Source: feeds/packages/net/dhcpcd
License: BSD-2c
Section: net
Maintainer: Roy Marples <[email protected]>
Architecture: ramips_24kec
Installed-Size: 97270
Filename: packages/dhcpcd_6.4.3-1_ramips_24kec.ipk
Size: 98082
MD5Sum: 8488b03de3f5c554777636fe4d61481d
SHA256sum: 8390fb42cfff4917123d1d1cd44bce886fdcd1fdd4d839e53f83c6811faed19d
Description: DHCPv4, IPv6RS and DHCPv6 client with IPv4LL support
dhcpcd is a one stop network management daemon which includes
* RFC compliant DHCPv4 and DHCPv6 clients
* DHCPv6 Prefix Delegation support
* IPv4LL (aka ZeroConf) support
* ARP address conflict resolution
* Link carrier detection
* Wireless SSID profiles
* ARP ping profiles
Package: diffutils
Version: 3.3-1
Depends: libc
Source: feeds/packages/devel/diffutils
License: GPL-3.0
Section: devel
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 139092
Filename: packages/diffutils_3.3-1_ramips_24kec.ipk
Size: 139493
MD5Sum: 097bd84fbf8b888c95c68016ec73894d
SHA256sum: bafa0fb53f2fa49f74cebe55369d5afbabad092ce5a9f86a727fe1462057607c
Description: The Diffutils package contains programs that show the differences between
files or directories.
Package: dkjson
Version: 2.5-2
Depends: libc, lua
Source: feeds/packages/lang/dkjson
License: MIT
Section: lang
Maintainer: Lars Gierth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6685
Filename: packages/dkjson_2.5-2_ramips_24kec.ipk
Size: 7472
MD5Sum: 7ef6955966e434db5db5c523934bde8b
SHA256sum: b7415408c9453caa0e058c00851b6bd955a8fac020682c126dab912a0f3b410b
Description: Lua JSON parser/serializer with UTF-8 support
Package: dmapd
Version: 0.0.70-1
Depends: libc, libdmapsharing, libdb47, vips
Source: feeds/packages/net/dmapd
License: GPLv2
LicenseFiles: COPYING
Section: net
Require-User: dmapd=56:dmapd=56
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47331
Filename: packages/dmapd_0.0.70-1_ramips_24kec.ipk
Size: 48159
MD5Sum: 90dce8c99f5f8dcbb5608f10fb4baa16
SHA256sum: ab3d1371d662b4e613c2f1ba9915772d57078ff0cab8cf52f7f9bfff954af3f0
Description: dmapd
Package: dnscrypt-proxy
Version: 1.4.3-1
Depends: libc, libsodium
Source: feeds/packages/net/dnscrypt-proxy
License: ISC
Section: net
Maintainer: Damiano Renfer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58130
Filename: packages/dnscrypt-proxy_1.4.3-1_ramips_24kec.ipk
Size: 58989
MD5Sum: 045f0da579418b8a2fe08ec913c92519
SHA256sum: 35a4b58c61266bf5eb7d820bb8176e8038dfd016fce5e224ddc9d7b2ee583838
Description: dnscrypt-proxy provides local service which can be used directly as your
local resolver or as a DNS forwarder, encrypting and authenticating requests
using the DNSCrypt protocol and passing them to an upstream server.
The DNSCrypt protocol uses high-speed high-security elliptic-curve cryptography
and is very similar to DNSCurve, but focuses on securing communications between
a client and its first-level resolver.
Package: dosfsck
Version: 3.0.27-1
Depends: libc
Source: feeds/packages/utils/dosfstools
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: David Bonnes <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25369
Filename: packages/dosfsck_3.0.27-1_ramips_24kec.ipk
Size: 26140
MD5Sum: 16ed191cafe8939500ceaac9ab693190
SHA256sum: 353c6fc4e38f93dbbc5d5d964bda8e612646243947036830b5d214c39c91ae20
Description: Utilities to create and check MS-DOS FAT filesystems.
(fsck.vfat and fsck.fat for checking integrity of FAT volumes)
Package: dosfslabel
Version: 3.0.27-1
Depends: libc
Source: feeds/packages/utils/dosfstools
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: David Bonnes <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24115
Filename: packages/dosfslabel_3.0.27-1_ramips_24kec.ipk
Size: 24842
MD5Sum: c9fa36499fee00cb339a5bbc703f982a
SHA256sum: c95c3780376857d13519b0404825dc71e7c4eb0899656d731b0a88c48c8c5cb7
Description: Utilities to create and check MS-DOS FAT filesystems.
(fatlabel for reading and writing labels of FAT volumes)
Package: dovecot
Version: 2.2.15-1
Depends: libc, libopenssl, librt, zlib, libbz2, libcap
Source: feeds/packages/mail/dovecot
License: LGPL-2.1 MIT BSD-3-Clause Unique
LicenseFiles: COPYING COPYING.LGPL COPYING.MIT
Section: mail
Require-User: dovecot=59:dovecot=59
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1944151
Filename: packages/dovecot_2.2.15-1_ramips_24kec.ipk
Size: 1935196
MD5Sum: 0bfff4c97bc42f05e902f1aef1ee51ab
SHA256sum: a6c202325b7caf3f69dad103e133918c690d32a1ab56b71059cadd734ca4cc69
Description: Dovecot is a program which provides POP3 and IMAP services.
Package: dtndht
Version: 0.2.3-1
Depends: libc, libopenssl
Source: feeds/packages/libs/dtndht
License: Apache-2.0
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26731
Filename: packages/dtndht_0.2.3-1_ramips_24kec.ipk
Size: 27417
MD5Sum: d7d7f560965aaf1b7662329b63b11716
SHA256sum: 09da9f8fbf03278dcc1e78c4459d8c010d255bf9bcfc36b679623a082d746724
Description: A library with DHT functions for DTN name lookups.
Package: dump1090
Version: 2014-11-09
Depends: libc, libpthread, librtlsdr
Source: feeds/packages/utils/dump1090
License: BSD-3c
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54045
Filename: packages/dump1090_2014-11-09_ramips_24kec.ipk
Size: 54800
MD5Sum: 537779319864745c7ef3d6c657dda344
SHA256sum: ff9024d0f8c146f4e812116d15c568d96df49d1d6ab64e7c6d81069fd3f39bc4
Description: Dump1090 is a Mode S decoder specifically designed for RTLSDR devices.
Embedded HTTP server that displays the currently detected aircrafts on
Google Maps. Network output in Basestation and AVR formats.
Package: e2guardian
Version: 3.0.4-1
Depends: libc, libpthread, uclibcxx, zlib, libpcre
Source: feeds/packages/net/e2guardian
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 300872
Filename: packages/e2guardian_3.0.4-1_ramips_24kec.ipk
Size: 300969
MD5Sum: 5c879803324a9230ba90ebfb7eb4364e
SHA256sum: 7b8e05d55195164dcd99460425e633d3d81a61c545ee91c4788577ea1ee0a46e
Description: E2Guardian
Package: emailrelay-nossl
Version: 1.9-1
Depends: libc, uclibcxx
Source: feeds/packages/net/emailrelay
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 350062
Filename: packages/emailrelay-nossl_1.9-1_ramips_24kec.ipk
Size: 350192
MD5Sum: 8430054e009968b8224d4d46241c38f8
SHA256sum: 6eb58d80acbc6d77e68986efd106fcc1665865b333f8eefb1400f177c41cc2b8
Description: Emailrelay is a simple SMTP proxy and store-and-forward message transfer agent (MTA).
When running as a proxy all e-mail messages can be passed through
a user-defined program, such as a spam filter, which can drop,
re-address or edit messages as they pass through. When running
as a store-and-forward MTA incoming messages are stored in a
local spool directory, and then forwarded to the next SMTP
server on request.
This package is built without SSL support (no SSMTP)
Package: emailrelay
Version: 1.9-1
Depends: libc, uclibcxx, libopenssl
Source: feeds/packages/net/emailrelay
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 354082
Filename: packages/emailrelay_1.9-1_ramips_24kec.ipk
Size: 354470
MD5Sum: cfbd8567addf63d7be6b5c8db062a4a9
SHA256sum: fb977b7cfc2f2c59e8008fd643b5a4a0ee1abbc9633b15d3583d0b7dca905125
Description: Emailrelay is a simple SMTP proxy and store-and-forward message transfer agent (MTA).
When running as a proxy all e-mail messages can be passed through
a user-defined program, such as a spam filter, which can drop,
re-address or edit messages as they pass through. When running
as a store-and-forward MTA incoming messages are stored in a
local spool directory, and then forwarded to the next SMTP
server on request.
This package is built with OpenSSL support (SSMTP is supported).
Package: engine_pkcs11
Version: 20131021-5abdc7e0d6d519d2514e3eccc116b335bc427254
Depends: libc, libopenssl, libp11
Source: feeds/packages/libs/engine_pkcs11
License: LGPL-2.1+
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6800
Filename: packages/engine_pkcs11_20131021-5abdc7e0d6d519d2514e3eccc116b335bc427254_ramips_24kec.ipk
Size: 7626
MD5Sum: a41be2f90e9295af882c8f8293b0ba78
SHA256sum: 6efdc47ade0a3abf0d47a86f384c126ee2340ac612d18f34817e1d8f37a58965
Description: engine_pkcs11 is an implementation of OpenSSL engine interface.
Package: erlang-asn1
Version: 3.0.1
Depends: libc, erlang, erlang-syntax-tools
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 845190
Filename: packages/erlang-asn1_3.0.1_ramips_24kec.ipk
Size: 846098
MD5Sum: 56f6e73e6c9c30ff79e6986299aca1fe
SHA256sum: 3e5fbf81841116da557203b7239b3df19b9230134fbce5ff96279356ddad1c2f
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides Abstract Syntax Notation One (ASN.1)
support.
Package: erlang-compiler
Version: 5.0.1
Depends: libc, erlang, erlang-hipe
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1206048
Filename: packages/erlang-compiler_5.0.1_ramips_24kec.ipk
Size: 1205933
MD5Sum: 03937d029243af94a1bff324b0cc0064
SHA256sum: e248889cfab81118f4c81ab9b9dca2f3e72d6e34c4cb06669c02fadb57749119
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides a byte code compiler for Erlang which
produces highly compact code.
Package: erlang-crypto
Version: 3.4
Depends: libc, erlang, libopenssl
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 104621
Filename: packages/erlang-crypto_3.4_ramips_24kec.ipk
Size: 105526
MD5Sum: 40650915da004160fcc61f2980541193
SHA256sum: 8f4b3bd55bbeba0a2389e27540d5783911c8592001669558cb09697b34f8d2c5
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides functions for computation of message
digests, and encryption and decryption functions.
Package: erlang-hipe
Version: 3.11
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1407236
Filename: packages/erlang-hipe_3.11_ramips_24kec.ipk
Size: 1407750
MD5Sum: 58254895d56c252c37bd509415e4fd95
SHA256sum: 11f16368b8c8f40b3483b6790c755c7bc1e105950fafe03e6ca22aedc2875e2c
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides HiPE (High Performance Erlang)
support.
Package: erlang-inets
Version: 5.10.2
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 838244
Filename: packages/erlang-inets_5.10.2_ramips_24kec.ipk
Size: 839372
MD5Sum: 1c6031c1e9ae6101bdda6fea95d621df
SHA256sum: 2079a9f9c61aa410e6a9357071eca91fc4627f67bf1d1af425fce2ac1211dd17
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides a container for Internet clients and
servers. Currently a FTP client, a HTTP client and server, and a tftp
client and server have been incorporated in Inets.
Package: erlang-mnesia
Version: 4.12.1
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 738888
Filename: packages/erlang-mnesia_4.12.1_ramips_24kec.ipk
Size: 740002
MD5Sum: a72f56f1b299817b017a9a1f5fdc9821
SHA256sum: 9f0258972ab58f97c9a32abadb23bc7b5489d4c364a3e751912793ec20fe7234
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides a distributed DataBase Management
System (DBMS), appropriate for telecommunications applications and
other Erlang applications which require continuous operation and
exhibit soft real-time properties.
Package: erlang-runtime-tools
Version: 1.8.14
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 163491
Filename: packages/erlang-runtime-tools_1.8.14_ramips_24kec.ipk
Size: 164581
MD5Sum: 9af82aa79265abc094caeb8d45406ea6
SHA256sum: 61ef0a281b4439a928b5f546601991ce3aa00a7a21002428f5db893cc9464cc7
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides low footprint tracing/debugging tools
suitable for inclusion in a production system.
Package: erlang-snmp
Version: 4.25.1
Depends: libc, erlang, erlang-asn1
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1756152
Filename: packages/erlang-snmp_4.25.1_ramips_24kec.ipk
Size: 1756776
MD5Sum: de3a5b5d3e787e3bb76b7f8ab828cbba
SHA256sum: 809654248eeb891bacf9790cca692fd6dba21a7d2e59a39678844eb839c22377
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides Simple Network Management Protocol
(SNMP) support including a MIB compiler and tools for creating SNMP
agents.
Package: erlang-ssh
Version: 3.0.3
Depends: libc, erlang, erlang-crypto
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 423019
Filename: packages/erlang-ssh_3.0.3_ramips_24kec.ipk
Size: 424066
MD5Sum: 9c50373e4b42f09c9895dabe845a1c42
SHA256sum: 00dc1c95a30bf9fb7e7e45834acdac8dbea62da1728857afca08acee27739457
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides an implementation of the Secure Shell
protocol, with SSH & SFTP support.
Package: erlang-ssl
Version: 5.3.5
Depends: libc, erlang, erlang-crypto
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 626253
Filename: packages/erlang-ssl_5.3.5_ramips_24kec.ipk
Size: 627350
MD5Sum: 74657a2f45e17e23cc6da02cad79e78f
SHA256sum: 03cf7ce85519b6fc3de740ebd0c96653dc95527db700fdf10f3d4e0ad69119aa
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides support for secure communication over
sockets.
Package: erlang-syntax-tools
Version: 1.6.15
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 327464
Filename: packages/erlang-syntax-tools_1.6.15_ramips_24kec.ipk
Size: 328479
MD5Sum: d5b4d92dbadbe63ac77df8a10f3bbd38
SHA256sum: db187644935fa5cc63f1db0cd3b1d249b92e6172256df326ea32637d1112bead
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides support for handling abstract Erlang
syntax trees.
Package: erlang
Version: 17.4-1
Depends: libc, libncurses, librt, zlib
Provides: erlang-erts=6.1 erlang-kernel=3.0.1 erlang-sasl=2.4 erlang-stdlib=2.1
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4895880
Filename: packages/erlang_17.4-1_ramips_24kec.ipk
Size: 4894118
MD5Sum: d6c99537bfc3f04e500811577dcfd540
SHA256sum: 2a33bae0b341923962535584f91627b82c560109636e114067524c68bdd282d5
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This package contains the runtime implementation and a minimal set of
modules (erts, kernel, sasl & stdlib).
Package: espeak
Version: 1.48.04-1
Depends: libc, libpthread, libstdcpp, portaudio
Source: feeds/packages/sound/espeak
License: GPL-3.0
LicenseFiles: License.txt
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1230126
Filename: packages/espeak_1.48.04-1_ramips_24kec.ipk
Size: 1230276
MD5Sum: 6d884814d4c379d95513747eefead389
SHA256sum: 33dc3d153cc58c7d0a41e516f2182c3a9c9bb24f336398643d33013a0821a3f2
Description: eSpeak is a compact open source software speech synthesizer for English and
other languages.
Package: etherwake
Version: 1.09-3
Depends: libc
Source: feeds/packages/net/etherwake
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5165
Filename: packages/etherwake_1.09-3_ramips_24kec.ipk
Size: 6075
MD5Sum: c9042f2df041575126886ce3c5e55c9e
SHA256sum: 4d2c018c26bc0babffb3b63cf8558675c780ef205915c8872caa739536b04d04
Description: You can wake up WOL compliant Computers which have been powered down to
sleep mode or start WOL compliant Computers with a BIOS feature.
WOL is an abbreviation for Wake-on-LAN. It is a standard that allows you
to turn on a computer from another location over a network connection.
ether-wake also supports WOL passwords.
Package: ethtool
Version: 3.18-1
Depends: libc
Source: feeds/packages/net/ethtool
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Matthias Schiffer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 79333
Filename: packages/ethtool_3.18-1_ramips_24kec.ipk
Size: 79901
MD5Sum: 72ccc3e451b7af08188a467285d7c9d4
SHA256sum: 4dbfac14907908fa63c7d337efa27c4f5522211c8d5fe324096667200a4444dc
Description: ethtool is a small utility for examining and tuning your ethernet-based
network interface
Package: f2fs-tools
Version: 1.4.0-1
Depends: libc, libuuid, libf2fs
Source: feeds/packages/utils/f2fs-tools
License: GPLv2
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31677
Filename: packages/f2fs-tools_1.4.0-1_ramips_24kec.ipk
Size: 32390
MD5Sum: 380cb9b1dd24369d5e4c9f836d80d9c9
SHA256sum: 1ca333ee691324d3d108e2afe5e8204adb34f098d125a0e7339b288e008ad04f
Description: Tools for Flash-Friendly File System (F2FS)
Package: faad2
Version: 2.7-3
Depends: libc, libfaad2
Source: feeds/packages/libs/faad2
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20901
Filename: packages/faad2_2.7-3_ramips_24kec.ipk
Size: 21721
MD5Sum: c74760f8785712685986d3ff5d7bbac8
SHA256sum: dd44ae1efe5f6a406457bf93fec5036c8b49caae66a3191b62c860f654055f52
Description: FAAD2 is the fastest ISO AAC audio decoder available.
FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN,
LOW, LTP, LD and ER object type AAC files.
This package contains a binary to play AAC or MP4 files.
Package: fakeidentd
Version: 2.6-1
Depends: libc
Source: feeds/packages/net/fakeidentd
License: GPL-2.0+
Section: net
Maintainer: Daniel Gimpelevich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4660
Filename: packages/fakeidentd_2.6-1_ramips_24kec.ipk
Size: 5390
MD5Sum: 62af5ac17bd33520e28bdeb10f9eedd9
SHA256sum: 7a0c9da9c042722347afbe312d988f6903fe7257f4e93c0f2678e705d98bb646
Description: A static secure identd, only one source file.
Package: fastd
Version: 17-1
Depends: libc, kmod-tun, librt, libpthread, libjson-c
Source: feeds/packages/net/fastd
License: BSD-2-Clause
LicenseFiles: COPYRIGHT
Section: net
Maintainer: Matthias Schiffer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57081
Filename: packages/fastd_17-1_ramips_24kec.ipk
Size: 57898
MD5Sum: b79a69ccb3a5499aaa16eb29f6360d85
SHA256sum: de00994a13e5d38da20f1d2683caf47dfd5deb980b12caf0bd59a3215e849302
Description: Fast and secure tunneling daemon, which is optimized on small code size and few dependencies
Package: fcgi
Version: 2.4.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/fcgi
Section: libs
Maintainer: Jacob Siverskog <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19619
Filename: packages/fcgi_2.4.0-1_ramips_24kec.ipk
Size: 20433
MD5Sum: ad642917d567b6ebecbb7edc17ffb59a
SHA256sum: e73526e6a8822f9729583a96fe662c22ea9f8c81873923a544977cf5b9e03969
Description: FastCGI is a language independent, scalable, open extension to
CGI that provides high performance without the limitations of
server specific APIs.
Package: fcgixx
Version: 2.4.0-1
Depends: libc, fcgi, uclibcxx
Source: feeds/packages/libs/fcgi
Section: libs
Maintainer: Jacob Siverskog <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5788
Filename: packages/fcgixx_2.4.0-1_ramips_24kec.ipk
Size: 6532
MD5Sum: 4f7a9916897d789d2e4265180d1a4d0a
SHA256sum: b6eca7a51fe9f21fb2b8392e3a4f09c88ff2baf5bb9da26ce6602a076018d3b4
Description: Shared library of FastCGI++
Package: fdm
Version: 1.7-1
Depends: libc, tdb, zlib, libopenssl, libpcre
Source: feeds/packages/mail/fdm
License: BSD-2-Clause
Section: mail
Require-User: _fdm=99:_fdm=99
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89646
Filename: packages/fdm_1.7-1_ramips_24kec.ipk
Size: 90690
MD5Sum: 27595ff7575b0f1ace7cf9e2cda100ec
SHA256sum: e840711c045a5d7617809d8273863fc8d85206fee440327374258133d97d4aa9
Description: fdm is a simple, lightweight replacement for mail fetch, filter
and delivery programs such as fetchmail and procmail. It can
fetch using POP3 or IMAP (with SSL) or from stdin, and deliver
to a pipe, file, maildir, mbox or SMTP server, based on PCRE
Package: ffmpeg
Version: 2.5.4-1
Depends: libc, libpthread, libffmpeg-full
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: multimedia
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84357
Filename: packages/ffmpeg_2.5.4-1_ramips_24kec.ipk
Size: 85053
MD5Sum: e5192bba7d7b2d37e18cdc94d851cf64
SHA256sum: d7f91f6197ebf4f68cc24125770c4cbe0de51c607ed07cd003b8a413df9b3e7a
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains the FFmpeg command line tool.
Package: ffprobe
Version: 2.5.4-1
Depends: libc, libffmpeg-full
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: multimedia
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42381
Filename: packages/ffprobe_2.5.4-1_ramips_24kec.ipk
Size: 43168
MD5Sum: ca44e2afc04e49d359a7b1ed4a5bce08
SHA256sum: 07c00213ccd245c3846a3a7986d1471b5b9ca8c1811b46608729c10aff7ebab2
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains the FFprobe command line tool.
Package: ffserver
Version: 2.5.4-1
Depends: libc, libpthread, libffmpeg-full
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: multimedia
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51285
Filename: packages/ffserver_2.5.4-1_ramips_24kec.ipk
Size: 52050
MD5Sum: 01ac8c98f6e50ac07b130f9ed9f62e31
SHA256sum: 72fc32d8feaacb99bb7b7071f1b4f08c3caeeeb43956fe38fbbbbaa6c424b464
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains the FFmpeg streaming server.
Package: file
Version: 5.20-1
Depends: libc, libmagic
Source: feeds/packages/libs/file
License: BSD-2c
LicenseFiles: COPYING
Section: utils
Architecture: ramips_24kec
Installed-Size: 122986
Filename: packages/file_5.20-1_ramips_24kec.ipk
Size: 123828
MD5Sum: b2b6daed4238332561816415cafbf21a
SHA256sum: 9490c17b9ae2b70397fd68da55bc33201ecea7582a4c636be2986d38c70ade58
Description: utility
Package: flashrom
Version: 0.9.8-2
Depends: libc, libftdi, libusb-compat
Source: feeds/packages/utils/flashrom
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66773
Filename: packages/flashrom_0.9.8-2_ramips_24kec.ipk
Size: 67423
MD5Sum: 253671d861be6183311ddb6b4a2bde98
SHA256sum: 73537c5381798f42aab4e40b2e7636767acc511cbf214d42a71fcb7e537676ee
Description: flashrom is an utility for identifying, reading, writing, verifying
and erasing flash chips. It's often used to flash BIOS/EFI/coreboot
/firmware images.
Package: forked-daapd
Version: 22.3-20150222
Depends: libc, libgpg-error, libgcrypt, libgdbm, zlib, libexpat, libunistring, libevent2, libdaemon, libantlr3c, confuse, glib2, alsa-lib, libffmpeg-full, mxml, libavahi-client, sqlite3-cli, libplist, libcurl
Source: feeds/packages/sound/forked-daapd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 176182
Filename: packages/forked-daapd_22.3-20150222_ramips_24kec.ipk
Size: 176578
MD5Sum: f4905db15ccddca6d03cf7ceb315affc
SHA256sum: 543178fa305194e24eeb65bfc64675b45cbe1de9b2385fcda4ef1618e72fe6bd
Description: iTunes (DAAP) server for Apple Remote and AirPlay
Package: freeradius2-common
Version: 2.2.6-1
Depends: libc, libpthread, libopenssl
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93471
Filename: packages/freeradius2-common_2.2.6-1_ramips_24kec.ipk
Size: 94158
MD5Sum: 6139cfec6dae6deb3b23ca9f82a3c1ac
SHA256sum: dd6aa92c74a62382482f84f1e9867a0c32c0e75e4b7aa8b30f41200097c7517e
Description: common files
Package: freeradius2-democerts
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9927
Filename: packages/freeradius2-democerts_2.2.6-1_ramips_24kec.ipk
Size: 10723
MD5Sum: f68beb24ab5f86ea2a333582abe11871
SHA256sum: ea3220b8d04fe5a22997699a7de4001831e4024e2b1ca9818438db1936609ed2
Description: Demo certificates to test the server
Package: freeradius2-mod-always
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2692
Filename: packages/freeradius2-mod-always_2.2.6-1_ramips_24kec.ipk
Size: 3473
MD5Sum: 773b75272575ffc7b8777cef448d4052
SHA256sum: f1237f416fca69c57319db7b9587e86f2574c1d203f11d053f8e5e68e1e7411d
Description: Always module
Package: freeradius2-mod-attr-filter
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6250
Filename: packages/freeradius2-mod-attr-filter_2.2.6-1_ramips_24kec.ipk
Size: 7129
MD5Sum: 31c0e3b97cf381b60d6db087d584810b
SHA256sum: 8cf132db5b266a6ddff38865cd6fbd1348e3a46ef4266ed486f8b2593f507082
Description: ATTR filter module
Package: freeradius2-mod-attr-rewrite
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5367
Filename: packages/freeradius2-mod-attr-rewrite_2.2.6-1_ramips_24kec.ipk
Size: 6172
MD5Sum: ec101a05632eb0fedd4598c799fe1ae0
SHA256sum: e7ffbef76fb6365e39928d83c7c7e71758c36cd1a2c108129e4aa675fca8d793
Description: ATTR rewrite module
Package: freeradius2-mod-chap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2912
Filename: packages/freeradius2-mod-chap_2.2.6-1_ramips_24kec.ipk
Size: 3700
MD5Sum: c8d4bb3fca5330084136466e2e976ec4
SHA256sum: b158ec1c5f4479885d6388b4e1efd993cb0d6aab5fc4a10485010f5c781ec7ad
Description: CHAP module
Package: freeradius2-mod-detail
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6340
Filename: packages/freeradius2-mod-detail_2.2.6-1_ramips_24kec.ipk
Size: 7172
MD5Sum: bb35234cae63fd65f5e91d42dc9e75cd
SHA256sum: 3bee760afb2010712675484d8c6f6e8a090262c097d739993737ee686373a25f
Description: Detailed accounting module
Package: freeradius2-mod-eap-gtc
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3110
Filename: packages/freeradius2-mod-eap-gtc_2.2.6-1_ramips_24kec.ipk
Size: 3890
MD5Sum: a7486c0bd070b7bbab19d3979d24c1eb
SHA256sum: 27bcdecf3348b363e4ac881aad65428469ce80336869de4bbeb73c8cb026439b
Description: EAP/GTC module
Package: freeradius2-mod-eap-md5
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3396
Filename: packages/freeradius2-mod-eap-md5_2.2.6-1_ramips_24kec.ipk
Size: 4131
MD5Sum: 3c1bcb51ae08a998f51ff0693eec0139
SHA256sum: c6a25abb476fc6fc0eefa91c9b1a6933c82f45178c11404f91f5ee3c11461a6e
Description: EAP/MD5 module
Package: freeradius2-mod-eap-mschapv2
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap, freeradius2-mod-mschap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4810
Filename: packages/freeradius2-mod-eap-mschapv2_2.2.6-1_ramips_24kec.ipk
Size: 5573
MD5Sum: 438c5338acfa7a2cdf56c726210958ce
SHA256sum: fc9c89e9fa36c3169c318cb52f626e3bc1d3feed48d31f872348a9fab8e525b3
Description: EAP/MS-CHAPv2 module
Package: freeradius2-mod-eap-peap
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9402
Filename: packages/freeradius2-mod-eap-peap_2.2.6-1_ramips_24kec.ipk
Size: 10174
MD5Sum: d6899b7ba329cd7f89e3b62ad9fb9a28
SHA256sum: 0398c15f5655691f4e985b312b24fc92d782bc70c7af931066c6767820ee7041
Description: EAP/PEAP module
Package: freeradius2-mod-eap-tls
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12371
Filename: packages/freeradius2-mod-eap-tls_2.2.6-1_ramips_24kec.ipk
Size: 13126
MD5Sum: ed64d31ade2bd58871f25d0e43794436
SHA256sum: c8f054bd7ad1ae771060c1269d1b119c5ac37ca78597ae9e33136a4e6606c282
Description: EAP/TLS module
Package: freeradius2-mod-eap-ttls
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap-tls
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7738
Filename: packages/freeradius2-mod-eap-ttls_2.2.6-1_ramips_24kec.ipk
Size: 8515
MD5Sum: 82ab20ad989bd6bef646b588e1f3f52f
SHA256sum: 79ad798865b478d85b31d403ff82eadfecd78feb05a9b374daa363bd334ffa6e
Description: EAP/TTLS module
Package: freeradius2-mod-eap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19418
Filename: packages/freeradius2-mod-eap_2.2.6-1_ramips_24kec.ipk
Size: 20220
MD5Sum: db15498ba465ad57ca46d4ee0a67e0d3
SHA256sum: 9e611b8d649210978f37b488c115d99db629855bb63f806f3b3c17551760733a
Description: Base EAP module
Package: freeradius2-mod-exec
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6046
Filename: packages/freeradius2-mod-exec_2.2.6-1_ramips_24kec.ipk
Size: 6846
MD5Sum: d9517bd206d48eae556c0b99d599fdfe
SHA256sum: d396443b5192ebf1617ede427aefd92d48cefbc47ca2f79014e0feb541eeaa82
Description: EXEC module
Package: freeradius2-mod-expiration
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3182
Filename: packages/freeradius2-mod-expiration_2.2.6-1_ramips_24kec.ipk
Size: 3970
MD5Sum: ea685c319d2517c2b5583730f7ae2119
SHA256sum: fd2276ab8ef9e9a1b210f90bf32b6d77acf3148a61b945bd8dec6a901c583679
Description: Expiration module
Package: freeradius2-mod-expr
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6834
Filename: packages/freeradius2-mod-expr_2.2.6-1_ramips_24kec.ipk
Size: 7631
MD5Sum: edabea5040839520adad6ba6fe673fd7
SHA256sum: f85971a141627aaad92e2ece12a103e509c0fa560f0e04ac2782d16979e0dc65
Description: EXPR module
Package: freeradius2-mod-files
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8155
Filename: packages/freeradius2-mod-files_2.2.6-1_ramips_24kec.ipk
Size: 9025
MD5Sum: 4d4611171e1f559f4148682f41ed3e2d
SHA256sum: d613f0d77d21b1cbd24c51e4516fe57c142c43af46b51129e7b7a371a789fd9e
Description: Module using local files for authorization
Package: freeradius2-mod-ldap
Version: 2.2.6-1
Depends: libc, freeradius2, libopenldap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18890
Filename: packages/freeradius2-mod-ldap_2.2.6-1_ramips_24kec.ipk
Size: 19700
MD5Sum: a2103d9fc9ad7abc045c5a9e3d1b806c
SHA256sum: 49647bc7954d2f3719dabda95c8ada3e77b0b17553caf6411cbf2e3f4463a6f9
Description: LDAP module
Package: freeradius2-mod-logintime
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5359
Filename: packages/freeradius2-mod-logintime_2.2.6-1_ramips_24kec.ipk
Size: 6159
MD5Sum: 7d9d45d5878713c693ebb83ffd759f8a
SHA256sum: e153766bd82bad78c5f73f43fd7484a8418fa6883eea9a246628914775819052
Description: Logintime module
Package: freeradius2-mod-mschap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12224
Filename: packages/freeradius2-mod-mschap_2.2.6-1_ramips_24kec.ipk
Size: 12973
MD5Sum: 8cd3521d718317f60d708c9f98e7f4be
SHA256sum: 0a984a617e5a445c905c697d8cab56c6a92d068a9b8fee537dd1f2327eb32cc6
Description: MS-CHAP and MS-CHAPv2 module
Package: freeradius2-mod-pap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6793
Filename: packages/freeradius2-mod-pap_2.2.6-1_ramips_24kec.ipk
Size: 7584
MD5Sum: d679d299c4dd03649a9fc09cd7f076a7
SHA256sum: bd8034021da3d5b44e498660738a1b66bccfba3d32c0e8096c679aefec9f9407
Description: PAP module
Package: freeradius2-mod-passwd
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6447
Filename: packages/freeradius2-mod-passwd_2.2.6-1_ramips_24kec.ipk
Size: 7295
MD5Sum: 2f2b23bf52a3e3d0b871ad3f68f13578
SHA256sum: 50cd070cbe1be6af6629f5059591d734c78e6d79b312953a2dbc1140840cba8c
Description: Rlm passwd module
Package: freeradius2-mod-preprocess
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7239
Filename: packages/freeradius2-mod-preprocess_2.2.6-1_ramips_24kec.ipk
Size: 8078
MD5Sum: 074b73d386e09d8208b678820d12e21a
SHA256sum: 4f4f1a93854ff382f473b70bcc94aed88af26ba24e5171cd49d36fa43bfe4581
Description: Request pre-processing module
Package: freeradius2-mod-radutmp
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6363
Filename: packages/freeradius2-mod-radutmp_2.2.6-1_ramips_24kec.ipk
Size: 7223
MD5Sum: df4dacb3a0106a9a4c72d02630ce6705
SHA256sum: 989561d11999f0d9549021121bf6aaa8378f128e9eb3839619a61ef688736bd5
Description: Radius UTMP module
Package: freeradius2-mod-realm
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15363
Filename: packages/freeradius2-mod-realm_2.2.6-1_ramips_24kec.ipk
Size: 16170
MD5Sum: 3855ac33bea306c144da78336d965488
SHA256sum: d99d8a6984903f7e1c928abb4e668b6b3bd43423953f9fca08b80d8f0486ac13
Description: Realms handling module
Package: freeradius2-mod-sql-mysql
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql, libmysqlclient-r
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3747
Filename: packages/freeradius2-mod-sql-mysql_2.2.6-1_ramips_24kec.ipk
Size: 4503
MD5Sum: 81b90eb1c700b6ecc8b00e01f6c4c90a
SHA256sum: c169b101f9cbce9be4418ec52ce870f1e387be82b50b095b0920379c95f5d6e7
Description: MySQL module
Package: freeradius2-mod-sql-pgsql
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql, libpq
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7588
Filename: packages/freeradius2-mod-sql-pgsql_2.2.6-1_ramips_24kec.ipk
Size: 8230
MD5Sum: ea9518d2dcbf91ef35ddefdd6f8ea10c
SHA256sum: a4f29ab9e726c54fb7dbb3f90db45092ccd426a3cae144e801b66a2caceb3b68
Description: PostgreSQL module
Package: freeradius2-mod-sql-sqlite
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql, libsqlite3
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3525
Filename: packages/freeradius2-mod-sql-sqlite_2.2.6-1_ramips_24kec.ipk
Size: 4266
MD5Sum: 0903bf2435bc87987b31dcd8193fa133
SHA256sum: 5ff43a496c02d277ad2a04a466e316988545f817621c2072dc1452f9c11c907e
Description: SQLite module
Package: freeradius2-mod-sql
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14556
Filename: packages/freeradius2-mod-sql_2.2.6-1_ramips_24kec.ipk
Size: 15371
MD5Sum: afe4be9a7674daf45b11159f912ece07
SHA256sum: c77f8bf6d2abfd064d99009760af02925151e049ce35106101c712ed229852de
Description: Base SQL module
Package: freeradius2-mod-sqlcounter
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5868
Filename: packages/freeradius2-mod-sqlcounter_2.2.6-1_ramips_24kec.ipk
Size: 6631
MD5Sum: 37c9c4270db9d92da9ad539546480dd7
SHA256sum: 7681ffe9d08538a1cab73dc4ab65d3b5abaffce95f0dd0e72c1d07fa03970578
Description: Generic SQL Counter module
Package: freeradius2-mod-sqllog
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4550
Filename: packages/freeradius2-mod-sqllog_2.2.6-1_ramips_24kec.ipk
Size: 5294
MD5Sum: 4ce052e2f03ac23f1f94c07a9508fc07
SHA256sum: ffa4dfeb45f195869f0fd08825b7cb6f96591977f68a742f9479bd2340590ed6
Description: SQL Logging module
Package: freeradius2-utils
Version: 2.2.6-1
Depends: libc, freeradius2-common
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37861
Filename: packages/freeradius2-utils_2.2.6-1_ramips_24kec.ipk
Size: 38695
MD5Sum: 7171e94895f6747d5f153982c1d65f20
SHA256sum: 7fd6d322c29779022af3659ee4bcdc53fc4d3c32891a58ad304057c3236772e7
Description: Misc. client utilities
Package: freeradius2
Version: 2.2.6-1
Depends: libc, libltdl, libreadline, freeradius2-common
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 135439
Filename: packages/freeradius2_2.2.6-1_ramips_24kec.ipk
Size: 136090
MD5Sum: 9f5ef7998816e7e413ff90c3f7c0105e
SHA256sum: 1ce85d798efaa70ecb3aeafb3b4f02ff46f49f7a06c80a5739896e9afd4d981d
Description: A flexible RADIUS server (version 2)
Package: fswebcam
Version: 20140113-1
Depends: libc, libgd
Source: feeds/packages/multimedia/fswebcam
License: GPL-2.0
LicenseFiles: LICENCE
Section: multimedia
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36267
Filename: packages/fswebcam_20140113-1_ramips_24kec.ipk
Size: 37257
MD5Sum: 493d38c2d340401b2e7b43cf32d5fcbd
SHA256sum: bed12b35708bdd8571854310234e3a0d36ddaeeaa477198046eceb542028f746
Description: fswebcam is a neat and simple webcam app. It captures images from a V4L1/V4L2 compatible
device or file, averages them to reduce noise and draws a caption using the GD Graphics
Library which also handles compressing the image to PNG or JPEG. The resulting image
is saved to a file or sent to stdio where it can be piped to something like ncftpput or scp.
Package: ftdi_eeprom
Version: 1.2-3
Depends: libc, confuse, libftdi1
Source: feeds/packages/libs/libftdi1
License: LGPL-2.0
LicenseFiles: COPYING.LIB
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5141
Filename: packages/ftdi_eeprom_1.2-3_ramips_24kec.ipk
Size: 6061
MD5Sum: 7b11e93ed5c39dec2c0a7dcc5914d652
SHA256sum: a89aba3779ebb0fa4a2a186364af9620dae15f1a3988ce425d3112349890a678
Description: ftdi_eeprom is a small tool for reading/erasing/flashing FTDI USB chip
eeproms. It uses libftdi to access the chip, so you will need to have
the required permissions on the device.
The ftdi_sio module should not be loaded.
You have to unplug and replug your device to get the new values to be
read. Otherwise, you will still get the old values.
Package: fwknop
Version: 2.6.5-1
Depends: libc, libfko
Source: feeds/packages/net/fwknop
License: GPLv2
Section: net
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29071
Filename: packages/fwknop_2.6.5-1_ramips_24kec.ipk
Size: 30073
MD5Sum: 5a74a9d7467ea8f31f2af29d992335d2
SHA256sum: f238e3b089a158a4c8adcb11a4fec613184249c786f84f00361c39067bd86cc1
Description: Fwknop implements an authorization scheme known as Single Packet Authorization
(SPA) for Linux systems running iptables. This mechanism requires only a
single encrypted and non-replayed packet to communicate various pieces of
information including desired access through an iptables policy. The main
application of this program is to use iptables in a default-drop stance to
protect services such as SSH with an additional layer of security in order to
make the exploitation of vulnerabilities (both 0-day and unpatched code) much
more difficult.
This package contains the fwknop client.
Package: fwknopd
Version: 2.6.5-1
Depends: libc, iptables, libfko, libpcap
Source: feeds/packages/net/fwknop
License: GPLv2
Section: net
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49115
Filename: packages/fwknopd_2.6.5-1_ramips_24kec.ipk
Size: 50360
MD5Sum: 5bfd2c8a1ccd4d9e091aa06200023645
SHA256sum: 466b13607ca1397e9f5ed03b9e98d62baa33766a9fe2671f4d5510c8471564cc
Description: Fwknop implements an authorization scheme known as Single Packet Authorization
(SPA) for Linux systems running iptables. This mechanism requires only a
single encrypted and non-replayed packet to communicate various pieces of
information including desired access through an iptables policy. The main
application of this program is to use iptables in a default-drop stance to
protect services such as SSH with an additional layer of security in order to
make the exploitation of vulnerabilities (both 0-day and unpatched code) much
more difficult.
This package contains the fwknop daemon.
Package: gammu
Version: 1.34.0-3
Depends: libc, libpthread, libcurl, glib2, python, bluez-libs, libmysqlclient, unixodbc, libpq, libusb-1.0
Source: feeds/packages/utils/gammu
Section: utils
Maintainer: Vitaly Protsko <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1601087
Filename: packages/gammu_1.34.0-3_ramips_24kec.ipk
Size: 1590119
MD5Sum: 882c639ff22cb930a767dc88c4cf5b5a
SHA256sum: 5383bda0069e3d545735deffaa1e85803d5b207eba6f3c725b39ecc10cfffe5d
Description: Cell phone/modem SMS and control tool
Package: gcc
Version: 4.8.3-1
Depends: libc, binutils, libstdcpp
Source: feeds/packages/devel/gcc
Section: devel
Maintainer: Christian Beier <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21282283
Filename: packages/gcc_4.8.3-1_ramips_24kec.ipk
Size: 21208231
MD5Sum: bca72aa39f11bf66da15cddd84ad2146
SHA256sum: e53b07706ca5aac9aae5c4c49b3b85c685ff4079bed0b07c0086fc80a128f04d
Description: build a native toolchain for compiling on target
Package: git-http
Version: 2.3.3-1
Depends: libc, git, libcurl, ca-certificates
Source: feeds/packages/net/git
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 994143
Filename: packages/git-http_2.3.3-1_ramips_24kec.ipk
Size: 993570
MD5Sum: 968dd4eacbe098f3e48c71eb712830e6
SHA256sum: f9044f0f68efc4d49f10aeff86001d23274d76ce1f5f12b5fbcc023b307fa69b
Description: Git is a free & open source, distributed version control system
designed to handle everything from small to very large projects
with speed and efficiency.
This package allows git push/fetch over http(s) and ftp(s)
Package: git
Version: 2.3.3-1
Depends: libc, libopenssl, libpthread, librt
Source: feeds/packages/net/git
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 782718
Filename: packages/git_2.3.3-1_ramips_24kec.ipk
Size: 782685
MD5Sum: f607961c7ecd8a5b403b2607c89d42a1
SHA256sum: 4bbbbe5a3b261605834f8c498fd905465db450bfc46649ac6473692a2fdbe514
Description: Git is a free & open source, distributed version control system
designed to handle everything from small to very large projects
with speed and efficiency.
Package: glib2
Version: 2.43.4-1
Depends: libc, zlib, libpthread, libffi, libattr
Source: feeds/packages/libs/glib2
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 872480
Filename: packages/glib2_2.43.4-1_ramips_24kec.ipk
Size: 868537
MD5Sum: 6452e7b58054fbaf3795107e2b8262a0
SHA256sum: 85602bba4a5de9aa40f5ede58676a811d92121d13f67e903995a4b0a8bac200f
Description: The GLib library of C routines
Package: gnupg
Version: 1.4.19-1
Depends: libc, zlib, libncurses, libreadline
Source: feeds/packages/utils/gnupg
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 331115
Filename: packages/gnupg_1.4.19-1_ramips_24kec.ipk
Size: 330275
MD5Sum: 5003bb41b93e55cc5aec4cabc6697644
SHA256sum: 9191bf7088318aaa3045bc99d319f667ac99882a56e4534d624f7e3bc2aa8cf0
Description: GnuPG is GNU's tool for secure communication and data storage.
It can be used to encrypt data and to create digital signatures.
It includes an advanced key management facility and is compliant
with the proposed OpenPGP Internet standard as described in RFC2440.
.
GnuPG does not use any patented algorithms so it cannot be compatible
with PGP2 because it uses IDEA (which is patented worldwide).
Package: gnutls-utils
Version: 3.3.13-3
Depends: libc, libgnutls
Source: feeds/packages/libs/gnutls
Section: utils
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 218683
Filename: packages/gnutls-utils_3.3.13-3_ramips_24kec.ipk
Size: 219249
MD5Sum: 13b3c71d954d4b2f32bef17db62db56e
SHA256sum: e90176d43ac215e10fccd70f31b88d611b12de17006e5ecccccfdf9ae437d81f
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS gnutls-cli, gnutls-serv, psktool,
and srptool utilities.
Package: gpioctl-sysfs
Version: 0.0.6-1
Depends: libc, libugpio
Source: feeds/packages/libs/libugpio
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: utils
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2062
Filename: packages/gpioctl-sysfs_0.0.6-1_ramips_24kec.ipk
Size: 2857
MD5Sum: 4acccf291718daaa1faab6b0704b0c06
SHA256sum: a35be76b5ca9e4f0d6540155d0309694c950bd8ef35875381c6f6e0d94c26fcc
Description: Tool for controlling gpio pins using the sysfs api provided by the kernel.
Package: grep
Version: 2.21-2
Depends: libc, libpcre
Source: feeds/packages/utils/grep
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 95158
Filename: packages/grep_2.21-2_ramips_24kec.ipk
Size: 96002
MD5Sum: dcffb9db4257a996208c52e7a981c923
SHA256sum: 3a86891803bfae788d1c0c0ede630ba1a97e02a455e22121e21d128f80e1094e
Description: The grep command searches one or more input files for lines
containing a match to a specified pattern. By default, grep
prints the matching lines.
Package: gst1-libav
Version: 1.4.5-1
Depends: libc, libgstreamer1, gstreamer1-plugins-base, gst1-mod-alsa, libgst1audio, libgst1pbutils, libgst1video, libbz2
Source: feeds/packages/multimedia/gst1-libav
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 988752
Filename: packages/gst1-libav_1.4.5-1_ramips_24kec.ipk
Size: 984789
MD5Sum: ee9fe61360b3ec8ee0b6a40a8344d960
SHA256sum: 0d753d6402f8a6f03ac93ec62c49d380a3876ecd87b1d03ae101aa9872c301bd
Description: GStreamer with libav bindings using internal Libav
Package: gst1-mod-adpcmdec
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4990
Filename: packages/gst1-mod-adpcmdec_1.4.5-1_ramips_24kec.ipk
Size: 5780
MD5Sum: 25dd72b4f8c9a7e2a0393f2aa72ba20d
SHA256sum: 7d8225b00f4e27ac9ab4bb64f75daabcbc51ede30dce3cc4a607267fa026a942
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer adpcm decoding support plugin.
Package: gst1-mod-adpcmenc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4885
Filename: packages/gst1-mod-adpcmenc_1.4.5-1_ramips_24kec.ipk
Size: 5683
MD5Sum: b0e582413328f06d1543d343c869b195
SHA256sum: 9792f5ed92c79315974e792a40d4100fb715e81daed9293ba7de8d6f82721900
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer adpcm encoding support plugin.
Package: gst1-mod-aiff
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19043
Filename: packages/gst1-mod-aiff_1.4.5-1_ramips_24kec.ipk
Size: 19868
MD5Sum: 0653316e3961f791c502a441f0aed5f5
SHA256sum: faf4078ef350e299319c112e2b901dbf0dde5846ce430f84d68545eb99ff3530
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer aiff support plugin.
Package: gst1-mod-alaw
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6945
Filename: packages/gst1-mod-alaw_1.4.5-1_ramips_24kec.ipk
Size: 7775
MD5Sum: 620838a0f60c66010ed5f187ed88787f
SHA256sum: f209fe435d29adaee86d9e80e219f3349e6e086da2a995fe5b3d83886a02e5a8
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer alaw codec plugin.
Package: gst1-mod-alpha
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19019
Filename: packages/gst1-mod-alpha_1.4.5-1_ramips_24kec.ipk
Size: 19788
MD5Sum: 1627b6ee3ef6b7b50a0278c7a1fc08e2
SHA256sum: 6e97aa62832aa20c6eb3d2c637ad012074cf33bd15079d57091ddc6df212ad8e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer alpha support plugin.
Package: gst1-mod-alphacolor
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4637
Filename: packages/gst1-mod-alphacolor_1.4.5-1_ramips_24kec.ipk
Size: 5431
MD5Sum: 9e7511afd900486cf859d1e0395e1cd7
SHA256sum: 93d2edcadb288e82801ecb35a7c2cf39fc04574eb4e5ae255ff8b48756ad3913
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer alphacolor support plugin.
Package: gst1-mod-alsa
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, alsa-lib
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21773
Filename: packages/gst1-mod-alsa_1.4.5-1_ramips_24kec.ipk
Size: 22529
MD5Sum: de85f0a56c84918ab86d8856799079db
SHA256sum: 1b7077c9c6e1854eba9c8b32e62e902f23d4a2c92a2e66ea602a5bbf5065c4ae
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer ALSA plugin.
Package: gst1-mod-apetag
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5399
Filename: packages/gst1-mod-apetag_1.4.5-1_ramips_24kec.ipk
Size: 6202
MD5Sum: 0ee428f81c6c0208dce66c1dac19774b
SHA256sum: 96e8ccfae44029f30de204897af7ffbedd85b22839064220385e0abbfaae9d05
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer apetag support plugin.
Package: gst1-mod-app
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1app
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1473
Filename: packages/gst1-mod-app_1.4.5-1_ramips_24kec.ipk
Size: 2293
MD5Sum: 0e2b0fb71520b296dc8af4f8096b2bd5
SHA256sum: a63a4335b1ca80a0a7052d735404cd86d6758035203881f807f8f68f9d6f954c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer app plugin.
Package: gst1-mod-asf
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1audio, libgst1riff, libgst1rtp, libgst1rtsp, libgst1sdp, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45051
Filename: packages/gst1-mod-asf_1.4.5-1_ramips_24kec.ipk
Size: 45797
MD5Sum: e0f2c4b242f4670097592de41c6da78e
SHA256sum: 1b5040ee7055dc1484e8dac19d82c3424c446ff9df32373eafd1dcc479377a49
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer ASF demuxer plugin.
Package: gst1-mod-asfmux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1rtp
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27646
Filename: packages/gst1-mod-asfmux_1.4.5-1_ramips_24kec.ipk
Size: 28413
MD5Sum: eb397e8271220936bfd2c563f9e8f382
SHA256sum: 0fcb9a86f7bdccfd58238fda0b5c2035a608e0107e2925c2e9923f27aa3d0d21
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer asf muxing support plugin.
Package: gst1-mod-audioconvert
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22547
Filename: packages/gst1-mod-audioconvert_1.4.5-1_ramips_24kec.ipk
Size: 23332
MD5Sum: 66c430b3fc0a8827b01d5e35fec19b3f
SHA256sum: 35aa97187f214a2808a58d71181b6e1085861a35cff3127593225b8665b009d5
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio format conversion plugin.
Package: gst1-mod-audiofx
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1fft, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50660
Filename: packages/gst1-mod-audiofx_1.4.5-1_ramips_24kec.ipk
Size: 51579
MD5Sum: 8d582f06313573c18fe9499e719264ac
SHA256sum: 72cf9630b79f56dd20048699874e70dab3b616840859e89fd2fd5c77a607e092
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio effects plugin.
Package: gst1-mod-audioparsers
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48370
Filename: packages/gst1-mod-audioparsers_1.4.5-1_ramips_24kec.ipk
Size: 49221
MD5Sum: 7ac25373da2b49a7d2f8f78ed2e2909e
SHA256sum: f54a0150a0eea9e29c723918ccbdc1e0bb752299d88c0e50ba7e178cf7770104
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audioparsers plugin.
Package: gst1-mod-audiorate
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7811
Filename: packages/gst1-mod-audiorate_1.4.5-1_ramips_24kec.ipk
Size: 8650
MD5Sum: d1762d41ca9a82544bd7a832f2853cbb
SHA256sum: e717b811b1457b20d9468dfcb1ac6a4a2655654b8933d492fd5f15c7f0dd29e0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio rate adjusting plugin.
Package: gst1-mod-audioresample
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25989
Filename: packages/gst1-mod-audioresample_1.4.5-1_ramips_24kec.ipk
Size: 26732
MD5Sum: bbbf7d26015b700929c61ce2b2209f97
SHA256sum: 856e65ba0fbff778e6d67008c11fd235bd40fe9c9592118b9b5987070abf6eb7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio resampling plugin.
Package: gst1-mod-audiotestsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13412
Filename: packages/gst1-mod-audiotestsrc_1.4.5-1_ramips_24kec.ipk
Size: 14232
MD5Sum: 84f4e830b9eacb0d743d7eca7affde2e
SHA256sum: 35068ca147e215c167fa0543d6adce027f630887a8bc585db41c2d93fb5684d3
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio test plugin.
Package: gst1-mod-auparse
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8092
Filename: packages/gst1-mod-auparse_1.4.5-1_ramips_24kec.ipk
Size: 8921
MD5Sum: 3f879cad41a24b210ac37223ad5870c3
SHA256sum: 3de059160e582624132d3ba7738f9be24ef6dcfebfa43002c56dc4de24198d77
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer auparse plugin.
Package: gst1-mod-autoconvert
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10695
Filename: packages/gst1-mod-autoconvert_1.4.5-1_ramips_24kec.ipk
Size: 11495
MD5Sum: d946e26796ea99569dd82a9ac1934e6d
SHA256sum: d4e96a2c787ff30ab05b4a7919a13dbf458298926f1c1dfb8ab383d87476c295
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer autoconvert support plugin.
Package: gst1-mod-autodetect
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7488
Filename: packages/gst1-mod-autodetect_1.4.5-1_ramips_24kec.ipk
Size: 8325
MD5Sum: f24ceeba594c63136b27e62095902acf
SHA256sum: a2a6024a46821eba258fd6cc66e84f6eb872a3fd97e8015523b8353861145ed0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer format auto-detection plugin.
Package: gst1-mod-avi
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1riff, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 59261
Filename: packages/gst1-mod-avi_1.4.5-1_ramips_24kec.ipk
Size: 59987
MD5Sum: 30e94247581619db6f57fb3bbad0c864
SHA256sum: ec604243881e8ccd7a2de5b12779862a42659b3cd761c5431d92aeb3e5aa47e2
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer avi support plugin.
Package: gst1-mod-bayer
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6818
Filename: packages/gst1-mod-bayer_1.4.5-1_ramips_24kec.ipk
Size: 7683
MD5Sum: 44994ea0d5a35a9ca27c5dcc9cf64990
SHA256sum: b50462ac04d9e939e88c8b1a2cadfd3fee8376ea3d35232ac35c57cd2e5a841f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer bayer support plugin.
Package: gst1-mod-camerabin2
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1basecamerabinsrc, libgst1photography, libgst1tag, libgst1pbutils, libgst1app
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26254
Filename: packages/gst1-mod-camerabin2_1.4.5-1_ramips_24kec.ipk
Size: 26971
MD5Sum: 38deb0a6ac9cbc7e10cbd57993bd5bda
SHA256sum: 3c543f4829143390ad0f274981af3d4ff65b6a8161972695f694c535707866be
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer camerabin support plugin.
Package: gst1-mod-cutter
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6190
Filename: packages/gst1-mod-cutter_1.4.5-1_ramips_24kec.ipk
Size: 7026
MD5Sum: 208e17f1179e667544516fd2c63e905c
SHA256sum: 5f04d57033d36c824c0ee7170efc23736feebae62c05fb52bc8cbb677878e7ec
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio cutter plugin.
Package: gst1-mod-dataurisrc
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5431
Filename: packages/gst1-mod-dataurisrc_1.4.5-1_ramips_24kec.ipk
Size: 6219
MD5Sum: 3e0ba377b124645d4c81b46d64e02472
SHA256sum: 4d6d6b204a5b6d4f23a00681e32d5ea7765234014f5378dfbb60e5b338f0dd87
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dataurisrc support plugin.
Package: gst1-mod-debug
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20109
Filename: packages/gst1-mod-debug_1.4.5-1_ramips_24kec.ipk
Size: 20851
MD5Sum: e68438a002b943d9e441ae4bf3f6b8d9
SHA256sum: 723e46c6bd85328f19c660bd84ceb6872c9062b29b88e7580e06e6ded3ec781e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer debugging plugin.
Package: gst1-mod-debugutilsbad
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18278
Filename: packages/gst1-mod-debugutilsbad_1.4.5-1_ramips_24kec.ipk
Size: 19116
MD5Sum: 08f5769c5041712532ef22996d70d412
SHA256sum: d242762661a52f220f603ef0bcd5d4e13491591110d7f889d04350835dc754ac
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer debugutils support plugin.
Package: gst1-mod-deinterlace
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37520
Filename: packages/gst1-mod-deinterlace_1.4.5-1_ramips_24kec.ipk
Size: 38324
MD5Sum: 08c5ccb4457372b00a4c4fcd2e63a027
SHA256sum: a93dbb2f8d5e22eab8bda57376bc17f896d73c4c71c96109406721d87643bbf3
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer deinterlace support plugin.
Package: gst1-mod-dtmf
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1rtp
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17089
Filename: packages/gst1-mod-dtmf_1.4.5-1_ramips_24kec.ipk
Size: 17875
MD5Sum: f8a97ad52a752948ccf13707d5160cf0
SHA256sum: d78c0c9331d388a29470cd198fa7e16ecfa3341a35a49d68d02da2223ad40471
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dtmf support plugin.
Package: gst1-mod-dvdspu
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19055
Filename: packages/gst1-mod-dvdspu_1.4.5-1_ramips_24kec.ipk
Size: 19810
MD5Sum: 92a3d16bcc13147f61cd706bfbfbe496
SHA256sum: b7edecfa7252f13d11039cc5d9ce74dfce2f8fdafdb3cedf06fa26e084c33d4d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dvdspu support plugin.
Package: gst1-mod-effectv
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21790
Filename: packages/gst1-mod-effectv_1.4.5-1_ramips_24kec.ipk
Size: 22619
MD5Sum: 2c19369e11452dcbce9a2992386ef0aa
SHA256sum: a4b4ed35e02304237040c1422a67729885d0f7606ef6cb590227176a8c8e6f8a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer effectvsupport plugin.
Package: gst1-mod-equalizer
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10642
Filename: packages/gst1-mod-equalizer_1.4.5-1_ramips_24kec.ipk
Size: 11427
MD5Sum: 569236d500aac5d6f5b3ab770c358667
SHA256sum: 18c1fac3c5fa2a784a39b0373efc2faa60f7c3f0f268b2b4f42f38be4c7eeec8
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio equalizer plugin.
Package: gst1-mod-festival
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5439
Filename: packages/gst1-mod-festival_1.4.5-1_ramips_24kec.ipk
Size: 6239
MD5Sum: 52ac62aebef3a44de25488b414fc4dd6
SHA256sum: 046224733c4fd172b218261ed7015915fbd9e81fe1e6c64e84d34479d9a33a43
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer festival support plugin.
Package: gst1-mod-flac
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libflac
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21533
Filename: packages/gst1-mod-flac_1.4.5-1_ramips_24kec.ipk
Size: 22294
MD5Sum: 8806debb678ed28e066452ac29c7dfc7
SHA256sum: c4a871b9aca4f2d30743c2cf2d4b2e6e7c80825231f35a17f7d16a49e1e5fc28
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer FLAC codec plugin.
Package: gst1-mod-flv
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 40169
Filename: packages/gst1-mod-flv_1.4.5-1_ramips_24kec.ipk
Size: 41001
MD5Sum: 52b0787c2ef2beac78731d5c1f3e609a
SHA256sum: 16d9e39a276da5605fc25dc3666bf5b6ba7676bd0d7cf12e9975e96b3c0d8ae3
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer flv codec plugin.
Package: gst1-mod-flxdec
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7070
Filename: packages/gst1-mod-flxdec_1.4.5-1_ramips_24kec.ipk
Size: 7905
MD5Sum: 7b6dc0663aa88bfc896a2df7359f44a9
SHA256sum: 784e4cd7e8dc49feea4ae256f81954fb469dcec850bf59fafb74fe9f1ba92d1c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer flx codec plugin.
Package: gst1-mod-frei0r
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1controller, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15352
Filename: packages/gst1-mod-frei0r_1.4.5-1_ramips_24kec.ipk
Size: 16070
MD5Sum: 7056528f958836e5eaa63cf7bb4f8621
SHA256sum: 2e3aa5e1385b3afdf867c82f956cd0cb59bd6044f206095202ea4d46e7fcd122
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer frei0r support plugin.
Package: gst1-mod-gio
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14174
Filename: packages/gst1-mod-gio_1.4.5-1_ramips_24kec.ipk
Size: 14917
MD5Sum: 033cb0ee06b293f46bc2279c732bd619
SHA256sum: 28fd4f4d474acd9ce632bafb1189792c2a717bb9e51e6db494abb3f54eb8e453
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer GIO plugin.
Package: gst1-mod-goom2k1
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13227
Filename: packages/gst1-mod-goom2k1_1.4.5-1_ramips_24kec.ipk
Size: 13970
MD5Sum: 021359a5fd6222bc39f8d55c84c5ee33
SHA256sum: b2d0f52d5ae92690b2a9c6656f01a3bbe5895f5835994cc6f3ac505a46b52c0d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer goom support plugin.
Package: gst1-mod-goom
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35175
Filename: packages/gst1-mod-goom_1.4.5-1_ramips_24kec.ipk
Size: 35930
MD5Sum: 7b1fb08ad395894344c0807b1248cb8a
SHA256sum: 285baba85f845e8be8a7c4c8a5197d48a701ba376be48be544258b6a3ebf512b
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer goom support plugin.
Package: gst1-mod-icydemux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6326
Filename: packages/gst1-mod-icydemux_1.4.5-1_ramips_24kec.ipk
Size: 7187
MD5Sum: acb8032cb049edc79d948e83c49a61d8
SHA256sum: b9567727b98c65da276b22c476eb7dad17fa35ee0740c21d59db17dc28b111e4
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer icy demuxer plugin.
Package: gst1-mod-id3demux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3817
Filename: packages/gst1-mod-id3demux_1.4.5-1_ramips_24kec.ipk
Size: 4620
MD5Sum: 10893cfbf465c1413448db2bd4c8f8c4
SHA256sum: a8653d2e8688f0af038e8a83daf8284970461a2174a188ff3f0f98b07bdfaf32
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer ID3v1/v2 demuxer plugin.
Package: gst1-mod-id3tag
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13163
Filename: packages/gst1-mod-id3tag_1.4.5-1_ramips_24kec.ipk
Size: 13970
MD5Sum: b5b88ce3a0fdbc901403d8e4df387dfa
SHA256sum: c2e4341c6e5b745bf4b927014e64ff696e9087d95c02610aa6b61df52e23e230
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer id3tag support plugin.
Package: gst1-mod-imagefreeze
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9261
Filename: packages/gst1-mod-imagefreeze_1.4.5-1_ramips_24kec.ipk
Size: 10078
MD5Sum: 55235afce8badf7b5f27c5a6ec4072f4
SHA256sum: 10c3ec4d2bffcd59fef40e3c6649cefca4b6d741458683c63a317563d9745bfd
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer imagefreeze support plugin.
Package: gst1-mod-interleave
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16297
Filename: packages/gst1-mod-interleave_1.4.5-1_ramips_24kec.ipk
Size: 17021
MD5Sum: 7638883693ecc7c151af5b5056400dbe
SHA256sum: 46da1c254e8a333bea4d900b9e870109b33993da9439e35333860c0c7ee8ce7d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio interleave plugin.
Package: gst1-mod-isomp4
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1riff, libgst1rtp, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 143326
Filename: packages/gst1-mod-isomp4_1.4.5-1_ramips_24kec.ipk
Size: 143642
MD5Sum: 73bf16b9bd6f77d88fefb7f5aca6b308
SHA256sum: c7516ab66969945ae43afa2309916204e6920b61bb403c9cb5bbb659fcedbfc7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer isomp4 support plugin.
Package: gst1-mod-jpeg
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, libjpeg
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15241
Filename: packages/gst1-mod-jpeg_1.4.5-1_ramips_24kec.ipk
Size: 16049
MD5Sum: b20412c79fa18d9b5024f049ee5c4a16
SHA256sum: 4028157e9fd0e202cfd35479d1f6b1914a96a8c9f5c4c55c9c9dc19734d881b6
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer jpeg support plugin.
Package: gst1-mod-jpegformat
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14085
Filename: packages/gst1-mod-jpegformat_1.4.5-1_ramips_24kec.ipk
Size: 14867
MD5Sum: 0863592675c79bbdebf7146f97a606c7
SHA256sum: 8ca45bd58eb4ab28859855662bbdb42d6829e134401542a6bac36db648a54906
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer jpegformat support plugin.
Package: gst1-mod-lame
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1audio, lame-lib
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9117
Filename: packages/gst1-mod-lame_1.4.5-1_ramips_24kec.ipk
Size: 9952
MD5Sum: 1e0bed4e751f53d46cf7ac598096f249
SHA256sum: f470f772cbad5be25334c21137f6fded132c06400919816e0af0d4c8c074cb14
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer MP3 encoder (using LAME) plugin.
Package: gst1-mod-level
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8516
Filename: packages/gst1-mod-level_1.4.5-1_ramips_24kec.ipk
Size: 9333
MD5Sum: 8c5d525b53fbdafb213372907a9c4786
SHA256sum: e5dd9a314fcf10e2e261a5269f105a6fdf8d4a0d397dad48a6ea28eba686a7f7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio level plugin.
Package: gst1-mod-liveadder
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14324
Filename: packages/gst1-mod-liveadder_1.4.5-1_ramips_24kec.ipk
Size: 15148
MD5Sum: ff8a21964f9963b35226058661fa8bc8
SHA256sum: 3b6a2165dc3d77df9e8319b793682808d7183ae87b703899be0201147436cf9d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer liveadder support plugin.
Package: gst1-mod-mad
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1audio, libgst1tag, libid3tag, libmad
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5750
Filename: packages/gst1-mod-mad_1.4.5-1_ramips_24kec.ipk
Size: 6582
MD5Sum: 75bf652d02d736ed72345ac522bb5757
SHA256sum: 80aef6c32eeb959ef5d662189adcdacb38d1bb899e23076295ddb61b2edf7856
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer MP3 decoder (using MAD) plugin.
Package: gst1-mod-matroska
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1riff, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 104830
Filename: packages/gst1-mod-matroska_1.4.5-1_ramips_24kec.ipk
Size: 105518
MD5Sum: ca05e570be6079ec7cdd9544d0b04099
SHA256sum: 94070dad942628595d9bf44f04df9afd140ad4bb8895961e011cc1a0d3ac259a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer matroska support plugin.
Package: gst1-mod-mpeg2dec
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1video, libmpeg2
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9752
Filename: packages/gst1-mod-mpeg2dec_1.4.5-1_ramips_24kec.ipk
Size: 10584
MD5Sum: 8c3686f7036092b68a063a0eb5678f23
SHA256sum: 2daa87f22effba59e2d18225183c659a41c9a1e031129d47112b8373e90d38e5
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer MPEG decoder plugin.
Package: gst1-mod-mpegpsdemux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29830
Filename: packages/gst1-mod-mpegpsdemux_1.4.5-1_ramips_24kec.ipk
Size: 30665
MD5Sum: 5331dc79ec53827a892593c9701c9a66
SHA256sum: fa5428a35cc768e383ce718548df149801678d62614342dab4e52d74cfc6fbe9
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mpegpsdemux support plugin.
Package: gst1-mod-mpegpsmux
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17013
Filename: packages/gst1-mod-mpegpsmux_1.4.5-1_ramips_24kec.ipk
Size: 17786
MD5Sum: 1e0660449468c8101f8b6714b6726bff
SHA256sum: afbb031060986577c18aa7453ab19789eef1903f671a0a312eb0af096c270200
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mpegpsmux support plugin.
Package: gst1-mod-mulaw
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4294
Filename: packages/gst1-mod-mulaw_1.4.5-1_ramips_24kec.ipk
Size: 5082
MD5Sum: 063f1b85e89cf53d87f8d3f852b74f70
SHA256sum: 296e37ead2732a89def5dc14e8ce39c7b645f1138d695766fba659ba96ca1c74
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mulaw support plugin.
Package: gst1-mod-multifile
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16453
Filename: packages/gst1-mod-multifile_1.4.5-1_ramips_24kec.ipk
Size: 17252
MD5Sum: 7f0ab648a013107d286c2b5dec5f5bc7
SHA256sum: 0d19717d2b354cf68845fbd5a0d19f148aa2534b3373b70c811e88728d299aea
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer multiple files access plugin.
Package: gst1-mod-multipart
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10704
Filename: packages/gst1-mod-multipart_1.4.5-1_ramips_24kec.ipk
Size: 11531
MD5Sum: c402afa735a1964e5e9e5f45ab710692
SHA256sum: d24822d7ce940a7551690204eef6a40bf2ba1026884c28b802b34ae0ea2aa59a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer multipart stream handling plugin.
Package: gst1-mod-mxf
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 113530
Filename: packages/gst1-mod-mxf_1.4.5-1_ramips_24kec.ipk
Size: 114265
MD5Sum: 049997749dcd05bfeaac27d49d680f31
SHA256sum: 940c5414a9a84f39136da546fbcbcbb19b26381da0fcee3539d71b718fe7c03d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mxf support plugin.
Package: gst1-mod-navigationtest
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3568
Filename: packages/gst1-mod-navigationtest_1.4.5-1_ramips_24kec.ipk
Size: 4354
MD5Sum: 5337b6ff536a0a958e78d46b478d37b0
SHA256sum: dcd3fea4c005faaf1a4e7ee1187f380646812e12d8fe1310a45d7e70142d39c0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer navigationtest support plugin.
Package: gst1-mod-ogg
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1riff, libgst1tag, libgst1pbutils, libgst1video, libogg
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82484
Filename: packages/gst1-mod-ogg_1.4.5-1_ramips_24kec.ipk
Size: 83061
MD5Sum: 86dcc2fca155c13ffadda765ae0f420b
SHA256sum: c9d2bcb7d94631aa73cf5f4a007874f90fc1706b6cd003e03ea3de26b3dd86c9
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Ogg plugin.
Package: gst1-mod-oss4audio
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15725
Filename: packages/gst1-mod-oss4audio_1.4.5-1_ramips_24kec.ipk
Size: 16501
MD5Sum: 3c5a5ba1263054c5832d62f8bc0c958b
SHA256sum: c4c01ede48da81f7acecf7b597d66621174c865c53091b22a6ae6708bcedba64
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer OSS 4 audio support plugin.
Package: gst1-mod-ossaudio
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10563
Filename: packages/gst1-mod-ossaudio_1.4.5-1_ramips_24kec.ipk
Size: 11340
MD5Sum: 8e269c7cb5f09c40ddceb4bb74bb77fb
SHA256sum: 41cd28e94caf9c5cf8b6b47e3c2b93c725f3d38c73921f4d200276987f82c4a6
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer OSS audio support plugin.
Package: gst1-mod-pcapparse
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7604
Filename: packages/gst1-mod-pcapparse_1.4.5-1_ramips_24kec.ipk
Size: 8424
MD5Sum: 9cafa9f047ef8c7fc0ace1b45ac12665
SHA256sum: f2b751f12468efcebaa90749cb4f4971b12b729c2b1dcd3aa787e3fc2303f3b0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer pcapparse support plugin.
Package: gst1-mod-playback
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 113796
Filename: packages/gst1-mod-playback_1.4.5-1_ramips_24kec.ipk
Size: 114322
MD5Sum: 261640cd0fd2d1050ed74f83c24d4203
SHA256sum: 70fea3fa301e4398a64192fc496e94314ee825b7ffbeb49d021b55d60f60396b
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer media decoder (v2) plugin.
Package: gst1-mod-png
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, libpng
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9733
Filename: packages/gst1-mod-png_1.4.5-1_ramips_24kec.ipk
Size: 10553
MD5Sum: 21d1cca2530f89e4379aa555a46ff690
SHA256sum: 83165d07ebc5f4854b93ef1ab86892ef5e120bbe293d76c37304719d180a5bb1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer png support plugin.
Package: gst1-mod-pnm
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6871
Filename: packages/gst1-mod-pnm_1.4.5-1_ramips_24kec.ipk
Size: 7740
MD5Sum: bfe23b758a9752f19b6dbcc138a54426
SHA256sum: 3157ec04c8e84bc5dbd4b4ae30d4cb579b5a0eaade68836e2aca2b95f7c0d297
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer pnm support plugin.
Package: gst1-mod-rawparse
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15175
Filename: packages/gst1-mod-rawparse_1.4.5-1_ramips_24kec.ipk
Size: 15922
MD5Sum: f80d1da3f65cb55f241aa02793021c9b
SHA256sum: bf554713230f5a02f0866d4a9a8220fa2fca35e21c9b32f2aad355a1c6ded426
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer rawparse support plugin.
Package: gst1-mod-replaygain
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16123
Filename: packages/gst1-mod-replaygain_1.4.5-1_ramips_24kec.ipk
Size: 16872
MD5Sum: 26455a9ed1db40a87d40aebf27cddd2e
SHA256sum: 5416255137d7022e9e24d476cbbd08652d206a0c6367e5de5207c330c1308a2f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer volume normalization plugin.
Package: gst1-mod-rfbsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16608
Filename: packages/gst1-mod-rfbsrc_1.4.5-1_ramips_24kec.ipk
Size: 17406
MD5Sum: 0cf80fa2295cd342c36c51147580d894
SHA256sum: c395d0770b88674f80f35776ce291aeec0a4c5bdf48f04e751d59ddb332ac400
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer librfb support plugin.
Package: gst1-mod-rtp
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1rtp, libgst1tag, libgst1pbutils, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 142508
Filename: packages/gst1-mod-rtp_1.4.5-1_ramips_24kec.ipk
Size: 143007
MD5Sum: 66fb280d81c7e2ac873e55d1aba0420b
SHA256sum: 5dc7d01b928c534a509044e9fc02972d223b97e0cfd683f2e4020e73e1eee311
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTP plugin.
Package: gst1-mod-rtpmanager
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1net, libgst1rtp, libgst1tag, libgst1pbutils, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 112011
Filename: packages/gst1-mod-rtpmanager_1.4.5-1_ramips_24kec.ipk
Size: 112574
MD5Sum: c464510d5ddbf2a7c61262ccc1f64788
SHA256sum: af9a1371c3b25c7038fd28e2f8e4755c0e3d03fa7d22187b77e7673adca47f9a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTP manager plugin.
Package: gst1-mod-rtsp
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1net, libgst1rtp, libgst1rtsp, libgst1sdp
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52232
Filename: packages/gst1-mod-rtsp_1.4.5-1_ramips_24kec.ipk
Size: 52976
MD5Sum: 1fd15c645ae745f10448532341e1ad69
SHA256sum: 656c24b75082930aabc40e32652154224c95ba408f1c874f0f0c0e8a157dfbb6
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTSP plugin.
Package: gst1-mod-sdpelem
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1rtp, libgst1sdp
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11228
Filename: packages/gst1-mod-sdpelem_1.4.5-1_ramips_24kec.ipk
Size: 12023
MD5Sum: 2ad961b1591a14abb909ecf03daca8a2
SHA256sum: 82a4268b6bddad9018a909b16fea055d654aaf4bc1a7080d6d9e3faa1b194657
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer sdp support plugin.
Package: gst1-mod-segmentclip
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6973
Filename: packages/gst1-mod-segmentclip_1.4.5-1_ramips_24kec.ipk
Size: 7843
MD5Sum: 7704f9ede8eab21717a1c5805206b796
SHA256sum: c448286e8c8a42d73b14d3a3a1a53b94c33c03d5e7917c9078670f4a4baa53bf
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer segmentclip support plugin.
Package: gst1-mod-shapewipe
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9839
Filename: packages/gst1-mod-shapewipe_1.4.5-1_ramips_24kec.ipk
Size: 10685
MD5Sum: f2d673a99da25fb5bf897e81f29ba448
SHA256sum: fc835b8127bff0ba51d41a2077e70e74a1f1cd6a843382f08f1621f87ba05884
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer shapewipe support plugin.
Package: gst1-mod-shm
Version: 1.4.5-1
Depends: libc, libgstreamer1, librt
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15803
Filename: packages/gst1-mod-shm_1.4.5-1_ramips_24kec.ipk
Size: 16585
MD5Sum: c307c3692c34763ab2b3973117b54217
SHA256sum: 5494b9884e3b13553343e7fc44354571fec46130ad4c6077cc1ae810425831f1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer POSIX shared memory source and sink plugin.
Package: gst1-mod-siren
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1rtp
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24832
Filename: packages/gst1-mod-siren_1.4.5-1_ramips_24kec.ipk
Size: 25611
MD5Sum: 3a6319ef23c1e447b592a2e7a3f625d6
SHA256sum: b6819e66aa278a151de7373256b3d52e89df345dc10da1b58b6d1283b589c9fb
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer siren support plugin.
Package: gst1-mod-smpte
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19448
Filename: packages/gst1-mod-smpte_1.4.5-1_ramips_24kec.ipk
Size: 20126
MD5Sum: 9135982c806fdc2936c76884be970432
SHA256sum: be434a568db36ef3c8038d69587edb2c0e9e339774f843c8b4b431558f4f459c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer smpte support plugin.
Package: gst1-mod-souphttpsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libsoup
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20786
Filename: packages/gst1-mod-souphttpsrc_1.4.5-1_ramips_24kec.ipk
Size: 21561
MD5Sum: 47854d6d16e6ea135dfffb82dcde342c
SHA256sum: 2aef66651982d76c34bb29ffcd1f477d6f7e3ec6d9c845b41d98b0a0902e45ae
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer soup input plugin.
Package: gst1-mod-spectrum
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1fft
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9210
Filename: packages/gst1-mod-spectrum_1.4.5-1_ramips_24kec.ipk
Size: 10026
MD5Sum: d43d20fda7dec1a27d52ffedc80a6fd1
SHA256sum: 6d58cfd68c585a4180195628862e56de068ff9bd965f79231a0fa487d5720585
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer spectrum data output plugin.
Package: gst1-mod-speed
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6549
Filename: packages/gst1-mod-speed_1.4.5-1_ramips_24kec.ipk
Size: 7406
MD5Sum: 0b936c447c12f14b4d1a2b44ca938891
SHA256sum: 6bc25b8ffdb9a78854112170bedf0f256d8f660cb966e24d827156268c1c4f6d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer speed support plugin.
Package: gst1-mod-subenc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5071
Filename: packages/gst1-mod-subenc_1.4.5-1_ramips_24kec.ipk
Size: 5884
MD5Sum: ee71ce352237f8b648549a4c1710b656
SHA256sum: 162c6f11a0e72c764c402167fa2d67b20fb602a9116a0af93b8993db0631a1ca
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer subenc support plugin.
Package: gst1-mod-tcp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32970
Filename: packages/gst1-mod-tcp_1.4.5-1_ramips_24kec.ipk
Size: 33737
MD5Sum: 66f4359c37ad1286fc2a6b9dd7cbe732
SHA256sum: cd5d521c88009e205a587235312d54df0217eb589e35e5cd1d0b7cfb3700d641
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer TCP plugin.
Package: gst1-mod-theora
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag, libgst1video, libogg, libtheora
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21288
Filename: packages/gst1-mod-theora_1.4.5-1_ramips_24kec.ipk
Size: 22034
MD5Sum: 9c0bba17c40f29706ec5518df6223519
SHA256sum: 6b89678018a480000154f227c299798033a1ad9b59d7c6537429d70bbbcc8a05
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Theora plugin.
Package: gst1-mod-typefindfunctions
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33558
Filename: packages/gst1-mod-typefindfunctions_1.4.5-1_ramips_24kec.ipk
Size: 34512
MD5Sum: 99223631bec1191aed5487b966c50cd1
SHA256sum: 2eea2823a6bf98610eecac92b0e20a03fa7e71a35dabe5b029571973d6785987
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer 'typefind' functions plugin.
Package: gst1-mod-udp
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1net
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21364
Filename: packages/gst1-mod-udp_1.4.5-1_ramips_24kec.ipk
Size: 22114
MD5Sum: df7ef32b651942676d01634b2ff72426
SHA256sum: c06de93ede396af1f886441988498bb4231cae97112e9189b0a856d353312b25
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer UDP plugin.
Package: gst1-mod-video4linux2
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, libgst1allocators, libv4l
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 73592
Filename: packages/gst1-mod-video4linux2_1.4.5-1_ramips_24kec.ipk
Size: 74236
MD5Sum: 41acb751b0d07c204cae4cf5a8ebf23f
SHA256sum: cc7ea2c204e3cc44c30dd03ec55c639eeb13d5fc250d47e75d911d19358a1f4e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video4linux2 support plugin.
Package: gst1-mod-videobox
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26259
Filename: packages/gst1-mod-videobox_1.4.5-1_ramips_24kec.ipk
Size: 27001
MD5Sum: 3b567bf5be5644709fe6de603dba6ed1
SHA256sum: c48429f716a7dd387645efa3049b3ca8bbd29df339ff64abe4bb59825aa7236c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videobox support plugin.
Package: gst1-mod-videoconvert
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20898
Filename: packages/gst1-mod-videoconvert_1.4.5-1_ramips_24kec.ipk
Size: 21692
MD5Sum: 54cb4b85848f2a2adc0d63a821cb82c9
SHA256sum: 5c304295fff164889c67bd114d00f6a58a611c557a86978c94f0ba4bd48c1890
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video format conversion plugin.
Package: gst1-mod-videocrop
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10317
Filename: packages/gst1-mod-videocrop_1.4.5-1_ramips_24kec.ipk
Size: 11133
MD5Sum: c630a1a18f395243c7cf62d6ef7136a9
SHA256sum: 59b56be49bbe615f05eb0f2e838151d0a18d4bc6db0396e18ad6a2f8ef809638
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videocrop support plugin.
Package: gst1-mod-videofilter
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18716
Filename: packages/gst1-mod-videofilter_1.4.5-1_ramips_24kec.ipk
Size: 19539
MD5Sum: c080e7c9177c224c7b01f02d5ed0f836
SHA256sum: a48f95ae23b9211e2658275ff7868053c8a9f3d0b8059d74ff13ba310f761797
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videofilter support plugin.
Package: gst1-mod-videomixer
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41480
Filename: packages/gst1-mod-videomixer_1.4.5-1_ramips_24kec.ipk
Size: 42289
MD5Sum: 4996142b012089c82487831782ea50b2
SHA256sum: 21d3d4e003e65a25a74437cad6acc519be2efc7daf6bcb8cdfdac0acc627247f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videomixer support plugin.
Package: gst1-mod-videorate
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11626
Filename: packages/gst1-mod-videorate_1.4.5-1_ramips_24kec.ipk
Size: 12455
MD5Sum: 24773738d78fdf28d1e8364785717ded
SHA256sum: 98db639bdeccfe314823c52b514d4c5080a8e139bb3c89271780e3d9eedabe3e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Adjusts video frames plugin.
Package: gst1-mod-videoscale
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33832
Filename: packages/gst1-mod-videoscale_1.4.5-1_ramips_24kec.ipk
Size: 34676
MD5Sum: 70125daa40b4a546f8046dc9e3300f22
SHA256sum: 3824f5ce88c2561825faaab1e46306ecd33ae14f47f912f2ddcb1a07ad0f339f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Resizes video plugin.
Package: gst1-mod-videotestsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, liboil
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17627
Filename: packages/gst1-mod-videotestsrc_1.4.5-1_ramips_24kec.ipk
Size: 18438
MD5Sum: 5a3385369ef4dd7bf115c791e4ce74bd
SHA256sum: 3fa6cef94738998373cbc8ebdc9648c10ae1d1a400c3711020dd5ada92b93049
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video test plugin.
Package: gst1-mod-volume
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1controller, liboil
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9530
Filename: packages/gst1-mod-volume_1.4.5-1_ramips_24kec.ipk
Size: 10344
MD5Sum: 2f36db76e7eab8c075b11a410389a719
SHA256sum: 280f62a19eeea227f2636d63121f30e590e34ea846b45bb8bc991cbdd40d553f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer volume plugin.
Package: gst1-mod-vorbis
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, gst1-mod-ogg, libvorbis
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16955
Filename: packages/gst1-mod-vorbis_1.4.5-1_ramips_24kec.ipk
Size: 17729
MD5Sum: a12e38ed085fea09bfe746fa0a1088f9
SHA256sum: b07d83272135a63719f1770bab3325033265f64e429610446e2a00037ed6acb2
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Vorbis plugin.
Package: gst1-mod-vpx
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag, libgst1video, libvpx
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23754
Filename: packages/gst1-mod-vpx_1.4.5-1_ramips_24kec.ipk
Size: 24390
MD5Sum: be639a1ab90ac4bd3a4ab543b6a55697
SHA256sum: 6eb9229dafc56b2d61e8819bb1456675cafa2bb50d8cfd2ec9b282ff552020ef
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer vpx support plugin.
Package: gst1-mod-wavenc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1riff
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9654
Filename: packages/gst1-mod-wavenc_1.4.5-1_ramips_24kec.ipk
Size: 10473
MD5Sum: aacd69412bb189d2da9c33e3174d34fe
SHA256sum: dd56537942a2aa8bebcbff412dae46818d72a4c1c6f61133b85c635c488081f4
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Wav encoder plugin.
Package: gst1-mod-wavparse
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1riff, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22053
Filename: packages/gst1-mod-wavparse_1.4.5-1_ramips_24kec.ipk
Size: 22824
MD5Sum: 7a3d740381f01a1783e458379d3bc49d
SHA256sum: 6eb43a6c8e3050ce66186f538ed3fee61fc7c6437e652f4b86e3ad3caebaddf2
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Wav parser plugin.
Package: gst1-plugins-bad
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1photography, libgst1basecamerabinsrc, gst1-mod-adpcmdec, gst1-mod-adpcmenc, gst1-mod-aiff, gst1-mod-asfmux, gst1-mod-autoconvert, gst1-mod-bayer, gst1-mod-camerabin2, gst1-mod-dataurisrc, gst1-mod-debugutilsbad, gst1-mod-dvdspu, gst1-mod-festival, gst1-mod-frei0r, gst1-mod-id3tag, gst1-mod-jpegformat, gst1-mod-liveadder, gst1-mod-mpegpsdemux, gst1-mod-mpegpsmux, gst1-mod-mxf, gst1-mod-pcapparse, gst1-mod-pnm, gst1-mod-rawparse, gst1-mod-rfbsrc, gst1-mod-sdpelem, gst1-mod-segmentclip, gst1-mod-shm, gst1-mod-siren, gst1-mod-speed, gst1-mod-subenc
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/gst1-plugins-bad_1.4.5-1_ramips_24kec.ipk
Size: 1072
MD5Sum: 791bb23a2ce76662cfe567764fb38c82
SHA256sum: 556d7e7fea714b71c3c63332e11f4b26c3c30b1c37b2d415b8aa6c759db2b7e5
Description: GStreamer plugins collection (bad)
Package: gst1-plugins-base
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1allocators, libgst1app, libgst1audio, libgst1fft, libgst1pbutils, libgst1riff, libgst1rtp, libgst1rtsp, libgst1sdp, libgst1tag, libgst1video, gst1-mod-alsa, gst1-mod-app, gst1-mod-audioconvert, gst1-mod-audiorate, gst1-mod-audioresample, gst1-mod-audiotestsrc, gst1-mod-playback, gst1-mod-gio, gst1-mod-ogg, gst1-mod-tcp, gst1-mod-theora, gst1-mod-typefindfunctions, gst1-mod-videoconvert, gst1-mod-videorate, gst1-mod-videoscale, gst1-mod-videotestsrc, gst1-mod-volume, gst1-mod-vorbis
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/gst1-plugins-base_1.4.5-1_ramips_24kec.ipk
Size: 1028
MD5Sum: 2bb5967d2712aee766583862ab49345f
SHA256sum: c70238e05eda74408ec8b525487d03bb9fbe4102230771028366bcaf854c8bf7
Description: GStreamer plugins collection (base)
Package: gst1-plugins-good
Version: 1.4.5-1
Depends: libc, libgstreamer1, gst1-mod-alaw, gst1-mod-alpha, gst1-mod-alphacolor, gst1-mod-apetag, gst1-mod-audiofx, gst1-mod-audioparsers, gst1-mod-auparse, gst1-mod-autodetect, gst1-mod-avi, gst1-mod-cutter, gst1-mod-debug, gst1-mod-deinterlace, gst1-mod-dtmf, gst1-mod-effectv, gst1-mod-equalizer, gst1-mod-flac, gst1-mod-flv, gst1-mod-flxdec, gst1-mod-goom2k1, gst1-mod-goom, gst1-mod-icydemux, gst1-mod-id3demux, gst1-mod-imagefreeze, gst1-mod-interleave, gst1-mod-isomp4, gst1-mod-jpeg, gst1-mod-level, gst1-mod-matroska, gst1-mod-mulaw, gst1-mod-multifile, gst1-mod-multipart, gst1-mod-navigationtest, gst1-mod-oss4audio, gst1-mod-ossaudio, gst1-mod-png, gst1-mod-replaygain, gst1-mod-rtpmanager, gst1-mod-rtp, gst1-mod-rtsp, gst1-mod-shapewipe, gst1-mod-smpte, gst1-mod-souphttpsrc, gst1-mod-spectrum, gst1-mod-udp, gst1-mod-video4linux2, gst1-mod-videobox, gst1-mod-videocrop, gst1-mod-videofilter, gst1-mod-videomixer, gst1-mod-vpx, gst1-mod-wavenc, gst1-mod-wavparse
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: packages/gst1-plugins-good_1.4.5-1_ramips_24kec.ipk
Size: 1217
MD5Sum: 33be3e8448ee3a547ab5267852e07a2e
SHA256sum: 9462c1f9580c3d8996f1680953922db2e5d3c2b5bd22b4f68b74a5a3e919dfab
Description: GStreamer open source multimedia framework
.
This meta package contains only dependencies to the other plugins from
the good plugins collection.
Package: gst1-plugins-ugly
Version: 1.4.5-1
Depends: libc, libgstreamer1, gst1-mod-asf, gst1-mod-lame, gst1-mod-mad, gst1-mod-mpeg2dec
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/gst1-plugins-ugly_1.4.5-1_ramips_24kec.ipk
Size: 879
MD5Sum: 39e0072fc657502a1c2549c69c117573
SHA256sum: c4afa7caaab7add5880c51e19d99987c8ab57c99991b051025b8b0436954a1da
Description: GStreamer plugins collection (ugly)
Package: gstreamer1-libs
Version: 1.4.5-1
Depends: libc, gstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/gstreamer1-libs_1.4.5-1_ramips_24kec.ipk
Size: 894
MD5Sum: 98177e043ae9a26f482598184d4356f6
SHA256sum: 45553883640f43c2de3897adfff897a5c87ce2ee770419cb7ee1b5a6b4abea09
Description: GStreamer open source multimedia framework
.
This meta package contains only dependencies on the other GStreamer
componenents.
Package: gstreamer1-plugins-base
Version: 1.4.5-1
Depends: libc, gst1-plugins-base, gstreamer1-libs
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/gstreamer1-plugins-base_1.4.5-1_ramips_24kec.ipk
Size: 871
MD5Sum: c48aa4428c71634a712330076a123bc2
SHA256sum: 7ae35ae87047dc6019d8eaef65a9f3b7f11e6588c40eece84edf1c83042ba1c1
Description: GStreamer plugins collection (base)
Package: gstreamer1-utils
Version: 1.4.5-1
Depends: libc, libgstreamer1, gstreamer1-libs
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23962
Filename: packages/gstreamer1-utils_1.4.5-1_ramips_24kec.ipk
Size: 24415
MD5Sum: 110b915e07a7ceac63597974a9f16630
SHA256sum: 9567c32f53b61fcb691e5b2f204e36497562dfff42168ab83c5d40c4b4ab12c0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer utilities.
Package: gstreamer1
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1check, libgst1controller, libgst1net
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/gstreamer1_1.4.5-1_ramips_24kec.ipk
Size: 864
MD5Sum: ab6a65ec7f05d25cd0d1b6fae04752f5
SHA256sum: 4cdee669ba4e89b040aee87f5925534f8ca444ebcf4630c662a9374aa96cd82e
Description: GStreamer (All libraries)
Package: halog
Version: 1.5.11-02
Depends: libc, haproxy
Source: feeds/packages/net/haproxy
License: GPL-2.0
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20893
Filename: packages/halog_1.5.11-02_ramips_24kec.ipk
Size: 21609
MD5Sum: 2659d1f41c19c75df8f18c2aa3662ed4
SHA256sum: 01ac80d40702c828f2639b305bc51ed333f51cb2e0eaa25a7309ef84257840fe
Description: HAProxy Log Analyzer
Package: hamlib-adat
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11539
Filename: packages/hamlib-adat_1.2.15.3-3_ramips_24kec.ipk
Size: 12290
MD5Sum: b2b893a7e6fa6cfafbf2784c4bb5c479
SHA256sum: 9c9d41ca4201d220e937b0aec400d5f24eeece6d3a485d1f26f7c0824be32d27
Description: for ADAT
Package: hamlib-alinco
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5489
Filename: packages/hamlib-alinco_1.2.15.3-3_ramips_24kec.ipk
Size: 6211
MD5Sum: 9716d8adcf7c14ce40b754978898af9d
SHA256sum: 02791222427c5bc081f7642ff8b7da6d487d38c7bad0c6e8e03e8ff032ad136d
Description: for Alinco
Package: hamlib-amsat
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2067
Filename: packages/hamlib-amsat_1.2.15.3-3_ramips_24kec.ipk
Size: 2827
MD5Sum: 7035b887ddc85195d67b68e9b40fabcf
SHA256sum: 9ddf62c16a64d530a894886d93aa6408b73639842895ec7bec9fe79afac2b2e2
Description: for AMSAT
Package: hamlib-aor
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25000
Filename: packages/hamlib-aor_1.2.15.3-3_ramips_24kec.ipk
Size: 25565
MD5Sum: aaaa2287dc43940c16ca3907dce1f9b0
SHA256sum: 17160961845e63c90c65cf7107cb78bfc38b18e592f696628f06f45d7044b19d
Description: for AOR
Package: hamlib-ars
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4791
Filename: packages/hamlib-ars_1.2.15.3-3_ramips_24kec.ipk
Size: 5502
MD5Sum: 48e1e2a5f5c109074a4be9f671118e90
SHA256sum: d04f6f237f7f6a650bf036c607c729d02b11467032c0fada6d8d645dec417b67
Description: for ARS
Package: hamlib-celestron
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2822
Filename: packages/hamlib-celestron_1.2.15.3-3_ramips_24kec.ipk
Size: 3574
MD5Sum: ae9b772a66eefcc6812c6798bc77681d
SHA256sum: 8dbc55e5b0458e8a2ed237daa21ded64c5888216fc6e3880b4b0293b3cedad1e
Description: for Celestron
Package: hamlib-drake
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6917
Filename: packages/hamlib-drake_1.2.15.3-3_ramips_24kec.ipk
Size: 7694
MD5Sum: e109fe1c87a33595173e3c723da9c7d3
SHA256sum: 98c23810dcc1a1662aa825ad1232e14f1cdb77858f21c0d9411f5b733d51464e
Description: for Drake
Package: hamlib-dummy
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13466
Filename: packages/hamlib-dummy_1.2.15.3-3_ramips_24kec.ipk
Size: 14141
MD5Sum: 88792b594b228f1e09d756d742588dae
SHA256sum: 71910550dcf75afc218462f18cd118f480fc671bce721efd50d281067256a6da
Description: for dummy
Package: hamlib-easycomm
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2536
Filename: packages/hamlib-easycomm_1.2.15.3-3_ramips_24kec.ipk
Size: 3298
MD5Sum: 58ba96b55d5ab3ecd8d4c3131a23d593
SHA256sum: 08d43c977209dd30ba19b60be1239762e894ed2643200360c5a8b3ca851b5dd2
Description: for EasyComm
Package: hamlib-flexradio
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7102
Filename: packages/hamlib-flexradio_1.2.15.3-3_ramips_24kec.ipk
Size: 7879
MD5Sum: 16919e3e18a953aaf52e6ba51cd61fa7
SHA256sum: e37d81351dedee1e5ec8432d1c4fed35ce18f9a3f440de65f2d8b052fafed38b
Description: for FlexRadio
Package: hamlib-fodtrack
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1917
Filename: packages/hamlib-fodtrack_1.2.15.3-3_ramips_24kec.ipk
Size: 2677
MD5Sum: 1b0a79857e9b6a401911e33e7b290275
SHA256sum: 3b804072860db0c3f545c63a4ad7b7c231b50df78b20d0132d838d1a7afda3dd
Description: for FodTrack
Package: hamlib-gs232a
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3613
Filename: packages/hamlib-gs232a_1.2.15.3-3_ramips_24kec.ipk
Size: 4340
MD5Sum: 3267b224dc2d85a3a52804223229b72b
SHA256sum: f9c77a0855fe0d0f09baeb7b310bdb03f1fade9cab72d47c576fb0f4af1d7c97
Description: for GS-232A
Package: hamlib-heathkit
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2458
Filename: packages/hamlib-heathkit_1.2.15.3-3_ramips_24kec.ipk
Size: 3226
MD5Sum: 3e8be71698907eaf149ae1cdce61aec4
SHA256sum: 3a0853f993fbb210b41081752d1cc65e779d8a24ea4a4b35d664a85a0f19f93a
Description: for Heathkit
Package: hamlib-icom
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39114
Filename: packages/hamlib-icom_1.2.15.3-3_ramips_24kec.ipk
Size: 38847
MD5Sum: e5647b8bca0117fe125f594b0c8576dd
SHA256sum: 4b50154b657385463785b9eaeae629ce6899a4f5f7d0d0520e05a3dd65945961
Description: for ICOM
Package: hamlib-jrc
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8648
Filename: packages/hamlib-jrc_1.2.15.3-3_ramips_24kec.ipk
Size: 9389
MD5Sum: 54d5e14e9d69e2150425145c349c7d31
SHA256sum: 323e8988c72cbfdcca29426010927750d0691a8a51ffc6d2979763aa9955210b
Description: for JRC
Package: hamlib-kachina
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2709
Filename: packages/hamlib-kachina_1.2.15.3-3_ramips_24kec.ipk
Size: 3459
MD5Sum: 4a4dfd15d24cc148027a3116cf5668fd
SHA256sum: c7ae6612895789dcd41dcbc971fa934e696aafcb0e2d55689f7c5f7b373a9f18
Description: for Kachina
Package: hamlib-kenwood
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57972
Filename: packages/hamlib-kenwood_1.2.15.3-3_ramips_24kec.ipk
Size: 58463
MD5Sum: 4d71e8800788703f2b3c9422390829ca
SHA256sum: b6aeb98419b30cd3d4262683820eb75dfa25c019f310768b1ad14bb16155e568
Description: for Kenwood
Package: hamlib-kit
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7544
Filename: packages/hamlib-kit_1.2.15.3-3_ramips_24kec.ipk
Size: 8293
MD5Sum: 75e865126506b7027e1fd01e4765d1c5
SHA256sum: 88d1e64efc85229688f1ded1dff19162fbe5783645aec6b20e896d34cc91469f
Description: for kits
Package: hamlib-lowe
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3329
Filename: packages/hamlib-lowe_1.2.15.3-3_ramips_24kec.ipk
Size: 4078
MD5Sum: 0331405a0923c493dfdaa2103d60f4ea
SHA256sum: d6225077d3d8a1b4815dc691a2d1cd96a8adc8d71f62f7b69a05504aca23dd84
Description: for Lowe
Package: hamlib-m2
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3027
Filename: packages/hamlib-m2_1.2.15.3-3_ramips_24kec.ipk
Size: 3782
MD5Sum: d4cd27c14f0417829bed172a4cf2ea05
SHA256sum: 72df2c78bbd920568fdae191ba0e2252ce3f8306d6b4a419a2e216a90f2e9504
Description: for M2
Package: hamlib-pcr
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10102
Filename: packages/hamlib-pcr_1.2.15.3-3_ramips_24kec.ipk
Size: 10805
MD5Sum: a5579930c47a248a9102903ff5d1a63c
SHA256sum: d5592f46ec558d14b6d6d71dd7b9c6ba4833148104f11ee050a497d764efe008
Description: for PCR
Package: hamlib-prm80
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3585
Filename: packages/hamlib-prm80_1.2.15.3-3_ramips_24kec.ipk
Size: 4338
MD5Sum: 1d4d0f100773a2aecd66c3919c871ff5
SHA256sum: d3f1fead7189eed8349d0c8d0544082a3bafc3134347b499d2cb422db6da0045
Description: for PRM80
Package: hamlib-racal
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7401
Filename: packages/hamlib-racal_1.2.15.3-3_ramips_24kec.ipk
Size: 8182
MD5Sum: 5a1a98acb237ea7bc08ab6805b313a6d
SHA256sum: 8d6bc7dcf39edaa115ac81ffbbc5b19dd54da67b46ae9b92a3afbe383dd3f131
Description: for Racal
Package: hamlib-rft
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2021
Filename: packages/hamlib-rft_1.2.15.3-3_ramips_24kec.ipk
Size: 2753
MD5Sum: fd3508c1d7eeba9987da0b3fc1a91d19
SHA256sum: eba943211d8ff1e350094a2f39fab2ad6df13fad47e671703fc6aa4dd693d52c
Description: for RFT
Package: hamlib-rotorez
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3820
Filename: packages/hamlib-rotorez_1.2.15.3-3_ramips_24kec.ipk
Size: 4549
MD5Sum: 62d33118554c2197ac8b9794e26ace70
SHA256sum: b37e01eac466d5596bb07ac0c84d9f249bdc67a0f8d2063f7629435e26d96387
Description: for Rotor-EZ
Package: hamlib-rs
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3910
Filename: packages/hamlib-rs_1.2.15.3-3_ramips_24kec.ipk
Size: 4629
MD5Sum: c1431ee832732697b6f0566dd1d62e69
SHA256sum: 315736ef7e3062805d603463a435f37c579d597084fcca66dacc566577d2e00e
Description: for R&S
Package: hamlib-sartek
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1857
Filename: packages/hamlib-sartek_1.2.15.3-3_ramips_24kec.ipk
Size: 2617
MD5Sum: e60cb185f67308b1361f5bbd999c5ab4
SHA256sum: f472009a3aa919d4038ddfc156c1c63d3250e1156b154640e82d41ec001b7fd1
Description: for SARtek
Package: hamlib-skanti
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4458
Filename: packages/hamlib-skanti_1.2.15.3-3_ramips_24kec.ipk
Size: 5177
MD5Sum: 570fc9d334fb945fe69be6bb7648f761
SHA256sum: fbe328978d5a7e5de44d8de65342ccc2adab4a181a0e65daf1187eae442deab3
Description: for Skanti
Package: hamlib-spid
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3645
Filename: packages/hamlib-spid_1.2.15.3-3_ramips_24kec.ipk
Size: 4369
MD5Sum: 505c8a759a1dca017357bde0651cc4e6
SHA256sum: 2cfb92284c10cec313d8d5853e25094ca9b8553c597c75b9c1c184c59a3f415b
Description: for SPID
Package: hamlib-tapr
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1571
Filename: packages/hamlib-tapr_1.2.15.3-3_ramips_24kec.ipk
Size: 2318
MD5Sum: af5705df4cd92da47479a982e11a0be1
SHA256sum: e6c3722f78a4bc5a72f51e63c5fdb2691eac7cefc6deef63fd2324104f8aba31
Description: for TAPR
Package: hamlib-tentec
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28141
Filename: packages/hamlib-tentec_1.2.15.3-3_ramips_24kec.ipk
Size: 28792
MD5Sum: 955964aacf90f2fe87a12eea68e2559a
SHA256sum: 43a71f2e738168a23862215d5fbf9164661ba04c967cbebcaf0d0fc2ba6a0e71
Description: for TenTec
Package: hamlib-ts7400
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2915
Filename: packages/hamlib-ts7400_1.2.15.3-3_ramips_24kec.ipk
Size: 3679
MD5Sum: b3a4455a38cae03ba66e637c7b88136d
SHA256sum: 065f6f5a2e88cb16ecd342ca9b537f9a018cef6807e957e15e2736ea4c868ef2
Description: for TS-7400
Package: hamlib-tuner
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3878
Filename: packages/hamlib-tuner_1.2.15.3-3_ramips_24kec.ipk
Size: 4613
MD5Sum: be8f779af6791966ff3e2951f292d8b8
SHA256sum: 47d662608b71be5efcc0435082ccbcb0d2e9b9ea97b3c93ae3dd00e86bc76e8c
Description: for Video for Linux tuner
Package: hamlib-uniden
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7452
Filename: packages/hamlib-uniden_1.2.15.3-3_ramips_24kec.ipk
Size: 8206
MD5Sum: 4abb223c2ed05a2aad849d311c67c6ed
SHA256sum: afc2f028b1776aeab6ade5dbbb4b729c1051c28df9815589bebad04d3b03af06
Description: for Uniden
Package: hamlib-wj
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3430
Filename: packages/hamlib-wj_1.2.15.3-3_ramips_24kec.ipk
Size: 4185
MD5Sum: 72f29d5ccf2e85a013f37f4145f63182
SHA256sum: 2a309a0141e796576b2ee2da89c2ca1323013db75689dab2d0fa676a431c2288
Description: for Watkins - Johnson
Package: hamlib-yaesu
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74204
Filename: packages/hamlib-yaesu_1.2.15.3-3_ramips_24kec.ipk
Size: 74388
MD5Sum: d4397d707ce2e3fc2f09786f8291625d
SHA256sum: fce2f07f6bb01324db482cb527ba7c5e5ddad322d4c552ddecd70960169b4618
Description: for Yaesu
Package: hamlib
Version: 1.2.15.3-3
Depends: libc, libpthread, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: utils
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82399
Filename: packages/hamlib_1.2.15.3-3_ramips_24kec.ipk
Size: 82998
MD5Sum: cdd5a424472678b362c26985771b5d42
SHA256sum: ae511d60b50b3456d261b1827c6f26ddb9433604263cd2c2c1aecfadca8d20f4
Description: Ham Radio Control Libraries is a development effort to provide a consistent
interface for programmers wanting to incorporate radio control in their
programs.
This package contains the utilities and daemons.
Package: haproxy-nossl
Version: 1.5.11-02
Depends: libc, libpcre, libltdl, zlib, libpthread
Source: feeds/packages/net/haproxy
License: GPL-2.0
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243785
Filename: packages/haproxy-nossl_1.5.11-02_ramips_24kec.ipk
Size: 244127
MD5Sum: 8e26cb6b36defa7710260a3d1a7e8f58
SHA256sum: 33eec6678e541cf7e4591b76342e6f7e72bbc444a86d29c9d57fb410ecc3403d
Description: Open source Reliable, High Performance TCP/HTTP Load Balancer.
This package is built without SSL support.
Package: haproxy
Version: 1.5.11-02
Depends: libc, libpcre, libltdl, zlib, libpthread, libopenssl
Source: feeds/packages/net/haproxy
License: GPL-2.0
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 264507
Filename: packages/haproxy_1.5.11-02_ramips_24kec.ipk
Size: 264297
MD5Sum: a2eaa39e0998cf803cf052cf589e10b0
SHA256sum: 6507dead855f6875c3f899b40c61b332860b0363ebcf20ad24ce03b3def08e87
Description: Open source Reliable, High Performance TCP/HTTP Load Balancer.
This package is built with SSL support.
Package: haserl
Version: 0.9.34-1
Depends: libc
Source: feeds/packages/utils/haserl
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10550
Filename: packages/haserl_0.9.34-1_ramips_24kec.ipk
Size: 11277
MD5Sum: 26d1d64d9fcf5bfebe0d7b66c8e6a39b
SHA256sum: 0dc9f87e6ecb760529a647c4910a89c63669e8a71e3bc0aa3d48809f8a87d50c
Description: A CGI wrapper to embed shell scripts in HTML documents
Package: haveged
Version: 1.9.1-5
Depends: libc, libhavege
Source: feeds/packages/utils/haveged
License: GPLv3
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6997
Filename: packages/haveged_1.9.1-5_ramips_24kec.ipk
Size: 7787
MD5Sum: e2f71cbb28963e7681705f1d7475f6d4
SHA256sum: cdbd33c6bcc6991a67f76c72fcf7d3b47c829fac96c51c9f63ee89cb62a953e5
Description: Feeds the kernel entropy pool by timing CPU loops.
Package: hd-idle
Version: 1.04-1
Depends: libc
Source: feeds/packages/utils/hd-idle
License: GPL-2.0
Section: utils
Maintainer: Lim Guo Wei <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4844
Filename: packages/hd-idle_1.04-1_ramips_24kec.ipk
Size: 5629
MD5Sum: 0d33a1176d76c687699e18774b8eafce
SHA256sum: bc4b8ab23fbb03f040dc948dcb9f513daf310306738c9f14745bb4be26dfaad7
Description: hd-idle is a utility program for spinning-down external disks after a period of idle time.
Package: hdparm
Version: 9.45-1
Depends: libc
Source: feeds/packages/utils/hdparm
License: BSD-Style Open Source License
Section: utils
Maintainer: Richard Kunze <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42426
Filename: packages/hdparm_9.45-1_ramips_24kec.ipk
Size: 43182
MD5Sum: 0e4748eb9fa05676e5c0ab9835d881dd
SHA256sum: bed3963a04d6f159ea31920972875b1ecc3d1297af35ae67827718f19dbc9ac4
Description: get/set SATA/IDE device parameters
Package: hidapi
Version: 0.8.0-rc1-1
Depends: libc, libusb-1.0, libiconv, librt
Source: feeds/packages/libs/hidapi
License: BSD-3-Clause
LicenseFiles: LICENSE-bsd.txt
Section: libs
Maintainer: Paul Fertser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11639
Filename: packages/hidapi_0.8.0-rc1-1_ramips_24kec.ipk
Size: 12552
MD5Sum: 4dd36fa0e8c0968dd8f1c34f0ddad0b1
SHA256sum: 128ff3ec8d5a091c9e49f9f3637a9573093247c0adc3af1cb0d413021bf4d69e
Description: HIDAPI is a multi-platform library which allows an application to interface
with USB and Bluetooth HID-Class devices on Windows, Linux, FreeBSD, and Mac
OS X. HIDAPI can be either built as a shared library (.so or .dll) or
can be embedded directly into a target application by adding a single source
file (per platform) and a single header.
Package: horst
Version: 4.2-1
Depends: libc, libncurses
Source: feeds/packages/net/horst
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Bruno Randolf <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33992
Filename: packages/horst_4.2-1_ramips_24kec.ipk
Size: 34802
MD5Sum: 263185e27331b5538e0e77a0b0882773
SHA256sum: a62646d69e8a8ece581f94846c3c88e6f08b2e6872c0b911af69467d775c8e73
Description: [horst] is a scanning and analysis tool for 802.11 wireless networks
and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
Package: hostip
Version: 1.4.3-1
Depends: libc, libsodium
Source: feeds/packages/net/dnscrypt-proxy
License: ISC
Section: net
Maintainer: Damiano Renfer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33599
Filename: packages/hostip_1.4.3-1_ramips_24kec.ipk
Size: 34467
MD5Sum: eeef269a7f725ae9943c98295fe23a56
SHA256sum: f025edb192681b742a0e99abbda8beb5a554fa9a3a35e0cb8cd4977a59a63fce
Description: The DNSCrypt proxy ships with a simple tool named hostip that resolves a name
to IPv4 or IPv6 addresses.
Package: htop
Version: 1.0.3-1
Depends: libc, libncurses
Source: feeds/packages/admin/htop
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49147
Filename: packages/htop_1.0.3-1_ramips_24kec.ipk
Size: 49965
MD5Sum: a7189c5493f06333a0e0361407662e2b
SHA256sum: 2253cd727c39972ef96b6d0ce2ac1ac6e7c857179ac1b66ad4e8ed2be16ba06e
Description: Htop is an ncursed-based process viewer similar to top, but
it allows to scroll the list vertically and horizontally to
see all processes and their full command lines.
Package: hub-ctrl
Version: 1.0-1
Depends: libc, libusb-compat
Source: feeds/packages/utils/hub-ctrl
License: GPL-2.0+
Section: utils
Maintainer: Simon Peter <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3645
Filename: packages/hub-ctrl_1.0-1_ramips_24kec.ipk
Size: 4453
MD5Sum: 761b256cd39a9bf334428de80e4f4e89
SHA256sum: cb902dadef9c1910f4863c155e8d4cbbdca5959843be9381498dc73fdc9c6e44
Description: Control USB power on a port by port basis on some USB hubs.
This only works on USB hubs that have the hardware necessary
to allow software controlled power switching.
Most hubs DO NOT include the hardware.
Package: ibrcommon
Version: 1.0.1-1
Depends: libc, libstdcpp, libpthread, librt, libnl, libopenssl
Source: feeds/packages/libs/ibrcommon
License: Apache-2.0
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141100
Filename: packages/ibrcommon_1.0.1-1_ramips_24kec.ipk
Size: 141753
MD5Sum: fd06ca82ae38b6506a45f1fe43865ab0
SHA256sum: b3bf54b3fe1dbaa6b82cb48757c50b70732a30bb8bd7acdcaef7b894ac05e70b
Description: A library with common functions for C++.
Package: ibrdtn-tools
Version: 1.0.1-1
Depends: libc, ibrdtn, libarchive
Source: feeds/packages/net/ibrdtn-tools
License: Apache-2.0
Section: net
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84183
Filename: packages/ibrdtn-tools_1.0.1-1_ramips_24kec.ipk
Size: 84388
MD5Sum: b3eda6acf77d1e0e99f4d1cf7703d580
SHA256sum: 59eec828ae6b7de8571ab26e1d5d6063ecb5e7290e7855b926891daaf6d9d956
Description: The IBR-DTN Tools include functionality for sending and receiving files (dtnsend/dtnrecv)
and a tools to ping a DTN node (dtnping).
Package: ibrdtn
Version: 1.0.1-1
Depends: libc, ibrcommon, zlib
Source: feeds/packages/libs/ibrdtn
License: Apache-2.0
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 148303
Filename: packages/ibrdtn_1.0.1-1_ramips_24kec.ipk
Size: 148809
MD5Sum: d09491b65445f05b98f591cd77585ec8
SHA256sum: 5d1dbf2810b3cb06cca78b631211deddcf07a9b36f94dc0c87b8f1afd0cf2145
Description: Base library for IBR-DTN daemon and tools.
Package: ibrdtnd
Version: 1.0.1-1
Depends: libc, dtndht, ibrdtn, libsqlite3
Source: feeds/packages/net/ibrdtnd
License: Apache-2.0
Section: net
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 563511
Filename: packages/ibrdtnd_1.0.1-1_ramips_24kec.ipk
Size: 562985
MD5Sum: 41955aa50ecb83245c70defbabfcb3f5
SHA256sum: 992524a0761fc78ba2f5b23d1d6babb415e68d4c35a25aecc0ab20d35ae41c6c
Description: The implementation of the bundle protocol of the IBR (TU Braunschweig).
Package: icecast
Version: 2.4.1-1
Depends: libc, libcurl, libxml2, libxslt, libogg, libopenssl
Source: feeds/packages/multimedia/icecast
License: GPL-2.0
Section: multimedia
Maintainer: André Gaul <[email protected]>
Architecture: ramips_24kec
Installed-Size: 169187
Filename: packages/icecast_2.4.1-1_ramips_24kec.ipk
Size: 169951
MD5Sum: 1c151ee2add7a20c837d2e993528220a
SHA256sum: 41db1ed70572bafde48e3dffbbab8a3be93cdd7a344f4876f158fd9b990cf049
Description: Icecast is a streaming media server which currently supports Ogg
Vorbis and MP3 audio streams. It can be used to create an Internet
radio station or a privately running jukebox and many things in
between. It is very versatile in that new formats can be added
relatively easily and supports open standards for commuincation and
interaction.
Package: ices
Version: 2.0.2-1
Depends: libc, libshout, libxml2, zlib, libogg, libvorbis, alsa-lib
Source: feeds/packages/multimedia/ices
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34216
Filename: packages/ices_2.0.2-1_ramips_24kec.ipk
Size: 34931
MD5Sum: 1bf41e2a0137c36e752a8cd0a577c893
SHA256sum: b5aa35df02423910ef21aef00104bc3712c040705d049d9ac00eac335a4ad497
Description: ices is a command line source client for Icecast media streaming servers.
It began as the successor of the old "shout" utility, and has since gained a
lot of useful features.
Package: idn
Version: 1.30-1
Depends: libc, libidn
Source: feeds/packages/libs/libidn
License: GPL-2.0+ GPL-3.0+ LGPL-2.1+ LGPL-3.0+ Apache-2.0
LicenseFiles: COPYING COPYINGv2 COPYINGv3 COPYING.LESSERv2 COPYING.LESSERv3 java/LICENSE-2.0.txt
Section: net
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11792
Filename: packages/idn_1.30-1_ramips_24kec.ipk
Size: 12698
MD5Sum: acaeffca3ada722e925f462db8e0cbe9
SHA256sum: 9c6e20a56b69fe22b55d2e5f83d4b5b24aee93b9ab8dfbea68d59ba7f16ca926
Description: GNU Libidn is a fully documented implementation of the Stringprep,
Punycode and IDNA specifications. Libidn's purpose is to encode and
decode internationalized domain names.
Command line tool using libidn
Package: iodine
Version: 0.7.0-1
Depends: libc, kmod-tun, zlib
Source: feeds/packages/net/iodine
License: ISC
LicenseFiles: README
Section: net
Maintainer: Uwe Kleine-König <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26535
Filename: packages/iodine_0.7.0-1_ramips_24kec.ipk
Size: 27187
MD5Sum: d34f471775b35fbfd98d65f2cd85c586
SHA256sum: d76873675d9769fe6f5e71430c029f6dd1d6ac7da78ae010e01bcb6eab38ae39
Description: iodine client version
Package: iodined
Version: 0.7.0-1
Depends: libc, kmod-tun, zlib
Source: feeds/packages/net/iodine
License: ISC
LicenseFiles: README
Section: net
Maintainer: Uwe Kleine-König <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27388
Filename: packages/iodined_0.7.0-1_ramips_24kec.ipk
Size: 28189
MD5Sum: 2f1b28fd38d6e12ccdf318c02ca7c5d7
SHA256sum: 17841bb3f8f93bf89d924dfd6653d2322fa17266ffc34c525d98979d1d7cf366
Description: iodine server version
Package: ipsec-tools
Version: 0.8.2-2
Depends: libc, libopenssl, kmod-ipsec
Source: feeds/packages/net/ipsec-tools
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 261124
Filename: packages/ipsec-tools_0.8.2-2_ramips_24kec.ipk
Size: 261488
MD5Sum: 1722a00613b22eb14c0c594df5b122ac
SHA256sum: e4b5f8cfe41be3ca3ee63fd6d8c8898bb78a749f081348c79831aa74f7c8c4f2
Description: IPsec management tools
Package: irssi-nossl
Version: 0.8.17-1
Depends: libc, glib2, libncurses, libpthread
Source: feeds/packages/net/irssi
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 282445
Filename: packages/irssi-nossl_0.8.17-1_ramips_24kec.ipk
Size: 282222
MD5Sum: d4b2723c8c081c2b2c0424b01501cf94
SHA256sum: 19e6474bd1fa113db5541b9966b3b23eeb135f4e51d7a3e020eaac81cb0e2efc
Description: Irssi is a terminal based IRC client for UNIX systems.
This package is built without OpenSSL support.
Package: irssi
Version: 0.8.17-1
Depends: libc, glib2, libncurses, libpthread, libopenssl
Source: feeds/packages/net/irssi
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 286216
Filename: packages/irssi_0.8.17-1_ramips_24kec.ipk
Size: 285929
MD5Sum: 8f0a4240b1e3289b4aa3f62b196b5cc1
SHA256sum: c5a7048869da8c4dcaa7eaab9802292f9254e0d171bf64f3b886431a67903ed3
Description: Irssi is a terminal based IRC client for UNIX systems.
This package is built with OpenSSL support.
Package: jamvm
Version: 2.0.0-1
Depends: libc, zlib, libpthread, librt, classpath
Source: feeds/packages/lang/jamvm
License: GPL-2.0+
Section: lang
Maintainer: Dana H. Myers <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94273
Filename: packages/jamvm_2.0.0-1_ramips_24kec.ipk
Size: 95233
MD5Sum: 8a3f3902262d0d17e13c312dbc8d903c
SHA256sum: d47a9e6c1c6da552aff4855970799a3af084d77952af8f33f09055a41b1bf75f
Description: JamVM is a new Java Virtual Machine which conforms to the JVM
specification version (blue book). In comparison to most other VM's (free
and commercial) it is extremely small.However, unlike other small VMs
(e.g. KVM) it is designed to support the full specification, and includes
support for object finalisation, Soft/Weak/Phantom References, the Java
Native Interface (JNI) and the Reflection API.
Package: jansson
Version: 2.7-1
Depends: libc
Source: feeds/packages/libs/jansson
License: MIT
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18333
Filename: packages/jansson_2.7-1_ramips_24kec.ipk
Size: 19083
MD5Sum: 4946306fee54125668d4be41ad2e3efa
SHA256sum: e136810abdf14f20a1fa014b9079bc640a1466e9924106af7b210c7579e22dc6
Description: Jansson is a C library for encoding, decoding and manipulating JSON data
Package: joe
Version: 3.7-3
Depends: libc, libncurses
Source: feeds/packages/utils/joe
Section: utils
Maintainer: Vitaly Protsko <[email protected]>
Architecture: ramips_24kec
Installed-Size: 174827
Filename: packages/joe_3.7-3_ramips_24kec.ipk
Size: 172847
MD5Sum: 86b7267d7e6e7a5f7ed271d99a0cef66
SHA256sum: a4c690734a7a9f7e948d1c4977c9433aefb01db46c756a04754cc7765cbaf770
Description: Joe is world-famous Wordstar like text editor, that also features
Emacs and Pico emulation
Package: jpeg-tools
Version: 9a-1
Depends: libc, libjpeg
Source: feeds/packages/libs/libjpeg
License: IJG
LicenseFiles: README
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31345
Filename: packages/jpeg-tools_9a-1_ramips_24kec.ipk
Size: 32116
MD5Sum: 5954e681a1270e6b199e5ba3e633ca55
SHA256sum: 3f68085707c1a17db6129b88975819b4e1e69adfeb78535063564be302babc47
Description: The Independent JPEG Group's JPEG manipulation tools
Package: json4lua
Version: 0.9.53-1
Depends: libc, lua, luasocket
Source: feeds/packages/lang/json4lua
License: MIT
Section: lang
Maintainer: Amr Hassan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6477
Filename: packages/json4lua_0.9.53-1_ramips_24kec.ipk
Size: 7218
MD5Sum: 53a20ebc6a4dec5631f16ce2673f7702
SHA256sum: 8a3b254491aa23a8d576529454dbbcf9517d7b1c1c566202aa4c145986086d24
Description: JSON and JSONRPC for Lua
Package: keepalived
Version: 1.2.15-1
Depends: libc, libnl, libopenssl
Source: feeds/packages/net/keepalived
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 75008
Filename: packages/keepalived_1.2.15-1_ramips_24kec.ipk
Size: 75843
MD5Sum: 3fa3862f2576ddfe78fe50922ac55cb4
SHA256sum: b704120ad5014131d74acf8778042dda0ecea3070b24c94ca548f262c81c727c
Description: Failover and monitoring daemon for Linux Virtual Server (LVS) clusters.
Package: kismet-client
Version: 2013-03-R1b-1
Depends: libc, uclibcxx, libnl, libncurses
Source: feeds/packages/net/kismet
License: LGPLv2.1
Section: net
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 276184
Filename: packages/kismet-client_2013-03-R1b-1_ramips_24kec.ipk
Size: 276390
MD5Sum: f84dcaf867d11dd1e839984e71570a62
SHA256sum: 6426d3a02dfbf833eb01ae3dfffdb395675f2794878a259559cb14755a64934b
Description: An 802.11 layer2 wireless network detector, sniffer, and intrusion
detection system.
This package contains the kismet text interface client.
Package: kismet-drone
Version: 2013-03-R1b-1
Depends: libc, uclibcxx, libnl, libpcap, libpcre, libcap, wireless-tools
Source: feeds/packages/net/kismet
License: LGPLv2.1
Section: net
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197404
Filename: packages/kismet-drone_2013-03-R1b-1_ramips_24kec.ipk
Size: 197670
MD5Sum: 99f6bf8ea738d41ab8d3cada110b3259
SHA256sum: 4716b42fe2fe1e63a38de45b99d4c2112db9adc76624d3a020e8fb61cf963104
Description: An 802.11 layer2 wireless network detector, sniffer, and intrusion
detection system.
This package contains the kismet remote sniffing.and monitoring drone.
Package: kismet-server
Version: 2013-03-R1b-1
Depends: libc, uclibcxx, libnl, libpcap, libpcre, libcap, wireless-tools
Source: feeds/packages/net/kismet
License: LGPLv2.1
Section: net
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 348977
Filename: packages/kismet-server_2013-03-R1b-1_ramips_24kec.ipk
Size: 348799
MD5Sum: 3ce8b4b8123b509975a5a941fb47f693
SHA256sum: b1b9de5d44574d4328d1339bd4a85d059482bd4dd9b7ba4c8fff958ed3a58f04
Description: An 802.11 layer2 wireless network detector, sniffer, and intrusion
detection system.
This package contains the kismet server.
Package: kmod-cryptodev
Version: 3.18.9+1.7-ramips-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-authenc, kmod-crypto-hash
Source: feeds/packages/utils/cryptodev-linux
Section: kernel
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18158
Filename: packages/kmod-cryptodev_3.18.9+1.7-ramips-1_ramips_24kec.ipk
Size: 18975
MD5Sum: b0e2c198da0ebd656b07cc3fbae22d37
SHA256sum: 08ab487b88984ec654db02eefb42ee7c2610bbbeb6ccdf2912ef2eaadbde4595
Description: This is a driver for that allows to use the Linux kernel supported
hardware ciphers by user-space applications.
Package: kmod-usb-serial-dmx_usb_module
Version: 3.18.9+0.1.20130818-0.1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: feeds/packages/libs/dmx_usb_module
License: GPL-2.0
Section: kernel
Maintainer: Martijn Zilverschoon <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4722
Filename: packages/kmod-usb-serial-dmx_usb_module_3.18.9+0.1.20130818-0.1_ramips_24kec.ipk
Size: 5639
MD5Sum: 48794f64edcd895c7d2d0b8ba2feb6f9
SHA256sum: a326d76cde8f7bab7cd1c853cfedb6ba40226cabc8bbebc0027cef95b4092a44
Description: Open DMX USB is an open USB to DMX dongle hardware design developed by Enttec.
The Open in Open DMX USB refers to the fact that everybody is free to use the
design and produce its own USB DMX Dongle without paying any licenses.
Package: kmod
Version: 20-1
Depends: libc, zlib
Source: feeds/packages/utils/kmod
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Jeff Waugh <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53725
Filename: packages/kmod_20-1_ramips_24kec.ipk
Size: 54538
MD5Sum: 32ec9adb233550f3a39ec38271a11287
SHA256sum: c5dedb116ed2c08018d8b47a6eab565bdcd9b6c4a53c175c3ed3971171bb77f9
Description: Linux kernel module handling
kmod is a set of tools to handle common tasks with Linux kernel modules like
insert, remove, list, check properties, resolve dependencies and aliases.
Package: knot-dig
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29748
Filename: packages/knot-dig_1.6.2-1_ramips_24kec.ipk
Size: 30491
MD5Sum: 9e0125f16feb4d2a051f58bcd8f91724
SHA256sum: dbb8f3b76b120219cdd4b1b81b9492d0845b1493e5c8070698e6be81d87c5134
Description: Knot DNS lookup utility.
Package: knot-host
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30824
Filename: packages/knot-host_1.6.2-1_ramips_24kec.ipk
Size: 31538
MD5Sum: 7554a3b9d82d168470fb7559e213eeb0
SHA256sum: 26e6264d52d391081ace6de5a02835098ed97104c438cb920f7ebca9ec671baa
Description: Knot DNS simple DNS lookup utility.
Package: knot-libknot
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89473
Filename: packages/knot-libknot_1.6.2-1_ramips_24kec.ipk
Size: 90187
MD5Sum: 80536d7939c20f234a242263e5f27e1e
SHA256sum: ff4240ff8a79293fe43015a3c6a66f4559a2047295cbf235641fdd37943e304c
Description: Knot DNS library.
Package: knot-nsec3hash
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18882
Filename: packages/knot-nsec3hash_1.6.2-1_ramips_24kec.ipk
Size: 19609
MD5Sum: fde0d14a58defd0fba2df33d16ab64f4
SHA256sum: 6a9db723fdfc3188ca3b1e25c56e55f6a72517c7678b17972522f6cbf52e56d1
Description: Knot DNS simple utility to compute NSEC3 hash.
Package: knot-nsupdate
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30498
Filename: packages/knot-nsupdate_1.6.2-1_ramips_24kec.ipk
Size: 31257
MD5Sum: 821a851a8799cf15e3ffd714075a3e2e
SHA256sum: 67615a831eab5125f0183ab090f027ce31b0a67338376a552f8c38a830826faa
Description: Knot DNS dynamic DNS update utility.
Package: knot-tests
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1698326
Filename: packages/knot-tests_1.6.2-1_ramips_24kec.ipk
Size: 1694566
MD5Sum: c31d0d2025ebae66f94e866b98df8b60
SHA256sum: d32056a142f130ab021e80e3dbd3eee67b249ff511e5cd848eee8afc93b4bc75
Description: Unit tests for Knot DNS server.
Usage: /usr/share/knot/runtests.sh
Package: knot
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 271140
Filename: packages/knot_1.6.2-1_ramips_24kec.ipk
Size: 271708
MD5Sum: 34886449638a989f9f9315306e74c4f4
SHA256sum: 489972e740dc76b452bc05cfa7905d408b850c79ba0190b3ee9591c58cfb6ecb
Description: High-performance authoritative-only DNS server.
Package: knxd-tools
Version: 2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1
Depends: libc, libeibclient
Source: feeds/packages/net/knxd
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29824
Filename: packages/knxd-tools_2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1_ramips_24kec.ipk
Size: 30396
MD5Sum: d96cd616c56777d926f7cdb039287875
SHA256sum: 9c490c4b0e4d5de314a85a002b11c5ab4faf1d0720a5ccefe1486229c2e04adb
Description: EIB KNX Tools
Package: knxd
Version: 2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1
Depends: libc, pthsem, argp-standalone, libusb-1.0
Source: feeds/packages/net/knxd
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 180839
Filename: packages/knxd_2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1_ramips_24kec.ipk
Size: 181584
MD5Sum: fa7930e47f2c3ff6f755bb855585ae6d
SHA256sum: f779536af30e136fcf2048d24aeb42a7312b6f38fbe4535bb6333f7180af359b
Description: EIB KNX Daemon
Package: krb5-client
Version: 1.13.1-1
Depends: libc, krb5-libs
Source: feeds/packages/net/krb5
License: MIT
LicenseFiles: NOTICE
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36025
Filename: packages/krb5-client_1.13.1-1_ramips_24kec.ipk
Size: 36659
MD5Sum: e08564247b72eaf5b1c0fba7db65a315
SHA256sum: 32ab615cc619ad38ccfcfdf3cbeb946c10e69cc0361c4bd01b3ecffa8118b968
Description: Kerberos 5 Client
Package: krb5-libs
Version: 1.13.1-1
Depends: libc, libncurses
Source: feeds/packages/net/krb5
License: MIT
LicenseFiles: NOTICE
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 665582
Filename: packages/krb5-libs_1.13.1-1_ramips_24kec.ipk
Size: 655857
MD5Sum: c19bd0daa7097d0b148f09afc362e493
SHA256sum: a34e472b413a1e945210a30f64f5aee8b7028ac59506fb6cc2b059b4f0ec34ae
Description: Kerberos 5 Shared Libraries
Package: krb5-server
Version: 1.13.1-1
Depends: libc, krb5-libs, libpthread
Source: feeds/packages/net/krb5
License: MIT
LicenseFiles: NOTICE
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128732
Filename: packages/krb5-server_1.13.1-1_ramips_24kec.ipk
Size: 128146
MD5Sum: 8193cab54f9ef8b86847a30d54838992
SHA256sum: ca90f2ecf27142e967e4af4a5d0d742a05c1476d300d96585dc3ec7ae2d930a4
Description: Kerberos 5 Server
Package: l7-protocols-testing
Version: 2009-05-28-2
Depends: libc, iptables-mod-filter, l7-protocols, uclibcxx
Source: feeds/packages/net/l7-protocols
License: GPL-2.0
Section: net
Maintainer: Lim Guo Wei <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66054
Filename: packages/l7-protocols-testing_2009-05-28-2_ramips_24kec.ipk
Size: 66868
MD5Sum: 15e1d30dfaa2e53f0536ed7e4d28b0c7
SHA256sum: c23d1cd30882c96b7547e552a81202c297766dcd914a0493cb92d2c6380fa821
Description: testing utilities for layer 7 patterns
Package: l7-protocols
Version: 2009-05-28-2
Depends: libc, iptables-mod-filter
Source: feeds/packages/net/l7-protocols
License: GPL-2.0
Section: net
Maintainer: Lim Guo Wei <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46837
Filename: packages/l7-protocols_2009-05-28-2_ramips_24kec.ipk
Size: 47306
MD5Sum: 9ce24b51aad36ec8e543a73fee6dfcf9
SHA256sum: 0a3c22e829b30137bae168c3a3d732318d3f02d8c8eea3348a82bf4cdfeda773
Description: l7-filter classifies packets based on patterns in application
layer data. This allows correct classification of P2P traffic that
uses unpredictable ports as well as standard protocols running on
non-standard ports.
Package: lame-lib
Version: 3.99.5-1
Depends: libc
Source: feeds/packages/sound/lame
License: LGPL-2.0
LicenseFiles: COPYING LICENSE
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 129347
Filename: packages/lame-lib_3.99.5-1_ramips_24kec.ipk
Size: 130000
MD5Sum: 7b3e481c28d28196ec32e7b8f17c2526
SHA256sum: 24e4aa9d0a23b80b14126c422a9bf7471d468fb2f06c854c7899c660bfb8a851
Description: lame mp3 encoder libs
Package: lame
Version: 3.99.5-1
Depends: libc, libncurses
Source: feeds/packages/sound/lame
License: LGPL-2.0
LicenseFiles: COPYING LICENSE
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141937
Filename: packages/lame_3.99.5-1_ramips_24kec.ipk
Size: 142607
MD5Sum: e265abeced96510c1548cfd60b42004d
SHA256sum: f517b577d3846927ce9d683391d00d45c05711ec9bfcc785be76f8a71e97ffb1
Description: lame mp3 encoder
Package: less-wide
Version: 458-1
Depends: libc, libncursesw
Source: feeds/packages/utils/less
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57590
Filename: packages/less-wide_458-1_ramips_24kec.ipk
Size: 58592
MD5Sum: 5087fb6b714c3a248c8bb86d1bfe0e97
SHA256sum: 91f9c42b0248b77055a4daeabfa7fcd7b8c864642ddeef641fd4fd5732c4918b
Description: Full version of GNU less utility
This package contains the Unicode enabled version of less.
Package: less
Version: 458-1
Depends: libc, libncurses
Source: feeds/packages/utils/less
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57588
Filename: packages/less_458-1_ramips_24kec.ipk
Size: 58550
MD5Sum: 686b7aed68fcc4d6ac473f6f279cd749
SHA256sum: 78cfed11f38f5829a8b9b4d914bdf3019c4beafc73719f369a735b5edd51daa6
Description: Full version of GNU less utility
Package: lftp
Version: 4.6.0-1
Depends: libc, libncurses, libopenssl, libreadline, uclibcxx, libexpat
Source: feeds/packages/net/lftp
License: GPL-3.0+
LicenseFiles: COPYING
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 383211
Filename: packages/lftp_4.6.0-1_ramips_24kec.ipk
Size: 384115
MD5Sum: b64ff68ff427b02d3ab0e8f21880fae1
SHA256sum: 1bb34b6e097d30a8d2b95fa032d7e7bd6e8cc672070289142e29b90747614172
Description: LFTP is a sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. GNU Readline library is used for input.
Every operation in lftp is reliable, that is any non-fatal error is handled and the operation is retried automatically. So if downloading breaks, it will be restarted from the point automatically. Even if ftp server does not support REST command, lftp will try to retrieve the file from the very beginning until the file is transferred completely. This is useful for dynamic-ip machines which change their IP addresses quite often, and for sites with very bad internet connectivity.
If you exit lftp when some jobs are not finished yet, lftp will move itself to nohup mode in background. The same happens when you have a real modem hangup or when you close an xterm.
lftp has shell-like command syntax allowing you to launch several commands in parallel in background (&). It is also possible to group commands within () and execute them in background. All background jobs are executed in the same single process. You can bring a foreground job to background with ^Z (c-z) and back with command `wait' (or `fg' which is alias to `wait'). To list running jobs, use command `jobs'. Some commands allow redirecting their output (cat, ls, ...) to file or via pipe to external command. Commands can be executed conditionally based on termination status of previous command (&&, ||).
lftp has builtin mirror which can download or update a whole directory tree. There is also reverse mirror (mirror -R) which uploads or updates a directory tree on server.
There is command `at' to launch a job at specified time in current context, command `queue' to queue commands for sequential execution for current server, and much more.
LFTP supports IPv6 for both FTP and HTTP protocols. For FTP protocol it uses method described in RFC2428.
Other low level stuff supported: ftp proxy, http proxy, ftp over http, opie/skey, fxp transfers, socks.
LFTP supports secure versions of the protocols FTP and HTTP: FTPS (explicit and implicit) and HTTPS. LFTP needs to be linked with an SSL library to support them. GNU TLS and OpenSSL are both supported as SSL backend.
Package: libacl
Version: 20140812-1
Depends: libc, libattr
Source: feeds/packages/utils/acl
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: libs
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11727
Filename: packages/libacl_20140812-1_ramips_24kec.ipk
Size: 12515
MD5Sum: 80e4c0096f3d7262289c88a1b555eb73
SHA256sum: 70474f89efbd5a1da7c8d509431fb4ba015f00505085be50c61ada5cbafaf822
Description: Access control list support
This package provides libacl
Package: libaio
Version: 0.3.110-1
Depends: libc
Source: feeds/packages/libs/libaio
License: LGPL-2.1
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1132
Filename: packages/libaio_0.3.110-1_ramips_24kec.ipk
Size: 1876
MD5Sum: 466973278663d9aff7ff7c07c975cd38
SHA256sum: ce7f458dff68fce88f437405bdd89b497fc4f71e227107db94d0b10643167680
Description: Linux kernel AIO interface access library
Package: libantlr3c
Version: 3.2-1
Depends: libc
Source: feeds/packages/libs/libantlr3c
License: BSD-2-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34059
Filename: packages/libantlr3c_3.2-1_ramips_24kec.ipk
Size: 34994
MD5Sum: caf0f10d07a101ce2f9bda2bb52f060f
SHA256sum: 24adfbc7495edba65a8466504f1aa083c71166d28cdaa664398922146a8da9a7
Description: ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers,
interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
Package: libao
Version: 1.2.0-1
Depends: libc, alsa-lib
Source: feeds/packages/libs/libao
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21358
Filename: packages/libao_1.2.0-1_ramips_24kec.ipk
Size: 22102
MD5Sum: be4b20b9222799d3ee0b8a2cec9fe06e
SHA256sum: 386184272a673e47438183e5d7f9b1dc10a9ebc40bcca2c484232eb5685d2ea8
Description: Libao is a cross-platform audio library that allows programs to
output audio using a simple API on a wide variety of platforms.
Package: libapr
Version: 1.5.1-1
Depends: libc, libpthread, librt, libuuid
Source: feeds/packages/libs/apr
License: Apache License
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 68873
Filename: packages/libapr_1.5.1-1_ramips_24kec.ipk
Size: 69664
MD5Sum: 08dfb4d77dab5296390ce2bd54b407b9
SHA256sum: 906fe230ae0d290d2f10c3cd32b8170a8fe64c0cad223297277e0ad20fb9a15f
Description: Apache Portable Runtime Library
Package: libaprutil
Version: 1.5.4-1
Depends: libc, libapr, libexpat, libsqlite3, libuuid
Source: feeds/packages/libs/apr-util
License: Apache License
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69910
Filename: packages/libaprutil_1.5.4-1_ramips_24kec.ipk
Size: 70688
MD5Sum: 0e44172391cc924f24e96114c0ade889
SHA256sum: 25502efc04963b24832b84d431d416414ebb64a74afb9e4c772321e95878b1df
Description: Apache Portable Runtime Utility Library
Package: libarchive
Version: 3.1.2-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/libs/libarchive
License: BSD-2-Clause
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 237431
Filename: packages/libarchive_3.1.2-1_ramips_24kec.ipk
Size: 237441
MD5Sum: d897171444dca537e15c45a5890a5bcd
SHA256sum: aff7fc68987d2143396fa5de26718fe00d479f37a73bf9afaee155587c2fce91
Description: Multi-format archive and compression library
Package: libartnet
Version: 1.1.2-1.1
Depends: libc
Source: feeds/packages/libs/libartnet
License: GPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Martijn Zilverschoon <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15826
Filename: packages/libartnet_1.1.2-1.1_ramips_24kec.ipk
Size: 16625
MD5Sum: fb1bf00ff392466573a99039d7d6a47e
SHA256sum: 89d50a35753b3db8e3bb324032a576bceb2ae14c9447ce5bec261ea911e96b3c
Description: Libartnet is an implementation of the ArtNet protocol. ArtNet allows the
transmission of DMX and related data over IP networks.
Package: libasm
Version: 0.161-1
Depends: libc, libelf1
Source: feeds/packages/libs/elfutils
License: GPL-3.0+
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11856
Filename: packages/libasm_0.161-1_ramips_24kec.ipk
Size: 12619
MD5Sum: d75077e17765c9c90801e28556e982f9
SHA256sum: 9d2db9a78a4c8533cea1dfab35472ae131fa06b331549dccd755d8d5ca164e1f
Description: ELF manipulation libraries (libasm)
Package: libattr
Version: 20150220-1
Depends: libc
Source: feeds/packages/utils/attr
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: libs
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6452
Filename: packages/libattr_20150220-1_ramips_24kec.ipk
Size: 7268
MD5Sum: d34d9d0b134772c3d643f35fecabb244
SHA256sum: 590cd1e6e75ab16bf0e4eda1e991c6b348bfe4b95927b88e27456b2641bef71f
Description: Extended attributes support
This package provides libattr
Package: libaudiofile
Version: 0.3.6-3
Depends: libc, libflac, libstdcpp
Source: feeds/packages/libs/libaudiofile
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84158
Filename: packages/libaudiofile_0.3.6-3_ramips_24kec.ipk
Size: 84821
MD5Sum: d3134a931388fbf7fb5458cb17b44b8f
SHA256sum: f144db7e84b77b9ba345ba6e2e7853371df64af0818197b8081927a998ad9807
Description: The audiofile library allows the processing of audio data to and from audio
files of many common formats (currently AIFF, AIFF-C, WAVE, NeXT/Sun, BICS,
FLAC, ALAC, and raw data).
Package: libavahi-client
Version: 0.6.31-11
Depends: libc, avahi-dbus-daemon
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16491
Filename: packages/libavahi-client_0.6.31-11_ramips_24kec.ipk
Size: 17564
MD5Sum: ed6e926a26bd3b8034029a27910ce855
SHA256sum: 80d1e261a4e76f998e1574b49df2a043f26500eae3ab18138fe9029c488bcb92
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This packages adds the libavahi-client library.
It also automatically adds the required
libavahi-dbus-support and the avahi-dbus-daemon packages.
For more information please see the avahi documentation.
Package: libavahi-compat-libdnssd
Version: 0.6.31-11
Depends: libc, libavahi-client
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10022
Filename: packages/libavahi-compat-libdnssd_0.6.31-11_ramips_24kec.ipk
Size: 11124
MD5Sum: 817d9acbc5b381edb0bacbd53b406314
SHA256sum: 67f93045bb5b92904811d3193ee2f066ee819b9dd584075baf7a248a3655eb6a
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This packages adds the libavahi-compat-libdnssd library.
It also automatically adds the required libavahi-client package.
For more information please see the avahi documentation.
Package: libavahi-dbus-support
Version: 0.6.31-11
Depends: libc, dbus
Provides: libavahi
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67180
Filename: packages/libavahi-dbus-support_0.6.31-11_ramips_24kec.ipk
Size: 68529
MD5Sum: 3907cfadca94d8b96256719fdddd1fef
SHA256sum: 0ecc7dc6f69c0119e89c6df12ff479e301fc4710737a6193359cc5cdc35a64a5
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
The libavahi package contains the mDNS/DNS-SD shared libraries,
used by other programs. Specifically, it provides
libavahi-core and libavahi-common libraries.
.
The libavahi-dbus-support package enables
D-Bus support in avahi, needed to support
the libavahi-client library and avahi-utils.
.
Selecting this package modifies the build configuration
so that avahi packages are built with support for D-BUS enabled;
it does not generate a separate binary of its own.
It also automatically adds the D-Bus package to the build.
libavahi-dbus-support is selected automatically if you select
libavahi-client or avahi-utils.
Package: libavahi-nodbus-support
Version: 0.6.31-11
Depends: libc, libpthread
Provides: libavahi
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66662
Filename: packages/libavahi-nodbus-support_0.6.31-11_ramips_24kec.ipk
Size: 67898
MD5Sum: 15daf14846f3fcdf5d388d10e5117847
SHA256sum: 3597461462b3b88ce046be8ab99274ef5999ca48f314c5f8a76002cccf0e49ca
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
The libavahi package contains the mDNS/DNS-SD shared libraries,
used by other programs. Specifically, it provides
libavahi-core and libavahi-common libraries.
.
Selecting this package modifies the build configuration
so that avahi packages are built without support for D-BUS enabled;
it does not generate a separate binary of its own.
Package: libavl
Version: 0.3.5-1
Depends: libc
Source: feeds/packages/libs/libavl
License: LGPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3260
Filename: packages/libavl_0.3.5-1_ramips_24kec.ipk
Size: 4014
MD5Sum: 69676f361e130e8856a8379a948076fc
SHA256sum: aaee2c928f79d6d445559c5db593c5acbb992af5da1bf4632b3209227fafde95
Description: AVLTree is a small implementation of AVL trees for the C programming language.
Package: libbz2
Version: 1.0.6-1
Depends: libc
Source: feeds/packages/utils/bzip2
License: BZIP2
LicenseFiles: LICENSE
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25273
Filename: packages/libbz2_1.0.6-1_ramips_24kec.ipk
Size: 26023
MD5Sum: 98077d0de803e0604253940d66a4ae4c
SHA256sum: 5ed619d25a42af2835b2b5f2f27ff6e92f4786a46aa39dc517f237e5df08df04
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This packages provides libbz2 library.
Package: libcap
Version: 2.24-1
Depends: libc
Source: feeds/packages/libs/libcap
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5519
Filename: packages/libcap_2.24-1_ramips_24kec.ipk
Size: 6224
MD5Sum: 828799f9f069a75864089e0e8fabdc85
SHA256sum: 9841c9ea9799b3abebf5fb1361f7ec55d19ec6923bb1c0d8a6f598f7d5dc48b8
Description: Linux capabilities library
Package: libcares
Version: 1.10.0-1
Depends: libc
Source: feeds/packages/libs/c-ares
License: MIT
Section: libs
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27164
Filename: packages/libcares_1.10.0-1_ramips_24kec.ipk
Size: 27997
MD5Sum: f42c6dad2a2e4dd2508b06ef2ba1b473
SHA256sum: 881d2660712ac13b1f73927c49b28be673ee8a39a34eff2f4ac4a2e2784ea68a
Description: c-ares is a C library for asynchronous DNS requests (including name resolves)
C89 compatibility, MIT licensed, builds for and runs on POSIX, Windows,
Netware, Android and many more operating systems.
Package: libdaemon
Version: 0.14-5
Depends: libc
Source: feeds/packages/libs/libdaemon
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8247
Filename: packages/libdaemon_0.14-5_ramips_24kec.ipk
Size: 9277
MD5Sum: d99b8faca2206405c2a33f7aed500916
SHA256sum: 2be989fb7d3c480c458435ec45aef417de1732274d86a2c60c8d109af5891fab
Description: libdaemon is a lightweight C library that eases the writing of UNIX daemons.
It consists of the following parts:
- A wrapper around fork() which does the correct daemonization procedure of a process
- A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR
- An API for writing PID files
- An API for serializing UNIX signals into a pipe for usage with select() or poll()
- An API for running subprocesses with STDOUT and STDERR redirected to syslog
APIs like these are used in most daemon software available. It is not that
simple to get it done right and code duplication is not a goal.
Package: libdaq
Version: 2.0.4-1
Depends: libc, libdnet, libpcap
Source: feeds/packages/libs/libdaq
License: GPL-2.0
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76720
Filename: packages/libdaq_2.0.4-1_ramips_24kec.ipk
Size: 77490
MD5Sum: bcf680ddb8bfda438c747d5619a17f6a
SHA256sum: b7e0aaf1d2c816bcfb5643cd8e277a942ece3f80470ad7590daa3947334196cf
Description: Data Acquisition library for packet I/O.
Package: libdb47
Version: 4.7.25.4.NC-3
Depends: libc, libxml2
Provides: libdb47-full
Source: feeds/packages/libs/db47
License: Sleepycat
LicenseFiles: LICENSE
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 472718
Filename: packages/libdb47_4.7.25.4.NC-3_ramips_24kec.ipk
Size: 472829
MD5Sum: 767e1d9b6ac43a1159fa20c921f7af77
SHA256sum: 502a4400a709b9cd130509be2dd039f6d7aaf5d6f2ae166c5a05e4fcbea392c3
Description: Berkeley DB library (4.7).
Package: libdb47xx
Version: 4.7.25.4.NC-3
Depends: libc, libdb47, uclibcxx
Provides: libdb47xx-full
Source: feeds/packages/libs/db47
License: Sleepycat
LicenseFiles: LICENSE
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 503448
Filename: packages/libdb47xx_4.7.25.4.NC-3_ramips_24kec.ipk
Size: 503446
MD5Sum: 220bf3a68ba05e2f9478087e1249dc25
SHA256sum: b36e659c8ce5589d52dc101de98562758f111db9b78b1a31d5376259232c7c04
Description: Berkeley DB library (4.7). C++ wrapper.
Package: libdbd-mysql
Version: 0.9.0-1
Depends: libc, libdbi, libmysqlclient
Source: feeds/packages/libs/libdbi-drivers
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9526
Filename: packages/libdbd-mysql_0.9.0-1_ramips_24kec.ipk
Size: 10193
MD5Sum: 9312fc909e457eeb0bb754d72e8e1e33
SHA256sum: 03838e0afee2d37b4db4f35d296cc8be358d27f98d4c2b193f4335bcef25544f
Description: MySQL database server driver for libdbi
Package: libdbd-pgsql
Version: 0.9.0-1
Depends: libc, libdbi, libpq
Source: feeds/packages/libs/libdbi-drivers
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11721
Filename: packages/libdbd-pgsql_0.9.0-1_ramips_24kec.ipk
Size: 12161
MD5Sum: 8aefc2c51b01b3244bb6246f2e75e89d
SHA256sum: 88f9c96dc1345ad38d9fca1e576ff85e6b40b5c0911446e0338a9e2df91f728c
Description: PostgreSQL database server driver for libdbi
Package: libdbd-sqlite3
Version: 0.9.0-1
Depends: libc, libdbi, libsqlite3
Source: feeds/packages/libs/libdbi-drivers
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12648
Filename: packages/libdbd-sqlite3_0.9.0-1_ramips_24kec.ipk
Size: 13300
MD5Sum: 7aaa2334674957db840b9d2504be4243
SHA256sum: 0be06680b9d615d1cb0bbea58fea74cc86063a0b0ed06d0b557c1072a6eadba3
Description: SQLite3 database driver for libdbi
Package: libdbi
Version: 0.9.0-4
Depends: libc
Source: feeds/packages/libs/libdbi
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16812
Filename: packages/libdbi_0.9.0-4_ramips_24kec.ipk
Size: 17576
MD5Sum: 1b27535706fa409a30aebfd6670746ff
SHA256sum: 9a1ec0864e3163267fa83bab3eb47260a50e708305f2e21c4a8868036b7b09e8
Description: This package provides a database-independent abstraction layer library in C.
Package: libdbus
Version: 1.9.10-1
Depends: libc, libpthread
Source: feeds/packages/utils/dbus
License: AFL-2.1
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 96778
Filename: packages/libdbus_1.9.10-1_ramips_24kec.ipk
Size: 97559
MD5Sum: be168329457602258ad02cd7f221fad1
SHA256sum: cb0448ee7d446da65aadeaa4f1295da200572079689b4f124d24a9832d250f4e
Description: Simple interprocess messaging system (library)
Package: libdevmapper
Version: 2.02.117-1
Depends: libc, kmod-dm, libpthread
Source: feeds/packages/utils/lvm2
License: GPL-2.0 LGPL-2.1
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94316
Filename: packages/libdevmapper_2.02.117-1_ramips_24kec.ipk
Size: 95207
MD5Sum: d31f988ea80cc534e26a9c2c9bf92f89
SHA256sum: ea6837f4a19454bdd886d3cb725f6bc7b35aec096ac752157808480d01bdac1d
Description: The device-mapper is a component of the 2.6 linux kernel that supports logical
volume management. It is required by LVM2 and EVMS.
Package: libdmapsharing
Version: 2.9.30-1
Depends: libc, libsoup, mdnsresponder, gstreamer1, gst1-plugins-base, libgst1app
Source: feeds/packages/libs/libdmapsharing
License: LGPLv2.1
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60320
Filename: packages/libdmapsharing_2.9.30-1_ramips_24kec.ipk
Size: 61040
MD5Sum: fd68e5218b6ad98f9578bb88591015cc
SHA256sum: 5fd0393a4266807b4a1731c8a5e44e9cf4d7da77d7dca18c95c99e323ad50588
Description: libdmapsharing
Package: libdnet
Version: 1.12-1
Depends: libc
Source: feeds/packages/libs/libdnet
License: BSD
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26819
Filename: packages/libdnet_1.12-1_ramips_24kec.ipk
Size: 26642
MD5Sum: c970ea619b8034c4700534d02c6eb334
SHA256sum: ab3fbdf0d8e5ac75cbfaeb455b26eda9fe149ed8df8c8fcb66d33e6e5c136773
Description: libdnet is a library of simplified, portable interface to several low-level
networking routines.
Package: libdw
Version: 0.161-1
Depends: libc, libelf1, zlib, libbz2
Source: feeds/packages/libs/elfutils
License: GPL-3.0+
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 124967
Filename: packages/libdw_0.161-1_ramips_24kec.ipk
Size: 125570
MD5Sum: 89a6ea875374a0e22f8fb7c643ab9702
SHA256sum: ab04b3186411e8ae41040949be37b45eca0f6a8d81ecf3ea9b49a7a86badf854
Description: ELF manipulation libraries (libdw)
Package: libeibclient
Version: 2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1
Depends: libc, pthsem
Source: feeds/packages/net/knxd
License: GPL-2.0+
LicenseFiles: LICENSE
Section: libs
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8751
Filename: packages/libeibclient_2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1_ramips_24kec.ipk
Size: 9557
MD5Sum: bf63753ef246807501148a0baa3d7dae
SHA256sum: 7ff68b92b5e21ba79b34f4bb61dd2412b20f5a3f2eee419d6f43ddb3f179741a
Description: EIB KNX client library
Package: libelf1
Version: 0.161-1
Depends: libc
Source: feeds/packages/libs/elfutils
License: GPL-3.0+
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34150
Filename: packages/libelf1_0.161-1_ramips_24kec.ipk
Size: 34982
MD5Sum: 97b3b5b3907663c720df2845c0ebadf7
SHA256sum: 441d1e6532ac81c9cf2f32f9a4155eb0fe243b03a24a957229c520317d3524a0
Description: ELF manipulation libraries (libelf)
Package: libesmtp
Version: 1.0.6-2
Depends: libc, libpthread
Source: feeds/packages/libs/libesmtp
License: LGPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20792
Filename: packages/libesmtp_1.0.6-2_ramips_24kec.ipk
Size: 21513
MD5Sum: a75a78b8878850932594607753259aef
SHA256sum: 29fcc2b7a4f9fabbeb0c79a5fb6c55b35e1748ab14dd42c53fdf15104272232a
Description: A Library for Posting Electronic Mail
Package: libevent
Version: 1.4.14b-2
Depends: libc, librt
Source: feeds/packages/libs/libevent
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86193
Filename: packages/libevent_1.4.14b-2_ramips_24kec.ipk
Size: 87015
MD5Sum: df65eb5895c5f978c79d5d25e8349428
SHA256sum: 09ca8b14c34d09c70c9179d1ce391f053f7d8520dd457be9d6240e52373120ea
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
Package: libevhtp
Version: 1.2.10-1
Depends: libc, libevent2, libevent2-openssl, libevent2-pthreads, libopenssl, libpthread
Source: feeds/packages/libs/libevhtp
License: BSD-3-Clause
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105832
Filename: packages/libevhtp_1.2.10-1_ramips_24kec.ipk
Size: 105546
MD5Sum: 29c4c937dce337421e6706970084da0f
SHA256sum: 25b7273441e17648725b4b940a80e4f34607fc5ed25c33121d7b53f76da62bc3
Description: Libevhtp was created as a replacement API for Libevent's current HTTP API.
The reality of libevent's http interface is that it was created as a JIT server,
meaning the developer never thought of it being used for creating a full-fledged HTTP service.
Package: libexif
Version: 0.6.21-1
Depends: libc
Source: feeds/packages/libs/libexif
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61857
Filename: packages/libexif_0.6.21-1_ramips_24kec.ipk
Size: 61946
MD5Sum: 6ab104e2682ae2b3e057d750a0b68547
SHA256sum: 77004aa9dddf34aa49a5024ea10aed6c1805ef74bd5892003b36493f43d56e76
Description: libexif is a library for parsing, editing, and saving EXIF data. It is
intended to replace lots of redundant implementations in command-line
utilities and programs with GUIs.
Package: libexpat
Version: 2.1.0-3
Depends: libc
Source: feeds/packages/libs/expat
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52595
Filename: packages/libexpat_2.1.0-3_ramips_24kec.ipk
Size: 53245
MD5Sum: bda8f530f92ad3ff701e5b9aa7fa6ac1
SHA256sum: 4cb96cf80c8e599df52e3d8a83acaac3170632798dec1ba4d45cf809d0eff0a9
Description: A fast, non-validating, stream-oriented XML parsing library.
Package: libexslt
Version: 1.1.28-2
Depends: libc, libxslt
Source: feeds/packages/libs/libxslt
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26621
Filename: packages/libexslt_1.1.28-2_ramips_24kec.ipk
Size: 27303
MD5Sum: e37a29a164598bd35ccefc556bfdffba
SHA256sum: 85bee29e565c0355e1cda9cd37164539142f06bc1fc20b91dbd0f43d89e00c2a
Description: An extension for XSLT.
Package: libf2fs
Version: 1.4.0-1
Depends: libc
Source: feeds/packages/utils/f2fs-tools
License: GPLv2
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4380
Filename: packages/libf2fs_1.4.0-1_ramips_24kec.ipk
Size: 5109
MD5Sum: 49fc3b529e290e8a669081903c4a5de4
SHA256sum: 72bdcb2e224b28ffe5c3c3130ca3ff454571d210d45c586729bcbc1ff7578ae9
Description: Library for Flash-Friendly File System (F2FS) tools
Package: libfaad2
Version: 2.7-3
Depends: libc
Source: feeds/packages/libs/faad2
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 139601
Filename: packages/libfaad2_2.7-3_ramips_24kec.ipk
Size: 140427
MD5Sum: 0c5ea8c83a49f844c60feec678faacab
SHA256sum: e203f124613d236137e4a0308dcf68b8a06df98fec452b9962867351738220a5
Description: FAAD2 is the fastest ISO AAC audio decoder available.
FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN,
LOW, LTP, LD and ER object type AAC files.
This package contains the library.
Package: libffi
Version: 3.0.13-1
Depends: libc
Source: feeds/packages/libs/libffi
License: MIT
LicenseFiles: LICENSE
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5309
Filename: packages/libffi_3.0.13-1_ramips_24kec.ipk
Size: 6307
MD5Sum: 92404667b58d29e05cf4010120b45b5f
SHA256sum: 545d7cac3f2d00badf56381fa2aed73200acc83fa218bf503daedc34ebd353f3
Description: The libffi library provides a portable, high level programming interface to
various calling conventions. This allows a programmer to call any function
specified by a call interface description at run-time.
FFI stands for Foreign Function Interface. A foreign function interface is the
popular name for the interface that allows code written in one language to call
code written in another language. The libffi library really only provides the
lowest, machine dependent layer of a fully featured foreign function interface.
A layer must exist above libffi that handles type conversions for values passed
between the two languages.
Package: libffmpeg-audio-dec
Version: 2.5.4-1
Depends: libc, libpthread, zlib, libbz2, libopus, libspeex
Provides: libffmpeg
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 819275
Filename: packages/libffmpeg-audio-dec_2.5.4-1_ramips_24kec.ipk
Size: 817388
MD5Sum: 8d47b70e71b01c01547ca01f3e7ee81c
SHA256sum: 76ed9487eda997fca82a391f4d10dca16c2da6568d47eeffe4035c6b5cd55c7b
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains FFmpeg shared libraries for audio decoding
Package: libffmpeg-full
Version: 2.5.4-1
Depends: libc, libpthread, zlib, libbz2, alsa-lib
Provides: libffmpeg
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4601750
Filename: packages/libffmpeg-full_2.5.4-1_ramips_24kec.ipk
Size: 4584941
MD5Sum: 44877607db9749f997a4d126902a797b
SHA256sum: 535b4b0c408778bb3531b26926a04a6c220352397806123f21346677cedf596d
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains full-featured FFmpeg shared libraries.
Package: libffmpeg-mini
Version: 2.5.4-1
Depends: libc, libpthread, zlib, libbz2
Provides: libffmpeg
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 868031
Filename: packages/libffmpeg-mini_2.5.4-1_ramips_24kec.ipk
Size: 865679
MD5Sum: 4f9ab86612b416e1726f530551b043bd
SHA256sum: 1aad96d0c4d18f964c8fa87c112ef56802b268f2a782aa27f9fe195dbf266db7
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains minimal-featured FFmpeg shared libraries.
Package: libfko
Version: 2.6.5-1
Depends: libc
Source: feeds/packages/net/fwknop
License: GPLv2
Section: libs
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28920
Filename: packages/libfko_2.6.5-1_ramips_24kec.ipk
Size: 30010
MD5Sum: 13687547d6dfe859c3e7e4eca9bbe0fe
SHA256sum: f27b5ee2ff11af80523b7a12be928d19785e1d7906bfcef5122484d2ef6efe65
Description: Fwknop implements an authorization scheme known as Single Packet Authorization
(SPA) for Linux systems running iptables. This mechanism requires only a
single encrypted and non-replayed packet to communicate various pieces of
information including desired access through an iptables policy. The main
application of this program is to use iptables in a default-drop stance to
protect services such as SSH with an additional layer of security in order to
make the exploitation of vulnerabilities (both 0-day and unpatched code) much
more difficult.
This package contains the libfko shared library.
Package: libflac
Version: 1.3.1-1
Depends: libc
Source: feeds/packages/libs/flac
License: GFDL-1.2 GPL-2 LGPL-2.1 BSD-3-Clause
LicenseFiles: README COPYING.FDL COPYING.GPL COPYING.LGPL COPYING.Xiph
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 85110
Filename: packages/libflac_1.3.1-1_ramips_24kec.ipk
Size: 85969
MD5Sum: f85753ef6836360d94414464854cbe23
SHA256sum: 66950dab5685e139d26ddacfe40f8473383ea34385d56b6d3bcb4c023d65d05a
Description: Free Lossless Audio Codec library
Package: libfreetype
Version: 2.5.5-1
Depends: libc, zlib, libbz2
Source: feeds/packages/libs/freetype
License: FTL GPL-2.0 MIT ZLIB
LicenseFiles: docs/LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT src/bdf/README src/pcf/README src/gzip/zlib.h
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 256506
Filename: packages/libfreetype_2.5.5-1_ramips_24kec.ipk
Size: 257092
MD5Sum: 84e6a5c39c5c69fffa44cb0f194b8d54
SHA256sum: dced724aad0b9b07b6d6412566350561f4821dd9856a6384dc949a9f3845e022
Description: The FreeType project is a team of volunteers who develop free,
portable and high-quality software solutions for digital typography.
They specifically target embedded systems and focus on bringing small,
efficient and ubiquitous products.
Package: libftdi1
Version: 1.2-3
Depends: libc, libusb-1.0
Source: feeds/packages/libs/libftdi1
License: LGPL-2.0
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19307
Filename: packages/libftdi1_1.2-3_ramips_24kec.ipk
Size: 20240
MD5Sum: e222b0d4e6e01fea4d04fb96cc73bd30
SHA256sum: 775b9dee2a451ff8d83154953377f02548ba8c7b45551928643707c41992e8f1
Description: libFTDI - FTDI USB driver with bitbang mode
libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode.
The library is linked with your program in userspace, no kernel driver required.
Package: libftdi
Version: 0.20-3
Depends: libc, libusb-compat
Source: feeds/packages/libs/libftdi
License: LGPL-2.0
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10277
Filename: packages/libftdi_0.20-3_ramips_24kec.ipk
Size: 11201
MD5Sum: 447b239ab2e83696ed6c83a4a64a1aa3
SHA256sum: d1e04270ab4bd212d0d97ead62ad71ae6ec2559f523836d9ca13da3485cb0e38
Description: libFTDI - FTDI USB driver with bitbang mode
libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode.
The library is linked with your program in userspace, no kernel driver required.
Package: libgcrypt
Version: 1.6.1-1
Depends: libc, libgpg-error
Source: feeds/packages/libs/libgcrypt
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 288612
Filename: packages/libgcrypt_1.6.1-1_ramips_24kec.ipk
Size: 287754
MD5Sum: ac17ec96ea2d61678496b9935626d04d
SHA256sum: 08a4ae01ad1a2db44dd4c6df3c5570205ea6b03dca14dae34739eb1341bac627
Description: This is a general purpose cryptographic library based on the code from
GnuPG. It provides functions for all cryptograhic building blocks:
symmetric ciphers (AES, DES, Arcfour, CAST5), hash algorithms (MD5, SHA-1,
RIPE-MD160, SHA-224/256, SHA-384/512), MACs (HMAC for all hash
algorithms), public key algorithms (RSA, DSA), large integer functions,
random numbers and a lot of supporting functions. Some algorithms have
been disabled to reduce size (Blowfish, Twofish, Serpent,
RC2, SEED, Camellia, CRC, MD4, TIGER-192, Whirlpool, ElGamal, ECC).
Package: libgd
Version: 2.1.1-1
Depends: libc, libjpeg, libpng
Source: feeds/packages/libs/libgd
License: MIT
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 102183
Filename: packages/libgd_2.1.1-1_ramips_24kec.ipk
Size: 101648
MD5Sum: 0e797f3c22a2bf81ef24916a057e4e49
SHA256sum: 689086967089c11cc48bd095000b309ae0880c13218091cf5284240ede2d0722
Description: GD is an open source code library for the dynamic creation of images by
programmers. GD creates PNG, JPEG and GIF images, among other formats.
Package: libgdbm
Version: 1.11-1
Depends: libc
Source: feeds/packages/libs/gdbm
License: GPL-3.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17374
Filename: packages/libgdbm_1.11-1_ramips_24kec.ipk
Size: 18226
MD5Sum: d28a3cc212cc5b1fe55bfd96ddc9c1ba
SHA256sum: 54840df8486e57655032ae77a11fe339af0c75c89a9e342f548d84e377d0f5b2
Description: GNU database manager library
GNU dbm is a set of database routines that use extendible hashing and
works similar to the standard UNIX dbm routines.
Package: libgnutls-openssl
Version: 3.3.13-3
Depends: libc, libgnutls
Source: feeds/packages/libs/gnutls
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32200
Filename: packages/libgnutls-openssl_3.3.13-3_ramips_24kec.ipk
Size: 33175
MD5Sum: f339d3b9cd19e38ffcacbe3dbe92e5da
SHA256sum: 4772225a738cbc197458a51af3a6d7f2d9241d81d1dbe09fd0f080875d65a5b7
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS OpenSSL compatibility layer shared library.
Package: libgnutls
Version: 3.3.13-3
Depends: libc, libnettle, libgmp
Source: feeds/packages/libs/gnutls
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 286971
Filename: packages/libgnutls_3.3.13-3_ramips_24kec.ipk
Size: 287119
MD5Sum: 80059761383a311725911f95158e09c1
SHA256sum: 7ae2520357ae3dc5f01ce340f359f0d1a4dd148b0ecb5f797610d721bfb0e8e5
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS shared library, needed by other programs.
Package: libgpg-error
Version: 1.12-1
Depends: libc
Source: feeds/packages/libs/libgpg-error
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5715
Filename: packages/libgpg-error_1.12-1_ramips_24kec.ipk
Size: 6572
MD5Sum: f6c0e017701e8b1639ff0cb6f22d087b
SHA256sum: 0b549128438bba1665ef46629a63bfb9e425a6985f16bc0deba3a3febb18c996
Description: An helper library for common error codes and descriptions.
This is a library that defines common error values for all GnuPG
components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
Libksba, DirMngr, Pinentry, SmartCard Daemon and possibly more in the
future.
Package: libgst1allocators
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3330
Filename: packages/libgst1allocators_1.4.5-1_ramips_24kec.ipk
Size: 4108
MD5Sum: 094248b0610a8e31eadc422afc01e22f
SHA256sum: 834a1b34895387620a4104117bfa95c5704836da7421e9917c7e66090ffa3b7e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer allocators library.
Package: libgst1app
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15733
Filename: packages/libgst1app_1.4.5-1_ramips_24kec.ipk
Size: 16510
MD5Sum: 9a9c476b032f081175ae0ec733460581
SHA256sum: 058c68f4ee12d1c16ba51e39df84c8e5a9a181414c3636ff3f1d71aafcf9a358
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer app library.
Package: libgst1audio
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100877
Filename: packages/libgst1audio_1.4.5-1_ramips_24kec.ipk
Size: 101269
MD5Sum: 7d476d0f25ac191a96da4d7f2331f475
SHA256sum: bef2f39442b4e6edc37eebd479bd56ddabdf55f2da2648fca08fd5ff769774a0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio library.
Package: libgst1basecamerabinsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1app
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8898
Filename: packages/libgst1basecamerabinsrc_1.4.5-1_ramips_24kec.ipk
Size: 9742
MD5Sum: 2df1b53153e19d427662b96e42822a3b
SHA256sum: 8c15f3fce7c370b1ce8662e826349ddf654d285940bfd6bd83f48512627c77ee
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer basecamerabinsrc library.
Package: libgst1check
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27428
Filename: packages/libgst1check_1.4.5-1_ramips_24kec.ipk
Size: 28169
MD5Sum: 836c3b0c7d042c3f48dce90fbd9cf03f
SHA256sum: 9b13d6f414cc2d8b3405887d531f78782140cbf2dda0202dccc6e869806efd82
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer check unit testing library.
Package: libgst1controller
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20613
Filename: packages/libgst1controller_1.4.5-1_ramips_24kec.ipk
Size: 21388
MD5Sum: f906f0a1efc633a410c9e364ff75da88
SHA256sum: bfe289072107eeb18c8bf9bf60c1ce389cc8560743805caade4e57c436e2d02c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dynamic parameter control library.
Package: libgst1fft
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18924
Filename: packages/libgst1fft_1.4.5-1_ramips_24kec.ipk
Size: 19715
MD5Sum: 106dc87c14a49e1a2652a3844c7c08b7
SHA256sum: 2c7f2d1d1f473fe29fe6bcb25961acd4b9e7b9ccbb3d6c90e1343fa9b6d0b6a1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer FFT library.
Package: libgst1net
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11386
Filename: packages/libgst1net_1.4.5-1_ramips_24kec.ipk
Size: 12175
MD5Sum: 7f11c1ffb918917cc02d7dc5366c12f3
SHA256sum: 5c026b0f4481ea7cdcfe9dec1e4f1bb1035ae7df0ea39d7da05640470d79fb41
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer network classes library.
Package: libgst1pbutils
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46662
Filename: packages/libgst1pbutils_1.4.5-1_ramips_24kec.ipk
Size: 47250
MD5Sum: affb8c82bb6789ed54951488b2760e3a
SHA256sum: 6d975524144f1adbfaf22cbaba16bc5588a9ae9a2066041d29d9a115939a037c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer utils library.
Package: libgst1photography
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6926
Filename: packages/libgst1photography_1.4.5-1_ramips_24kec.ipk
Size: 7728
MD5Sum: 9ac7459910a503a410b45d12f5edd33a
SHA256sum: a48c831975beb297d43c0910efd7e0c19891029564aba622056834b5db007c31
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer photography library.
Package: libgst1riff
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19620
Filename: packages/libgst1riff_1.4.5-1_ramips_24kec.ipk
Size: 20414
MD5Sum: 6d2182f8cec887a6fb4482eeef8b42cd
SHA256sum: 22ef2ab1dd4e20000e657e48eadf66d5af452e390d6ae9869069d2f6b0fdbe8f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RIFF media library.
Package: libgst1rtp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32845
Filename: packages/libgst1rtp_1.4.5-1_ramips_24kec.ipk
Size: 33669
MD5Sum: e6759e55dddd562076fa43fff6b63530
SHA256sum: 622a872208d125b286084f6117ba815fcd638f50c2e329d47ec0ef3364593bbf
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTP library.
Package: libgst1rtsp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37241
Filename: packages/libgst1rtsp_1.4.5-1_ramips_24kec.ipk
Size: 37916
MD5Sum: 0e2573868be21e765a37b0a38779af29
SHA256sum: eb77dff37d8c5c3bca462951cb536bb5194ccdeb40b39ac2dd0ae84b3b663940
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTSP library.
Package: libgst1sdp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18860
Filename: packages/libgst1sdp_1.4.5-1_ramips_24kec.ipk
Size: 19685
MD5Sum: 5e24ce03f592cc37357a33e35231ad4b
SHA256sum: 270fd412ace2080cc9b7535f990dfc75639c8faef01dde1eab9d5ddbaaea79b1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer SDP library.
Package: libgst1tag
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76256
Filename: packages/libgst1tag_1.4.5-1_ramips_24kec.ipk
Size: 76916
MD5Sum: eac4737374cdd08af25c54ffdd6299a3
SHA256sum: 655ece2e45afb52cbf39918f235ea23fd511f639659519c4bdf1bb9c816dd638
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer tag support library.
Package: libgst1video
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 92984
Filename: packages/libgst1video_1.4.5-1_ramips_24kec.ipk
Size: 93355
MD5Sum: e1fb6890fcd243cf8ac9d492602200ad
SHA256sum: d794c66f8c508028c6c09ecd877f47bf81a2e67c8a4781849669834ba3b2d1b7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video library.
Package: libgstreamer1
Version: 1.4.5-1
Depends: libc, glib2, libpthread, libxml2
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 600112
Filename: packages/libgstreamer1_1.4.5-1_ramips_24kec.ipk
Size: 598701
MD5Sum: b83d36435b13e3b8d9b26c3708cc954f
SHA256sum: 7d4d78e7a1f2095003759dcbf9bc5e839d5383f70c25e43e6d89e5e0314f30bc
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer core library.
Package: libhamlib
Version: 1.2.15.3-3
Depends: libc, libusb-1.0, libltdl
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33648
Filename: packages/libhamlib_1.2.15.3-3_ramips_24kec.ipk
Size: 34483
MD5Sum: 68230c5eff486618d377da21c638b001
SHA256sum: 87054ba8008352713f4a058a27b41d9a3cec0382156b5c45cbc5807a534e48c7
Description: Ham Radio Control Libraries is a development effort to provide a consistent
interface for programmers wanting to incorporate radio control in their
programs.
This package contains the hamlib shared library.
Package: libhavege
Version: 1.9.1-5
Depends: libc
Source: feeds/packages/utils/haveged
License: GPLv3
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10002
Filename: packages/libhavege_1.9.1-5_ramips_24kec.ipk
Size: 10191
MD5Sum: af734c3a863d6c55b27508760b139658
SHA256sum: 36d2e7173dd8b6630639e910104ccd0e5cb3c5253eed12c8cb0cacc49e633607
Description: Library for haveged
Package: libhttp-parser
Version: 2.3.0-1
Depends: libc
Source: feeds/packages/libs/libhttp-parser
License: MIT
LicenseFiles: LICENSE-MIT
Section: libs
Maintainer: Ramanathan Sivagurunathan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9910
Filename: packages/libhttp-parser_2.3.0-1_ramips_24kec.ipk
Size: 10860
MD5Sum: 6490fc82603ff6f3f4f179385c35a3c6
SHA256sum: 555a78798040bfb91d362920c0ad30c03dc2f38515aa7ac4a98f89b0a4b66239
Description: A parser for HTTP messages written in C. It parses both requests and responses.
The parser is designed to be used in performance HTTP applications.
It does not make any syscalls nor allocations, it does not buffer data,
it can be interrupted at anytime. Depending on your architecture,
it only requires about 40 bytes of data per message stream
(in a web server that is per connection).
Package: libical
Version: 1.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/libical
License: LGPL-2.1 MPL-1.0
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 144263
Filename: packages/libical_1.0-1_ramips_24kec.ipk
Size: 143392
MD5Sum: e4a12205511f98f21fcf4b8f8ce4eb0a
SHA256sum: 944d42648afe1dcec4264655b90b92f7ef3a958abb99e1ee4f33c1786437fd72
Description: This package provides a a read/write library of classes for object oriented
languages (Initial goals of PHP and Python) that implement and enforce the iCal
standard (RFC 2445).
Package: libid3tag
Version: 0.15.1b-4
Depends: libc, zlib
Source: feeds/packages/libs/libid3tag
License: GPL-2
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24154
Filename: packages/libid3tag_0.15.1b-4_ramips_24kec.ipk
Size: 24799
MD5Sum: 9af3a761b3a0be14a866bfddbe2f5d03
SHA256sum: 30789c1fbd2ce5d856735c1a7f602f6a0ae0e221538bad6721b32c174c5cd740
Description: libid3tag is a library for reading and (eventually) writing ID3 tags, both
ID3v1 and the various versions of ID3v2.
Package: libidn
Version: 1.30-1
Depends: libc
Source: feeds/packages/libs/libidn
License: GPL-2.0+ GPL-3.0+ LGPL-2.1+ LGPL-3.0+ Apache-2.0
LicenseFiles: COPYING COPYINGv2 COPYINGv3 COPYING.LESSERv2 COPYING.LESSERv3 java/LICENSE-2.0.txt
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60228
Filename: packages/libidn_1.30-1_ramips_24kec.ipk
Size: 59234
MD5Sum: 474d183267ee4b56dda11c0e7e9e7d44
SHA256sum: e313199868bee143ab87290bfadeb6ed6d258bf684d4c9dd8b3b955d7b65d5ce
Description: GNU Libidn is a fully documented implementation of the Stringprep,
Punycode and IDNA specifications. Libidn's purpose is to encode and
decode internationalized domain names.
Library only package
Package: libimobiledevice-utils
Version: 1.2.0-1
Depends: libc, libimobiledevice
Source: feeds/packages/libs/libimobiledevice
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80000
Filename: packages/libimobiledevice-utils_1.2.0-1_ramips_24kec.ipk
Size: 80603
MD5Sum: ebf02c820586957eced5c3d6a41ced10
SHA256sum: a0ec511a566e59bd548fd15029d08d634d011e74de732873a102cb7277419450
Description: libimobiledevice is a software library that talks the protocols to support
iPhone®, iPod Touch®, iPad® and Apple TV® devices.
This package contains the libimobiledevice utilities.
Package: libimobiledevice
Version: 1.2.0-1
Depends: libc, libplist, libusbmuxd, libopenssl, libcrypto
Source: feeds/packages/libs/libimobiledevice
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39474
Filename: packages/libimobiledevice_1.2.0-1_ramips_24kec.ipk
Size: 40426
MD5Sum: 09c54fe1c26768ff3ea1fd0cf0cd2f44
SHA256sum: 2952ca7e49b1dc0117a75321abd41b934ec909066085a0032d0d710d14e9b4f9
Description: libimobiledevice is a software library that talks the protocols to support
iPhone®, iPod Touch®, iPad® and Apple TV® devices.
Package: libjpeg
Version: 9a-1
Depends: libc
Source: feeds/packages/libs/libjpeg
License: IJG
LicenseFiles: README
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 98844
Filename: packages/libjpeg_9a-1_ramips_24kec.ipk
Size: 99595
MD5Sum: 8add1400468c8137345504a8cb65b952
SHA256sum: a549f8e24b18914a02fe708dbde6faae2bca2eb484685ab1296765fb49bf00a9
Description: The Independent JPEG Group's JPEG runtime library
Package: libkmod
Version: 20-1
Depends: libc, zlib
Source: feeds/packages/utils/kmod
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Jeff Waugh <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30885
Filename: packages/libkmod_20-1_ramips_24kec.ipk
Size: 31643
MD5Sum: ae6a4b87ecfc6c84c05e13c7b31c4aa2
SHA256sum: 7c83f4adb18bb748ecbb586a01c614906f519de660a052090e5ec914bd401b87
Description: Linux kernel module handling (library)
Package: liblo-utils
Version: 0.28-1
Depends: libc, liblo
Source: feeds/packages/libs/liblo
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4870
Filename: packages/liblo-utils_0.28-1_ramips_24kec.ipk
Size: 5600
MD5Sum: 7ed42da2f2acc263a18716ba97dd2513
SHA256sum: 53fa9641e86a85a3699c836381b6a72bad45a6ea73b8705b9e39d6821004d56b
Description: Lightweight Open Sound Control (OSC) utilities
Package: liblo
Version: 0.28-1
Depends: libc, libpthread
Source: feeds/packages/libs/liblo
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24349
Filename: packages/liblo_0.28-1_ramips_24kec.ipk
Size: 25097
MD5Sum: 692dc59d20a5a5ed16dc9ce1daea3e6b
SHA256sum: 026b4be084c43a7f03028d0b58ca71692cf4dfb756ba0df08f3f47664faf9d78
Description: Lightweight Open Sound Control (OSC) library
Package: liblxc
Version: 1.1.0-1
Depends: libc, lxc, libcap, libpthread
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 147928
Filename: packages/liblxc_1.1.0-1_ramips_24kec.ipk
Size: 148557
MD5Sum: 51f7ce5ac488ec664e66a8ffb272bcdf
SHA256sum: d3b7738bdeb10b6af1882a4c6c688911a547db1c9c09fc44d965736d4704d2d2
Description: LXC userspace library
Package: libmad
Version: 0.15.1b-3
Depends: libc
Source: feeds/packages/libs/libmad
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60583
Filename: packages/libmad_0.15.1b-3_ramips_24kec.ipk
Size: 61586
MD5Sum: 83c902cf7b6bc8b4aa8612fd90558bac
SHA256sum: 36dd3f2ce24d6afd68b7d6df2964eb675c64b87c10cdefae82831ff87ca1038b
Description: MAD is a high-quality MPEG audio decoder. It currently supports
MPEG-1 and the MPEG-2 extension to lower sampling frequencies,
as well as the de facto MPEG 2.5 format. All three audio layers -
Layer I, Layer II, and Layer III (i.e. MP3) - are fully implemented.
Package: libmagic
Version: 5.20-1
Depends: libc, zlib
Source: feeds/packages/libs/file
License: BSD-2c
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 103212
Filename: packages/libmagic_5.20-1_ramips_24kec.ipk
Size: 103774
MD5Sum: 8cc665666db4fc72c356e61b94328a6e
SHA256sum: b9fd5fea6ba82a7dd0a9db7c8d07447ae1ec4d0d81a6a480bd6c020ac2e0ca44
Description: library
Package: libmcrypt
Version: 2.5.8-2
Depends: libc
Source: feeds/packages/libs/libmcrypt
License: LGPLv2.1
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58773
Filename: packages/libmcrypt_2.5.8-2_ramips_24kec.ipk
Size: 59135
MD5Sum: 828dbd76d522b21fc7e43c5dd4d2c5cf
SHA256sum: 8c291facab7824c19042e89337d3e4837c3d3860e63764e2b34464dd10618a35
Description: libmcrypt is a cryptographic library that conveniently brings
together a variety of ciphers for convenient use.
Package: libmicrohttpd
Version: 0.9.38-1.1
Depends: libc, libpthread, libgcrypt, libgnutls, libgpg-error, libcrypto, libopenssl
Source: feeds/packages/libs/libmicrohttpd
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Martijn Zilverschoon <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53057
Filename: packages/libmicrohttpd_0.9.38-1.1_ramips_24kec.ipk
Size: 53943
MD5Sum: 783c17d12044516c56cbf9e4cf3df626
SHA256sum: e31d6aa9ad0303f65c7e8280ede3fc734753eed333dbc70dbcbb74c0a8a288d0
Description: GNU libmicrohttpd is a small C library that is supposed to make it easy
to run an HTTP server as part of another application.
Package: libminiupnpc
Version: 1.9-1
Depends: libc
Source: feeds/packages/net/miniupnpc
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16143
Filename: packages/libminiupnpc_1.9-1_ramips_24kec.ipk
Size: 16843
MD5Sum: ee68f973a53cec6641b7e4bf8f670fd0
SHA256sum: e6846edba645196b320f05b3624ed88e015fe1f8eaabd096e7c2cb510fd65ffb
Description: Lightweight UPnP library
Package: libmms
Version: 0.6.4-2
Depends: libc
Source: feeds/packages/libs/libmms
License: LGPLv2.1
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22243
Filename: packages/libmms_0.6.4-2_ramips_24kec.ipk
Size: 23113
MD5Sum: 9582d26f69c0d7405f73f1bfd6d4bd72
SHA256sum: 0e804311f2d7370a3a2f7654eff1772a67102cd794f55a197d967d59e90ad43d
Description: LibMMS is a common library for parsing mms:// and mmsh:// type network streams.
These are commonly used to stream Windows Media Video content over the web.
LibMMS itself is only for receiving MMS stream,
it doesn't handle sending at all.
Package: libmodbus
Version: 3.1.2-1
Depends: libc
Source: feeds/packages/libs/libmodbus
License: GPL-3.0+ LGPL-2.1+
LicenseFiles: COPYING COPYING.LESSER
Section: libs
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14907
Filename: packages/libmodbus_3.1.2-1_ramips_24kec.ipk
Size: 15691
MD5Sum: a8fb1047d64211016e840ad59fb7ee96
SHA256sum: 54064c7bbfa85f3071ac3d50f47a72fe49be7965c948fccc0cf655daff7948fa
Description: A Modbus library for Linux, Mac OS X, FreeBSD, QNX and Win32.
Package: libmosquitto-nossl
Version: 1.4-2
Depends: libc, libpthread, librt, libcares
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: libs
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16853
Filename: packages/libmosquitto-nossl_1.4-2_ramips_24kec.ipk
Size: 17825
MD5Sum: b44443977b3d3a8ee6b32a3c234e4d2d
SHA256sum: 1365e3c0f96ebcc859120e5b3a9ff732e88e263f945d9125f31fee293eb521dc
Description: Library required for mosquitto's command line client tools, also for
use by any third party software that wants to communicate with a
mosquitto server.
Should be useable for communicating with any MQTT v3.1/3.1.1 compatible
server, such as IBM's RSMB, in addition to Mosquitto
This package is built without SSL support
Package: libmosquitto
Version: 1.4-2
Depends: libc, libpthread, librt, libcares, libopenssl
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: libs
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20226
Filename: packages/libmosquitto_1.4-2_ramips_24kec.ipk
Size: 21182
MD5Sum: 22b6590a63052cbb9b9e1153d4252056
SHA256sum: 285f60627427f8b5a0162b15282f493613b201158e0b94e9cd2143d7e3a34234
Description: Library required for mosquitto's command line client tools, also for
use by any third party software that wants to communicate with a
mosquitto server.
Should be useable for communicating with any MQTT v3.1/3.1.1 compatible
server, such as IBM's RSMB, in addition to Mosquitto
This package is built with SSL support
Package: libmpdclient
Version: 2.9-3
Depends: libc
Source: feeds/packages/libs/libmpdclient
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25300
Filename: packages/libmpdclient_2.9-3_ramips_24kec.ipk
Size: 26089
MD5Sum: 1eb9377d0e89257d60ce59ae29000ab5
SHA256sum: 607d85a8fa5aa22e7d7af251452de806c2cbe0897ded53eaa05c15a5240c4937
Description: A stable, documented, asynchronous API library for interfacing MPD in the C, C++ & Objective C languages.
Package: libmpeg2
Version: 0.5.1-1
Depends: libc
Source: feeds/packages/libs/libmpeg2
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33382
Filename: packages/libmpeg2_0.5.1-1_ramips_24kec.ipk
Size: 34089
MD5Sum: 8eacbcad003d2aca6bd496d6100f1e2c
SHA256sum: 01b7335f90f2ff51eccf0098ff9af78443a025e281763083792152c56c64c51d
Description: MPEG-1 & -2 decoding library
Package: libmysqlclient-r
Version: 5.1.73-1
Depends: libc, uclibcxx, zlib, libpthread
Source: feeds/packages/utils/mysql
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 165328
Filename: packages/libmysqlclient-r_5.1.73-1_ramips_24kec.ipk
Size: 161449
MD5Sum: a4a9338bbcf2a769a48ab354636a0fce
SHA256sum: 0b79246b65042a4e55cfe9f96e89f5b9a5d6a41c12fa5ecc99d1d3af857f3318
Description: MySQL client library threadsafe
Package: libmysqlclient
Version: 5.1.73-1
Depends: libc, uclibcxx, zlib
Source: feeds/packages/utils/mysql
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 161488
Filename: packages/libmysqlclient_5.1.73-1_ramips_24kec.ipk
Size: 157919
MD5Sum: de630cd62a9d49749b46a2e4aa3a8481
SHA256sum: dece9398d4d516ccdadb471389e4c0013c6525dcc56d274a1be64d5a9290af39
Description: MySQL client library
Package: libnatpmp
Version: 20140401-1
Depends: libc
Source: feeds/packages/libs/libnatpmp
License: BSD-3c
LicenseFiles: LICENSE
Section: libs
Maintainer: Hauke Mehrtens <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3363
Filename: packages/libnatpmp_20140401-1_ramips_24kec.ipk
Size: 4284
MD5Sum: 133710f37301528efec63a91395dcb6b
SHA256sum: 672884971c0162862438e5dd0efe6f008a45996fb48250c1f602169e88df66f8
Description: libnatpmp is an attempt to make a portable and fully compliant implementation
of the protocol for the client side. It is based on non blocking sockets and
all calls of the API are asynchronous. It is therefore very easy to integrate
the NAT-PMP code to any event driven code.
This package contains the shared library.
Package: libneon
Version: 0.30.0-1
Depends: libc, libopenssl, libexpat
Source: feeds/packages/libs/neon
Section: libs
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58528
Filename: packages/libneon_0.30.0-1_ramips_24kec.ipk
Size: 59753
MD5Sum: 93c4e502d39dfcc9686ffe1d2fddc048
SHA256sum: f5a97fbd13f8c4e400b9acaee8d54641b453be477d76c030a142225d5def27d8
Description: neon is an HTTP and WebDAV client library, with a C interface. Features:
- High-level wrappers for common HTTP and WebDAV operations (GET, MOVE, DELETE, etc)
- Low-level interface to the HTTP request/response engine, allowing the use of arbitrary HTTP methods, headers, etc.
- Authentication support including Basic and Digest support, along with GSSAPI-based Negotiate on Unix, and
SSPI-based Negotiate/NTLM on Win32
- SSL/TLS support using OpenSSL or GnuTLS; exposing an abstraction layer for verifying server certificates, handling client
certificates, and examining certificate properties. Smartcard-based client certificates are also supported via a
PKCS11 wrapper interface.
- Abstract interface to parsing XML using libxml2 or expat, and wrappers for simplifying handling XML HTTP response bodies
- WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify property manipulation.
Package: libnetfilter-acct
Version: 1.0.2-1
Depends: libc, libmnl
Source: feeds/packages/libs/libnetfilter-acct
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3116
Filename: packages/libnetfilter-acct_1.0.2-1_ramips_24kec.ipk
Size: 3936
MD5Sum: 8d5aac2a6dba34c834e01109f98d66ec
SHA256sum: 074524ca389d836036031a3041f9bb17fa15e66615775bdef3b5ef20c22aa68f
Description: libnetfilter_acct is a userspace library providing a programming interface
(API) to the extended accounting infrastructure.
Package: libnetfilter-cthelper
Version: 1.0.0-1
Depends: libc, libmnl
Source: feeds/packages/libs/libnetfilter-cthelper
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3907
Filename: packages/libnetfilter-cthelper_1.0.0-1_ramips_24kec.ipk
Size: 4757
MD5Sum: 07e47e26ae5db9c090c5d0c270972351
SHA256sum: 8497c30337108407f835f8b1e35ea231c5445407b61b44d4dad5d44508342c28
Description: libnetfilter_cthelper is the userspace library that provides the programming
interface to the user-space helper infrastructure available since Linux kernel
3.6.
With this library, you register, configure, enable and disable user-space
helpers.
Package: libnetfilter-cttimeout
Version: 1.0.0-1
Depends: libc, libmnl
Source: feeds/packages/libs/libnetfilter-cttimeout
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4032
Filename: packages/libnetfilter-cttimeout_1.0.0-1_ramips_24kec.ipk
Size: 4786
MD5Sum: 517bc53abb57c602e3185ec6e2252095
SHA256sum: 44ea64427cec095e55cf7df2de3c47c6e246bf1a9ae860a8cc0a48eaaf7f90ab
Description: API to connection tracking timeout infrastructure
Package: libnetfilter-queue
Version: 1.0.2-1
Depends: libc, libmnl, libnfnetlink, kmod-nfnetlink-queue
Source: feeds/packages/libs/libnetfilter-queue
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7369
Filename: packages/libnetfilter-queue_1.0.2-1_ramips_24kec.ipk
Size: 8227
MD5Sum: 2f9e13229bf92032611a543d0d5766ec
SHA256sum: 60d2195cd50761335b4232a047608d6afdfd7e94cf9c1b3ec34db10d56e6e9e3
Description: libnetfilter_queue is a userspace library providing an API to packets
that have been queued by the kernel packet filter.
Package: libnetsnmp
Version: 5.4.4-1
Depends: libc
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 329929
Filename: packages/libnetsnmp_5.4.4-1_ramips_24kec.ipk
Size: 330681
MD5Sum: 980e8fde3db16885752ed02f25012c57
SHA256sum: a7cb596251bb170d23771f5ef6115b7809dc267ebfe0780f8c79649e1359d0b1
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains shared libraries, needed by other programs.
Package: libnfc
Version: 1.7.1-1
Depends: libc, libusb-compat, pcscd, ccid
Source: feeds/packages/libs/libnfc
License: LGPL-2.1
Section: libs
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47978
Filename: packages/libnfc_1.7.1-1_ramips_24kec.ipk
Size: 48788
MD5Sum: 17b387b2170e760aac795b12d65bd68e
SHA256sum: 3fd060003714e287d9d99e417ffda9a9422d48da98160cc9d726c5a8ec540199
Description: libnfc is the first libre, platform-independent, low level NFC SDK and Programmers API
* manipulate Jewel Topaz tags using libnfc
* manipulate MIFARE Classic and Ultralight tags using libnfc
Package: libogg
Version: 1.3.2-2
Depends: libc
Source: feeds/packages/libs/libogg
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9008
Filename: packages/libogg_1.3.2-2_ramips_24kec.ipk
Size: 9896
MD5Sum: b57f361048ff41f0040949259f27ea8e
SHA256sum: e0451db75c8728508af29a52ce5a007b225000094afecda6c325089714cdc290
Description: Ogg project codecs use the Ogg bitstream format to arrange the raw,
compressed bitstream into a more robust, useful form. For example,
the Ogg bitstream makes seeking, time stamping and error recovery
possible, as well as mixing several sepearate, concurrent media
streams into a single physical bitstream.
Package: liboil
Version: 0.3.17-2
Depends: libc, librt
Source: feeds/packages/libs/liboil
License: FREE
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93057
Filename: packages/liboil_0.3.17-2_ramips_24kec.ipk
Size: 89433
MD5Sum: dd549555132a585195809afb42d7d890
SHA256sum: 10072e9fa77837c99ca97d850b1cda68191b1273e91204e14138d055dc0708ab
Description: Liboil is a library of simple functions that are optimized for various CPUs.
These functions are generally loops implementing simple algorithms, such as
converting an array of N integers to floating-point numbers or multiplying
and summing an array of N numbers. Such functions are candidates for significant
optimization using various techniques, especially by using extended instructions
provided by modern CPUs (Altivec, MMX, SSE, etc.).
Package: libopenldap
Version: 2.4.39-2
Depends: libc, libopenssl, libsasl2, libpthread
Source: feeds/packages/libs/openldap
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 186238
Filename: packages/libopenldap_2.4.39-2_ramips_24kec.ipk
Size: 186968
MD5Sum: 616531e6b2d316d56478237f08a50ee6
SHA256sum: fbf4e8da964c740204b99cfbe23689df12d9083a42312a89692aee81e359997a
Description: OpenLDAP Software is an open source implementation of the
Lightweight Directory Access Protocol (LDAP).
This package contains the shared LDAP client libraries, needed by other programs.
Package: libopenobex
Version: 1.7.1-1
Depends: libc, libusb-1.0
Source: feeds/packages/utils/openobex
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24938
Filename: packages/libopenobex_1.7.1-1_ramips_24kec.ipk
Size: 25711
MD5Sum: 0fe0b7f7d388f4def80af487e442be59
SHA256sum: 8d18ff944705fd9ff2f1c9878d4420fe15500fab2399a5c2e4fe3b4d7ca8eda7
Description: Open Source impl of the OBject EXchange protocol (library)
Package: libopensc-pkcs11
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58928
Filename: packages/libopensc-pkcs11_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 59162
MD5Sum: f9ea8d94d5c59a0a82d9d894605b78ec
SHA256sum: dc07bd3c3954f5eda14489c9198d5373f2fc650986a01f7e5c6407a7f99e8fec
Description: OpenSC PKCS#11 provider
Package: libopensc-profile-asepcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1117
Filename: packages/libopensc-profile-asepcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1907
MD5Sum: c953d87ce2b1c85eda760310a088756d
SHA256sum: 0530e836801b1f5696c446723dfb6514da17693dcc17ef45c61a7fe76f57ebb2
Description: asepcos card profile for opensc
Package: libopensc-profile-authentic
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1112
Filename: packages/libopensc-profile-authentic_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1923
MD5Sum: ac40eadfc621410597efe8da0e3142aa
SHA256sum: 8a95a202f9f1c3cd9b7a66d0bc4b95e61232b5f829b79c3a16b7b1ae1a573311
Description: authentic card profile for opensc
Package: libopensc-profile-cardos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1202
Filename: packages/libopensc-profile-cardos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2002
MD5Sum: 17a68ca354c327e68621c12646587d28
SHA256sum: ebe4bbbb14448ac69bb8dda7c071439d638f44e7aeedb5ec3405eb303273b076
Description: cardos card profile for opensc
Package: libopensc-profile-cyberflex
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1374
Filename: packages/libopensc-profile-cyberflex_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2181
MD5Sum: 1cf622b1d1a4d1c7cec2b64f61c9da54
SHA256sum: 47d80f07436f2bde09fc38cb9a95c87c9b75fd9de3a4c658a4df724bd8102829
Description: cyberflex card profile for opensc
Package: libopensc-profile-entersafe
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1338
Filename: packages/libopensc-profile-entersafe_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2149
MD5Sum: a81b1f65df45309d4fa68011e95f5680
SHA256sum: becbe9b1c018fbac994005863ba105cf16d3b1e49b5170017cc358b4812d476d
Description: entersafe card profile for opensc
Package: libopensc-profile-epass2003
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1388
Filename: packages/libopensc-profile-epass2003_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2198
MD5Sum: 0239a241a246b3bdc93377cf25e9b370
SHA256sum: 34bdf25720cfe8c6327e3492bf3b43c444eb74937e715b786966f9e599abf54b
Description: epass2003 card profile for opensc
Package: libopensc-profile-flex
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1482
Filename: packages/libopensc-profile-flex_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2283
MD5Sum: efd175675663cb4d3b1a1ddc83b8031d
SHA256sum: f6be9504b04207e18ef0a6a32fc0978bc8997baaedb981e156309de39b3a9de2
Description: flex card profile for opensc
Package: libopensc-profile-gpk
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1153
Filename: packages/libopensc-profile-gpk_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1955
MD5Sum: 06750b6baa7b4c1d0cea522271775792
SHA256sum: e62b8bdd8c2930dcfe327dcc06c4a0779fe1c3648eabbe62bd99b9fd8c8aaaa2
Description: gpk card profile for opensc
Package: libopensc-profile-ias-adele-admin1
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1420
Filename: packages/libopensc-profile-ias-adele-admin1_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2239
MD5Sum: 6b408a2aa9c48d50e0b0dafb04011105
SHA256sum: 6a28a4952cb01c59b2ac0b934d8a8e3d6eb09f67c1d0438a42d713f56afaffd0
Description: ias_adele_admin1 card profile for opensc
Package: libopensc-profile-ias-adele-admin2
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1464
Filename: packages/libopensc-profile-ias-adele-admin2_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2280
MD5Sum: a67fb81b740015a21bf651ad51d99d41
SHA256sum: 5455ed95f2039102ccc9f25762255eabee5cadd0ebb6977094ffdd689b28262b
Description: ias_adele_admin2 card profile for opensc
Package: libopensc-profile-ias-adele-common
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1448
Filename: packages/libopensc-profile-ias-adele-common_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2266
MD5Sum: ac0abc96908467cf43f53d8cbf874932
SHA256sum: fe088bcb98df07425a4ca5eff5536ef516f86cc629a953f6e4b5d2f68778cd0c
Description: ias_adele_common card profile for opensc
Package: libopensc-profile-iasecc-admin-eid
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1544
Filename: packages/libopensc-profile-iasecc-admin-eid_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2367
MD5Sum: 07844ddee6b2a64fb170ae9624f51137
SHA256sum: 4c1f9d0d49f0558a0eedd3531c0d2ecba28554393f55bd90aa7b662d4e852d85
Description: iasecc_admin_eid card profile for opensc
Package: libopensc-profile-iasecc-generic-oberthur
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1395
Filename: packages/libopensc-profile-iasecc-generic-oberthur_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2206
MD5Sum: 70173de251b0dc8255002d169c39a343
SHA256sum: ec1a481f33fbc88bf092d554c595372646ef94c56f39ed9cbf45073a1b8ccaf2
Description: iasecc_generic_oberthur card profile for opensc
Package: libopensc-profile-iasecc-generic-pki
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1536
Filename: packages/libopensc-profile-iasecc-generic-pki_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2347
MD5Sum: 82cfeae7e7998aef5c9bb614cfa635ee
SHA256sum: 1328f4c044e6ca53e36d23d7d64b257e261c282fd6b05e20ea456c88b73f69e3
Description: iasecc_generic_pki card profile for opensc
Package: libopensc-profile-iasecc
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1207
Filename: packages/libopensc-profile-iasecc_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2006
MD5Sum: 0411f0230de4e0207bd43d2f54fd78b4
SHA256sum: e2dc7362e8cba6392ba8a1d2eef234c8c022455572d614226152171da42b952f
Description: iasecc card profile for opensc
Package: libopensc-profile-incrypto34
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1168
Filename: packages/libopensc-profile-incrypto34_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1972
MD5Sum: 6cba7b1a87b14ae1c81e37c3dd19db00
SHA256sum: c7cbc7dbc44d05309b00444a6ff170db4dc28bd099b490aa65961c10ce554800
Description: incrypto34 card profile for opensc
Package: libopensc-profile-jcop
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 619
Filename: packages/libopensc-profile-jcop_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1408
MD5Sum: 26d617cd63e98a765451da729a7d5aa7
SHA256sum: 9da2732853263048f46d54b83dad3dc7f3089ca33c7a61808c2d10f9653053a3
Description: jcop card profile for opensc
Package: libopensc-profile-miocos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 755
Filename: packages/libopensc-profile-miocos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1542
MD5Sum: 06d6e6ab85ec96420d35714c5bc34437
SHA256sum: eb26752f04853150acec20a164c4335147fa4af5372c3131c7a5f379a52e0fac
Description: miocos card profile for opensc
Package: libopensc-profile-muscle
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1195
Filename: packages/libopensc-profile-muscle_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1995
MD5Sum: 8b99ce53a2d61c4ed638998159b3fbcd
SHA256sum: 6c2f4695c202acd72b4d2b9363baef40d9d34511a478dddf547310381b1776f2
Description: muscle card profile for opensc
Package: libopensc-profile-myeid
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1505
Filename: packages/libopensc-profile-myeid_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2312
MD5Sum: 18e650f15b66361004fb2bfca80311d1
SHA256sum: a0a4a74b48e2938a8bbd82b8b40fcf563135044cd7c5021ee895ea813a3caf8e
Description: myeid card profile for opensc
Package: libopensc-profile-oberthur
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1493
Filename: packages/libopensc-profile-oberthur_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2299
MD5Sum: 7b1e1093cfd9c574d486ad03733cda5b
SHA256sum: 00eac85c14e318c48e023fdf910e353fa659f86b05e6e451e7f7df4c9bc93789
Description: oberthur card profile for opensc
Package: libopensc-profile-openpgp
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1077
Filename: packages/libopensc-profile-openpgp_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1869
MD5Sum: 1025130e1deba4d779a182056a833947
SHA256sum: c25ce54eee812d236d6ad5d2dab161e2ae8a30069150880771338e09a3d1b543
Description: openpgp card profile for opensc
Package: libopensc-profile-pkcs15
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1627
Filename: packages/libopensc-profile-pkcs15_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2429
MD5Sum: d6e10238a392ef259896574299498d30
SHA256sum: 166bde034bc0f2b69a54a493dbdd4c40d4d7083e198c843150877b0b53931b47
Description: pkcs15 card profile for opensc
Package: libopensc-profile-rutoken-ecp
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1595
Filename: packages/libopensc-profile-rutoken-ecp_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2408
MD5Sum: 34040df358060162140142ba263678a4
SHA256sum: 7c27609cc6df0b917758e84af329aaaeb4f4234eb644ff08b30cb09a49d3460f
Description: rutoken_ecp card profile for opensc
Package: libopensc-profile-rutoken
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1534
Filename: packages/libopensc-profile-rutoken_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2338
MD5Sum: 820a4410664279260304d7e2a4c30e87
SHA256sum: ef0b15071cdb0d1962849bc667712dd5c129660fb4a00590d629464f497f8d86
Description: rutoken card profile for opensc
Package: libopensc-profile-sc-hsm
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 738
Filename: packages/libopensc-profile-sc-hsm_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1525
MD5Sum: 20c861589a6ede6939237505ead59115
SHA256sum: f40db0c7ef9ceacc73301c7837dbd46c701b992acf64f68e654c53c2dfe3a2ea
Description: sc-hsm card profile for opensc
Package: libopensc-profile-setcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1219
Filename: packages/libopensc-profile-setcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2013
MD5Sum: 10a4a111beb15f45850184e175fd6811
SHA256sum: 4fa197e558d52b92f311c8d9112bb93e64fdf49062c29cd59815389b77cc44b8
Description: setcos card profile for opensc
Package: libopensc-profile-starcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1127
Filename: packages/libopensc-profile-starcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1918
MD5Sum: 46ac159a146c34dad28b4efd895c2d68
SHA256sum: 6bff574f8277e105405a7e2206953a45d02c6f3c3838effb206dcb0536056f0e
Description: starcos card profile for opensc
Package: libopensc-profile-westcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1245
Filename: packages/libopensc-profile-westcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2042
MD5Sum: 423db3c3e48dc588aff1d2c92b0c16a5
SHA256sum: 447933644f25949d4788bdb3e65e4e9e10f8546becbbfa5340e4672e9403dc66
Description: westcos card profile for opensc
Package: libopensc
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopenssl, libpthread
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 591499
Filename: packages/libopensc_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 590984
MD5Sum: 2127cbba6368ad202c3c942847e5471b
SHA256sum: 752620a3758b2d4349ac9bff061e639723069935cff667b89a0e86227e1c100c
Description: OpenSC provides a set of libraries and utilities to work with smart cards.
Its main focus is on cards that support cryptographic operations, and
facilitate their use in security applications such as authentication,
mail encryption and digital signatures.
Package: liboping
Version: 1.6.2-1
Depends: libc
Source: feeds/packages/libs/liboping
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7011
Filename: packages/liboping_1.6.2-1_ramips_24kec.ipk
Size: 7803
MD5Sum: c96512004f1d99ed85611ddb61a6f717
SHA256sum: f3c01a8fe876f461a8f2f7d16dcff773c283ad4b7c27c07ac4c4751e28c31ebf
Description: C library to generate ICMP echo requests.
Package: libopus
Version: 1.1-1
Depends: libc
Source: feeds/packages/libs/opus
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 160654
Filename: packages/libopus_1.1-1_ramips_24kec.ipk
Size: 161324
MD5Sum: 65e35a258f0868a90cceedb24107d139
SHA256sum: b3a15e15f53f0bca3b3422e659b888bbdd3727c492cc5dd0e50b74ee0811019a
Description: Opus is a totally open, royalty-free, highly versatile audio codec. Opus is
unmatched for interactive speech and music transmission over the Internet, but
is also intended for storage and streaming applications.
Package: libow-capi
Version: 2.9p5-1
Depends: libc, libow
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3087
Filename: packages/libow-capi_2.9p5-1_ramips_24kec.ipk
Size: 4232
MD5Sum: 9d594f973affc2536a90b4d0f46b79f5
SHA256sum: 0c80a4d41413995e7ea44256d27ce9f1921ad6b90bc410a358b51a78af486cff
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS C-API library.
Package: libow
Version: 2.9p5-1
Depends: libc, libusb-compat, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 277495
Filename: packages/libow_2.9p5-1_ramips_24kec.ipk
Size: 275680
MD5Sum: c17e83dad0bc93c21fdac362a864954d
SHA256sum: ed465eb39ad59ec25e18f705edd541fc85493bc9a5d78ee47a0feb93862d6e91
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS library.
Package: libp11
Version: 20131021-ab6306ee7ede9b2fb9c1fa2c3694c6e7ff044a9e
Depends: libc, libopenssl
Source: feeds/packages/libs/libp11
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11166
Filename: packages/libp11_20131021-ab6306ee7ede9b2fb9c1fa2c3694c6e7ff044a9e_ramips_24kec.ipk
Size: 11954
MD5Sum: 1a8c1540f226941a0e2a01b714f84ef9
SHA256sum: e927402d0c8998b9048db21cf52d61385b75ebc270fcd65aa5cc58bb29a66f58
Description: Libp11 is a library implementing a small layer on top of PKCS#11 API
to make using PKCS#11 implementations easier.
Package: libpam
Version: 1.1.8-4
Depends: libc
Source: feeds/packages/libs/libpam
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 182162
Filename: packages/libpam_1.1.8-4_ramips_24kec.ipk
Size: 182842
MD5Sum: 33ec30bbf96160c2ccd268a68ae467df
SHA256sum: eaa175850a9bb6ecb5f0c4049f138cec94a4b4a9e2c80dfb9c6984b07ddfeb2f
Description: The Linux-PAM Pluggable Authentication Modules.
Package: libpcre
Version: 8.36-1
Depends: libc
Source: feeds/packages/libs/pcre
License: BSD-3-Clause
LicenseFiles: LICENCE
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82835
Filename: packages/libpcre_8.36-1_ramips_24kec.ipk
Size: 83585
MD5Sum: cd4cd26dfe4f1e554e02007a1bed466c
SHA256sum: 98f45e24542eb4cce55d09515d07a4cffcaf0664f2a8cf009890940cb4be6343
Description: A Perl Compatible Regular Expression library
Package: libpcrecpp
Version: 8.36-1
Depends: libc, libpcre, libstdcpp
Source: feeds/packages/libs/pcre
License: BSD-3-Clause
LicenseFiles: LICENCE
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11402
Filename: packages/libpcrecpp_8.36-1_ramips_24kec.ipk
Size: 12190
MD5Sum: 2c9474a949d712015bef88ec8995d2b8
SHA256sum: bf6c223478a8fa306b5d02cebfe70d11194f2c48fffcc28e38b24e496b5ab347
Description: C++ wrapper for Perl Compatible Regular Expression library
Package: libpcsclite
Version: 1.8.13-1
Depends: libc, libusb-1.0, libpthread, librt
Source: feeds/packages/utils/pcsc-lite
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15607
Filename: packages/libpcsclite_1.8.13-1_ramips_24kec.ipk
Size: 16439
MD5Sum: 7dda1996bda3a25e94ed2cf1d3bd14bc
SHA256sum: bb8b22b8076d92c714b4899b41163e4ea9040a07a35626e4a463fd91a6e550a2
Description: The purpose of PC/SC Lite is to provide a Windows(R) SCard
interface in a very small form factor for communicating to
smart cards and smart cards readers.
.
This package contains the PC/SC shared library.
Package: libpkcs11-spy
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopenssl, libpthread
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16631
Filename: packages/libpkcs11-spy_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 17121
MD5Sum: 88025f744b19bcafa72f945d02f5793f
SHA256sum: 0c9a6eee73f63b9ed930142a31eb20a66f77384c238e9b2ec60dbe0aa887a440
Description: PKCS11 spying wrapper
Package: libplist-utils
Version: 1.13-1
Depends: libc, libplist
Source: feeds/packages/libs/libplist
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2419
Filename: packages/libplist-utils_1.13-1_ramips_24kec.ipk
Size: 3239
MD5Sum: 62a04a4b1982fdbdf10471fc6154b2b3
SHA256sum: 199821578a2f1dd108ed81802d2a56333919537a5b83632e64781e74401533fa
Description: A library to handle Apple Property List format whereas it's binary or XML
This package contains the libplist utilities.
Package: libplist
Version: 1.13-1
Depends: libc, libxml2
Source: feeds/packages/libs/libplist
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16117
Filename: packages/libplist_1.13-1_ramips_24kec.ipk
Size: 16875
MD5Sum: b2d954eb4b15c298992cb78b56e1223e
SHA256sum: 51cd8251dde947f2ba132a4c8c9d6713cf982d951fc8ca7aa01628c4862adce6
Description: A library to handle Apple Property List format whereas it's binary or XML
Package: libplistcxx
Version: 1.13-1
Depends: libc, libplist, libstdcpp
Source: feeds/packages/libs/libplist
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16101
Filename: packages/libplistcxx_1.13-1_ramips_24kec.ipk
Size: 16879
MD5Sum: c7513e5b311d2f93a6aa7086e3057677
SHA256sum: aa48892ad73d75963d47aac741925b7b6623ea320541e3d26dac138626e820c5
Description: A library to handle Apple Property List format whereas it's binary or XML
This package contains the libplist C++ shared library.
Package: libpng
Version: 1.2.52-1
Depends: libc, zlib
Source: feeds/packages/libs/libpng
License: Libpng GPL-2.0+ BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 120922
Filename: packages/libpng_1.2.52-1_ramips_24kec.ipk
Size: 121702
MD5Sum: 81c75fb7bf2a2dd52fe829d8f0b7999e
SHA256sum: d3f863db8b33d265049baac5e46d997010079c8721270863a7e1843b47c45d09
Description: A PNG format files handling library
Package: libpq
Version: 9.0.17-1
Depends: libc, zlib, libreadline, libpthread, libncurses, shadow-utils, shadow-su
Source: feeds/packages/libs/postgresql
License: PostgreSQL
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53667
Filename: packages/libpq_9.0.17-1_ramips_24kec.ipk
Size: 54401
MD5Sum: f5f8ac33e3d1214bb33d908362cebbba
SHA256sum: 49fcffada2af8a79eef2c92f5ff547c36a603d1364d6fa3a8c957ed25de01eab
Description: PostgreSQL client library.
Package: libprotobuf-c
Version: v1.0.1
Depends: libc
Source: feeds/packages/libs/protobuf-c
License: BSD-2c
Section: libs
Maintainer: Jacob Siverskog <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10849
Filename: packages/libprotobuf-c_v1.0.1_ramips_24kec.ipk
Size: 11693
MD5Sum: bf9eab55f9298fd8536cae0bdfc9f006
SHA256sum: 8f79b3c8fb3b7ebc53e4dad9c6bc9017c5f983838f6d48ccd88a175b13d94b50
Description: Runtime library to use Google Protocol Buffers from C applications.
Protocol Buffers are a way of encoding structured data in an efficient yet
extensible format. Google uses Protocol Buffers for almost all of its
internal RPC protocols and file formats.
Package: librrd1
Version: 1.0.50-2
Depends: libc, zlib
Source: feeds/packages/utils/rrdtool1
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 135295
Filename: packages/librrd1_1.0.50-2_ramips_24kec.ipk
Size: 136084
MD5Sum: 8f21b252f51005908de20723e45f5876
SHA256sum: da3dd987d302172589a183f10efe6f51e0a429fa85620b1bfd848de20e94fe4c
Description: RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will
not expand over time, and it presents useful graphs by processing the data
to enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put friendly user interface on it.
This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
librrd.so. The library is much smaller compared to the 1.2.x version with
separate dynamic linked libraries.
This package contains a shared library, used by other programs.
Package: librtlsdr
Version: 2014-02-10
Depends: libc, libusb-1.0
Source: feeds/packages/utils/rtl-sdr
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20074
Filename: packages/librtlsdr_2014-02-10_ramips_24kec.ipk
Size: 20917
MD5Sum: 2e69320a18818aed383c3bbcd8299c96
SHA256sum: 5b1aa901fac8cfe7b7d325f08e3136f8369ee458c5bb3f296d8be24ac8e31ee8
Description: rtl-sdr allows DVB-T dongles based on the Realtek RTL2832U to be used as
an inexpensive SDR.
This package contains the librtlsdr shared library.
Package: libruby
Version: 2.2.1-1
Depends: libc, libpthread, librt, libgmp
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 801183
Filename: packages/libruby_2.2.1-1_ramips_24kec.ipk
Size: 797107
MD5Sum: b0fddd76f7859f25d7ca517017abc47f
SHA256sum: 319841f3bff102e776e6fe41cf77ed2eb3205d63167e055eb2079933b5b78c79
Description: Ruby scripting language (shared library)
Package: libsamplerate
Version: 0.1.8-1
Depends: libc, libsndfile
Source: feeds/packages/libs/libsamplerate
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1341401
Filename: packages/libsamplerate_0.1.8-1_ramips_24kec.ipk
Size: 1342496
MD5Sum: 6d9fe34d34acd4e8c4718f016de9c9af
SHA256sum: 5eb482190511e34c5be881575f76555fa7fc2b6247d906f1d1fa651f2b8e1780
Description: Secret Rabbit Code (aka libsamplerate) is a Sample Rate
Converter for audio.
Package: libsasl2
Version: 2.1.26-3
Depends: libc, libopenssl
Source: feeds/packages/libs/cyrus-sasl
License: BSD-4c BSD
LicenseFiles: COPYING cmulocal/COPYING saslauthd/COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80775
Filename: packages/libsasl2_2.1.26-3_ramips_24kec.ipk
Size: 81509
MD5Sum: 597ebcc2a521404542a4cb1b6a03f9c6
SHA256sum: f5d8a8e2280be4aa8f816e4bcefb57e6f852f6bbbdfe0e8f7f8ae9584ccb9a0d
Description: A general purpose authentication library
Package: libsearpc
Version: 3.1.7-8998e7b2c5587f0b94c48db24e2952d08def5add
Depends: libc, glib2, jansson, python
Source: feeds/packages/libs/libsearpc
License: GPL-3.0
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12796
Filename: packages/libsearpc_3.1.7-8998e7b2c5587f0b94c48db24e2952d08def5add_ramips_24kec.ipk
Size: 13633
MD5Sum: 280370f15c55b35699483e6d4f2e3492
SHA256sum: 852baa7cfc2f4aca778404984bc4ca14553fc25f18af8713f17bcdec8a7bdf7d
Description: Searpc is a simple C language RPC framework based on GObject system.
Searpc handles the serialization/deserialization part of RPC,
the transport part is left to users.
Package: libseccomp
Version: 2.2.0-2
Depends: libc
Source: feeds/packages/libs/libseccomp
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32815
Filename: packages/libseccomp_2.2.0-2_ramips_24kec.ipk
Size: 29482
MD5Sum: 87b9222ab6902deacf8c21895cb93712
SHA256sum: 83c109c25a8e0b9052cf83397bf552d0980e9ade626d1db10e64fe9e7ffb6c50
Description: This package contains the seccomp library.
Package: libsensors
Version: 3.3.5-1
Depends: libc, sysfsutils
Source: feeds/packages/utils/lm-sensors
License: GPL-2.0+ LGPL-2.1+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58700
Filename: packages/libsensors_3.3.5-1_ramips_24kec.ipk
Size: 59117
MD5Sum: 1ee1522a19f1c2f666b74d532c65bb23
SHA256sum: 0ead04633364909118d09039cab1c0b6d287f0d1d134efac5bdafda9016f9f71
Description: lm-sensors libraries
Package: libshout
Version: 2.3.1-1
Depends: libc, libspeex, libtheora, libvorbis, libvorbisidec, libpthread
Source: feeds/packages/libs/libshout
License: LGPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23941
Filename: packages/libshout_2.3.1-1_ramips_24kec.ipk
Size: 24865
MD5Sum: c7c67f7f1c1a3d0b67399a867a043f17
SHA256sum: e5816881c45d274aff025350e3169c674cd7aa7b462044470978c3c7030187bd
Description: libshout allows applications to easily communicate and broadcast
to an Icecast streaming media server. It handles the socket connections,
metadata communication, and data streaming for the calling application,
and lets developers focus on feature sets instead of implementation
details.
Package: libsigcxx
Version: 2.4.1-1
Depends: libc, libstdcpp
Source: feeds/packages/libs/libsigc++
License: LGPL-2.1
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10607
Filename: packages/libsigcxx_2.4.1-1_ramips_24kec.ipk
Size: 11419
MD5Sum: b421f2a1d730e4ee8705a78aa02b624c
SHA256sum: e34e9bfed47dea0035863ed9cd11c740e558c458a956ed4cfd1754b2e2df7c93
Description: It allows you to define signals and to connect those signals to any
callback function, either global or a member function, regardless of
whether it is static or virtual.
Package: libsndfile
Version: 1.0.25-2
Depends: libc
Source: feeds/packages/libs/libsndfile
License: LGPLv2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 142365
Filename: packages/libsndfile_1.0.25-2_ramips_24kec.ipk
Size: 142144
MD5Sum: bd52194e78b0983ebf3625e4a2fe3d44
SHA256sum: 777a68ae3fd2c225c892af7196ebd4efe2faa647bed6bd92b896ea485fd4bc0c
Description: libsndfile is a library of C routines for reading and writing files
containing sampled audio data.
Package: libsodium
Version: 1.0.2-1
Depends: libc
Source: feeds/packages/libs/libsodium
License: ISC
Section: libs
Maintainer: Damiano Renfer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 107840
Filename: packages/libsodium_1.0.2-1_ramips_24kec.ipk
Size: 108553
MD5Sum: 8b89f0124cf5a750a825c6c8650638c6
SHA256sum: 0c50b690a81f1d41cbb4788a21728a34cdd294cd9606bb419bb481652190d114
Description: NaCl (pronounced "salt") is a new easy-to-use high-speed software library for network communication, encryption, decryption, signatures, etc.
NaCl's goal is to provide all of the core operations needed to build higher-level cryptographic tools.
Sodium is a portable, cross-compilable, installable, packageable fork of NaCl (based on the latest released upstream version nacl-20110221), with a compatible API.
The design choices, particularly in regard to the Curve25519 Diffie-Hellman function, emphasize security (whereas NIST curves emphasize "performance" at the cost of security), and "magic constants" in NaCl/Sodium have clear rationales.
The same cannot be said of NIST curves, where the specific origins of certain constants are not described by the standards.
And despite the emphasis on higher security, primitives are faster across-the-board than most implementations of the NIST standards.
Package: libsoup
Version: 2.44.2-1
Depends: libc, glib2, libxml2, libgnutls, libsqlite3
Source: feeds/packages/libs/libsoup
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 200214
Filename: packages/libsoup_2.44.2-1_ramips_24kec.ipk
Size: 191133
MD5Sum: 9e196f19931913bd140878005b6f7df6
SHA256sum: 8e5e972cd01bfe3b8fdc4c5236fa8d37fead364491169d6ffc1027ae00c898af
Description: libsoup
Package: libsoxr
Version: 0.1.1-2
Depends: libc, libpthread
Source: feeds/packages/libs/libsoxr
License: LGPL-2.1
LicenseFiles: LICENCE
Section: libs
Maintainer: Mike Brady <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105014
Filename: packages/libsoxr_0.1.1-2_ramips_24kec.ipk
Size: 105302
MD5Sum: 3a8d9af308815d5a3b040c70fba839a6
SHA256sum: 840c2f817bdbdc7025773accf7a665273bbf92316d19b4a689675a166a52c643
Description: The SoX Resampler library
High quality, one-dimensional sample-rate conversion library
Package: libspeex
Version: 1.2rc1-1
Depends: libc
Source: feeds/packages/libs/speex
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44797
Filename: packages/libspeex_1.2rc1-1_ramips_24kec.ipk
Size: 45767
MD5Sum: 738750abed90a172b6d46c0337ed8ce2
SHA256sum: a7abb783205def13852ee1deeb90e36ee242884d2e26380ffa7fd3d970257a12
Description: Open source patent-free speech compression codec library.
Speex is an Open Source/Free Software patent-free audio compression
format designed for speech. The Speex Project aims to lower the
barrier of entry for voice applications by providing a free
alternative to expensive proprietary speech codecs. Moreover, Speex
is well-adapted to Internet applications and provides useful features
that are not present in most other codecs.
This package contains the shared codec library, needed by other programs.
Package: libspeexdsp
Version: 1.2rc1-1
Depends: libc
Source: feeds/packages/libs/speex
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35598
Filename: packages/libspeexdsp_1.2rc1-1_ramips_24kec.ipk
Size: 36614
MD5Sum: 90a1eb618f7d2beb46d8960dbd426897
SHA256sum: f5f890846325c6af8e595250a496a37509c2d9a4978529bf3a030965e2df5965
Description: Open source patent-free speech compression codec library.
Speex is an Open Source/Free Software patent-free audio compression
format designed for speech. The Speex Project aims to lower the
barrier of entry for voice applications by providing a free
alternative to expensive proprietary speech codecs. Moreover, Speex
is well-adapted to Internet applications and provides useful features
that are not present in most other codecs.
This package contains the shared dsp library, needed by other programs.
Package: libsqlite3
Version: 3080803-1
Depends: libc, libpthread
Source: feeds/packages/libs/sqlite3
License: PUBLICDOMAIN
Section: libs
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 359008
Filename: packages/libsqlite3_3080803-1_ramips_24kec.ipk
Size: 359445
MD5Sum: 4bf96cd3daa7de5c18826bd07394935d
SHA256sum: fd92bf63282f501237a2e827c3bc7985d91b48c81f768aad48ff98c351dbe14f
Description: SQLite is a small C library that implements a self-contained, embeddable,
zero-configuration SQL database engine.
This package contains the SQLite (v3.x) shared library, used by other
programs.
Package: libssh2
Version: 1.4.3-2
Depends: libc, libopenssl, zlib
Source: feeds/packages/libs/libssh2
License: BSD
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58475
Filename: packages/libssh2_1.4.3-2_ramips_24kec.ipk
Size: 59264
MD5Sum: 8e2dfb0a5a08b679b007d06df32cdc1f
SHA256sum: 3a42d4517d89300aae9f75c1c6d75066598e83a9ea386eb6878265fe8fe7c7d8
Description: libssh2 is a client-side C library implementing the SSH2 protocol.
Package: libstoken
Version: 0.8-1
Depends: libc, libxml2, libnettle
Source: feeds/packages/utils/stoken
License: LGPL-2.1
Section: libs
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21423
Filename: packages/libstoken_0.8-1_ramips_24kec.ipk
Size: 22171
MD5Sum: 48c474b922d21930d699bd430b6aa00c
SHA256sum: 778b3027a3b846a540f572ceb9b988aaaaf0367a218450eacdbf00d2a55105f6
Description: stoken is a tokencode generator compatible with RSA SecurID 128-bit (AES)
Package: libtasn1
Version: 4.3-1
Depends: libc
Source: feeds/packages/libs/libtasn1
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28811
Filename: packages/libtasn1_4.3-1_ramips_24kec.ipk
Size: 29562
MD5Sum: ed7e6fe098cb09fea6e7e5f6ec6fdf02
SHA256sum: 6201db2aa55b9afda57d231c864a48a77751b36e858e30805496981e65d908d3
Description: This is a library for Abstract Syntax Notation One (ASN.1) and
Distinguish Encoding Rules (DER) manipulation.
Package: libtheora
Version: 1.1.1-1
Depends: libc, libogg
Source: feeds/packages/libs/libtheora
License: BSD-3-Clause
LicenseFiles: COPYING LICENSE
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243573
Filename: packages/libtheora_1.1.1-1_ramips_24kec.ipk
Size: 244654
MD5Sum: 84f94124283b05f84949230a95ab6424
SHA256sum: 160cffaa939f33c14ef28d7287b7e4cdd78399a078b0568bd6e1c6c0db8cc48b
Description: Theora is Xiph.Org's first publicly released video codec, intended
for use within the Foundation's Ogg multimedia streaming system.
Theora is derived directly from On2's VP3 codec; Currently the
encoders are nearly identical, but Theora will make use of new
features supported by the decoder to improve over what is
is possible with VP3.
Package: libtiff
Version: 4.0.3-4
Depends: libc, zlib, libjpeg
Source: feeds/packages/libs/tiff
License: BSD
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123864
Filename: packages/libtiff_4.0.3-4_ramips_24kec.ipk
Size: 124283
MD5Sum: f656fbcb4a14d1d88cad47584ee6a360
SHA256sum: a6e50c4741e7e9024ce356af7b1a5acc36b771c30cd5f096cea2aa73de4c19ba
Description: TIFF library
Package: libtiffxx
Version: 4.0.3-4
Depends: libc, libtiff, uclibcxx
Source: feeds/packages/libs/tiff
License: BSD
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3643
Filename: packages/libtiffxx_4.0.3-4_ramips_24kec.ipk
Size: 4365
MD5Sum: 5238de151d2ef55e36099ca592d9c58b
SHA256sum: b1135bb370c59785c3300e2a1aebbcd69ed8c304f54b1099cc3e8b8e03a26530
Description: TIFF library(c++ bindings)
Package: libtorrent
Version: 0.13.4-git-0-72e908707f01ee01a9b4918436c64348878b63f7
Depends: libc, libopenssl, libsigcxx
Source: feeds/packages/libs/libtorrent
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 318853
Filename: packages/libtorrent_0.13.4-git-0-72e908707f01ee01a9b4918436c64348878b63f7_ramips_24kec.ipk
Size: 319205
MD5Sum: 9f88400f19d14c50d050e57e95320bdc
SHA256sum: fd2e4f9f77dbc966d03381d4cb1b17279e48cbe18151db703eec790a35302f74
Description: LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on
high performance and good code. The library differentiates itself from other
implementations by transfering directly from file pages to the network stack.
On high-bandwidth connections it is able to seed at 3 times the speed of the
official client.
Package: libugpio
Version: 0.0.6-1
Depends: libc
Source: feeds/packages/libs/libugpio
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4385
Filename: packages/libugpio_0.0.6-1_ramips_24kec.ipk
Size: 5151
MD5Sum: 2d8c5736741098d6d60ffec178ea2dcd
SHA256sum: eee5d7e79158bbe13c6a09ec649364eaf422fcd802ab34cc96074bd825cc975f
Description: libugpio is a library to ease the use of linux kernel's sysfs
gpio interface from C programs and/or other libraries.
Package: libunbound
Version: 1.5.1-1
Depends: libc, libopenssl
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 262733
Filename: packages/libunbound_1.5.1-1_ramips_24kec.ipk
Size: 259975
MD5Sum: 3d99ef1e9e2d3388eff82a44abd5a6c9
SHA256sum: 4fe98860fa7489d02b22887b232dacb06a6336507cda748b8eca8bca668ac8b8
Description: This package contains the Unbound shared library.
Package: libunistring
Version: 0.9.5-1
Depends: libc
Source: feeds/packages/libs/libunistring
License: GPL-3.0
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 528690
Filename: packages/libunistring_0.9.5-1_ramips_24kec.ipk
Size: 524208
MD5Sum: 666a1c5fea558f2e16279bf7f4921064
SHA256sum: e850ee91586fe44c82302ba68fb5a32063b966cefb1a2559b00192c0f95f955a
Description: This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.
Package: libupnp-sample
Version: 1.6.19-2
Depends: libc, libupnp
Source: feeds/packages/libs/libupnp
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30946
Filename: packages/libupnp-sample_1.6.19-2_ramips_24kec.ipk
Size: 31614
MD5Sum: 94bde0d646a8c369ca1d8c5332aa1dbf
SHA256sum: 0d96e58edc061dcb41e08594bfdf3efd3bbdd4d03425d523fd8f1283035ba90c
Description: TVcontrolpoint & tvdevice sample applications run inside /etc/upnp-tvdevice/
Package: libupnp
Version: 1.6.19-2
Depends: libc, libpthread
Source: feeds/packages/libs/libupnp
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 85271
Filename: packages/libupnp_1.6.19-2_ramips_24kec.ipk
Size: 86188
MD5Sum: a1df501caf832c51506af79f641efde5
SHA256sum: aaa576cfa0170f63c45779391423030e89b65a540c1ee40bd21a2a20655285b4
Description: The portable SDK for UPnP Devices (libupnp) provides developers with an API and
open source code for building control points, devices, and bridges that are
compliant with Version 1.0 of the Universal Plug and Play Device Architecture
Specification.
Package: libupnpp
Version: 0.9.0-1
Depends: libc, libstdcpp, libexpat, librt, libcurl, libupnp
Source: feeds/packages/libs/libupnpp
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Petko Bordjukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 118149
Filename: packages/libupnpp_0.9.0-1_ramips_24kec.ipk
Size: 118975
MD5Sum: 521b47a6d3f6916f5dda87dd5a35cd24
SHA256sum: a07430ecf5aa620333828a63c58a6e160e9a5f46a4a827a06fc308ab640ecca3
Description: libupnpp defines useful objects over libupnp and can be used to create both devices
and control points. It is shared by upmpdcli and upplay.
Package: liburcu
Version: 0.8.6-1
Depends: libc, libpthread
Source: feeds/packages/libs/liburcu
Section: libs
Maintainer: [email protected]
Architecture: ramips_24kec
Installed-Size: 38164
Filename: packages/liburcu_0.8.6-1_ramips_24kec.ipk
Size: 38853
MD5Sum: 17e2ae524314e7c564119b0743262c86
SHA256sum: da826f441175a9bd9b9bbead8ef9f55c47eef7d275e9f7029b1c1763ad7f81d8
Description: Userspace Read-Copy-Update library.
Package: libusbmuxd-utils
Version: 1.1.0-1
Depends: libc, libusbmuxd
Source: feeds/packages/libs/libusbmuxd
License: LGPL-2.1+
LicenseFiles: COPYING.LGPLv2.1
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5047
Filename: packages/libusbmuxd-utils_1.1.0-1_ramips_24kec.ipk
Size: 5976
MD5Sum: 64de45307e0f724c2f3fa54ba0f30b38
SHA256sum: 64e5f4bb5608d48c8acf15e59251e84a56def383a670bdb69267b5d185c2e290
Description: This daemon is in charge of multiplexing connections over USB to an iPhone or
iPod touch. To users, it means you can sync your music, contacts, photos, etc.
over USB. To developers, it means you can connect to any listening localhost
socket on the device. usbmuxd is not used for tethering data transfer, which
uses a dedicated USB interface as a virtual network device.
This package contains the libusbmuxd utilities.
Package: libusbmuxd
Version: 1.1.0-1
Depends: libc, libplist, libpthread, libxml2, zlib
Source: feeds/packages/libs/libusbmuxd
License: LGPL-2.1+
LicenseFiles: COPYING.LGPLv2.1
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10918
Filename: packages/libusbmuxd_1.1.0-1_ramips_24kec.ipk
Size: 11917
MD5Sum: c40565bcb2b07a36e4a6589bcac25d83
SHA256sum: afd94860e9a58e396d495932a91c26d7e0c3a1af88f7bf3c3e2a5f272bc8e4e2
Description: This daemon is in charge of multiplexing connections over USB to an iPhone or
iPod touch. To users, it means you can sync your music, contacts, photos, etc.
over USB. To developers, it means you can connect to any listening localhost
socket on the device. usbmuxd is not used for tethering data transfer, which
uses a dedicated USB interface as a virtual network device.
This package contains the libusbmuxd shared library.
Package: libuv
Version: 1.4.2-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/libuv
LicenseFiles: LICENSE
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47254
Filename: packages/libuv_1.4.2-1_ramips_24kec.ipk
Size: 48145
MD5Sum: 24e9dc04aa4e68936d43ad31124576b3
SHA256sum: 2b7a3b2be218b9f67b4de0368d6e859039eb1c5828b2dc0dfc8259f41bbf8f2b
Description: libuv is a multi-platform support library with a focus on asynchronous I/O. It
was primarily developed for use by Node.js, but it's also used by Luvit, Julia,
pyuv, and others.
Package: libuvc
Version: 0.0.5-20140812-2c6403405872aa865999b95ba15944295adf6c38-1
Depends: libc, libusb-1.0, libjpeg
Source: feeds/packages/libs/libuvc
License: BSD
Section: libs
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18163
Filename: packages/libuvc_0.0.5-20140812-2c6403405872aa865999b95ba15944295adf6c38-1_ramips_24kec.ipk
Size: 18943
MD5Sum: a5fd69b6bc191b40edbef3813bbd1ded
SHA256sum: 7caec4dfc643623ffa574f43c74854ad3a59d99314e5c64f4dffca8db6aaee13
Description: This package contains libuvc is a cross-platform library for USB video devices,
built atop libusb.
Package: libv4l
Version: 1.6.2-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/libv4l
License: GPL-2.0 LGPL-2.1
LicenseFiles: COPYING COPYING.libv4l
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 75911
Filename: packages/libv4l_1.6.2-1_ramips_24kec.ipk
Size: 76930
MD5Sum: c22b0ec3df7f2cae35b3072fea9db62f
SHA256sum: 5ac2515d904821ae69913083c8200d0a8d61270a8950004f6849e102d54bb5f2
Description: libv4l is a collection of libraries which adds a thin abstraction layer on
top of video4linux2 devices. The purpose of this (thin) layer is to make it
easy for application writers to support a wide variety of devices without
having to write separate code for different devices in the same class. libv4l
consists of 3 different libraries: libv4lconvert, libv4l1 and libv4l2.
libv4l1 offers the (deprecated) v4l1 API on top of v4l2 devices, independent
of the drivers for those devices supporting v4l1 compatibility (which many
v4l2 drivers do not).
libv4l2 offers the v4l2 API on top of v4l2 devices, while adding for the
application transparent libv4lconvert conversion where necessary.
Package: libvorbis
Version: 1.3.4-2
Depends: libc, libogg
Source: feeds/packages/libs/libvorbis
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197944
Filename: packages/libvorbis_1.3.4-2_ramips_24kec.ipk
Size: 197540
MD5Sum: f85c5de775dabd95c2dbe6910acb9b50
SHA256sum: 2cb89c58693bff9b560b59c5d967f6466b63a4885585c6648ece8825c574f0af
Description: Vorbis is a general purpose audio and music encoding format
contemporary to MPEG-4's AAC and TwinVQ, the next generation beyond
MPEG audio layer 3. Unlike the MPEG sponsored formats (and other
proprietary formats such as RealAudio G2 and Windows' flavor of the
month), the Vorbis CODEC specification belongs to the public domain.
All the technical details are published and documented, and any
software entity may make full use of the format without license
fee, royalty or patent concerns.
Package: libvorbisidec
Version: 1.0.3-20150104-1
Depends: libc, libogg
Source: feeds/packages/libs/libvorbisidec
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 73862
Filename: packages/libvorbisidec_1.0.3-20150104-1_ramips_24kec.ipk
Size: 74809
MD5Sum: ac20b71058b2a73819e9f9fc69ffcf9d
SHA256sum: 7003874ff804c441a87649ee7b41d6a6bd321b1df54ffefe30421157f9706803
Description: libvorbisidec is "tremor", a fixed-point implementation of libvorbis.
It also has libogg built-in. It is suitable as a replacement for
libvorbis and libogg in tremor-aware applications.
Tremor is a decoder only.
Package: libvpx
Version: 1.3.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/libvpx
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 452802
Filename: packages/libvpx_1.3.0-1_ramips_24kec.ipk
Size: 449891
MD5Sum: 744f863363d18e6a56aa8576af50c41b
SHA256sum: fbaf94fec998189c2608b69fcc03f16e569cf10a88d368cc33e8c78d5efd2e25
Description: libvpx is a VP8/VP9 Codec SDK.
Package: libwebcam
Version: 0.2.4
Depends: libc, libxml2, libiconv-full
Source: feeds/packages/utils/uvcdynctrl
Section: libs
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18641
Filename: packages/libwebcam_0.2.4_ramips_24kec.ipk
Size: 19462
MD5Sum: 0303f8bfe06d01d4efda2aa41e41fc28
SHA256sum: 3535ca10fbe8d5a944763eea4a688bf531babb1eb16982f84588e692ec9d4d07
Description: The webcam-tools package contains the following two components:
- libwebcam: Webcam Library (LGPL)
- uvcdynctrl: Manage dynamic controls in uvcvideo (GPL)
Package: libwebsockets-cyassl
Version: 1.3-chrome37-firefox30-1
Depends: libc, zlib, libcyassl
Source: feeds/packages/libs/libwebsockets
License: LGPL-2.1+exception
LicenseFiles: LICENSE
Section: libs
Architecture: ramips_24kec
Installed-Size: 33933
Filename: packages/libwebsockets-cyassl_1.3-chrome37-firefox30-1_ramips_24kec.ipk
Size: 34745
MD5Sum: 79b3dbbb513f1b0df3658c2300eb6462
SHA256sum: 74a5f01e68b6513bcf2d496e45df1cf1a3a78e91cd4ccbd3e6ad5d8f7c9ffa39
Description: libwebsockets (CyaSSL)
Package: libwebsockets-openssl
Version: 1.3-chrome37-firefox30-1
Depends: libc, zlib, libopenssl
Source: feeds/packages/libs/libwebsockets
License: LGPL-2.1+exception
LicenseFiles: LICENSE
Section: libs
Architecture: ramips_24kec
Installed-Size: 34113
Filename: packages/libwebsockets-openssl_1.3-chrome37-firefox30-1_ramips_24kec.ipk
Size: 34935
MD5Sum: 03d5dadfbc381b38ee5808b23b3cc4af
SHA256sum: 3ff7ba291d7ae0303d0de62682e186552fe2e50a2e1c2eaa1f429c734f2183b0
Description: libwebsockets (OpenSSL)
Package: libwrap
Version: 7.6-1
Depends: libc
Source: feeds/packages/libs/tcp_wrappers
License: BSD
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10808
Filename: packages/libwrap_7.6-1_ramips_24kec.ipk
Size: 11554
MD5Sum: f63506b5f0fce741104a2f38c39c57bd
SHA256sum: 90af543d66cf630659aa877f423baf54ed012708d5a41cc811d38e72322d740e
Description: Security wrapper library for TCP services
Package: libxerces-c-samples
Version: 3.1.1-1
Depends: libc, libxerces-c
Source: feeds/packages/libs/libxerces-c
License: Apache-2.0
LicenseFiles: LICENSE
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 159684
Filename: packages/libxerces-c-samples_3.1.1-1_ramips_24kec.ipk
Size: 160092
MD5Sum: e05ce69d53643668610755e7cf72e191
SHA256sum: da3643c015e90b36db8c102ab578d9ed88fc3d05b4e24765fa8301b0c104dac7
Description: Validating XML parser library for C++ (samples)
Package: libxerces-c
Version: 3.1.1-1
Depends: libc, uclibcxx, libiconv, libpthread
Source: feeds/packages/libs/libxerces-c
License: Apache-2.0
LicenseFiles: LICENSE
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 904510
Filename: packages/libxerces-c_3.1.1-1_ramips_24kec.ipk
Size: 901716
MD5Sum: 4bbbf70cf1541d61e1ead592ff11ef15
SHA256sum: ff6c2391bfb99f76e9cd5825cf44b47822d12f3c2af6a67a718fc02c98615272
Description: Xerces-C++ is a validating XML parser written in a portable subset of
C++. Xerces-C++ makes it easy to give your application the ability
to read and write XML data. A shared library is provided for parsing,
generating, manipulating, and validating XML documents. Xerces-C++ is
faithful to the XML 1.0 recommendation and associated standards (DOM
1.0, DOM 2.0, SAX 1.0, SAX 2.0, Namespaces, XML Schema Part 1 and
Part 2). It also provides experimental implementations of XML 1.1
and DOM Level 3.0. The parser provides high performance, modularity,
and scalability.
Package: libxml2
Version: 2.9.2-3
Depends: libc, libpthread, zlib
Source: feeds/packages/libs/libxml2
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 474936
Filename: packages/libxml2_2.9.2-3_ramips_24kec.ipk
Size: 473026
MD5Sum: 377f2c15f93f9540b331524ca2e0f0a6
SHA256sum: 46721396ada26d82ad897b5649364c7403c909b19c5dfc29d8dae7da629d3203
Description: A library for manipulating XML and HTML resources.
Package: libxslt
Version: 1.1.28-2
Depends: libc, libxml2
Source: feeds/packages/libs/libxslt
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82362
Filename: packages/libxslt_1.1.28-2_ramips_24kec.ipk
Size: 83150
MD5Sum: 63ab8904e64cf7e7eb3f66332ba556bc
SHA256sum: f8e69aa78203f6ad0a989547eec034ee0b3533f3e62ed06430651ecbe2b00bc2
Description: A library for XML transformation using XSLT.
Package: libzdb
Version: 3.0-1
Depends: libc, libsqlite3, libpq, libmysqlclient, zlib, libpthread, libopenssl
Source: feeds/packages/libs/libzdb
License: GPL-3.0
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32145
Filename: packages/libzdb_3.0-1_ramips_24kec.ipk
Size: 33136
MD5Sum: 25a10b808e1c4238324adce1c722cc20
SHA256sum: 7e7031e4b95ff9d77455fdd9f6e0b6734335477a7391598855e94d93f8601974
Description: zdb is a database library with thread-safe connection pooling. The library can connect
transparently to multiple database systems. It has zero runtime configuration and connections
are specified via a URL scheme. A modern object-oriented API is provided.
zdb supports MySQL, PostgreSQL, SQLite, and Oracle.
NOTE: This package does not include Oracle support.
Package: lighttpd-mod-access
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2461
Filename: packages/lighttpd-mod-access_1.4.35-4_ramips_24kec.ipk
Size: 3196
MD5Sum: 9a9aef5d3ae743cc1a2c3801c47c4192
SHA256sum: 568377fcf0c97d8f748e96205feffc21c1116034e5e6aea28d00cd3009cc42df
Description: Access restrictions module
Package: lighttpd-mod-accesslog
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6087
Filename: packages/lighttpd-mod-accesslog_1.4.35-4_ramips_24kec.ipk
Size: 6824
MD5Sum: 8c32a4e7af6371286abe1303558f9660
SHA256sum: 09e349dfadd038f4b832964fae026bd800524c3a04e6c8e9da92938990f6fa98
Description: Access logging module
Package: lighttpd-mod-alias
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2727
Filename: packages/lighttpd-mod-alias_1.4.35-4_ramips_24kec.ipk
Size: 3463
MD5Sum: c2ef2f1862a8732070249dddcb640d75
SHA256sum: 078dfa01c233614041bcce89312a933b777706f327a92e14f1f3dcff3206240d
Description: Directory alias module
Package: lighttpd-mod-auth
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10915
Filename: packages/lighttpd-mod-auth_1.4.35-4_ramips_24kec.ipk
Size: 11676
MD5Sum: 79a49736ed3e36258a719047f555b182
SHA256sum: f9bdfac0b09865fb9d37cc5f2e287d89335730abc34fe0e83d6bb1a209902be5
Description: Authentication module
Package: lighttpd-mod-cgi
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9361
Filename: packages/lighttpd-mod-cgi_1.4.35-4_ramips_24kec.ipk
Size: 10110
MD5Sum: e7a84bc5f372e3f7b891c3933a33c831
SHA256sum: 98c12a94273c4eecf5bf41c833a26c8e3a314e4422466460de33cea2682ee426
Description: CGI module
Package: lighttpd-mod-cml
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3361
Filename: packages/lighttpd-mod-cml_1.4.35-4_ramips_24kec.ipk
Size: 4099
MD5Sum: 18dbdad8dab3c8c1a75c83a9cfff3e9f
SHA256sum: e2a5138490348eaa197b8bd3ddf3f72796deb9e9dbb382a08369f5e9076b9e6c
Description: Cache Meta Language module
Package: lighttpd-mod-compress
Version: 1.4.35-4
Depends: libc, lighttpd, zlib
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7178
Filename: packages/lighttpd-mod-compress_1.4.35-4_ramips_24kec.ipk
Size: 7936
MD5Sum: 3b1ee84c55cecfd7825983e31747c090
SHA256sum: 4f1e03555e5e64402ea0d926eb9c23948b2b5f1b747cd85e9e905ac43d00936d
Description: Compress output module
Package: lighttpd-mod-evasive
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2519
Filename: packages/lighttpd-mod-evasive_1.4.35-4_ramips_24kec.ipk
Size: 3242
MD5Sum: 0c6287c5480ace21bc775c3f89d529fa
SHA256sum: dde4a0c516bad68202bd5d6c39cc1c5466758a42cc37b37c30edf5ea19438fed
Description: Evasive module
Package: lighttpd-mod-evhost
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3592
Filename: packages/lighttpd-mod-evhost_1.4.35-4_ramips_24kec.ipk
Size: 4338
MD5Sum: a51b5df50e1f2be0745921296e8d5538
SHA256sum: eb5d8be93c24e2d5fc805c15f585208d15440a2c9fadae59bc91d81cffbc1ef8
Description: Exnhanced Virtual-Hosting module
Package: lighttpd-mod-expire
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3965
Filename: packages/lighttpd-mod-expire_1.4.35-4_ramips_24kec.ipk
Size: 4696
MD5Sum: 3c3ec9a554d9b2487dbfc754498d4f79
SHA256sum: 561aa714e8ff18f085789f0ff0fdaef00f2dd49f526931db9bc94b3e2c83901a
Description: Expire module
Package: lighttpd-mod-extforward
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4075
Filename: packages/lighttpd-mod-extforward_1.4.35-4_ramips_24kec.ipk
Size: 4820
MD5Sum: 5e22b489e0fe4bdc6597f26ef4834a46
SHA256sum: bbbdb7870cb60ac5cd71e5d998ed3e80301347826b3c6949ee56f38271662269
Description: Extract client module
Package: lighttpd-mod-fastcgi
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22266
Filename: packages/lighttpd-mod-fastcgi_1.4.35-4_ramips_24kec.ipk
Size: 22933
MD5Sum: bb531f1ca4b122f69043314f2106bcfa
SHA256sum: ccf539b8772e6325eddffc399d77053676ce8bc8c5166ccf56e00e47d9aaec6e
Description: FastCGI module
Package: lighttpd-mod-flv_streaming
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3091
Filename: packages/lighttpd-mod-flv_streaming_1.4.35-4_ramips_24kec.ipk
Size: 3823
MD5Sum: 5da6beff9cb54f0371d7557cb903bebb
SHA256sum: 494c7413d0596ac68de9d442cde78c1e80860dd45291997765917daf90f574a8
Description: FLV streaming module
Package: lighttpd-mod-magnet
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1505
Filename: packages/lighttpd-mod-magnet_1.4.35-4_ramips_24kec.ipk
Size: 2268
MD5Sum: 373b5c64e751a849728928a03e3431c0
SHA256sum: 2014302c2762aee928785fa195fb32a3d48e2e3b2300627823d0afd7df63823b
Description: Magnet module
Package: lighttpd-mod-mysql_vhost
Version: 1.4.35-4
Depends: libc, lighttpd, libmysqlclient
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1797
Filename: packages/lighttpd-mod-mysql_vhost_1.4.35-4_ramips_24kec.ipk
Size: 2586
MD5Sum: 3633da7ea0367d4c75d266c8d08fab97
SHA256sum: 6de29fbb0c79bb62d4946b296b7efcb74587bb031266f55378848a359a780e9b
Description: Mysql virtual hosting module
Package: lighttpd-mod-proxy
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9186
Filename: packages/lighttpd-mod-proxy_1.4.35-4_ramips_24kec.ipk
Size: 9937
MD5Sum: e067452a51875a5d0ab712294b371389
SHA256sum: f74771434f8a39a586911b56cd797fd067ff2e84792249afc8e904acc779779a
Description: Proxy module
Package: lighttpd-mod-redirect
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3458
Filename: packages/lighttpd-mod-redirect_1.4.35-4_ramips_24kec.ipk
Size: 4199
MD5Sum: b7fde88f64dfc350788f9b7000f7eb6c
SHA256sum: e085512d88ab61f30e723620af5b01844f666ee5bcb2a30ad307d111952471aa
Description: URL redirection module
Package: lighttpd-mod-rewrite
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4498
Filename: packages/lighttpd-mod-rewrite_1.4.35-4_ramips_24kec.ipk
Size: 5225
MD5Sum: 48f3910583ce9f7838d30ee5021e8309
SHA256sum: bee2092cd53b2e595e57dd04fd1312ec600ca200c9e882c7d5ce10b91dbc90ac
Description: URL rewriting module
Package: lighttpd-mod-rrdtool
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4618
Filename: packages/lighttpd-mod-rrdtool_1.4.35-4_ramips_24kec.ipk
Size: 5356
MD5Sum: 74792b14565cb4ebec2c7cf2e1997866
SHA256sum: 9e6c9ea0e2df082d3509e7d03fb4a933b2d4478b1ee9c6c8aaeac07c6a3e6cf3
Description: RRDtool module
Package: lighttpd-mod-scgi
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16534
Filename: packages/lighttpd-mod-scgi_1.4.35-4_ramips_24kec.ipk
Size: 17208
MD5Sum: 0a8440fb74b75a88fa4953a43800450e
SHA256sum: a05b98fd01a913591f39b180fde889f036e10dfe8867298858cf4f2a92c0e79f
Description: SCGI module
Package: lighttpd-mod-secdownload
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3557
Filename: packages/lighttpd-mod-secdownload_1.4.35-4_ramips_24kec.ipk
Size: 4287
MD5Sum: b8a804b302cf55c10e77a6212a4121b0
SHA256sum: 61cb503b18fcf043e6e16407db08cda66071ee8ce42e59de6974f0c504448d4d
Description: Secure and fast download module
Package: lighttpd-mod-setenv
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2661
Filename: packages/lighttpd-mod-setenv_1.4.35-4_ramips_24kec.ipk
Size: 3412
MD5Sum: b8900dc3b885f478fc162a5aa00718e5
SHA256sum: e48e8cc3a6049bce5b74aaa2753290466140cc24b87f9c2edc12e9d2801a1f8c
Description: Environment variable setting module
Package: lighttpd-mod-simple_vhost
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3441
Filename: packages/lighttpd-mod-simple_vhost_1.4.35-4_ramips_24kec.ipk
Size: 4188
MD5Sum: 347c7ea5a1b10d5369cecd75b4261638
SHA256sum: a2a72d044609c37e0fcc9d29a2d5f6c4f1f1922e15fecaecdc9602e511437b0d
Description: Simple virtual hosting module
Package: lighttpd-mod-ssi
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11019
Filename: packages/lighttpd-mod-ssi_1.4.35-4_ramips_24kec.ipk
Size: 11797
MD5Sum: 367df0ea45ff6b6ed8d2c80c576cfaf4
SHA256sum: 8b0e9d9b708bd5db20585e186c5f439abf18837a8d47c4ce2c12ce68e2b46332
Description: SSI module
Package: lighttpd-mod-status
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7707
Filename: packages/lighttpd-mod-status_1.4.35-4_ramips_24kec.ipk
Size: 8485
MD5Sum: 60a45fdc07057c1eeda7121de5d20f61
SHA256sum: cde6f60c3e20d89c802b3ce2e4aaa7a00870f1c8180efc033639da64656be613
Description: Server status display module
Package: lighttpd-mod-trigger_b4_dl
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3629
Filename: packages/lighttpd-mod-trigger_b4_dl_1.4.35-4_ramips_24kec.ipk
Size: 4377
MD5Sum: 92a249414becf14badeb6dc81ff5874e
SHA256sum: 119024281971766834778585affd37f9e388a95d5ba2531536fd3f7bed9695ee
Description: Trigger before download module
Package: lighttpd-mod-userdir
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3566
Filename: packages/lighttpd-mod-userdir_1.4.35-4_ramips_24kec.ipk
Size: 4282
MD5Sum: 7ebeb70dd7e638226e5f6701bec2b4aa
SHA256sum: 647f4cb4a4fe95f25eba60173e96222e7e512e859443ddf6b8b1d981deccd189
Description: User directory module
Package: lighttpd-mod-usertrack
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3336
Filename: packages/lighttpd-mod-usertrack_1.4.35-4_ramips_24kec.ipk
Size: 4065
MD5Sum: aa4a7c0a083c36bba7c6d2373111bbce
SHA256sum: d6940a972dc115ecff8effbae1e1c805af6b0e2ca2954ecbcffc5085e66d8eec
Description: User tracking module
Package: lighttpd-mod-webdav
Version: 1.4.35-4
Depends: libc, lighttpd, libsqlite3, libuuid, libxml2
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13903
Filename: packages/lighttpd-mod-webdav_1.4.35-4_ramips_24kec.ipk
Size: 14661
MD5Sum: 72d41a34642f83b788f9fc4c3a9f911c
SHA256sum: ea5270baafc7c2247fb91a118b930cda94491874e0990152e96315d176114d65
Description: WebDAV module
Package: lighttpd
Version: 1.4.35-4
Depends: libc, libopenssl, libpcre, libpthread
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 83536
Filename: packages/lighttpd_1.4.35-4_ramips_24kec.ipk
Size: 84291
MD5Sum: cc4f8ff7fda6a5a50f2e3d48a7b150a6
SHA256sum: 65246b5051767df98ac272814a18a43aa0d8e8685ad4194f8f1c3a22042e5901
Description: A flexible and lightweight web server
Package: linknx
Version: 0.0.1.32-6
Depends: libc, pthsem, lua, luac, libstdcpp, libcurl, libesmtp
Source: feeds/packages/net/linknx
License: GPL-2.0+
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 174227
Filename: packages/linknx_0.0.1.32-6_ramips_24kec.ipk
Size: 174611
MD5Sum: f7cb6fe9e774025a0cf24144df957be7
SHA256sum: a9311cf2581a71a2cf7fe367ab0a8c6ba198d95ba3c85566526f2d90d9de836d
Description: KNX home automation platform
Package: lispd
Version: 0.4-1
Depends: libc, librt, libopenssl, confuse, kmod-tun, uci, kmod-ipv6
Source: feeds/packages/net/lispmob
License: GPLv2
LicenseFiles: LICENSE
Section: net
Maintainer: Vasileios Lakafosis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82914
Filename: packages/lispd_0.4-1_ramips_24kec.ipk
Size: 83782
MD5Sum: 80268b62757b2c09d1a2c02ba50a560e
SHA256sum: 8d5aa775c4fbfb404c685ed623c051136c1d3f197ade9498528c32a59993bd13
Description: This packet provides support for the Locator-ID Seperation Protocol.
Package: lm-sensors-detect
Version: 3.3.5-1
Depends: libc, sysfsutils, lm-sensors, perl, perlbase-essential, perlbase-fcntl, perlbase-file, perlbase-xsloader
Source: feeds/packages/utils/lm-sensors
License: GPL-2.0+ LGPL-2.1+
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44364
Filename: packages/lm-sensors-detect_3.3.5-1_ramips_24kec.ipk
Size: 45208
MD5Sum: adee794c184f6179f52572bd6f698f60
SHA256sum: 8086eded06406e7dc11e2fb8d427a0e70fdc8ccfb13bbeb1139e787559a86bb0
Description: script to autodetect sensor hardware
Package: lm-sensors
Version: 3.3.5-1
Depends: libc, sysfsutils, libsensors
Source: feeds/packages/utils/lm-sensors
License: GPL-2.0+ LGPL-2.1+
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7680
Filename: packages/lm-sensors_3.3.5-1_ramips_24kec.ipk
Size: 8427
MD5Sum: 5f40b94697ec949e24c9326086593ff9
SHA256sum: d075e0ab40d67fd395ee85d94810815306d9b4514b48a5920e5f431cb243e2cf
Description: utility to read hardware sensor data
Package: lsof
Version: 4.86-2
Depends: libc, librpc
Source: feeds/packages/utils/lsof
License: Unique
LicenseFiles: 00README
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57419
Filename: packages/lsof_4.86-2_ramips_24kec.ipk
Size: 58127
MD5Sum: da3282d1412dad8788d21ce21bebd7dd
SHA256sum: b676772dc0fd9ae8d42a23f5a82f0ae4539c888cfe6c77f98086354fcfc9ca8b
Description: LiSt Open Files - a diagnostic tool
Package: lttng-tools
Version: 2.6.0-1
Depends: libc, lttng-ust, libpopt, libxml2
Source: feeds/packages/devel/lttng-tools
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING
Section: devel
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 429394
Filename: packages/lttng-tools_2.6.0-1_ramips_24kec.ipk
Size: 429208
MD5Sum: c9e72e74d854ed75b24ae4197f73d331
SHA256sum: be320d48e56a61f0a3e827e26e97be0a5f448a764526ccbc6265f5746507a539
Description: Linux Trace Toolkit: next generation (tools)
Package: lttng-ust
Version: 2.6.0-1
Depends: libc, liburcu, libuuid, librt
Source: feeds/packages/libs/lttng-ust
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 145353
Filename: packages/lttng-ust_2.6.0-1_ramips_24kec.ipk
Size: 145992
MD5Sum: a14cc909ada37b1cf6b3bb09ef923710
SHA256sum: 9c76b128b24dbc1b2a83faaffd0414d7180ce15397fcb83df55044ba684eb717
Description: Linux Trace Toolkit: next generation (library)
Package: lua-bencode
Version: 2.1.0-1
Depends: libc, lua
Source: feeds/packages/lang/lua-bencode
License: MIT
Section: lang
Maintainer: Lars Gierth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1454
Filename: packages/lua-bencode_2.1.0-1_ramips_24kec.ipk
Size: 2262
MD5Sum: 1c9dd3d01ad5a636044c76c6d1149276
SHA256sum: 504b6feaa9dd40b6103c8e02672dc877faff3b313496af444415e82978dec9f6
Description: This is a module for the lua programming language for decoding and encoding
bencoded data which can be used to read and write torrent files for bittorrent.
Package: lua-mosquitto
Version: 0.1-1
Depends: libc, libmosquitto, lua
Source: feeds/packages/lang/lua-mosquitto
License: MIT
LicenseFiles: LICENSE
Section: lang
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5743
Filename: packages/lua-mosquitto_0.1-1_ramips_24kec.ipk
Size: 6492
MD5Sum: d6ce99e5b77ddba6e72523c36c92d01d
SHA256sum: a4c8d08702590c5a687c0fd6448316bde3eb2a67298373b276b2fa5080022213
Description: Lua bindings to libmosquitto
Package: lua-penlight
Version: 1.3.2-1
Depends: libc, luafilesystem
Source: feeds/packages/lang/lua-penlight
License: MIT
Section: lang
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99096
Filename: packages/lua-penlight_1.3.2-1_ramips_24kec.ipk
Size: 99980
MD5Sum: 40b0c1d54714e678abf7627d3899f3da
SHA256sum: efa8f9fb35b6153ae9422471c591c15dc8768f452b62f2516c30c9a72a192169
Description: It is often said of Lua that it does not include batteries.
Penlight is the batteries.
Package: lua-sha2
Version: 0.2.0-1
Depends: libc, lua
Source: feeds/packages/lang/lua-sha2
License: MIT
Section: lang
Maintainer: Lars Gierth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7700
Filename: packages/lua-sha2_0.2.0-1_ramips_24kec.ipk
Size: 8500
MD5Sum: e6b384f26bfd9078734128a6ed0055bb
SHA256sum: adcc1579aefc44eeabf46c400a00878684ae8dd168de0f20523c769fc8c9e329
Description: Lua Binding for the SHA-2 (SHA-256/384/512) BSD-licensed C implementation by Aaron Gifford.
Also contains a HMAC implementation in Lua.
Package: luabitop
Version: 1.0.2-1
Depends: libc, lua
Source: feeds/packages/lang/luabitop
License: MIT
Section: lang
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2318
Filename: packages/luabitop_1.0.2-1_ramips_24kec.ipk
Size: 3101
MD5Sum: df9de5a5955a28d58f26caea9dae39ec
SHA256sum: 8af56b97d167ea23e2e7199346cbe3d1490fab63375e5b1f50a25ca78fb8646c
Description: Lua BitOp is a C extension module for Lua 5.1/5.2 which adds bitwise operations on numbers.
Package: luaexpat
Version: 1.3.0-1
Depends: libc, lua, libexpat
Source: feeds/packages/lang/luaexpat
Section: lang
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6846
Filename: packages/luaexpat_1.3.0-1_ramips_24kec.ipk
Size: 7617
MD5Sum: 1f6c9c2b1b1b7ea8a1b0afd0eb2d809c
SHA256sum: fde99f2c6c27bacf54856aa325bd9103304d0975be4b664fc10e26c22ab46381
Description: LuaExpat is a SAX XML parser based on the Expat library.
Package: luafilesystem
Version: 1.6.2-1
Depends: libc, liblua
Source: feeds/packages/lang/luafilesystem
Section: lang
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5206
Filename: packages/luafilesystem_1.6.2-1_ramips_24kec.ipk
Size: 5997
MD5Sum: 7334c742e301ce814146ac70ddd73e47
SHA256sum: f3b071222cc7d317d643899fd4d34097c6604173454495ff811b4947f2c5af0f
Description: This package contains the LuaFileSystem library, a set of portable
functions for directory creation, listing and deletion and for file
locking.
Package: luai2c
Version: 1.0.0-2
Depends: libc, liblua, kmod-i2c-core
Source: feeds/packages/lang/luai2c
Section: lang
Maintainer: Frank Edelhaeuser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4509
Filename: packages/luai2c_1.0.0-2_ramips_24kec.ipk
Size: 5262
MD5Sum: bc10d44260717d70af1311ab55ac0b7a
SHA256sum: cd46e5b5eb1a4c820783984fb860d6d9f1234b896fc034f334816d00d003e503
Description: This is the Lua binding for I2C. It provides access to I2C slaves supported by the kernel.
Package: lualanes
Version: 3.9.4-1
Depends: libc, lua, luac, liblua, libpthread
Source: feeds/packages/lang/lualanes
Section: lang
Maintainer: Vladimir Malyutin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38253
Filename: packages/lualanes_3.9.4-1_ramips_24kec.ipk
Size: 39092
MD5Sum: 3af05ce0ce5cc4828a3b0ba8adaa6064
SHA256sum: 2f86fc3b615d04b57a725599bf375b60c980d8159e78db9d38270153061b2041
Description: Lanes is a lightweight, native, lazy evaluating multithreading library for Lua 5.1 and 5.2.
Package: luaposix
Version: v33.2.1-4
Depends: libc, lua, librt
Source: feeds/packages/lang/luaposix
License: MIT
LicenseFiles: COPYING
Section: lang
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29979
Filename: packages/luaposix_v33.2.1-4_ramips_24kec.ipk
Size: 30558
MD5Sum: d79c0faa7623ec6a0e73056d9d1f1cdd
SHA256sum: 98b82c78434aeeec3da2a6f198aaff921e7f7d53da32f972f12160dc87a176ae
Description: luaposix is a general POSIX library for Lua providing access
to various low level libc functions.
Package: luarocks
Version: 2.2.0-rc1-2
Depends: libc, lua, luac, liblua, luasocket, unzip, curl, luasec
Source: feeds/packages/lang/luarocks
License: GPL
Section: lang
Maintainer: Amr Hassan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 101999
Filename: packages/luarocks_2.2.0-rc1-2_ramips_24kec.ipk
Size: 102879
MD5Sum: 954fe88a69f2fca7c60d243c47d7b096
SHA256sum: 822d2ad7fe993b110beb11ac71496d1aa8adf0315f6f16892f08c83fb0ef951f
Description: LuaRocks is a deployment and management system for Lua modules.
Package: luasec
Version: 0.5-1
Depends: libc, lua, libopenssl, luasocket
Source: feeds/packages/lang/luasec
License: MIT
LicenseFiles: LICENSE
Section: lang
Architecture: ramips_24kec
Installed-Size: 20819
Filename: packages/luasec_0.5-1_ramips_24kec.ipk
Size: 21540
MD5Sum: d456975e729b2d76737b79bb65f65a24
SHA256sum: 5784a3abd79548544ff5c64565da12260768ce835fc2aec303a041ab6c80c924
Description: LuaSec is a binding for OpenSSL library to provide TLS/SSL communication.
Package: luasoap
Version: 2014-08-21-af1e100281cee4b972df10121e37e51d53367a98
Depends: libc, lua, luaexpat, luasec, luasocket
Source: feeds/packages/lang/luasoap
License: MIT
Section: lang
Maintainer: Liu Peng <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9008
Filename: packages/luasoap_2014-08-21-af1e100281cee4b972df10121e37e51d53367a98_ramips_24kec.ipk
Size: 9827
MD5Sum: 06b8b7c2294abecf6d230ed93612d721
SHA256sum: 1434838c66dc75eb64bfac0f4922ff0ffbe326238c88b8e570eb51ec03ca4ad2
Description: LuaSOAP is a library of functions to deal with SOAP.
Package: luasocket
Version: 3.0-rc1-20130909-2
Depends: libc, lua
Source: feeds/packages/lang/luasocket
Section: lang
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36374
Filename: packages/luasocket_3.0-rc1-20130909-2_ramips_24kec.ipk
Size: 36950
MD5Sum: eb46b0232f59593b96ec8b6c09283c8d
SHA256sum: 17145700724bb58701bd7ad3177861a85ab5152de58cbccec17b8db4cbe0fe36
Description: LuaSocket is the most comprehensive networking support
library for the Lua language. It provides easy access to
TCP, UDP, DNS, SMTP, FTP, HTTP, MIME and much more.
Package: luasql-mysql
Version: 2.3.0-1
Depends: libc, lua, libmysqlclient
Source: feeds/packages/lang/luasql
License: MIT
LicenseFiles: docs/us/license.html
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5761
Filename: packages/luasql-mysql_2.3.0-1_ramips_24kec.ipk
Size: 6561
MD5Sum: 5591390e14ef788fd2dc92803c8d81f3
SHA256sum: 40a893da6d4ac95799d118c3b60158a93ed6bbecd8e82bc36ef90ac2b98525be
Description: LuaSQL is a simple interface from Lua to a DBMS.
.
This package contains the MySQL binding.
Package: luasql-pgsql
Version: 2.3.0-1
Depends: libc, lua, libpq
Source: feeds/packages/lang/luasql
License: MIT
LicenseFiles: docs/us/license.html
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5837
Filename: packages/luasql-pgsql_2.3.0-1_ramips_24kec.ipk
Size: 6633
MD5Sum: 0acc8535a36ce186390fe1b07e6a48a3
SHA256sum: a09e5ca2d2e6e9216a5fb79cb960499003ebc46c1699df1556a2721694fa7f20
Description: LuaSQL is a simple interface from Lua to a DBMS.
.
This package contains the PostgreSQL binding.
Package: luasql-sqlite3
Version: 2.3.0-1
Depends: libc, lua, libsqlite3
Source: feeds/packages/lang/luasql
License: MIT
LicenseFiles: docs/us/license.html
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5685
Filename: packages/luasql-sqlite3_2.3.0-1_ramips_24kec.ipk
Size: 6483
MD5Sum: 35998c3dfd4629934057962e5b228cb7
SHA256sum: e2cb1a1c33c784a18b3cb257432bc49d68426103c1b493fc1c6d57bd5f5dc5c8
Description: LuaSQL is a simple interface from Lua to a DBMS.
.
This package contains the SQLite 3 binding.
Package: luci-app-bcp38
Version: 2-1
Depends: libc, lua, luci-base, bcp38
Source: feeds/packages/net/luci-app-bcp38
License: Apache-2.0
Section: luci
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: all
Installed-Size: 1528
Filename: packages/luci-app-bcp38_2-1_all.ipk
Size: 2360
MD5Sum: ed35e3f7a59d6e8039dd908ba06de4c1
SHA256sum: f95d72c181a117461f74e6ef4f190ca0a8d9f6dfff0bb7b256bccae4d60eb0b8
Description: Control BCP38 subnet blocking
Package: luci-app-cshark
Version: 2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b
Depends: libc, cshark, luci
Source: feeds/packages/net/cshark
Section: luci
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3730
Filename: packages/luci-app-cshark_2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b_ramips_24kec.ipk
Size: 4504
MD5Sum: c4201301fa6c237c0bb5b0a103b3ea46
SHA256sum: 48d36ef2b55c7f3519ac1692c70a26c7959da36372cdb9276a440cdb9df6cf16
Description: Cloudshark capture tool Web UI
Package: luci-app-lxc
Version: 20141012
Depends: libc, luci-mod-admin-full, lxc, lxc-create, liblxc, rpcd-mod-lxc
Source: feeds/packages/utils/luci-app-lxc
License: Apache-2.0
Section: luci
Maintainer: Petar Koretic <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6061
Filename: packages/luci-app-lxc_20141012_ramips_24kec.ipk
Size: 6830
MD5Sum: 4e60002ac563dd0ef391231f3e9cef98
SHA256sum: 735f949564e569d8a8b1b7da82b63acfae9ba80e5c144aed7ca5cd3156d5b36c
Description: This package will install LXC management Web UI.
Package: luci-app-mwan3
Version: 1.4-2
Depends: libc, mwan3, luci-mod-admin-full, luci-app-firewall, luci-lib-nixio
Source: feeds/packages/net/mwan3-luci
License: GPLv2
Section: LuCI
Maintainer: Aedan Renner <[email protected]>
Architecture: all
Installed-Size: 14319
Filename: packages/luci-app-mwan3_1.4-2_all.ipk
Size: 15190
MD5Sum: 3b7f72a0ab14189802d7dc207de4ebd9
SHA256sum: 91cdbfcc5b775a639f22045369cdbca26377afb83a50aa7fd87f696a63019beb
Description: Hotplug script which makes configuration of multiple WAN interfaces simple and
manageable with loadbalancing/failover support for up to 250 physical or logical
WAN interfaces, connection tracking and an easy to manage traffic ruleset
Package: luci-app-sqm
Version: 3-1
Depends: libc, lua, luci-base, sqm-scripts
Source: feeds/packages/net/luci-app-sqm
License: GPLv2
Section: luci
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: all
Installed-Size: 3114
Filename: packages/luci-app-sqm_3-1_all.ipk
Size: 4024
MD5Sum: 6564d39785b4111614ef6472747e2353
SHA256sum: fd3f5e60d54166043bd16523e56b674a4ac14fb333ef80e119e70ef55357d4e8
Description: Control the simple_qos SQM script
Package: lvm2
Version: 2.02.117-1
Depends: libc, libdevmapper, libblkid, libreadline, libncurses
Source: feeds/packages/utils/lvm2
License: GPL-2.0 LGPL-2.1
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 456732
Filename: packages/lvm2_2.02.117-1_ramips_24kec.ipk
Size: 456499
MD5Sum: 1b9691657bc864818837fced359aec5f
SHA256sum: 1360a665c77a455827ead78b3d6a7ace5b91fa4bd23ce5b49da21a182fea5af5
Description: LVM2 refers to a new userspace toolset that provide logical volume management
facilities on linux. It is reasonably backwards-compatible with the original
LVM toolset.
Package: lxc-attach
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3795
Filename: packages/lxc-attach_1.1.0-1_ramips_24kec.ipk
Size: 4558
MD5Sum: dd3e2e724234d182794556210479843b
SHA256sum: 956e78287a304e1a8670b042ae59984525612f5c2c303d2623938b55eae6b9e5
Description: Utility lxc-attach from the LXC userspace tools
Package: lxc-autostart
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4154
Filename: packages/lxc-autostart_1.1.0-1_ramips_24kec.ipk
Size: 4910
MD5Sum: b214d7b9f55b8638493563232d69dc77
SHA256sum: bf4e9f7d5defefc589427ee0c65c947827a8aaf9e573c1d982a30789d900335e
Description: Utility lxc-autostart from the LXC userspace tools
Package: lxc-cgroup
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2669
Filename: packages/lxc-cgroup_1.1.0-1_ramips_24kec.ipk
Size: 3468
MD5Sum: 875d02ff839920f55c4fcea60f9776da
SHA256sum: 86fffa52ed920a8484338298af1ce5d61120f8e8df021d56cdd7e60e65f889c7
Description: Utility lxc-cgroup from the LXC userspace tools
Package: lxc-checkconfig
Version: 1.1.0-1
Depends: libc, lxc, lxc-common
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1964
Filename: packages/lxc-checkconfig_1.1.0-1_ramips_24kec.ipk
Size: 2756
MD5Sum: 211aef5403f3b356eb42f6fa93540802
SHA256sum: ec63c259678ed0cf50305c324e8f960788c83b3bcbaac1e0a924d499b2818f8c
Description: Utility lxc-checkconfig from the LXC userspace tools
Package: lxc-clone
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3228
Filename: packages/lxc-clone_1.1.0-1_ramips_24kec.ipk
Size: 4024
MD5Sum: 162cbc6b22c459da403b360e6231dfcb
SHA256sum: edc7554844681c01e44518a644d95b11a78a90e7ffa0d0da7d1708b9a19677e0
Description: Utility lxc-clone from the LXC userspace tools
Package: lxc-common
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1159
Filename: packages/lxc-common_1.1.0-1_ramips_24kec.ipk
Size: 1941
MD5Sum: a1d0ed63d1482fb55e3767fa3f5ffb70
SHA256sum: 2974cb7c8f9e5df0b6a3bb50d6ca740c2d24efdc181fb00418dd288a72f343e1
Description: LXC common files
Package: lxc-config
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1830
Filename: packages/lxc-config_1.1.0-1_ramips_24kec.ipk
Size: 2616
MD5Sum: d6c27978230b7d9f5650d584f90f5078
SHA256sum: a51d31e34107bdd7f7930afb957933d092c19d38d65fbd6fdf98eb63ac3317a8
Description: Utility lxc-config from the LXC userspace tools
Package: lxc-configs
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4301
Filename: packages/lxc-configs_1.1.0-1_ramips_24kec.ipk
Size: 5038
MD5Sum: c13b0c85cb52451b3bcfffc91bef9ec2
SHA256sum: 3432c3d2cead4aef35134050199090454258b531cf7383db9916a06a9d184ffb
Description: LXC virtual machine common config files
Package: lxc-console
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2338
Filename: packages/lxc-console_1.1.0-1_ramips_24kec.ipk
Size: 3138
MD5Sum: 37397921e8c3e32832394b1b05109f48
SHA256sum: b355d745a733ef65559bce6b96c09b4b96ecc4c53ebc08947d13d8be543ea377
Description: Utility lxc-console from the LXC userspace tools
Package: lxc-create
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc, lxc-configs, lxc-hooks, lxc-templates
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4313
Filename: packages/lxc-create_1.1.0-1_ramips_24kec.ipk
Size: 5085
MD5Sum: 9a347f317ad9365b3748933fd06d17e2
SHA256sum: b66436f5fdee6793a3da62f10342be0925d8e18ba5b119f442b05020ada8ceb3
Description: Utility lxc-create from the LXC userspace tools
Package: lxc-destroy
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2238
Filename: packages/lxc-destroy_1.1.0-1_ramips_24kec.ipk
Size: 3029
MD5Sum: 4c87c9b5d36af35b6a540d8c67b2aa62
SHA256sum: 26fd78d822477a35a8f792f6bcaae4030f6754446b2f74564870d9f03ff304d5
Description: Utility lxc-destroy from the LXC userspace tools
Package: lxc-execute
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2911
Filename: packages/lxc-execute_1.1.0-1_ramips_24kec.ipk
Size: 3707
MD5Sum: 1b401080ba748497bba41a8c6c9c2a46
SHA256sum: 9526126f32b25e9342713c07fbdf0840ae121ae8596d569d9c09c2dd14c8c463
Description: Utility lxc-execute from the LXC userspace tools
Package: lxc-freeze
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2313
Filename: packages/lxc-freeze_1.1.0-1_ramips_24kec.ipk
Size: 3114
MD5Sum: f426d801efc2dc2a6fad4a7759828156
SHA256sum: d7d9e9299091ca60bb1f7b94cf1b4af9ed684e90a5b8d339c6620407ddbed531
Description: Utility lxc-freeze from the LXC userspace tools
Package: lxc-hooks
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4236
Filename: packages/lxc-hooks_1.1.0-1_ramips_24kec.ipk
Size: 4993
MD5Sum: e6347e8903b54a1cc2230bf6dcaadc34
SHA256sum: 0a72dfd1106352c7add84ca6f40fae3969500a17f32b71705bdf02805d4ab58e
Description: LXC virtual machine hooks
Package: lxc-info
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4605
Filename: packages/lxc-info_1.1.0-1_ramips_24kec.ipk
Size: 5361
MD5Sum: 2b1288f2494b15d6a9c753334512769c
SHA256sum: 4581bf826e2996a65ab12630ef5179f0b995ce3acaf59d87358dc6e303bafadd
Description: Utility lxc-info from the LXC userspace tools
Package: lxc-init
Version: 1.1.0-1
Depends: libc, lxc, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3657
Filename: packages/lxc-init_1.1.0-1_ramips_24kec.ipk
Size: 4413
MD5Sum: 4087a879dc7f7d71c60a097d18779c8b
SHA256sum: 0522ccb50df5cd028d61bdb3362264c5beee0cf8798c6d9265217b5d2eb0d6f4
Description: LXC Lua bindings
Package: lxc-ls
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, lxc-config
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1530
Filename: packages/lxc-ls_1.1.0-1_ramips_24kec.ipk
Size: 2307
MD5Sum: 1307f16d3dd850cea8b733185143bc2b
SHA256sum: 21888002c8b3b24e92882d92e478d543d8d8a4d966fb656583af04b40ed89ee7
Description: Utility lxc-ls from the LXC userspace tools
Package: lxc-lua
Version: 1.1.0-1
Depends: libc, lxc, liblua, liblxc, luafilesystem
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7061
Filename: packages/lxc-lua_1.1.0-1_ramips_24kec.ipk
Size: 7858
MD5Sum: b0a1091dc3636c46f751f245d30d3f15
SHA256sum: fac224becc826b926b9f447166c852a9002d13efb0fad3eb67f48e7df912261b
Description: LXC Lua bindings
Package: lxc-monitor
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3316
Filename: packages/lxc-monitor_1.1.0-1_ramips_24kec.ipk
Size: 4104
MD5Sum: b52bced2b5d88b8d44558c6a8ce99662
SHA256sum: dcd68b31eab4145a08b2f3f428760654f17e302cf71819581b115b189f8cdb16
Description: Utility lxc-monitor from the LXC userspace tools
Package: lxc-monitord
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5061
Filename: packages/lxc-monitord_1.1.0-1_ramips_24kec.ipk
Size: 5806
MD5Sum: eb2a9130080ae65ec6c24f8b2e37ef0a
SHA256sum: 819370b3281494f28a78d33fba5942efb4d6fed35a9efa08b6bbe10b2196adef
Description: Utility lxc-monitord from the LXC userspace tools
Package: lxc-snapshot
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3485
Filename: packages/lxc-snapshot_1.1.0-1_ramips_24kec.ipk
Size: 4246
MD5Sum: 1bebbc93b913cb4b6ac4976d95828997
SHA256sum: 8d52ba74466daae83a314ba5967851b44f36682c9c218e45c879b578954110fa
Description: Utility lxc-snapshot from the LXC userspace tools
Package: lxc-start
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4650
Filename: packages/lxc-start_1.1.0-1_ramips_24kec.ipk
Size: 5412
MD5Sum: 8bd2d21a72d2ee314975fda0ad7bfed6
SHA256sum: b51eaed7ef8df320078f48eed191d570c08836675084a96f8bddd9d7ad04d134
Description: Utility lxc-start from the LXC userspace tools
Package: lxc-stop
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2854
Filename: packages/lxc-stop_1.1.0-1_ramips_24kec.ipk
Size: 3647
MD5Sum: 93197764676200da7a33263e1d304fed
SHA256sum: 47038c0fdb257225631ff145b4b4feab2bbe4bc01442b8594c2f128ae8859096
Description: Utility lxc-stop from the LXC userspace tools
Package: lxc-templates
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84946
Filename: packages/lxc-templates_1.1.0-1_ramips_24kec.ipk
Size: 85822
MD5Sum: 30965b7e27203422d633e6ff44cabf44
SHA256sum: 29dd70d53b9925d55d6f82e6783fc8c4c921d1e1cfda1294d2d3bf6facca4fc4
Description: LXC virtual machine templates
Package: lxc-unfreeze
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2315
Filename: packages/lxc-unfreeze_1.1.0-1_ramips_24kec.ipk
Size: 3118
MD5Sum: 5c61ddfbb50891db74ecfde5c948ab06
SHA256sum: c300ee135647503243608deb00fd6fa95856bd6ceefab8fca2aa83d0de1e929f
Description: Utility lxc-unfreeze from the LXC userspace tools
Package: lxc-unshare
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3888
Filename: packages/lxc-unshare_1.1.0-1_ramips_24kec.ipk
Size: 4642
MD5Sum: 949cbdd727c78460e4ea97dc652eea17
SHA256sum: 0644307a289c77e91c5e3bba31c16535214ed4404d60bf9f872371b5d5b8803f
Description: Utility lxc-unshare from the LXC userspace tools
Package: lxc-user-nic
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11133
Filename: packages/lxc-user-nic_1.1.0-1_ramips_24kec.ipk
Size: 11920
MD5Sum: 31eab5537e781b73afbc564b81a14f83
SHA256sum: 4705a076e6af04a6ac44f20c45ab0073cf3f4a3fd8137d64b56f462f0784e184
Description: Utility lxc-user-nic from the LXC userspace tools
Package: lxc-usernsexec
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4088
Filename: packages/lxc-usernsexec_1.1.0-1_ramips_24kec.ipk
Size: 4829
MD5Sum: 1ebf773f3487b422fe772bae3c44b83b
SHA256sum: 389a2fa1f52f60bceb5abfda976f2eaead1572692a4d671c4dd063420429365b
Description: Utility lxc-usernsexec from the LXC userspace tools
Package: lxc-wait
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2323
Filename: packages/lxc-wait_1.1.0-1_ramips_24kec.ipk
Size: 3119
MD5Sum: 713e33b3e5ce920076778b8e749fc47e
SHA256sum: 6e4a8d449f9bf6bc9259366fb23261754fe3654ba84bc1b5808a57fdca3e3355
Description: Utility lxc-wait from the LXC userspace tools
Package: lxc
Version: 1.1.0-1
Depends: libc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/lxc_1.1.0-1_ramips_24kec.ipk
Size: 902
MD5Sum: 10e51f004d795d49eda011fa2beb20a4
SHA256sum: 03128473e093f8e06d84d4089c1a486bc0044ee4c6f9471fe0b145fcec7f84f7
Description: LXC is the userspace control package for Linux Containers, a lightweight
virtual system mechanism sometimes described as "chroot on steroids".
Package: mac-telnet-client
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14377
Filename: packages/mac-telnet-client_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 15138
MD5Sum: 8fab48be6ff19c3d69d2c3c2d0c6cabc
SHA256sum: 73deee7f584695c197575e02c2cf841db2b28a1e9d9e6ee66d18bcbc9816c016
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: mac-telnet-discover
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3302
Filename: packages/mac-telnet-discover_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 4160
MD5Sum: bfc92607865232e268d4d06401963968
SHA256sum: 136e5da0cfe869dbae11c03db7a952970955e1089c4e801b81cd8e9d2d2447d8
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: mac-telnet-ping
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6858
Filename: packages/mac-telnet-ping_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 7727
MD5Sum: a397fca56ab2ac10e27b5d26b0cb28bd
SHA256sum: 8ffbc73eafba0589535efab4199c52f9a3d99ec715f3777fae76806c32340f71
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: mac-telnet-server
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11296
Filename: packages/mac-telnet-server_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 12128
MD5Sum: 3f65065b1e07aba39479a2b33716742c
SHA256sum: 6080aca25c98382285b2cb7d2168e0f7f75d130ae4e4428bcc5901d3b6bdcbb5
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: macchanger
Version: 1.7.0-1
Depends: libc
Source: feeds/packages/utils/macchanger
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 215322
Filename: packages/macchanger_1.7.0-1_ramips_24kec.ipk
Size: 216255
MD5Sum: ea20e5c710dec491e2fafd2f57ea8aea
SHA256sum: f5321f2d704e11446c73430f741540b43ebb6081840297687284bc13a34c1449
Description: This is a GNU/Linux utility for viewing/manipulating the MAC address
of network interfaces.
Package: madplay
Version: 0.15.2b-3
Depends: libc, libid3tag, libmad
Source: feeds/packages/sound/madplay
License: GPL-2.0+
LicenseFiles: COPYING
Section: sound
Maintainer: Simon Peter <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28588
Filename: packages/madplay_0.15.2b-3_ramips_24kec.ipk
Size: 29391
MD5Sum: 4ec0f6891009dbbb297c68e30a6c42c8
SHA256sum: 153d9092a5a51ed3d23d4c4c62c065a8936c58344af1140a1a97431949b6d98f
Description: MAD is an MPEG audio decoder. It currently only supports the MPEG 1
standard, but fully implements all three audio layers (Layer I, Layer II,
and Layer III, the latter often colloquially known as MP3.). There is also
full support for ID3 tags.
Package: mailman
Version: 2.1.19-1
Depends: libc, postfix, python, uhttpd, python-dns
Source: feeds/packages/mail/mailman
License: GPL-2.0+
LicenseFiles: gnu-COPYING-GPL
Section: mail
Maintainer: Denis Shulyaka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9270568
Filename: packages/mailman_2.1.19-1_ramips_24kec.ipk
Size: 9271374
MD5Sum: b47512fda9f8f87e82a9cb796f567fb8
SHA256sum: 3f3301d19d95a46442cb23fa0224c4a2ddba93a77756211d5e9e7c7bec6c951c
Description: Mailman is free software for managing electronic mail discussion and e-newsletter lists.
Package: mailsend-nossl
Version: 1.17b15-2
Depends: libc
Source: feeds/packages/mail/mailsend
License: BSD-3-Clause
LicenseFiles: COPYRIGHT
Section: mail
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33981
Filename: packages/mailsend-nossl_1.17b15-2_ramips_24kec.ipk
Size: 34738
MD5Sum: ef8d8a5992928c9ddd6eea2c92a95e01
SHA256sum: 99c396efebde6ab69aedbdb38c27958b001bcff4d426c0c85ac3ec72d3263198
Description: Mailsend is a simple command line program to send mail via SMTP protocol.
Package: mailsend
Version: 1.17b15-2
Depends: libc, libopenssl
Source: feeds/packages/mail/mailsend
License: BSD-3-Clause
LicenseFiles: COPYRIGHT
Section: mail
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35653
Filename: packages/mailsend_1.17b15-2_ramips_24kec.ipk
Size: 36509
MD5Sum: 207f01a6d739c714c969df93b670a3ab
SHA256sum: 1cfc3a0b573474656cb79987b268ec28680fb90e065b6e549bd90aefc89aeaab
Description: Mailsend is a simple command line program to send mail via SMTP protocol.
.
SSL supported is provided by OpenSSL.
Package: mc
Version: 4.8.13-1.2
Depends: libc, glib2, libncurses, librpc
Source: feeds/packages/utils/mc
License: GPL-3.0+
Section: utils
Maintainer: Dirk Brenken <[email protected]>
Architecture: ramips_24kec
Installed-Size: 262923
Filename: packages/mc_4.8.13-1.2_ramips_24kec.ipk
Size: 263471
MD5Sum: 09cb53b61d5552019942c0d3e12173dd
SHA256sum: 521305ae9979971cd15bb673ed1db5af4b46f98fc01c120bc50705b5545dbd92
Description: GNU Midnight Commander is a visual file manager,
licensed under GNU General Public License and therefore qualifies as Free Software.
It's a feature rich full-screen text mode application that allows you to copy,
move and delete files and whole directory trees, search for files
and run commands in the subshell. Internal viewer and editor are included.
Package: mdns-utils
Version: 561.1.1-1
Depends: libc, mdnsd
Source: feeds/packages/net/mdnsresponder
License: Apache-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 771618
Filename: packages/mdns-utils_561.1.1-1_ramips_24kec.ipk
Size: 772109
MD5Sum: f699f433c4324c860209fbd298d87546
SHA256sum: ce20e0fba82b8592f9c1b4feaa2243f60cc1a82e181c18f15907b8fe3c692ed8
Description: Bonjour, also known as zero-configuration networking, enables
automatic discovery of computers, devices, and services on
IP networks.
.
This package contains mDNS client utilities:
- dns-sd
- mDNSClient
- mDNSIdentify
- mDNSNetMonitor
- mDNSProxyResponder
- mDNSResponder
Package: mdnsd
Version: 561.1.1-1
Depends: libc
Source: feeds/packages/net/mdnsresponder
License: Apache-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 190190
Filename: packages/mdnsd_561.1.1-1_ramips_24kec.ipk
Size: 190895
MD5Sum: 9e66f847649815f63593c3815625c1e8
SHA256sum: af233a1b75dbde1b48fb776ed3c89ce67c04379882d05cd8b2d2714ea37060ca
Description: Bonjour, also known as zero-configuration networking, enables
automatic discovery of computers, devices, and services on
IP networks.
.
This package contains the mDNS server daemon.
Package: mdnsresponder
Version: 561.1.1-1
Depends: libc, mdns-utils, mdnsd
Source: feeds/packages/net/mdnsresponder
License: Apache-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/mdnsresponder_561.1.1-1_ramips_24kec.ipk
Size: 939
MD5Sum: ff394757b90a6b6c53fb0995d48e8fbb
SHA256sum: b08588e4ade3bcc30abef7b3a8639ced97ca0636d0f9c3dc925a85786c71eefd
Description: Bonjour, also known as zero-configuration networking, enables
automatic discovery of computers, devices, and services on
IP networks.
.
This meta package contains only dependencies on other packages.
Package: memcached
Version: 1.4.22-1
Depends: libc, libevent, libpthread
Source: feeds/packages/net/memcached
License: permissive free software license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54074
Filename: packages/memcached_1.4.22-1_ramips_24kec.ipk
Size: 54886
MD5Sum: 1fc8b4d9c1fb946e3d900485dced6b7a
SHA256sum: d36103feaf27f793baea58a464ca6000f56a794cfa3eb73456513adc475b7a8c
Description: Free and open source, high-performance, distributed memory object caching system
Package: micropython-lib
Version: 0.1-20150302-654c7d288603f7dae09eb09b57fb67b38c7ac6c3-1
Depends: libc, micropython
Source: feeds/packages/lang/micropython-lib
License: MIT, PSFL
LicenseFiles: LICENSE
Section: lang
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 168228
Filename: packages/micropython-lib_0.1-20150302-654c7d288603f7dae09eb09b57fb67b38c7ac6c3-1_ramips_24kec.ipk
Size: 169236
MD5Sum: dd671eb2156cd143afa878211be67237
SHA256sum: d728a8291077d9dba70e496da5eb96d108563d842ce1d86d84ed9ef407aaab64
Description: This package contains micropython-lib, a project to develop a non-monolothic
standard library for Micro Python. Note that this is a work in progress and
several libraries may be missing, incomplete or buggy.
Package: micropython
Version: 1.3.10-20150302-f2a889564b3a215902622b040a1247af38cb8203-1
Depends: libc, libffi
Source: feeds/packages/lang/micropython
License: MIT
LicenseFiles: LICENSE
Section: lang
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123917
Filename: packages/micropython_1.3.10-20150302-f2a889564b3a215902622b040a1247af38cb8203-1_ramips_24kec.ipk
Size: 124579
MD5Sum: e3ad2fdfe2249ced8e7e32a8793fd304
SHA256sum: 00d1772ac97e07b6b883a7325212db4a5fa736b2407cea0da30ea8f72b3f1ce0
Description: This package contains Micro Python, a lean and fast implementation of the Python 3.4 programming language
that is optimised to run on a microcontroller (and low power computers).
Package: minicom
Version: 2.7-1
Depends: libc, libncurses
Source: feeds/packages/utils/minicom
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69351
Filename: packages/minicom_2.7-1_ramips_24kec.ipk
Size: 70072
MD5Sum: c6c521ab4ae39cdc6a38e2b04e09a8ce
SHA256sum: 9ed29d5cccf9be40a3e83428dcf6d5f525868bb674d08b0c4541dfa665e6ba2f
Description: Terminal emulation program
Package: minidlna
Version: 1.1.4-2
Depends: libc, libpthread, libexif, libjpeg, libsqlite3, libffmpeg, libid3tag, libflac, libvorbis, libuuid
Source: feeds/packages/multimedia/minidlna
License: GPL-2.0 BSD-3-Clause
LicenseFiles: COPYING LICENCE.miniupnpd
Section: multimedia
Maintainer: Knyazkov Dmitry <[email protected]>
Architecture: ramips_24kec
Installed-Size: 114913
Filename: packages/minidlna_1.1.4-2_ramips_24kec.ipk
Size: 115580
MD5Sum: 3a87699bb7d6d1aa82c9b182d2e12c9f
SHA256sum: bd3b25bf1dc23de925edae4e23f41a6f4af87fac612add74263a7a00d580ef20
Description: MiniDLNA (aka ReadyDLNA) is server software with the aim of
being fully compliant with DLNA/UPnP-AV clients.
Package: miniupnpc
Version: 1.9-1
Depends: libc, libminiupnpc
Source: feeds/packages/net/miniupnpc
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6688
Filename: packages/miniupnpc_1.9-1_ramips_24kec.ipk
Size: 7455
MD5Sum: 31f88b4a35793b87b06d66d5d8670c50
SHA256sum: 354e7c93c6898b0130486aaf4a6b6c3f743a45653b7873991a976854b7c5d021
Description: Lightweight UPnP client
Package: mjpg-streamer
Version: r182-6
Depends: libc, libpthread, libjpeg
Source: feeds/packages/multimedia/mjpg-streamer
License: GPL-2.0
LicenseFiles: LICENSE
Section: multimedia
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33709
Filename: packages/mjpg-streamer_r182-6_ramips_24kec.ipk
Size: 34577
MD5Sum: cd8e07e93a66f4f435fecbfba7622962
SHA256sum: fdb31b32e343fe633cd0b319e1db04e1c1323c9efbc29ff045cb87334c2e04a2
Description: Streaming application for Linux-UVC compatible webcams
Package: mkdosfs
Version: 3.0.27-1
Depends: libc
Source: feeds/packages/utils/dosfstools
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: David Bonnes <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11898
Filename: packages/mkdosfs_3.0.27-1_ramips_24kec.ipk
Size: 12715
MD5Sum: 6f8ae34ca9f13406bffb29e7873e50ac
SHA256sum: bbaed588bd196dc6a925f12c7d6fea73fa9bb9e068459f7d194afe9cdfd01798
Description: Utilities to create and check MS-DOS FAT filesystems.
(mkfs.vfat and mkfs.fat for creating FAT volumes)
Package: mksh
Version: 50d-1
Depends: libc
Source: feeds/packages/utils/mksh
License: MirOS
Section: shells
Maintainer: Thorsten Glaser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105214
Filename: packages/mksh_50d-1_ramips_24kec.ipk
Size: 106510
MD5Sum: f626267718ef1daa296091bdb0256079
SHA256sum: 58e6f2e5b5c9e6c03591af67a7418a7366802af06ed957b2ce9a380623e0c2ac
Description: mksh is the MirBSD enhanced version of the Public Domain Korn
shell (pdksh), a Bourne-compatible shell which is largely si-
milar to the original AT&T Korn shell; mksh is the only pdksh
derivate currently being actively developed. It includes bug
fixes and feature improvements, in order to produce a modern,
robust shell good for interactive and especially script use.
mksh has UTF-8 support (in substring operations and the Emacs
editing mode) and - while R50 corresponds to OpenBSD 5.5-cur-
rent ksh (without GNU bash-like PS1 and fancy character clas-
ses) - adheres to SUSv4 and is much more robust. The code has
been cleaned up and simplified, bugs fixed, standards compli-
ance added, and several enhancements (for extended compatibi-
lity to other modern shells - as well as a couple of its own)
are available. It has sensible defaults as usual with BSD.
Package: mktorrent
Version: 1.0-1
Depends: libc
Source: feeds/packages/utils/mktorrent
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8772
Filename: packages/mktorrent_1.0-1_ramips_24kec.ipk
Size: 9445
MD5Sum: 27e2cddfc7301629c04b34d81296ae31
SHA256sum: e9d9c460ad4a93e1340f9209f2d34723865c568335640a6a50105e4ea645ad10
Description: mktorrent
Package: moc
Version: 2.5.0-1
Depends: libc, libcurl, libmad, libvorbis, alsa-lib, libid3tag, libflac, libsamplerate, libncursesw, libffmpeg, libltdl, libmagic, faad2, libdb47
Source: feeds/packages/sound/mocp
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 140196
Filename: packages/moc_2.5.0-1_ramips_24kec.ipk
Size: 140708
MD5Sum: a18e611cbee2418a84854d5f1c53d9fc
SHA256sum: d1e86020cfdf0bcb6507261b4cd1c1d97d33df8ca76e589482c3bf0479a29438
Description: MOC (music on console) is a console audio player for LINUX/UNIX designed to be powerful and easy to use.
Package: monit-nossl
Version: 5.12.1-1
Depends: libc, libpthread
Source: feeds/packages/admin/monit
License: AGPL-3.0
LicenseFiles: COPYING
Section: admin
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 191169
Filename: packages/monit-nossl_5.12.1-1_ramips_24kec.ipk
Size: 190943
MD5Sum: d5e490f4963ac1ecd511c0c10a447aa3
SHA256sum: cd6361132dc605917a318bbc7afdd97d36e1a95b3d3815eb6299f4f24b338851
Description: An utility for monitoring services on a Unix system
This package is built without SSL support.
Package: monit
Version: 5.12.1-1
Depends: libc, libpthread, libopenssl
Source: feeds/packages/admin/monit
License: AGPL-3.0
LicenseFiles: COPYING
Section: admin
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 195946
Filename: packages/monit_5.12.1-1_ramips_24kec.ipk
Size: 195451
MD5Sum: 8cf72637144499260b64edc63b042b51
SHA256sum: ecf3c28707fddd4271a1d07578175b875bdd77ecd15d815abc7a068764b2b8ba
Description: An utility for monitoring services on a Unix system
This package is built with SSL support.
Package: mosquitto-client-nossl
Version: 1.4-2
Depends: libc, librt, libuuid, libcares, libmosquitto-nossl
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13759
Filename: packages/mosquitto-client-nossl_1.4-2_ramips_24kec.ipk
Size: 14536
MD5Sum: 2c7d951cbe3691ccc2a56eaa73ac0685
SHA256sum: fda8597cb43307f24ff27b10804f8b225d1c80358fd611fada1c652f835dd4ed
Description: Command line client tools for publishing messages to MQTT servers
and subscribing to topics.
This package is built without SSL support
Package: mosquitto-client
Version: 1.4-2
Depends: libc, librt, libuuid, libcares, libmosquitto
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15238
Filename: packages/mosquitto-client_1.4-2_ramips_24kec.ipk
Size: 15963
MD5Sum: 125d834afa2cb41443a2cfef940aec19
SHA256sum: 237ab33a811a14789bbf398163a8d5ed19c9c97cc70165936b54b0bcfc7626d7
Description: Command line client tools for publishing messages to MQTT servers
and subscribing to topics.
This package is built with SSL support
Package: mosquitto-nossl
Version: 1.4-2
Depends: libc, librt, libuuid
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57709
Filename: packages/mosquitto-nossl_1.4-2_ramips_24kec.ipk
Size: 58760
MD5Sum: 94991ed09a83d3aebe68fee6b0678fde
SHA256sum: 260cc502013474f957a79251b789a636dc8f066e5fe4eb34ce4800b16f6c69c5
Description: Mosquitto is an open source (BSD licensed) message broker that implements
the MQTT protocol version 3.1 and 3.1.1. MQTT provides a lightweight
method of carrying out messaging using a publish/subscribe model.
This package also includes some basic support for configuring via UCI
This package is built WITHOUT SSL support.
Package: mosquitto
Version: 1.4-2
Depends: libc, librt, libuuid, libopenssl, libwebsockets-openssl
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66109
Filename: packages/mosquitto_1.4-2_ramips_24kec.ipk
Size: 66580
MD5Sum: 865fd5aac3b9a9a87436d8761b69e435
SHA256sum: d88e3907e0158a113655cf5dd4557cae4275423ab1e727daaab2ef152b671cbc
Description: Mosquitto is an open source (BSD licensed) message broker that implements
the MQTT protocol version 3.1 and 3.1.1. MQTT provides a lightweight
method of carrying out messaging using a publish/subscribe model.
This package also includes some basic support for configuring via UCI
This package is built with SSL support
Package: motion
Version: 3.4.0-20141018-9479d910f2149b5558788bb86f97f26522794212-1
Depends: libc, libjpeg, libpthread
Source: feeds/packages/multimedia/motion
License: GPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 92945
Filename: packages/motion_3.4.0-20141018-9479d910f2149b5558788bb86f97f26522794212-1_ramips_24kec.ipk
Size: 93466
MD5Sum: 2ef39b81658d1d3532ddb0e9e7f41cdd
SHA256sum: afd76454f1bb92b83e526b86d77a799dfe6292eba0ae85c611b0c0066cac40b1
Description: webcam motion sensing and logging
Package: mpack
Version: 1.6-1
Depends: libc
Source: feeds/packages/utils/mpack
License: NLPL
Section: utils
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23965
Filename: packages/mpack_1.6-1_ramips_24kec.ipk
Size: 24807
MD5Sum: 854fd02edec731614113e98f33852647
SHA256sum: a06f5b85df75604e56ef230e1c4afaea1e03db08c9600a71720e4a596264077f
Description: Mpack and munpack are utilities for encoding and decoding
(respectively) binary files in MIME (Multipurpose Internet Mail
Extensions) format mail messages. For compatibility with older forms
of transferring binary files, the munpack program can also decode
messages in split-uuencoded format.
Package: mpc
Version: 0.26-2
Depends: libc, libmpdclient
Source: feeds/packages/sound/mpc
License: GPL-2.0+
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18701
Filename: packages/mpc_0.26-2_ramips_24kec.ipk
Size: 19536
MD5Sum: 9f453d7b89fcc775135ff5da7879aa1b
SHA256sum: fa77c70f0a651d2da8a3c8b1f1e26193e245ca3f1981312607d34b64326c5a60
Description: MPD is a music player supporting flac, mp3 and ogg files.
It is typically controlled over a network using one of it's many
clients including mpc(console), gmpc(gnome), phpmp(php) etc.
this is MPC
Package: mpd-avahi-service
Version: 0.18.21-1
Depends: libc, glib2, libcurl, libpthread, libmpdclient, libstdcpp, libflac, libmad, libvorbisidec, alsa-lib, avahi-daemon
Source: feeds/packages/sound/mpd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 369
Filename: packages/mpd-avahi-service_0.18.21-1_ramips_24kec.ipk
Size: 1406
MD5Sum: 1b4ee0d4bb2d95511a49a3372fb431c8
SHA256sum: b954d772d64a76d14129b404cf5397f1f90253bcb19e1094aff948d68cbe0f83
Description: Music Player Daemon (MPD) is a flexible, powerful, server-side
application for playing music. It is typically controlled over a
network using one of it's many clients including mpc (console),
gmpc (gnome), phpmp (php), etc...
.
This package contains the service definition for announcing the
Music Player Daemon service via mDNS/DNS-SD.
Package: mpd-full
Version: 0.18.21-1
Depends: libc, glib2, libcurl, libpthread, libmpdclient, libstdcpp, libflac, libmad, libvorbisidec, alsa-lib, libaudiofile, libfaad2, libffmpeg, libid3tag, libmms, libogg, libsndfile, libvorbis
Provides: mpd
Source: feeds/packages/sound/mpd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 157156
Filename: packages/mpd-full_0.18.21-1_ramips_24kec.ipk
Size: 157563
MD5Sum: bbddb1e74444529bac10d284c05fb281
SHA256sum: 76fd980c5404b6a3a96db90eef23f85e003b0c723dc9c93e46552939b686fb41
Description: Music Player Daemon (MPD) is a flexible, powerful, server-side
application for playing music. It is typically controlled over a
network using one of it's many clients including mpc (console),
gmpc (gnome), phpmp (php), etc...
.
This package contains a full-blown Music Player Daemon.
Package: mpd-mini
Version: 0.18.21-1
Depends: libc, glib2, libcurl, libpthread, libmpdclient, libstdcpp, libflac, libmad, libvorbisidec, alsa-lib
Provides: mpd
Source: feeds/packages/sound/mpd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 137665
Filename: packages/mpd-mini_0.18.21-1_ramips_24kec.ipk
Size: 137983
MD5Sum: 50cead39ac3b7f43eccec63b03472190
SHA256sum: bb725c3bcbd44e77a0d7285cd7a3e07e25ac72fdd7100be1e60cd7335ef8fa8e
Description: Music Player Daemon (MPD) is a flexible, powerful, server-side
application for playing music. It is typically controlled over a
network using one of it's many clients including mpc (console),
gmpc (gnome), phpmp (php), etc...
.
This package contains a minimal Music Player Daemon, with support for
only Flac, MP3 & OGG media types & only file: & http: protocols.
Package: msmtp-nossl
Version: 1.6.1-3
Depends: libc
Source: feeds/packages/mail/msmtp
License: GPL-3.0+
LicenseFiles: COPYING
Section: mail
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36102
Filename: packages/msmtp-nossl_1.6.1-3_ramips_24kec.ipk
Size: 37193
MD5Sum: 5dbb8b62432c6182df759324ee3e2102
SHA256sum: 06edf9acaa467912c150cd0ef091a2fda2276736bb2cf106cfcc86c6e5c15d92
Description: msmtp is an SMTP client. In the default mode, it transmits a mail to
an SMTP server (for example at a free mail provider) which does the
delivery. To use this program with your mail user agent (MUA), create
a configuration file with your mail account(s) and tell your MUA to
call msmtp instead of /usr/sbin/sendmail.
This package is built without SSL support.
Package: msmtp-queue
Version: 1.6.1-3
Depends: libc, bash
Source: feeds/packages/mail/msmtp
License: GPL-3.0+
LicenseFiles: COPYING
Section: mail
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8324
Filename: packages/msmtp-queue_1.6.1-3_ramips_24kec.ipk
Size: 9276
MD5Sum: b6b6ca0703f7544828b77f2cd874b7f1
SHA256sum: ffe457a8667f7f4341970daa084bde1b89f0b1abad41c91c0045b44e62e24529
Description: msmtp is an SMTP client. In the default mode, it transmits a mail to
an SMTP server (for example at a free mail provider) which does the
delivery. To use this program with your mail user agent (MUA), create
a configuration file with your mail account(s) and tell your MUA to
call msmtp instead of /usr/sbin/sendmail.
This package contains the msmtp queue scripts.
Package: msmtp
Version: 1.6.1-3
Depends: libc, libopenssl
Source: feeds/packages/mail/msmtp
License: GPL-3.0+
LicenseFiles: COPYING
Section: mail
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41021
Filename: packages/msmtp_1.6.1-3_ramips_24kec.ipk
Size: 42147
MD5Sum: bc6df3a1d8b8bde6fd62e706f33587e9
SHA256sum: 9831688d2fdb1b0e30c1dedd957c2248287eccd17c41f8447f492f7c8df27377
Description: msmtp is an SMTP client. In the default mode, it transmits a mail to
an SMTP server (for example at a free mail provider) which does the
delivery. To use this program with your mail user agent (MUA), create
a configuration file with your mail account(s) and tell your MUA to
call msmtp instead of /usr/sbin/sendmail.
This package is built with SSL support.
Package: mtr
Version: 0.86-1
Depends: libc, libncurses
Source: feeds/packages/net/mtr
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 31327
Filename: packages/mtr_0.86-1_ramips_24kec.ipk
Size: 32188
MD5Sum: 6a05c4361f9e64095a5b431435c7c3ba
SHA256sum: 5e5393f15c8faecaff134c2e361dfabca4cf974fd683550a0aa658ab62377b52
Description: mtr combines the functionality of the 'traceroute' and 'ping' programs
in a single network diagnostic tool.
As mtr starts, it investigates the network connection between the host
mtr runs on and a user-specified destination host. After it
determines the address of each network hop between the machines,
it sends a sequence ICMP ECHO requests to each one to determine the
quality of the link to each machine. As it does this, it prints
running statistics about each machine.
Package: muninlite
Version: 1.0.4-5
Depends: libc, xinetd
Source: feeds/packages/admin/muninlite
License: GPL-2.0+
LicenseFiles: LICENSE
Section: admin
Architecture: ramips_24kec
Installed-Size: 5798
Filename: packages/muninlite_1.0.4-5_ramips_24kec.ipk
Size: 6546
MD5Sum: b499eb6d9a019e5065fdb7450b46d195
SHA256sum: f8b1020ac9c35ddec8d6f0a66f13140671fa3f01551687f176285c52222cb698
Description: Munin node implemented in shell
Package: mwan3
Version: 1.6-1
Depends: libc, ip, ipset, iptables, iptables-mod-conntrack-extra, iptables-mod-ipopt
Source: feeds/packages/net/mwan3
License: GPLv2
Section: net
Maintainer: Jeroen Louwes <[email protected]>
Architecture: all
Installed-Size: 5210
Filename: packages/mwan3_1.6-1_all.ipk
Size: 6122
MD5Sum: 32f12dd58773c6f059932257c55b9f62
SHA256sum: 50bd5e3598006b1285f047c561d135a4e5e589915e648b88ee4a2cb76b73a20a
Description: Hotplug script which makes configuration of multiple WAN interfaces simple
and manageable. With loadbalancing/failover support for up to 250 wan
interfaces, connection tracking and an easy to manage traffic ruleset.
Package: mxml
Version: 2.8-1
Depends: libc
Source: feeds/packages/libs/mxml
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17669
Filename: packages/mxml_2.8-1_ramips_24kec.ipk
Size: 18275
MD5Sum: c703e374d66bad595f2924dab9ae6a78
SHA256sum: f4eafa083e33d54718c45aaffa3584b69b126c8a73d2ec6a7b3d3872ca0790c3
Description: A small xml library.
Package: mysql-server
Version: 5.1.73-1
Depends: libc, libmysqlclient, libpthread, libncursesw, libreadline
Source: feeds/packages/utils/mysql
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2219295
Filename: packages/mysql-server_5.1.73-1_ramips_24kec.ipk
Size: 2201305
MD5Sum: 3c9d505110346b4dc6a132f48a3ee1cc
SHA256sum: 918968fc8c2162c119fb29678d9a28c42c24f4e42ad105d9bddccd5f0b439b57
Description: MySQL Server
Package: nail
Version: 12.5-1
Depends: libc, libopenssl
Source: feeds/packages/mail/nail
License: BSD-2-Clause
Section: mail
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 143234
Filename: packages/nail_12.5-1_ramips_24kec.ipk
Size: 143679
MD5Sum: 9915cf41ef88b72222dc1f4fb473fcd8
SHA256sum: 4d72ef95f38cece98ff82027e34101c2ea8fa3910b18fcaf76e540a0867e4ada
Description: Heirloom mailx (formerly known as "nail") is intended provide
the functionality of the POSIX mailx command with additional
support for MIME messages, IMAP (including caching), POP3,
SMTP, S/MIME, message threading/sorting, scoring, and filtering
Package: nano
Version: 2.3.6-1
Depends: libc, libncurses
Source: feeds/packages/utils/nano
Section: utils
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28380
Filename: packages/nano_2.3.6-1_ramips_24kec.ipk
Size: 28997
MD5Sum: c99049aabe190f3d254f603caec0066d
SHA256sum: 22bccd4bc9ad737e7208a5e2d4fbb2f63ba7b6b875e62335647a4032f1e6c427
Description: GNU nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone
of the Pico text editor.
Package: natpmpc
Version: 20140401-1
Depends: libc, libnatpmp
Source: feeds/packages/libs/libnatpmp
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Hauke Mehrtens <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3413
Filename: packages/natpmpc_20140401-1_ramips_24kec.ipk
Size: 4326
MD5Sum: 533516cab6a5f3e0fd52cfa49e186fca
SHA256sum: e093817f487bb5afd22b02ce0e31b62a6172bc07417ae359094b5208f2ec13db
Description: libnatpmp is an attempt to make a portable and fully compliant implementation
of the protocol for the client side. It is based on non blocking sockets and
all calls of the API are asynchronous. It is therefore very easy to integrate
the NAT-PMP code to any event driven code.
This package contains the natpmp client.
Package: ncat-ssl
Version: 6.47-2
Depends: libc, libpcap, libopenssl
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 327093
Filename: packages/ncat-ssl_6.47-2_ramips_24kec.ipk
Size: 327376
MD5Sum: 4f646aace87e80e5d7050ae8dd8e05cc
SHA256sum: e93b8c089e677ae5ac0dbab9e7b0882793313ce232f87495643c1b6328eada64
Description: Ncat (with OpenSSL support)
Package: ncat
Version: 6.47-2
Depends: libc, libpcap
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58292
Filename: packages/ncat_6.47-2_ramips_24kec.ipk
Size: 59073
MD5Sum: 27c02aa69aa205867c29e572b1c979fe
SHA256sum: 54a73f8db55e0d8b79bcd71f16cf73506ce2b63607e01ed54801b17c169b6bff
Description: Much-improved reimplementation of Netcat
Package: ncdu
Version: 1.10-1
Depends: libc, libncursesw
Source: feeds/packages/utils/ncdu
License: MIT
LicenseFiles: COPYING
Section: utils
Maintainer: Charles Lehner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24780
Filename: packages/ncdu_1.10-1_ramips_24kec.ipk
Size: 25572
MD5Sum: c1e9044a813847e7850ce847a2d72140
SHA256sum: 1e0c220fbe14c4eeab0fb4e4b47303fa5d0d317a9e0f275dd14d4f410cc88547
Description: Ncdu is a ncurses-based du viewer. It provides a fast and easy-to-use
interface through famous du utility. It allows one to browse through the
directories and show percentages of disk usage with ncurses library.
Package: ndiff
Version: 6.47-2
Depends: libc, python
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1367
Filename: packages/ndiff_6.47-2_ramips_24kec.ipk
Size: 2144
MD5Sum: f15462475370e5399e8b5abb172a8a1a
SHA256sum: df4e445d1b5809e45fecbeea29844dada3e62d8735d4f61c090f4ec7b4015fc9
Description: Utility to compare the results of Nmap scans
Package: netatalk
Version: 2.2.4-1
Depends: libc, attr, libdb47, libgcrypt, libopenssl, librpc
Source: feeds/packages/net/netatalk
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 357977
Filename: packages/netatalk_2.2.4-1_ramips_24kec.ipk
Size: 357541
MD5Sum: cc3a2390fbbda8c90d8ae329e274aad8
SHA256sum: 1323204c65b4b5e2681ef358bcbb222aaaccef7de7acb07d86be12b4ead492dc
Description: netatalk
Package: netcat
Version: 0.7.1-1
Depends: libc
Source: feeds/packages/net/netcat
License: GPL-2.0
Section: net
Maintainer: Adam Gensler <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14403
Filename: packages/netcat_0.7.1-1_ramips_24kec.ipk
Size: 15459
MD5Sum: 09a12a68f37e83ed4a5396c8e8166df6
SHA256sum: 13d53b5f4869d0e7faffe3558d2c2829be9fda7723c1ec27154c91ea322cfe87
Description: Netcat is a featured networking utility which reads and writes data across network connections, using the TCP/IP protocol.
It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.
Package: nfc-utils
Version: 1.7.1-1
Depends: libc, libnfc
Source: feeds/packages/libs/libnfc
License: LGPL-2.1
Section: utils
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24682
Filename: packages/nfc-utils_1.7.1-1_ramips_24kec.ipk
Size: 25597
MD5Sum: b6f69a4f71d965d1b07d241fa1ddd1d7
SHA256sum: b3bc427736be5429a229f4191c2e1e17076a30e964559aa74109df1b068958d2
Description: Provide some examples shared functions like print, parity calculation, options parsing
* Emulates a NFC Forum Tag Type 4 v2.0 (or v1.0)
* Jewel dump/restore tool
* Lists the first target present of each founded device
* MIFARE Classic manipulation example
* MIFARE Ultralight dump/restore tool
* Extract NDEF Message from a NFC Forum Tag Type 3
* Relay example using two PN532 devices
* Lists each available NFC device
Package: nfs-kernel-server-utils
Version: 1.3.2-2
Depends: libc, nfs-kernel-server
Source: feeds/packages/net/nfs-kernel-server
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12728
Filename: packages/nfs-kernel-server-utils_1.3.2-2_ramips_24kec.ipk
Size: 13421
MD5Sum: de0f27a56474cff538ccbfee9c93748c
SHA256sum: b1e6e468492575d0955626b29f9d200636af04b76ede3835571ceafe0fa7f723
Description: NFS server utils
Package: nfs-kernel-server
Version: 1.3.2-2
Depends: libc, libwrap, libblkid, libuuid, librpc, kmod-fs-nfsd, kmod-fs-nfs, portmap
Source: feeds/packages/net/nfs-kernel-server
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 98601
Filename: packages/nfs-kernel-server_1.3.2-2_ramips_24kec.ipk
Size: 99282
MD5Sum: 75a50542d6f14d32b311bab1555d9d8a
SHA256sum: 5fa4d170b7b7310372961059f482694281103616641943099a9d6d2d80be86b5
Description: Kernel NFS server support
Package: nfs-utils
Version: 1.3.2-2
Depends: libc, libwrap, libblkid, libuuid, librpc, libevent, librpc
Source: feeds/packages/net/nfs-kernel-server
Section: utils
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41400
Filename: packages/nfs-utils_1.3.2-2_ramips_24kec.ipk
Size: 42121
MD5Sum: d51b0dfa6a5eda0552930c704078a9ed
SHA256sum: 69518c280b16accd5cbaf5637c690bd68452f0e33e2113e6844008394b8b17e6
Description: Updated mount.nfs command - allows mounting nfs4 volumes
Package: nginx-naxsi
Version: 1.4.7-2
Depends: libc, nginx
Source: feeds/packages/net/nginx
License: 2-clause BSD-like license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1474
Filename: packages/nginx-naxsi_1.4.7-2_ramips_24kec.ipk
Size: 2239
MD5Sum: 1d04dfa575e034aba8b485d1da4c4765
SHA256sum: d6a045776c08ff743755ae983ab5d548bc9afe19bbfb8c2b19bf8e14953d1fae
Description: NGINX WAF NAXSI
Package: nginx-syslog
Version: 1.4.7-2
Depends: libc, nginx
Source: feeds/packages/net/nginx
License: 2-clause BSD-like license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 610
Filename: packages/nginx-syslog_1.4.7-2_ramips_24kec.ipk
Size: 1361
MD5Sum: 1dab6f7069a5ea70e9f47e10de81012f
SHA256sum: e9fea8c0dc10d6f1c46ac83131cd043a2bcf751b02d2033b3342d63a4fe0f0d3
Description: IMPLEMENT Syslog Protocol
Package: nginx
Version: 1.4.7-2
Depends: libc, libpcre, libopenssl, zlib, libpthread
Source: feeds/packages/net/nginx
License: 2-clause BSD-like license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 236630
Filename: packages/nginx_1.4.7-2_ramips_24kec.ipk
Size: 236978
MD5Sum: 5c84c91fe5342098076a7eb0ba7710f3
SHA256sum: 713ba2ef39e5161d93d2e367751366ac6de8b2527b42cb88e8f96bc4311b5663
Description: nginx is an HTTP and reverse proxy server, as well as a mail proxy server,
written by Igor Sysoev.
Package: nmap-ssl
Version: 6.47-2
Depends: libc, libpcap, libstdcpp, libopenssl
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1771155
Filename: packages/nmap-ssl_6.47-2_ramips_24kec.ipk
Size: 1764612
MD5Sum: 36c696c413582936c082b0fd6bfcee43
SHA256sum: 981fa9650e124e0fb0903fe989ea9c2de5a49a1674dbe18ac38e40efe48c7b95
Description: Nmap (with OpenSSL support)
Package: nmap
Version: 6.47-2
Depends: libc, libpcap, libstdcpp
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1768257
Filename: packages/nmap_6.47-2_ramips_24kec.ipk
Size: 1762199
MD5Sum: d96cd98a2fe4ef1d1b99251f02d4f2bf
SHA256sum: f5878c3965853971ae43a306cdaaeaddc5f3ee0098f92dcb515a4bb73d07052b
Description: Utility for network exploration or security auditing
Package: noping
Version: 1.6.2-1
Depends: libc, liboping, libncurses
Source: feeds/packages/libs/liboping
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8493
Filename: packages/noping_1.6.2-1_ramips_24kec.ipk
Size: 9256
MD5Sum: 79ce764e0e64f23a44ead6927a106293
SHA256sum: 43b51f46269f837227098d27f280269e6a8c59fb419a694b4c21167d7cae8447
Description: Ncurses application to send ICMP echo request to network hosts
Package: nping
Version: 6.47-2
Depends: libc, libpcap, libpthread, libstdcpp
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 158581
Filename: packages/nping_6.47-2_ramips_24kec.ipk
Size: 158628
MD5Sum: b608e4e45a09c26a8c54aea15d240440
SHA256sum: 44a8d6df0269f5b37cc2d4184ca368491ba30582f3c5e1d56732f75d605fc4e7
Description: Network packet generation tool / ping utility
Package: nsd-control-setup
Version: 4.0.3-1
Depends: libc, openssl-util
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2286
Filename: packages/nsd-control-setup_4.0.3-1_ramips_24kec.ipk
Size: 3093
MD5Sum: cbfa0862d0edc08148188cabc56d29f5
SHA256sum: e6373841953456811a9e880716e78e7aa548f1b3f5d22ceafa82cc518f11c44b
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nsd-control
Version: 4.0.3-1
Depends: libc, libopenssl
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1357
Filename: packages/nsd-control_4.0.3-1_ramips_24kec.ipk
Size: 2155
MD5Sum: a462a451da87bc4a0d53f10931cd577d
SHA256sum: 48737a4c9ba3b94f610624b5940eee27f1aff419115ed14841244f27b37de96a
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nsd-nossl
Version: 4.0.3-1
Depends: libc
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 154090
Filename: packages/nsd-nossl_4.0.3-1_ramips_24kec.ipk
Size: 154473
MD5Sum: 43d4da7e5755627bf7d631b70a147abc
SHA256sum: f8f6a3c2d5285edb4bcb86a30d2e0581a4cdcb3409c8b3680292b3952c9a8c09
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nsd
Version: 4.0.3-1
Depends: libc, libopenssl
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 173158
Filename: packages/nsd_4.0.3-1_ramips_24kec.ipk
Size: 173198
MD5Sum: 33dc1000a17772c2de7886582193525d
SHA256sum: c9f7c5f76e4054d7438f1c940938bf0edca7c3d2a1fba3205a4287d74e9888a3
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nspr
Version: 3.16.6-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/nspr
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 107498
Filename: packages/nspr_3.16.6-1_ramips_24kec.ipk
Size: 108195
MD5Sum: 750d3fae1a344c35c81a63ac069ab9be
SHA256sum: f7e57467c5b374952a8ae1407fff96123f6352e262e54c20d0dbf17299a97ba9
Description: Netscape Portable Runtime (NSPR) provides a platform-neutral API for system
level and libc-like functions. The API is used in the Mozilla clients, many of
Red Hat's and Sun's server applications, and other software offerings.
Package: ntfs-3g-low
Version: 2014.2.15-1-fuseint
Depends: libc, ntfs-3g
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35011
Filename: packages/ntfs-3g-low_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 36063
MD5Sum: 9fa527cad8534d0cbc4e986ac3f5bff4
SHA256sum: 75a92e7af5302e0de9b735689d4ffc2d693c908fbd9003309db183b77ac0ce86
Description: Contains:
- lowntfs-3g
- mount.lowntfs-3g (symlink to lowntfs-3g)
A driver variant using the fuse low-level interface missing some of the
enhanced functionality for streams or the like. You might want to check:
http://www.tuxera.com/community/ntfs-3g-manual/
Package: ntfs-3g-utils
Version: 2014.2.15-1-fuseint
Depends: libc, ntfs-3g
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128770
Filename: packages/ntfs-3g-utils_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 128840
MD5Sum: 43c7547943c4ea863797e09dbe664939
SHA256sum: bc152327549269d84278865f6478bfb67df28047aef9bdbff6562786fc9b9561
Description: Additional ntfs-3g utilities. Not included by default for size
considerations. All binaries except ntfs-3g, ntfs-3g.probe.
Currently:
- ntfs-3g.secaudit
- ntfs-3g.usermap
Package: ntfs-3g
Version: 2014.2.15-1-fuseint
Depends: libc, kmod-fuse, libpthread
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 175913
Filename: packages/ntfs-3g_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 177021
MD5Sum: 3417b8d77967fd197673c6fb280d0fb1
SHA256sum: 881449918ea5f97ccf3e2d4c8600f3abaf5093ec3ddeaa1103201a142ec10b2a
Description: Ntfs-3g is a NTFS driver, which can create, remove, rename,
move files, directories, hard links, and streams. It can read
and write files, including streams and sparse files. It can
handle special files like symbolic links, devices, and FIFOs.
Moreover it can also read transparently compressed files.
Contains:
- ntfs-3g
- ntfs-3g.probe
- mount.ntfs-3g (symlink to ntfs-3g)
Package: ntfsprogs_ntfs-3g
Version: 2014.2.15-1-fuseint
Depends: libc, ntfs-3g, libgcrypt, libuuid
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 187354
Filename: packages/ntfsprogs_ntfs-3g_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 187409
MD5Sum: 83589cb70a5865b00c29ec6641ba739e
SHA256sum: 98c3cd804bb35edbfc3c141b0ccf2d79991fcb5e87d68537fcacb5a6d30f83b0
Description: ntfsprogs (ntfs-3g)
Package: ntp-keygen
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74166
Filename: packages/ntp-keygen_4.2.8p1-1_ramips_24kec.ipk
Size: 74705
MD5Sum: 70a8091b637aeb864c2afcbed16fc912
SHA256sum: f33f6b5914f469de6ab7ec902e497b8f2e78b2af395866f3b238651dde572b41
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains the ntp-keygen.
Package: ntp-utils
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 236107
Filename: packages/ntp-utils_4.2.8p1-1_ramips_24kec.ipk
Size: 236681
MD5Sum: a5a7c842a0a0908f260a6a9e402ddf77
SHA256sum: 6df731ea806bde7fffd22dd814cc440b473655029b62e295cf36d6dfa6a3cae0
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains ntpdc, ntpq and ntptime.
Package: ntpclient
Version: 2010_365-1
Depends: libc, librt
Source: feeds/packages/net/ntpclient
License: GPL-2.0
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12297
Filename: packages/ntpclient_2010_365-1_ramips_24kec.ipk
Size: 13066
MD5Sum: f41648be6104a12be6a4e8089d0d30ec
SHA256sum: ce1607ea5350c451ddaee3f73b6ee2f08f758c12ae3b0359fd78fcbd6ef88582
Description: NTP client for setting system time from NTP servers.
Package: ntpd
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread, libcap
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Require-User: ntp=123:ntp=123
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 217934
Filename: packages/ntpd_4.2.8p1-1_ramips_24kec.ipk
Size: 218240
MD5Sum: 2bb652a83f9da0a9e065b4f744d70516
SHA256sum: a9282676366fda1a0cf39026b14dc40d65074942ba70243c8da5d484c88856dc
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains the ntpd server.
Package: ntpdate
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47330
Filename: packages/ntpdate_4.2.8p1-1_ramips_24kec.ipk
Size: 48181
MD5Sum: 7b1f79e238e21608b38cd379c73ee1dc
SHA256sum: 54b423344cf685723f12d3fd7067114dd5c23426a207b6284160d78278749a7b
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains ntpdate.
Package: ntripcaster
Version: 0.1.5-1
Depends: libc, libpthread
Source: feeds/packages/net/ntripcaster
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34190
Filename: packages/ntripcaster_0.1.5-1_ramips_24kec.ipk
Size: 34942
MD5Sum: fc84debe39a6e5d4535d918bf469eafc
SHA256sum: 9bc75c7dc8de339c0dc2b11ac92a09a5a618543ace4cef5506c3b6b51693ece1
Description: BKG Standard Ntrip Broadcaster
Package: ntripclient
Version: 1.5.0-2
Depends: libc
Source: feeds/packages/net/ntripclient
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13059
Filename: packages/ntripclient_1.5.0-2_ramips_24kec.ipk
Size: 13845
MD5Sum: 8351378e1f91d8c6d0822464a4597b70
SHA256sum: a65e80a72847dcfbc804a8552288efd7fd227775e7c611718cf0aeec72be65a1
Description: Ntrip Version 2.0 Command Line Client, reading from Ntrip Version 1.0 or 2.0 Caster
Package: ntripserver
Version: 1.5.1-2
Depends: libc
Source: feeds/packages/net/ntripserver
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15312
Filename: packages/ntripserver_1.5.1-2_ramips_24kec.ipk
Size: 16080
MD5Sum: 8285e3ed1092e7848a55d4e633156831
SHA256sum: 07d39a666a361c8c191385c5db48caa589aab15c8d003dc6b94dc09a11f0469b
Description: Ntrip Version 2.0 Command Line Server, reading from SISNeT Server, TCP/UDP IP Port, Serial port, or NtripCaster to support an Ntrip Version 1.0 or 2.0 Caster
Package: nut-driver-bcmxcp_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31148
Filename: packages/nut-driver-bcmxcp_usb_2.7.2-1_ramips_24kec.ipk
Size: 31793
MD5Sum: 33c5075ea81bdeca760cb624e446d6a5
SHA256sum: 687b2382f4c6f0c0e009807e495c8ef2c87a16af43bb6c0c1aa323dfb54e4b5c
Description: Experimental driver for UPSes supporting the BCM/XCP protocol over USB
Package: nut-driver-blazer_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28575
Filename: packages/nut-driver-blazer_usb_2.7.2-1_ramips_24kec.ipk
Size: 29353
MD5Sum: 4116391da35c1d6e21be0e22213da6b0
SHA256sum: ea36e6340a7b87dcf5386d646263aac7c2b1f4d796f5b56de384c8cfd04a2557
Description: Driver for Megatec/Q1 protocol USB based UPS equipment
Package: nut-driver-nutdrv_atcl_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20171
Filename: packages/nut-driver-nutdrv_atcl_usb_2.7.2-1_ramips_24kec.ipk
Size: 20944
MD5Sum: 7aedea2144d0fc8cb6c1bd11a346d0e3
SHA256sum: 33ef4c126ba811ca0e6c19838df76ace6994728fb654c3f1af05fb9860a1071f
Description: Driver for ATCL FOR UPS equipment
Package: nut-driver-nutdrv_qx
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50190
Filename: packages/nut-driver-nutdrv_qx_2.7.2-1_ramips_24kec.ipk
Size: 49525
MD5Sum: 76ee8785e9d1614f097290bdc07b217f
SHA256sum: 3ea3853c9c245b11b985def9278565c79a0f0eef8e71ed533d81f9a2f63c753d
Description: Driver for Q* protocol serial and USB based UPS equipment
Package: nut-driver-richcomm_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19741
Filename: packages/nut-driver-richcomm_usb_2.7.2-1_ramips_24kec.ipk
Size: 20521
MD5Sum: fdc8c4253c2bd005c2dd3bffc53cfb28
SHA256sum: 1a9fa63557f3ed42532d0b9a2be9a92ce752eb36785a6ab631e293b2ed5cf633
Description: Driver for UPS equipment using Richcomm dry-contact to USB solution
Package: nut-driver-riello_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27428
Filename: packages/nut-driver-riello_usb_2.7.2-1_ramips_24kec.ipk
Size: 28210
MD5Sum: 474f0ec8db698845cb824feb6b3c72c4
SHA256sum: 6ae5d490cc2e404a889c271c33f73784d3efd7fa5ff932128dd3fba7b97658fe
Description: Driver for Riello UPS Protocol UPS equipment via USB
Package: nut-driver-tripplite_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25781
Filename: packages/nut-driver-tripplite_usb_2.7.2-1_ramips_24kec.ipk
Size: 26560
MD5Sum: d861b423cb95c3849f8b6f3947778bd5
SHA256sum: 333d50f1a3bc6708be57ec7d443f43b5b2f8a06aca3f751d32b1a13dd26186a9
Description: Driver for older Tripp Lite USB UPSes (not PDC HID)
Package: nut-driver-usbhid-ups
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46599
Filename: packages/nut-driver-usbhid-ups_2.7.2-1_ramips_24kec.ipk
Size: 47239
MD5Sum: 1545f2c27fb11192b646f8a783357b10
SHA256sum: 0702764c29cbc0bef154b2e1d75c19ece3660507fcf0072615ec3c9975797f7c
Description: Driver for USB/HID UPS equipment
Package: nut
Version: 2.7.2-1
Depends: libc, libusb-compat
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87526
Filename: packages/nut_2.7.2-1_ramips_24kec.ipk
Size: 88468
MD5Sum: 98c8ae7f36fa9c1afe7257ed03b7e5d7
SHA256sum: 65b9ff0a06087304c51a9db8c17d68c10aff51d91016bd235d8710a8c9785176
Description: Network UPS Tools (NUT) is a client/server monitoring system that
allows computers to share uninterruptible power supply (UPS) and
power distribution unit (PDU) hardware. Clients access the hardware
through the server, and are notified whenever the power status
changes.
Package: ocserv
Version: 0.9.2-2
Depends: libc, libhttp-parser, libgnutls, certtool, libncurses, libreadline, libprotobuf-c, kmod-tun
Source: feeds/packages/net/ocserv
License: GPLv2
LicenseFiles: COPYING
Section: net
Require-User: ocserv=72:ocserv=72
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 185012
Filename: packages/ocserv_0.9.2-2_ramips_24kec.ipk
Size: 185686
MD5Sum: 1ae88a2519c1c04fcd0a890225a8e3a8
SHA256sum: 32bbfc8e2ac43c72d4f2e0640f362160a95adb61696d1b94e333e712ce6b5518
Description: OpenConnect server (ocserv) is an SSL VPN server. Its purpose is to be
a secure, small, fast and configurable VPN server. It implements the
OpenConnect SSL VPN protocol, and has also (currently experimental)
compatibility with clients using the AnyConnect SSL VPN protocol. The
OpenConnect VPN protocol uses the standard IETF security protocols such
as TLS 1.2, and Datagram TLS to provide the secure VPN service.
Package: open-plc-utils-CMEncrypt
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10592
Filename: packages/open-plc-utils-CMEncrypt_2013-01-29_ramips_24kec.ipk
Size: 11340
MD5Sum: 50e259157689a295799c03c367284508
SHA256sum: c20a9d3d87c207f2e9ca3e3ab25660e4f0a21f6c531b677383ffb5765b6b1592
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampID
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9705
Filename: packages/open-plc-utils-ampID_2013-01-29_ramips_24kec.ipk
Size: 10452
MD5Sum: cd9b8bf896cbfb42b105c84ff951240a
SHA256sum: 251388214f7d00cc0f2b0fabade9a97282828f3ca797ffcb9cc3940426fde78e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampboot
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15029
Filename: packages/open-plc-utils-ampboot_2013-01-29_ramips_24kec.ipk
Size: 15770
MD5Sum: 23a78758482d831be9eb4c0d7769f9b4
SHA256sum: 1d46b664ddc7318d14f195cca74b456a4fa7155ee96599499e7f955e73e4d2b4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amphost
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16685
Filename: packages/open-plc-utils-amphost_2013-01-29_ramips_24kec.ipk
Size: 17451
MD5Sum: d6be8cf91cbb8da7f5d6c0ae8c63eca5
SHA256sum: 971bee948ff626ccdb0e480ba71d7a3cc10f99b77a2ac89cef0f37b6e3778e4a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amplist
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10264
Filename: packages/open-plc-utils-amplist_2013-01-29_ramips_24kec.ipk
Size: 11015
MD5Sum: 089df478f4a64df06d39e352497b05ba
SHA256sum: 45e6f04198219406fb51bf50e978fd29cffcd29d31439347ed638635e5bdc0e8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amprate
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13090
Filename: packages/open-plc-utils-amprate_2013-01-29_ramips_24kec.ipk
Size: 13862
MD5Sum: 1599da56f9b4142d38e4c9244d626c22
SHA256sum: a94ff10f07bde136861a40e98af22e72c2e3bd2b29dd3b5f7293e9adc13e4d93
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampstat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13733
Filename: packages/open-plc-utils-ampstat_2013-01-29_ramips_24kec.ipk
Size: 14455
MD5Sum: 6ffc4cc4df50708286bbfddd642290d3
SHA256sum: 5e3358402a60177033f76c4950fa4a9f054868724b30c8d0ea0de22cc5698813
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amptest
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12444
Filename: packages/open-plc-utils-amptest_2013-01-29_ramips_24kec.ipk
Size: 13216
MD5Sum: 3c31988b5c953fe8ddce629d793b8a9c
SHA256sum: fa3d92393c6a2c575353a8a98a56a3464390f161aaff5a922b6b4e7442056d9e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amptone
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12178
Filename: packages/open-plc-utils-amptone_2013-01-29_ramips_24kec.ipk
Size: 12932
MD5Sum: 2340f3e1711d83e3958bcba07af35d2d
SHA256sum: 1696ec338c6cf948a9d788eb221ae480cb9c724ebd8b262807d04d073d44de76
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amptool
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19175
Filename: packages/open-plc-utils-amptool_2013-01-29_ramips_24kec.ipk
Size: 19950
MD5Sum: 1b7d5783984816059a6d893372067435
SHA256sum: 987e5c8fd340bb78ba59537aca6695bf6b63207287ff56ece249f79d34584258
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampwait
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10998
Filename: packages/open-plc-utils-ampwait_2013-01-29_ramips_24kec.ipk
Size: 11781
MD5Sum: 69547751a9317ebd2c533a66c1d1f26b
SHA256sum: 5173afdad69d07062f556a9fcaf45389f7db170e04f56a30fcc46fc345a42b11
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chknvm2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6217
Filename: packages/open-plc-utils-chknvm2_2013-01-29_ramips_24kec.ipk
Size: 7013
MD5Sum: b781190a115ff621fef47dfc66e4f6bf
SHA256sum: ba983095ecc588bee3c197479952ed5688ab10285c9acec36d3be866a1e7b391
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chknvm
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6530
Filename: packages/open-plc-utils-chknvm_2013-01-29_ramips_24kec.ipk
Size: 7330
MD5Sum: 98e80c44ed063c7732949611d1e12891
SHA256sum: f0419b16823fbe036b76fc9621d62ed274182106d29edd4bb943fb90f553d1a8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chkpib2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7408
Filename: packages/open-plc-utils-chkpib2_2013-01-29_ramips_24kec.ipk
Size: 8231
MD5Sum: 5f7ff0962d54eea59251ea0c61bb37b0
SHA256sum: 47c8c3673e73e809ef23c621a52ad892d698ad37be19abcbef7463bfede6e2b1
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chkpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7706
Filename: packages/open-plc-utils-chkpib_2013-01-29_ramips_24kec.ipk
Size: 8516
MD5Sum: a1e229879bd7bc9bb70fb609f6b67049
SHA256sum: 45317dfbbdcd060e879051ea4944948e7fe2bc776b0fc9f2a76c21055b15b1ea
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-config2cfg
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3493
Filename: packages/open-plc-utils-config2cfg_2013-01-29_ramips_24kec.ipk
Size: 4276
MD5Sum: c56035da2f01cbdba110bd21f6744ceb
SHA256sum: 56d01fea1079b40b4e4a15741b4a0a6379c23bd47cd9b6f31088c28f43219eaf
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_add
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12487
Filename: packages/open-plc-utils-coqos_add_2013-01-29_ramips_24kec.ipk
Size: 13261
MD5Sum: a6c928b7f1b2d2033bb0af361408bb4a
SHA256sum: fcb472c3d9c9a752b7e13b4423ee6fdb9bc1cd78b8eb65d9214f0d2d23cd387c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_info
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11246
Filename: packages/open-plc-utils-coqos_info_2013-01-29_ramips_24kec.ipk
Size: 12004
MD5Sum: e83157e15a43ba2e2acf63fe5ee9b47c
SHA256sum: 951664460bf65e34a6eb6025841815365e32bed9658ae64c0f58993a2b003439
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_man
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10223
Filename: packages/open-plc-utils-coqos_man_2013-01-29_ramips_24kec.ipk
Size: 10985
MD5Sum: 6b52be7bb09e2111f8f3d1af039f1458
SHA256sum: 2e965db41978e1072a7717d68b7d6a05926d29733a06fc8370efd36b54ebed61
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_mod
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10810
Filename: packages/open-plc-utils-coqos_mod_2013-01-29_ramips_24kec.ipk
Size: 11563
MD5Sum: e44d7a23fd9dbedb39307699f91d50c3
SHA256sum: 287675704d03d5505d0c0bb7b29a802c781f12f25bede0fae578ae992682216a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_rel
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10287
Filename: packages/open-plc-utils-coqos_rel_2013-01-29_ramips_24kec.ipk
Size: 11040
MD5Sum: f05e9b9f9d2e3415c3c62f80701bf487
SHA256sum: 411bfb5170c33328c51f0bc8a4f9f8dbdb76317f384feeac299f3a526332f8b8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-edru
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5526
Filename: packages/open-plc-utils-edru_2013-01-29_ramips_24kec.ipk
Size: 6270
MD5Sum: f77740c77d51c8cce227752787efce5e
SHA256sum: be023ef069292ffb4d0ac4c14989f4b84c7fa6ad3a8eee8d31d5b415866c7943
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-edsu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5799
Filename: packages/open-plc-utils-edsu_2013-01-29_ramips_24kec.ipk
Size: 6533
MD5Sum: 0572c603d76d010d7a1aaf5f83eece2f
SHA256sum: 3a061e29a4f1a11f53adcfdc4eb1c2b79195ce9cdbabcb808883859d0e50de28
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efbu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5833
Filename: packages/open-plc-utils-efbu_2013-01-29_ramips_24kec.ipk
Size: 6567
MD5Sum: afe47f2f80872cf4619bb6227010c1af
SHA256sum: 10441f1be928e70fe511bce95f6873d1b2d60823fa7cab76332ac71ea82cc6c8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efeu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5438
Filename: packages/open-plc-utils-efeu_2013-01-29_ramips_24kec.ipk
Size: 6176
MD5Sum: 4c28abf45d9b1802179c79a8bb281702
SHA256sum: c0e28a71c2bf47103b339469eb176cda4d1d40e13b9d72cfad56aeea4c4997c3
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efru
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5299
Filename: packages/open-plc-utils-efru_2013-01-29_ramips_24kec.ipk
Size: 6036
MD5Sum: ebcf05603f01519aceee7f662636dcf5
SHA256sum: 59bac11b78cd3755ced133616e5b9bd88251ccec2446a73c422e7a4d37bffe42
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efsu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6637
Filename: packages/open-plc-utils-efsu_2013-01-29_ramips_24kec.ipk
Size: 7428
MD5Sum: 388082c33907298aa6a4027f0b486820
SHA256sum: 10b35ac6a324debf6e369eb80f8ebbb4feb6cb51cb58827a755ab0b1a9835278
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-getpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5471
Filename: packages/open-plc-utils-getpib_2013-01-29_ramips_24kec.ipk
Size: 6231
MD5Sum: 8b0ac57cbc0c64fd86950d588737c640
SHA256sum: fc5352077872f2412eb34a2d50ef719666ea13acb1f513ed02c4d0becfbf0adf
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-hpav
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6846
Filename: packages/open-plc-utils-hpav_2013-01-29_ramips_24kec.ipk
Size: 7642
MD5Sum: ca9d5cc57e360be8db5aabbaab2a0b8f
SHA256sum: 28a91039487110caff3576dece00ba0ee11d715e7425cacd9d5793c9cb3736a9
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-hpavkey
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5688
Filename: packages/open-plc-utils-hpavkey_2013-01-29_ramips_24kec.ipk
Size: 6420
MD5Sum: 16ad1d5c492b3194728fdeccecbdc895
SHA256sum: ac82fa82af07bc59f13bc8fae9f68d280a578aef4d2d31b1d92a96ec3fd4c5b0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-hpavkeys
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6128
Filename: packages/open-plc-utils-hpavkeys_2013-01-29_ramips_24kec.ipk
Size: 6868
MD5Sum: 887a5056b83c510b8c32675a54053f94
SHA256sum: 88f3822dd58ace084383010e23cc566f741d08db62980b374a9b2d9a172ebd9c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int64host
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16286
Filename: packages/open-plc-utils-int64host_2013-01-29_ramips_24kec.ipk
Size: 17041
MD5Sum: a5c5db769505ded3f24c4dd1efba271d
SHA256sum: b6ef607d71a5cd3bc2d12dece08dbbbb9ec94f3d150f61d155eaf157a17945a6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6k
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18929
Filename: packages/open-plc-utils-int6k_2013-01-29_ramips_24kec.ipk
Size: 19687
MD5Sum: fc92716a6bb500f14bff45ebd05d3f8e
SHA256sum: 1663448648115cfa29e21659ab0b0cd462dcf6a48262e73fc264fc0bc7daecd6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kbaud
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7099
Filename: packages/open-plc-utils-int6kbaud_2013-01-29_ramips_24kec.ipk
Size: 7905
MD5Sum: 41972b2fd32372f7cfdef8d391592eec
SHA256sum: d3c441c27f65db4e825578dad2b1914fdba044e8c16f483ba359502e4e3857de
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kboot
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14728
Filename: packages/open-plc-utils-int6kboot_2013-01-29_ramips_24kec.ipk
Size: 15470
MD5Sum: 8d52632442e50ff3c9e8d1e93831712b
SHA256sum: b04631f14cb52a987285f57c1e6f8e2323108e5085b6656a2caf725de3324905
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kdetect
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4800
Filename: packages/open-plc-utils-int6kdetect_2013-01-29_ramips_24kec.ipk
Size: 5540
MD5Sum: dcdc7895699f3f29fdc94ce6cd469f35
SHA256sum: d02f6e91c68f2d8bde061bc1c7d77dcde0c56c14179d1f878b7c29ff867b24e7
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6keth
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10498
Filename: packages/open-plc-utils-int6keth_2013-01-29_ramips_24kec.ipk
Size: 11243
MD5Sum: ad785f1ca1022cfc78e3238881715dd0
SHA256sum: d57dccbe295422a6c2942869560d9d7abf1dea9b16e8cd0f5e386c2e38011446
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kf
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15022
Filename: packages/open-plc-utils-int6kf_2013-01-29_ramips_24kec.ipk
Size: 15757
MD5Sum: 1f8bf85719087238d409eb46c826b537
SHA256sum: 839d43961b8f63c2a3fda63b1648ae5a868d93953cfc9b97971191f424f8f37e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6khost
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16115
Filename: packages/open-plc-utils-int6khost_2013-01-29_ramips_24kec.ipk
Size: 16868
MD5Sum: db20dbd5fbd24dfdb173898abd74c12a
SHA256sum: 9d226b93b4a7d3c1effac07f249a57c86a6c20cd16d3ce911bb97fe86f611a63
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kid
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9705
Filename: packages/open-plc-utils-int6kid_2013-01-29_ramips_24kec.ipk
Size: 10447
MD5Sum: ce368ed9f711b4c6bd592e13c51d7959
SHA256sum: 61ed64d5fa2505085dc15ef2715075ab5e2a8cc1874cc77d50499be94c31ce59
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6klist
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10256
Filename: packages/open-plc-utils-int6klist_2013-01-29_ramips_24kec.ipk
Size: 11007
MD5Sum: fc966f84c186be051b41ac26149cdac2
SHA256sum: f4376cf2aa7a04acd61bc6fb3d24eedaad0bac64c5733be7d6a6b7ed747bab5f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6klog
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11754
Filename: packages/open-plc-utils-int6klog_2013-01-29_ramips_24kec.ipk
Size: 12513
MD5Sum: 31726bfa3946d895a05a73531d9d9a45
SHA256sum: 0f4054bc8bcf865e8e31e9406818c33e3984d659cd07083633ca119848a34b6b
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kmdio2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10117
Filename: packages/open-plc-utils-int6kmdio2_2013-01-29_ramips_24kec.ipk
Size: 10855
MD5Sum: ad2baea2070898c7e2c6a2e10b5a540c
SHA256sum: 1d83dc2c595de5f39c4a904bd878b294d201d1a8ec9ae0a132c3d38cb8769044
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kmdio
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9779
Filename: packages/open-plc-utils-int6kmdio_2013-01-29_ramips_24kec.ipk
Size: 10520
MD5Sum: a006c5e2d013b984993ce092ca46d0d1
SHA256sum: 840870577fa3baf3d4ce37b61c4847de7ed93f06e7a7b5a5611e7c003ef27619
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kmod
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13026
Filename: packages/open-plc-utils-int6kmod_2013-01-29_ramips_24kec.ipk
Size: 13789
MD5Sum: ed7c086352e85a53397536c3c17c6595
SHA256sum: 9b8b5e864fee6e61a11214f5e6da891ce31d8593fb2984615cfcd6b569f3bb28
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6krate
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12604
Filename: packages/open-plc-utils-int6krate_2013-01-29_ramips_24kec.ipk
Size: 13380
MD5Sum: a06c4a7120e221a4ef2fb1636ba88f67
SHA256sum: f76ca123a21571616a49323a38e41f034ea712e11a6094a14e484d01779501f9
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6krule
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12759
Filename: packages/open-plc-utils-int6krule_2013-01-29_ramips_24kec.ipk
Size: 13488
MD5Sum: bc62908f0a3c1bd55b72426ed0692ef7
SHA256sum: d404f689c805661cbbaf4dc499620aa4ed3f96dc07d7e9b8bdbb93c49de9e972
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kstat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12992
Filename: packages/open-plc-utils-int6kstat_2013-01-29_ramips_24kec.ipk
Size: 13750
MD5Sum: bc6332dfc7c5729c4328fd7b27150a31
SHA256sum: 652f334f0b04569a55d328aa97cefd874035436bf6c379d83152bf336a5634fb
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6ktest
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11660
Filename: packages/open-plc-utils-int6ktest_2013-01-29_ramips_24kec.ipk
Size: 12416
MD5Sum: 50aaefa19223cc339e9192592bd95fc4
SHA256sum: bc6d7002aaf4dadba93043d9fa58db05d16e23e54e7e8c0a07469833b6f9bd0f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6ktone
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11118
Filename: packages/open-plc-utils-int6ktone_2013-01-29_ramips_24kec.ipk
Size: 11863
MD5Sum: 3c1dc95b07bdba14032fc2dde8396648
SHA256sum: 2a1656f8060d8971c0dc415f7ad00df91c28eedb52d6057b428cfe2624d8f571
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kuart
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9039
Filename: packages/open-plc-utils-int6kuart_2013-01-29_ramips_24kec.ipk
Size: 9809
MD5Sum: 2dd2f460e35e061de0c9ff2bcfc3a548
SHA256sum: 16b51d19cb58b560f85fa15cd9824615c5c7d8d0c1152322b08f3aef29c8f29f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kwait
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11029
Filename: packages/open-plc-utils-int6kwait_2013-01-29_ramips_24kec.ipk
Size: 11804
MD5Sum: 3fd1d4185c2cb4cf2454aa65d38e326b
SHA256sum: 828e50478860196063330d7d0c8d946875eb78e6945e9d6ad576329f0b1d5f24
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mac2pw
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4448
Filename: packages/open-plc-utils-mac2pw_2013-01-29_ramips_24kec.ipk
Size: 5184
MD5Sum: da0d1cb544b52a262b14d86a177e746c
SHA256sum: e5fa3bc5978b147f18ce8228b12057b87c9e6ecb7d17f14fbecbe9fd4099ede4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mac2pwd
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4831
Filename: packages/open-plc-utils-mac2pwd_2013-01-29_ramips_24kec.ipk
Size: 5580
MD5Sum: dcd37b226e86cfe42ce85c96c315ddd4
SHA256sum: 9f042aefed35656c85611bea54aca1cb81e1b2fa36b578a86809f90da416af3d
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdioblock2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4200
Filename: packages/open-plc-utils-mdioblock2_2013-01-29_ramips_24kec.ipk
Size: 4942
MD5Sum: dea46618900b1700db138f1a6670cc21
SHA256sum: 027ada3891e89604075cefb809cf38c69d1eaf67d770448c164095649e6add6a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdioblock
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4073
Filename: packages/open-plc-utils-mdioblock_2013-01-29_ramips_24kec.ipk
Size: 4852
MD5Sum: 3bd02870b1501551cd87c89c0efaf751
SHA256sum: fafa95f0f31e2b16faa92e083799a08eb4db74270d7b5cc8f237876d1bf852ce
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdiodump
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5653
Filename: packages/open-plc-utils-mdiodump_2013-01-29_ramips_24kec.ipk
Size: 6392
MD5Sum: d4107a7016ff76c83b89d099b234f60b
SHA256sum: 0129175faf660cde6199342ff465716cd5d13447108381c314124ff267a4faa9
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdiogen
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2402
Filename: packages/open-plc-utils-mdiogen_2013-01-29_ramips_24kec.ipk
Size: 3184
MD5Sum: 7b428e76e8ff874cf6b836a76931f125
SHA256sum: 63d3f535535ab963ca5ff7b94d2e19c3afc2aa11254834eb03009bd6c05adcaf
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdustats
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10625
Filename: packages/open-plc-utils-mdustats_2013-01-29_ramips_24kec.ipk
Size: 11382
MD5Sum: 130409d772ea7598cc05c0a9bc9e4e92
SHA256sum: a7eb35bc3504d6f4469bdab9c57fb4322e3513c197f2ef42ac6dff001f4ee769
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mme
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8549
Filename: packages/open-plc-utils-mme_2013-01-29_ramips_24kec.ipk
Size: 9351
MD5Sum: 1744267f9bdd07d346c5ba3ab6860331
SHA256sum: 6670e483403d5e995156d8708f57d95d07a25ee0483b7ba37bb7693f051b221c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-modpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8250
Filename: packages/open-plc-utils-modpib_2013-01-29_ramips_24kec.ipk
Size: 8999
MD5Sum: 79498c25fed0eb3fa4990e97ed11ab66
SHA256sum: 53791f0447ddec2cb1f2fbc445bcbd9ec6a7fecf7dfede7ed11f149ac976c37d
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-nics
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3854
Filename: packages/open-plc-utils-nics_2013-01-29_ramips_24kec.ipk
Size: 4628
MD5Sum: a524e96d0f36adebe05eefe82c1150c2
SHA256sum: 3f19584e9ecf6baeecfcf56148546eff163422901679498767317850cc300f7d
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-nvmmerge
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3967
Filename: packages/open-plc-utils-nvmmerge_2013-01-29_ramips_24kec.ipk
Size: 4704
MD5Sum: 12c805b20652d0742130351243816ef5
SHA256sum: 9645933cc8c1d31da3a6fc488874796eaa45dc44795f103cc6ee0146467c5e5e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-nvmsplit
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4243
Filename: packages/open-plc-utils-nvmsplit_2013-01-29_ramips_24kec.ipk
Size: 4968
MD5Sum: 0cc79a50746028dac493435225c10409
SHA256sum: 8c65618bbe4db6180ae6fe3b7ef02b89264945896088b7333a4ecd406e4aa4f5
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pib2xml
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6330
Filename: packages/open-plc-utils-pib2xml_2013-01-29_ramips_24kec.ipk
Size: 7126
MD5Sum: 9ede607a6da331b239f8eb313b179ded
SHA256sum: 7bf7f8898bfce7a712e7b7c997aa511bd207b9561353311f3feda1cecb1c4474
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibcomp
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5878
Filename: packages/open-plc-utils-pibcomp_2013-01-29_ramips_24kec.ipk
Size: 6623
MD5Sum: e9970f8dab750a3a31744f6966ea6076
SHA256sum: d9571bb283503ac418bbcc139472172a7c8e75e844f6f06c2c2aa57cab08b1ea
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibdump
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5581
Filename: packages/open-plc-utils-pibdump_2013-01-29_ramips_24kec.ipk
Size: 6326
MD5Sum: d2d2bb55ce6b9e05c1d5af8f6d259d46
SHA256sum: 6c17c0ab3c10c73619b868b0509d15bd780252d8bfa90b28fa5d5d091fbdfb54
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibruin
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9455
Filename: packages/open-plc-utils-pibruin_2013-01-29_ramips_24kec.ipk
Size: 10235
MD5Sum: 0611723e0fdc8e0276770e09bc526039
SHA256sum: 2edd5ecab59076dae3ca2f5e4afade109b097c2087e3189d4003063cc3ca311f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibrump
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5460
Filename: packages/open-plc-utils-pibrump_2013-01-29_ramips_24kec.ipk
Size: 6223
MD5Sum: e78a1f7ddfc43804db3eedf840cdc0c2
SHA256sum: 6aa70f8f0af7259f7f57e888a7ad561997ecf66deacf6dd53a106cf141ffecfa
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcID
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10612
Filename: packages/open-plc-utils-plcID_2013-01-29_ramips_24kec.ipk
Size: 11386
MD5Sum: 036730b0927ee39694b4f25907429f67
SHA256sum: 0fcd7c776d178163581fe286deab1411280347f436767eadcd41ae10032f73cd
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcboot
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15718
Filename: packages/open-plc-utils-plcboot_2013-01-29_ramips_24kec.ipk
Size: 16476
MD5Sum: 5373407ff9702bdcb7792f0555c234cb
SHA256sum: 2e501f6dbbbdf51772b8d334d8d87a3841a8f3fa77adc53a6a26463c575ff8d0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcdevs
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6354
Filename: packages/open-plc-utils-plcdevs_2013-01-29_ramips_24kec.ipk
Size: 7136
MD5Sum: 7404e0058af6876b5031b6f958c5544d
SHA256sum: ffe7a4ae6791a017bc7c8689c8333c6cf0291fc6f7d44b5b88a5d2ec324d6617
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcfwd
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12406
Filename: packages/open-plc-utils-plcfwd_2013-01-29_ramips_24kec.ipk
Size: 13182
MD5Sum: 88cad8f19ee3536ab16a79ade5279c3b
SHA256sum: 24afbcf31125291373e543540989d069c84dadc0ab22ba9a1786c60def5dbda7
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcget
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11302
Filename: packages/open-plc-utils-plcget_2013-01-29_ramips_24kec.ipk
Size: 12056
MD5Sum: a9d022cb1fc6cf8bde95723b25a5a022
SHA256sum: 9d17ebe92b3c7b92dd98e3a097add813639e011766499619a43393d4a0210982
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plchost
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16809
Filename: packages/open-plc-utils-plchost_2013-01-29_ramips_24kec.ipk
Size: 17613
MD5Sum: 1f7c841ed8ee9d3e9b184cd03af3bc7a
SHA256sum: a248007c4787e4a1dce0e11f47c5edb731601d35c52bbcafcf832b940caa83a4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plchostd
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21079
Filename: packages/open-plc-utils-plchostd_2013-01-29_ramips_24kec.ipk
Size: 21832
MD5Sum: 52b945831ef45c9e88efe7fc46d03026
SHA256sum: 029cf0ac3ee4ce83187955f973857b128a6a2fd555166c6906fb53c2fdc1197c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plclist
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10366
Filename: packages/open-plc-utils-plclist_2013-01-29_ramips_24kec.ipk
Size: 11123
MD5Sum: 7e1526f6a541134802a50c43861d96d4
SHA256sum: 7d8dc5694d7c1fb8aa2a0a3574a0d4b37ca915245a447fa46d8229742a3644e1
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plclog
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11176
Filename: packages/open-plc-utils-plclog_2013-01-29_ramips_24kec.ipk
Size: 11926
MD5Sum: e4d1fca737ce459700c07a73759b960f
SHA256sum: fd779de3829c2228afa4a7134cecc6455b30556f2e4e03a66cdd527c433d73d0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcmdio16
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9777
Filename: packages/open-plc-utils-plcmdio16_2013-01-29_ramips_24kec.ipk
Size: 10531
MD5Sum: f4e886cfc6782fa36ff231845844156d
SHA256sum: efd4d59bba3e8ba2574621fbd0d26058568c1876c021dd71b991f6a93ceef0d6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcmdio32
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10112
Filename: packages/open-plc-utils-plcmdio32_2013-01-29_ramips_24kec.ipk
Size: 10854
MD5Sum: 8d825d66e86dd0b5d3b6d319ad2b0a3a
SHA256sum: ca23e60885da07ceeeb01511986ff64936ddf3f4051f34ec424cc137c81aa516
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcotst
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10440
Filename: packages/open-plc-utils-plcotst_2013-01-29_ramips_24kec.ipk
Size: 11205
MD5Sum: aa4bc763d32fe0bd9a197fb2b8b73a84
SHA256sum: 91fb7cd10ba33426248160fd07ec84b0f8aaedd4f043ed5391a49120d2f9e34f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcrate
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12845
Filename: packages/open-plc-utils-plcrate_2013-01-29_ramips_24kec.ipk
Size: 13631
MD5Sum: 585309fd6b270453ce8156e69b07033c
SHA256sum: 680a27b872b50e7a0bb84703dd61cd534abb60ffe0d75f43045edb33a341100e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcrule
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12754
Filename: packages/open-plc-utils-plcrule_2013-01-29_ramips_24kec.ipk
Size: 13499
MD5Sum: 612429b6a1cd84c250a9cab75f184354
SHA256sum: 92e6acde3de0e44d71a5a60d76f8864245ec6840c49638208fb1128942e77710
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcset
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11715
Filename: packages/open-plc-utils-plcset_2013-01-29_ramips_24kec.ipk
Size: 12489
MD5Sum: 218a93c97db049bcb34f3018d47a9c94
SHA256sum: 301f67b76790c3b464535eb6c9bee375f366c918af05afa181cec1d371433479
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcstat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13267
Filename: packages/open-plc-utils-plcstat_2013-01-29_ramips_24kec.ipk
Size: 14029
MD5Sum: 6c7c87fddd73e80155a03ff2e29c82e9
SHA256sum: 3605650defe15665e5ccc7c5e634ec596ad48c233ed990f08aee13a81ad435e4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plctest
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13040
Filename: packages/open-plc-utils-plctest_2013-01-29_ramips_24kec.ipk
Size: 13755
MD5Sum: c8cdce5def8a3f2f7b3117f8c15420f5
SHA256sum: 3d09f777067169660cb7ebee013b30a40b0b9e7513ff556eca2123551880bd3a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plctone
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12103
Filename: packages/open-plc-utils-plctone_2013-01-29_ramips_24kec.ipk
Size: 12859
MD5Sum: e3f4205864c5f36d3644c9737b022a57
SHA256sum: 1492b96c699875dab4848edf6398cb995e53f3abfa558a46ec54cea1ec46184b
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plctool
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21196
Filename: packages/open-plc-utils-plctool_2013-01-29_ramips_24kec.ipk
Size: 21946
MD5Sum: 3bdc5c47c61eed49b3e8524a6fc300b1
SHA256sum: 98a57c7aa787e7f2e791f63f48837dc0517cb31e907c58d15d562eeca31adbbd
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcwait
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10997
Filename: packages/open-plc-utils-plcwait_2013-01-29_ramips_24kec.ipk
Size: 11777
MD5Sum: 6fd5befe247a53b6b6788408a19d6705
SHA256sum: 5de30d27ccddc2637cff92b2b9f08ca6f9dab61ded0a92ee96e78f86fcdabae8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psgraph
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3994
Filename: packages/open-plc-utils-psgraph_2013-01-29_ramips_24kec.ipk
Size: 4771
MD5Sum: 10c1ee0b742ae752d5ac5738c5a6fbff
SHA256sum: c634ebeacd439307b1a94663f4f0321ebc74109fed7569d12ff3619c36b004c6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psin
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4727
Filename: packages/open-plc-utils-psin_2013-01-29_ramips_24kec.ipk
Size: 5474
MD5Sum: 0313e16931ffd6ce3381288bead223eb
SHA256sum: 07bf7dbec26d0ca765ee24a54d60a2f1d5bffd2bf190e86d710221541e98ae06
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pskey
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5420
Filename: packages/open-plc-utils-pskey_2013-01-29_ramips_24kec.ipk
Size: 6157
MD5Sum: 4f8f9e3a06c371cedc7b584a60099768
SHA256sum: 65906d1bf93c6600edf2be9127af986c30a9a1dcfbeb531cc81021c7973e3cd5
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psnotch
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5650
Filename: packages/open-plc-utils-psnotch_2013-01-29_ramips_24kec.ipk
Size: 6409
MD5Sum: 6c5bbc801f9253eff65e2351d8370aab
SHA256sum: 277310047bd87e442ec0404e13ce9970664cc346f6e794c4ad86c9835156a21a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psout
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3834
Filename: packages/open-plc-utils-psout_2013-01-29_ramips_24kec.ipk
Size: 4615
MD5Sum: 0126c3dda464c8b7736a5057a1b7ae28
SHA256sum: c7a727f315ffc1d39bd11701135e518d6b6ba4c8ab93eab72377f8fb7e4c2571
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ptsctl
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5033
Filename: packages/open-plc-utils-ptsctl_2013-01-29_ramips_24kec.ipk
Size: 5762
MD5Sum: 0c8941eacc066ddfc9236e9b40ab442e
SHA256sum: 8b1d8a9a2edae566be60e5c20a15dc97a3367ea855aaa1ab6cb27a405b7fe59b
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-rkey
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6057
Filename: packages/open-plc-utils-rkey_2013-01-29_ramips_24kec.ipk
Size: 6790
MD5Sum: 52ca301c9d33498984acf26468d9982c
SHA256sum: 9d162c632568d21a8a79bb726eb88b0fdd3090d8c00a9b61653f978c4d829ffa
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-sada
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9984
Filename: packages/open-plc-utils-sada_2013-01-29_ramips_24kec.ipk
Size: 10715
MD5Sum: 37f109b5ff78eefd93e1c4681e251a76
SHA256sum: 11b7a5da50beb3691cd3dcb765644ce71439966e2f8112ff825a80ac2a0134e0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-sdram
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1634
Filename: packages/open-plc-utils-sdram_2013-01-29_ramips_24kec.ipk
Size: 2406
MD5Sum: d49c793ebe1b59c5fbac99973aaff01e
SHA256sum: 7b41d071e90cd6bca34e6076d663ae5858e31f05c2cf753548b92940241c6d6a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-setpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6992
Filename: packages/open-plc-utils-setpib_2013-01-29_ramips_24kec.ipk
Size: 7796
MD5Sum: 0cecf0fa251faaed75f166ca796c930e
SHA256sum: f397f065809e190438b32cede08650d30b517331c0c77d76abd17a4552b49f8e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttycat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4039
Filename: packages/open-plc-utils-ttycat_2013-01-29_ramips_24kec.ipk
Size: 4823
MD5Sum: 933f0d3706f243ecc3ec8c12812e2d32
SHA256sum: e474201222192294ad0fd17d08c263cf2ff05cac95a9b2bd1e413100de1b171a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttyrecv
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5007
Filename: packages/open-plc-utils-ttyrecv_2013-01-29_ramips_24kec.ipk
Size: 5743
MD5Sum: 59285791cc96a702f53f77219e6fa7e6
SHA256sum: 33aa3a616f4b0b71d65945015230f29d38cad0fcc9d0429fc8e65fd5a2a4f054
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttysend
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4511
Filename: packages/open-plc-utils-ttysend_2013-01-29_ramips_24kec.ipk
Size: 5243
MD5Sum: e94960fa3fdffca48b6c6a3c0f245150
SHA256sum: 72c5424419c22b88268655240579cc7b92329616d4a6faab7c725cef2d692798
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttysig
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4899
Filename: packages/open-plc-utils-ttysig_2013-01-29_ramips_24kec.ipk
Size: 5644
MD5Sum: df1271fb48c6ca924824a2df4fd0f2ce
SHA256sum: 7047d40a6d61326a727acc4c19ae8622deafed09dc1905abb7194a5c1aad0332
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-weeder
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4664
Filename: packages/open-plc-utils-weeder_2013-01-29_ramips_24kec.ipk
Size: 5401
MD5Sum: a965299659fa89cc1a8979bf305c8cda
SHA256sum: 5198f4b339d599b9110e4837eb566ff3645246fe930582575aa25834fe4de59e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-xml2pib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10469
Filename: packages/open-plc-utils-xml2pib_2013-01-29_ramips_24kec.ipk
Size: 11227
MD5Sum: a4d7a734f3c2c30d5f20dfca488b1681
SHA256sum: 96d41827d11e46421210bee2e361de00364fdae568f82cd8cc9c67cad01cb1b3
Description: Utility from the Open PLC utilities package.
Package: openconnect
Version: 7.05-1
Depends: libc, libxml2, kmod-tun, resolveip, vpnc-scripts, libgnutls
Source: feeds/packages/net/openconnect
Section: net
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76698
Filename: packages/openconnect_7.05-1_ramips_24kec.ipk
Size: 77323
MD5Sum: 0f9bd877c0b7d348acfb23f9f0d1115b
SHA256sum: 81358eb420e82d075b955440bf283410af8bead3e6c08838b79cc6339d90e11c
Description: A VPN client compatible with Cisco's AnyConnect SSL VPN and ocserv.
OpenConnect is a client that follows the Cisco's AnyConnect SSL VPN protocol,
which is supported by IOS 12.4(9)T or later on Cisco SR500, 870, 880, 1800,
2800, 3800, 7200 Series and Cisco 7301 Routers, as well as the OpenConnect
VPN server.
Package: opencv
Version: 2.4.11-3
Depends: libc, libpthread, librt, libstdcpp, zlib, libjpeg
Source: feeds/packages/libs/opencv
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: WRTnode Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3448503
Filename: packages/opencv_2.4.11-3_ramips_24kec.ipk
Size: 3438272
MD5Sum: 693f2785c3877e8902313a8ef206993a
SHA256sum: f28dfca35243dc15c8888200cd1ebb55301acc4e653e96a7d7a56371dc9ddb9b
Description: opencv-2.4.11
Package: openldap-server
Version: 2.4.39-2
Depends: libc, libopenldap, libuuid
Source: feeds/packages/libs/openldap
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 489412
Filename: packages/openldap-server_2.4.39-2_ramips_24kec.ipk
Size: 482776
MD5Sum: 771f130bc1295df3d165a1c200c4c077
SHA256sum: bc1b4409b1438cedf4a1c2d44bfbdaacf6bd0bc2cd79fb4c1ce07be116d08c88
Description: OpenLDAP Software is an open source implementation of the
Lightweight Directory Access Protocol (LDAP).
This package contains server programs required to provide LDAP services.
Package: openldap-utils
Version: 2.4.39-2
Depends: libc, libopenldap
Source: feeds/packages/libs/openldap
Section: utils
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 181183
Filename: packages/openldap-utils_2.4.39-2_ramips_24kec.ipk
Size: 180415
MD5Sum: 6381d4a10db7f040e374fd6df11ecba0
SHA256sum: 7448491fc3d93bd0f6f776b0d5d223203732f93262ee9059ccfe9d748dff9114
Description: OpenLDAP Software is an open source implementation of the
Lightweight Directory Access Protocol (LDAP).
This package contains client programs required to access LDAP servers.
Package: opennhrp
Version: 0.14.1-1
Depends: libc, libcares, ipsec-tools, ip, kmod-gre
Source: feeds/packages/net/opennhrp
License: MIT License
Section: net
Maintainer: Artem Makhutov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43344
Filename: packages/opennhrp_0.14.1-1_ramips_24kec.ipk
Size: 44267
MD5Sum: a8adf4ac90d5d69b620ae361e7a98862
SHA256sum: d485486d2c559ea3601a56d46535c49247c8f656510e752abe6320ca718e3fb4
Description: OpenNHRP implements NBMA Next Hop Resolution Protocol (as defined in RFC 2332).
It makes it possible to create dynamic multipoint VPN Linux router using NHRP,
GRE and IPsec. It aims to be Cisco DMVPN compatible.
Package: openobex-apps
Version: 1.7.1-1
Depends: libc, libopenobex, bluez-libs
Source: feeds/packages/utils/openobex
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23684
Filename: packages/openobex-apps_1.7.1-1_ramips_24kec.ipk
Size: 24367
MD5Sum: 14fd0849870cea8f7c290266a31d4076
SHA256sum: e6d939ff2520c3e6530a0ee4459d0e5c392c7192cf3ec089d2635484d362fc1e
Description: Open Source impl of the OBject EXchange protocol (apps)
Package: openobex
Version: 1.7.1-1
Depends: libc, openobex-apps, libopenobex
Source: feeds/packages/utils/openobex
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/openobex_1.7.1-1_ramips_24kec.ipk
Size: 874
MD5Sum: 43592ce8534cc233e866576ab700ac9b
SHA256sum: 9d32663413ef93934a563d129bc854782baf09b62d534e42a645ec087296a00a
Description: Open Source impl of the OBject EXchange protocol (meta)
Package: openocd
Version: v0.8.0-258-gd537cfa-2
Depends: libc, libusb-1.0, libusb-compat, libftdi1, hidapi
Source: feeds/packages/utils/openocd
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Paul Fertser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 893936
Filename: packages/openocd_v0.8.0-258-gd537cfa-2_ramips_24kec.ipk
Size: 893174
MD5Sum: 71741573301036a3396c9dd633627371
SHA256sum: 5ed4eb4af53441e8aea119581d49287eb91e0c33acd461412664bcd394785bc4
Description: OpenOCD provides on-chip programming and debugging support with a
layered architecture of JTAG interface and TAP support including:
- (X)SVF playback to faciliate automated boundary scan and FPGA/CPLD
programming;
- debug target support (e.g. ARM, MIPS): single-stepping,
breakpoints/watchpoints, gprof profiling, etc;
- flash chip drivers (e.g. CFI, NAND, internal flash);
- embedded TCL interpreter for easy scripting.
Several network interfaces are available for interacting with OpenOCD:
telnet, TCL, and GDB. The GDB server enables OpenOCD to function as a
"remote target" for source-level debugging of embedded systems using
the GNU GDB program (and the others who talk GDB protocol, e.g. IDA
Pro).
Package: opensc-utils-cardos-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10044
Filename: packages/opensc-utils-cardos-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 10814
MD5Sum: d6b6375983837b200127c89a882bd80d
SHA256sum: 91e4ce1f534c669c6c11ef265f61bce0b38e0d0a14486a9cabb725a4d853acd1
Description: cardos-tool utility from opensc
Package: opensc-utils-cryptoflex-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10540
Filename: packages/opensc-utils-cryptoflex-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 11309
MD5Sum: 7dc730dc7e4f936e763d2015bf1876ce
SHA256sum: f3eadfb6b54edaf5391a01721199d6ad6addeed7ffdeaa8091d475ec0fe24b33
Description: cryptoflex-tool utility from opensc
Package: opensc-utils-dnie-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6043
Filename: packages/opensc-utils-dnie-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 6808
MD5Sum: a682e2e960e0e4590dc5affdd22c2da7
SHA256sum: 66e188daa87ec4d542aaaffdcb13d6f2d2fa274ed4e93ce7e133f1bc605ceed0
Description: dnie-tool utility from opensc
Package: opensc-utils-eidenv
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8236
Filename: packages/opensc-utils-eidenv_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9049
MD5Sum: 63eb5c01eda7a81b152dce32f8b8d1b2
SHA256sum: 414444461644fa83454c85fa1a2070e58470d26aae54c6341229daa4446ae395
Description: eidenv utility from opensc
Package: opensc-utils-iasecc-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6465
Filename: packages/opensc-utils-iasecc-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 7286
MD5Sum: c8f3c4c9898052b69ac30599139cad31
SHA256sum: 666b9664a587b6cd8d638b790e6336364bbf5d28451931546fc74e6151cd5fc1
Description: iasecc-tool utility from opensc
Package: opensc-utils-netkey-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7942
Filename: packages/opensc-utils-netkey-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 8766
MD5Sum: 063492d4316b6f3e3565412ced6d2bc6
SHA256sum: a489225105c0d7df2d4d84570d83bc2a46731944429ba0847f3b0452338c32b5
Description: netkey-tool utility from opensc
Package: opensc-utils-openpgp-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8858
Filename: packages/opensc-utils-openpgp-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9640
MD5Sum: efd413df90061f1af2e90f11f956806e
SHA256sum: 6fd14dbc642a9d068ab0ae3d7ccec8ecc2dc7781589e99e04575cba4bda45b39
Description: openpgp-tool utility from opensc
Package: opensc-utils-opensc-explorer
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils, libncurses, libreadline
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15954
Filename: packages/opensc-utils-opensc-explorer_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 16585
MD5Sum: 4af83e0c3c45b4caeaa3f991ed898d9f
SHA256sum: 5cd23eb20ecc2988b0cd4fdc108f2928c9e5bdeaff41371a6756996ea1b9fd6e
Description: opensc-explorer utility from opensc
Package: opensc-utils-opensc-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9704
Filename: packages/opensc-utils-opensc-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 10478
MD5Sum: c809d61821cf9e6dd5d0baa83923d964
SHA256sum: 162cc4aa0241a753847c522add94b263e158955aed474f83c6550f743cf68b86
Description: opensc-tool utility from opensc
Package: opensc-utils-piv-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8961
Filename: packages/opensc-utils-piv-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9740
MD5Sum: 4f1a9135b9cd6de0c71ae5dcc3db08a0
SHA256sum: 19f14333b0ad05bd7a68a86f8be9a6188783f7c4be21734cc54d84b87c5c586d
Description: piv-tool utility from opensc
Package: opensc-utils-pkcs11-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33779
Filename: packages/opensc-utils-pkcs11-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 34583
MD5Sum: b9135df3a03b99fc13c33e3f2edeb32a
SHA256sum: 76de38d9a4973af606812a0b7108c0197efba446babc2ddb26fb22759b0d61ff
Description: pkcs11-tool utility from opensc
Package: opensc-utils-pkcs15-crypt
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7597
Filename: packages/opensc-utils-pkcs15-crypt_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 8416
MD5Sum: 30a67ac36ea2387ea972136b0356f937
SHA256sum: 37d73c8661d60cc71f5de326514f9d724b4d21fc7bcecf49126011a84e3de3a1
Description: pkcs15-crypt utility from opensc
Package: opensc-utils-pkcs15-init
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20479
Filename: packages/opensc-utils-pkcs15-init_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 20983
MD5Sum: 4a04c4fefcc7f54033a3a38b6216bd7a
SHA256sum: 1c27930db30ae61c84fb132bf761d5930d322f4c844b71592d2ef63f72c57de2
Description: pkcs15-init utility from opensc
Package: opensc-utils-pkcs15-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16357
Filename: packages/opensc-utils-pkcs15-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 17035
MD5Sum: 906e8e48c2c87f68868aac1efbfaaf32
SHA256sum: 87790f997c8a10e87c3b609d7a5a114c56103eef13a83e7f607fcbb1a34ee511
Description: pkcs15-tool utility from opensc
Package: opensc-utils-sc-hsm-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13364
Filename: packages/opensc-utils-sc-hsm-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 14104
MD5Sum: d0e4a683c41d107205565332051cdc17
SHA256sum: 248be887bd722de36e932339db8656f7a0223937b66f7c5c5c357f2ca93bf50b
Description: sc-hsm-tool utility from opensc
Package: opensc-utils-westcos-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8837
Filename: packages/opensc-utils-westcos-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9594
MD5Sum: b27bbe0432868070c6097dac57fc0172
SHA256sum: 0146c590f41a9cbf76f88f5ed8ba3e39f8814ea44e16b8fa68d7da3b850f9098
Description: westcos-tool utility from opensc
Package: opensc-utils
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/opensc-utils_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 867
MD5Sum: d472d9914c4c77d8e20140ebb32ebb8b
SHA256sum: 935bc994e0f1edcc4293e76cd7c26ddac25a4ec3a1e7d44fb8cc6b17bbc9f2e7
Description: OpenSC utilities
Package: openssh-client-utils
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, openssh-client, openssh-keygen
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 677208
Filename: packages/openssh-client-utils_6.8p1-1_ramips_24kec.ipk
Size: 674811
MD5Sum: 60bd7449660b7b62772d2fac24de3d62
SHA256sum: 6887ff3b7b34773f99802d72e835f4821f811d8c5cd45d2ed64faa52e9b93ed5
Description: OpenSSH client utilities.
Package: openssh-client
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 330117
Filename: packages/openssh-client_6.8p1-1_ramips_24kec.ipk
Size: 330337
MD5Sum: 908709d4563dd79d946d88bcd04df02f
SHA256sum: 40dcbd0f928e872debd577fd1c9f59e312811d51481b3d7f6dc4b15c7b8cbe87
Description: OpenSSH client.
Package: openssh-keygen
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 178042
Filename: packages/openssh-keygen_6.8p1-1_ramips_24kec.ipk
Size: 177842
MD5Sum: bdd27e7cb79b38f0fc01d46b92511ee7
SHA256sum: c4b3129a01a5f7fe4db06f831efbf277c00d7cd505f3b542e8f3a8c2823dfa23
Description: OpenSSH keygen.
Package: openssh-moduli
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, openssh-keygen
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8434
Filename: packages/openssh-moduli_6.8p1-1_ramips_24kec.ipk
Size: 8520
MD5Sum: e48338dcd8075d1c2b944baf15bf5563
SHA256sum: 649415c3ad9223fb4d0717617ba5bc4999047da0a2f3c4872003056bd88c9396
Description: OpenSSH server moduli file.
Package: openssh-server-pam
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, libpthread, openssh-keygen, libpam
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Require-User: sshd=22:sshd=22
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 329735
Filename: packages/openssh-server-pam_6.8p1-1_ramips_24kec.ipk
Size: 329792
MD5Sum: 08d90c1ffac642d33127e029fdc1f1fd
SHA256sum: 67871691b42e4cf6af0677726cd5865227b67ea8cd37c8f716a8567159a8b0f1
Description: OpenSSH server (with PAM support).
Package: openssh-server
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, openssh-keygen
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Require-User: sshd=22:sshd=22
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 319460
Filename: packages/openssh-server_6.8p1-1_ramips_24kec.ipk
Size: 319487
MD5Sum: 63cf9e71418b32d3f34fb2a669d9e955
SHA256sum: 620ac619dc3346df550a87b32ee0f6c79a7b7493e8cd42d150464073d7d14ab4
Description: OpenSSH server.
Package: openssh-sftp-avahi-service
Version: 6.8p1-1
Depends: libc, openssh-sftp-server, avahi-daemon
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 371
Filename: packages/openssh-sftp-avahi-service_6.8p1-1_ramips_24kec.ipk
Size: 1217
MD5Sum: 91dcced6388d21cc6feda68548d674ce
SHA256sum: ad2425ceee5f09ee8e1b8588715e0f9c61d3c5ea8f820d2b76ee513ed4079a7a
Description: This package contains the service definition for announcing
SFTP support via mDNS/DNS-SD.
Package: openssh-sftp-client
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49761
Filename: packages/openssh-sftp-client_6.8p1-1_ramips_24kec.ipk
Size: 50589
MD5Sum: 5b9933a0822920843523551ad1127f61
SHA256sum: a0e083565e7e66c962affc592c872e0a0a037f0a84ca3e98c1dbc50141a254c0
Description: OpenSSH SFTP client.
Package: openssh-sftp-server
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33396
Filename: packages/openssh-sftp-server_6.8p1-1_ramips_24kec.ipk
Size: 34207
MD5Sum: c599a760affe46125cac7ab3f574430c
SHA256sum: 2128c859d7d8926c92b3a170be15d38d89ef796d4fc37628375facc5d1558461
Description: OpenSSH SFTP server.
Package: opentracker6
Version: 20141007-1
Depends: libc, zlib, libpthread
Source: feeds/packages/net/opentracker
License: Beerware
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45896
Filename: packages/opentracker6_20141007-1_ramips_24kec.ipk
Size: 46516
MD5Sum: 7a5ee247025d8becffb4bf4493b1cdcd
SHA256sum: 3899764740b46c97494e30abc67bf92d5c49e221064a29514043ae3de039c1f4
Description: opentracker - An open and free bittorrent tracker
opentracker is an open and free bittorrent tracker project.
It aims for minimal resource usage and is intended to run at your wlan router.
Currently it is deployed as an open and free tracker instance.
Read our free and open tracker blog and announce your torrents there
(but do not hesitate to setup your own free trackers!).
This package contains the IPv6-build of opentracker.
Package: opentracker
Version: 20141007-1
Depends: libc, zlib, libpthread
Source: feeds/packages/net/opentracker
License: Beerware
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46925
Filename: packages/opentracker_20141007-1_ramips_24kec.ipk
Size: 47549
MD5Sum: e5b254b33c2fec82b3c74a09dd356544
SHA256sum: 06e5ab993133e7a6e6dbfdccd3bbc940aa483d3120603278017df1bc5c2b210f
Description: opentracker - An open and free bittorrent tracker
opentracker is an open and free bittorrent tracker project.
It aims for minimal resource usage and is intended to run at your wlan router.
Currently it is deployed as an open and free tracker instance.
Read our free and open tracker blog and announce your torrents there
(but do not hesitate to setup your own free trackers!).
This package contains the IPv4-build of opentracker.
Package: oping
Version: 1.6.2-1
Depends: libc, liboping
Source: feeds/packages/libs/liboping
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6919
Filename: packages/oping_1.6.2-1_ramips_24kec.ipk
Size: 7710
MD5Sum: d4e5a2d8278dc2d5493b7d4eb6e2a7e2
SHA256sum: c7222f37d9a4cb90303da418ad25b37636e33459bad3080c5e40d90a54bd6d2c
Description: Send ICMP echo request to network hosts
Package: opus-tools
Version: 0.1.9-1
Depends: libc, libogg, libopus
Source: feeds/packages/utils/opus-tools
License: BSD-2-Clause
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 70395
Filename: packages/opus-tools_0.1.9-1_ramips_24kec.ipk
Size: 70807
MD5Sum: 1515b7b1c475698587483928d2c2adf1
SHA256sum: ee940dad1b571abc1666d30dae730738f9aa5003a96c0aef6dc238dc90dde1df
Description: This package provides command-line utilities to encode, inspect, and decode
.opus files.
Package: owfs
Version: 2.9p5-1
Depends: libc, libow, libfuse, fuse-utils
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5002
Filename: packages/owfs_2.9p5-1_ramips_24kec.ipk
Size: 6142
MD5Sum: 62e087358f8c548d18c0403fa6cab74c
SHA256sum: ed0b2a2d6dcf442f14f93970de96ac4f5a268d0df8ed6f5e0ae454e286b4b3a2
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS fuse filesystem.
Package: owftpd
Version: 2.9p5-1
Depends: libc, libow, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22268
Filename: packages/owftpd_2.9p5-1_ramips_24kec.ipk
Size: 23421
MD5Sum: 0301e2db2335eaed0f6d3627452bbbd0
SHA256sum: d326960858ba958ef880816e3740410b17bf5ffd1d7f2187e5858b2bf99e3ad2
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS ftp server.
Package: owhttpd
Version: 2.9p5-1
Depends: libc, libow, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12444
Filename: packages/owhttpd_2.9p5-1_ramips_24kec.ipk
Size: 13581
MD5Sum: 2e2075ce25478686ddf9acd05deb98c3
SHA256sum: 9ee26199f542bb5f728b3aeae2e20e6747520a8f6141abac238d9b0e7ae1a9ad
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS http server.
Package: owserver
Version: 2.9p5-1
Depends: libc, libow, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10450
Filename: packages/owserver_2.9p5-1_ramips_24kec.ipk
Size: 11610
MD5Sum: 0c0dd4d30ba6d85eb7eb486536660fd5
SHA256sum: f1de1756eeefa991bfb5b6009b7fbf9564adcfd735d1b9bf45f34940a9388212
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS network server.
Package: owshell
Version: 2.9p5-1
Depends: libc, libow, librpc
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18161
Filename: packages/owshell_2.9p5-1_ramips_24kec.ipk
Size: 18936
MD5Sum: 37f9c66975dd136140f73a2ed802b3b1
SHA256sum: 311cf91ded7f12892be1f6a984be7bdc748342d49b7c7ac61c3753a31bb4cb19
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS shell utilities.
Package: p11-kit
Version: 0.20.7-1
Depends: libc, libtasn1, libpthread
Source: feeds/packages/libs/p11-kit
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60902
Filename: packages/p11-kit_0.20.7-1_ramips_24kec.ipk
Size: 61132
MD5Sum: 4673655755d3be408599cc9ba2c2e021
SHA256sum: 9476aead368d13a5ed840c301e48f409fd4b46edfd51114992a5eb081dec8acb
Description: Provides a way to load and enumerate PKCS11 modules. Provides a
standard configuration setup for installing PKCS11 modules in such a
way that they are discoverable.
Package: p910nd
Version: 0.97-4
Depends: libc
Source: feeds/packages/net/p910nd
License: GPLv2
LicenseFiles: COPYING
Section: net
Maintainer: Philipp Kerling <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5758
Filename: packages/p910nd_0.97-4_ramips_24kec.ipk
Size: 6721
MD5Sum: e92fb4d7eb41dca876fa05aae576f354
SHA256sum: 64620862c6188627e1119b54a61dba8cbc5695f46fbe981595a9cf670b17a629
Description: p910nd is a small daemon that copies any data received on
the port it is listening on to the corresponding printer
port. It is primarily intended for diskless Linux hosts
running as printer drivers but there is no reason why it
could not be used on diskful hosts. Port 9100 is copied
to /dev/lp0, 9101 to /dev/lp1 and 9102 to /dev/lp2. The
default is port 9100 to /dev/lp0.
Package: patch
Version: 2.7.5-1
Depends: libc
Source: feeds/packages/devel/patch
License: GPL-3.0+
LicenseFiles: COPYING
Section: devel
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76948
Filename: packages/patch_2.7.5-1_ramips_24kec.ipk
Size: 77744
MD5Sum: 21546fcac39b18a185aa5196d35c9582
SHA256sum: 097d95347d9764d5e4cedf0c8d13e0f8f48baf0a0ae2c7c3069c6d265b71939b
Description: The Patch package contains a program for modifying or creating files
by applying a "patch" file typically created by the diff program.
Package: pciutils
Version: 3.3.0-3
Depends: libc, libkmod, zlib
Source: feeds/packages/utils/pciutils
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 285543
Filename: packages/pciutils_3.3.0-3_ramips_24kec.ipk
Size: 286565
MD5Sum: a59e7b92fb9a75de78f8e6e53efc7a21
SHA256sum: 0d9d73f03f13cd5c7b3023e8aff8d5a45f06ba38c6cacd703101a87b3f1d59e1
Description: contains collection of programs for inspecting and manipulating configuration
of PCI devices
Package: pcscd
Version: 1.8.13-1
Depends: libc, libpcsclite
Source: feeds/packages/utils/pcsc-lite
License: BSD-3-Clause
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46792
Filename: packages/pcscd_1.8.13-1_ramips_24kec.ipk
Size: 47672
MD5Sum: 438d624042cddf3e7c7cff90df5ac8d1
SHA256sum: 5d19f02278b981977aff90c86274f573f4799debf1f7a8210d55d9d72ea0b09d
Description: The purpose of PC/SC Lite is to provide a Windows(R) SCard
interface in a very small form factor for communicating to
smart cards and smart cards readers.
.
This package contains the PC/SC daemon.
Package: pen
Version: 0.27.2-1
Depends: libc, libopenssl
Source: feeds/packages/net/pen
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41116
Filename: packages/pen_0.27.2-1_ramips_24kec.ipk
Size: 41763
MD5Sum: c6b6c4ebbe6b08db448f9816767950cd
SHA256sum: 1e274e2ec330adda74f17c4b52a0a6060aac4b4654d0ad60577c7ae3368a95f0
Description: This is pen, a load balancer for "simple" TCP based protocols
such as HTTP or SMTP. It allows several servers to appear as
one to the outside and automatically detects servers that are
down and distributes clients among the available servers.
This gives high availability and scalable performance.
Package: perl-compress-bzip2
Version: 2.22-1
Depends: libc, perl, libbz2
Source: feeds/packages/lang/perl-compress-bzip2
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24561
Filename: packages/perl-compress-bzip2_2.22-1_ramips_24kec.ipk
Size: 25278
MD5Sum: 510602ef6365c001fd0acd3ba962b9ac
SHA256sum: fba50345495a246af690de3ac5bcd5fd00736555dc20fad0939963ef6fa8c018
Description: Perl interface to bzip2 compression library
Package: perl-dbi
Version: 1.633-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl-dbi
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 185019
Filename: packages/perl-dbi_1.633-1_ramips_24kec.ipk
Size: 185742
MD5Sum: 421930a9403b9109c117f80a14f02cc1
SHA256sum: 795b6f28aae6761d4fc06673831b951912feff685455638da1a32e6708515fa2
Description: Database independent interface for Perl
Package: perl-html-parser
Version: 3.71-1
Depends: libc, perl, perl-html-tagset, perl-uri
Source: feeds/packages/lang/perl-html-parser
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28769
Filename: packages/perl-html-parser_3.71-1_ramips_24kec.ipk
Size: 29587
MD5Sum: c388f1ff66d007fb1eb967290a22d64a
SHA256sum: 2a58e7440b94b7eb3bbbb98c09364692ff78c6eaf82742247ae9abf71ae28b09
Description: A collection of modules that parse HTML text documents
Package: perl-html-tagset
Version: 3.20-1
Depends: libc, perl
Source: feeds/packages/lang/perl-html-tagset
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1853
Filename: packages/perl-html-tagset_3.20-1_ramips_24kec.ipk
Size: 2617
MD5Sum: 54761250b6c8e452eec4bcc37140c507
SHA256sum: f98fed3835d5974b9124a3d2fa064113c3cdfd2dcc91e9ca554b511de4ac5b58
Description: Data tables pertaining to HTML
Package: perl-html-tree
Version: 3.23-2
Depends: libc, perl, perl-html-parser, perl-html-tagset
Source: feeds/packages/lang/perl-html-tree
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31682
Filename: packages/perl-html-tree_3.23-2_ramips_24kec.ipk
Size: 32438
MD5Sum: 8e3b8e6ffb0f365fab13ff31999a5be3
SHA256sum: fa53e55ca12b7959e94a7e4011303aedfee7a9e5c3182b2c36902bca66422189
Description: represent and create HTML syntax trees
Package: perl-lockfile-simple
Version: 0.208-1
Depends: libc, perl
Source: feeds/packages/lang/perl-lockfile-simple
License: GPL-2.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4606
Filename: packages/perl-lockfile-simple_0.208-1_ramips_24kec.ipk
Size: 5338
MD5Sum: 4ccb90993cf814bc7f18725daf16784f
SHA256sum: 114825153742baccfb396f4e57d09b4658a807a951e3e7c82ea4fd2887caae4f
Description: Simple advisory file locking
Package: perl-net-telnet
Version: 3.04-1
Depends: libc, perl
Source: feeds/packages/lang/perl-net-telnet
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19678
Filename: packages/perl-net-telnet_3.04-1_ramips_24kec.ipk
Size: 20401
MD5Sum: 4a0b3073f276b8a176e72ad068c78f9d
SHA256sum: 3c3cac3757d4fea0e2582c558b7cdfce2c738547a10dca9e3144e279817503e9
Description: Telnet client
Package: perl-test-harness
Version: 3.35-1
Depends: libc, perl
Source: feeds/packages/lang/perl-test-harness
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43617
Filename: packages/perl-test-harness_3.35-1_ramips_24kec.ipk
Size: 44451
MD5Sum: d54b649b8955367c1291a7257b7c51d1
SHA256sum: d0ae03dede71e9f91d398e05b3a3e02b01a12d3ae5646b8b4aa8f2d1fb31595a
Description: Perl Test Harness
Package: perl-uri
Version: 1.67-1
Depends: libc, perl
Source: feeds/packages/lang/perl-uri
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22876
Filename: packages/perl-uri_1.67-1_ramips_24kec.ipk
Size: 23617
MD5Sum: 13aad38c4527b83136d4fac22fe4e16c
SHA256sum: 1a5d7d2c5a4fe14dde0e7510cf0c9d5d1a664f7ee0246632811a9f752b8dabb1
Description: Manipulates and accesses URI strings
Package: perl-www-curl
Version: 4.17-1
Depends: libc, perl, libcurl
Source: feeds/packages/lang/perl-www-curl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: LICENSE
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27646
Filename: packages/perl-www-curl_4.17-1_ramips_24kec.ipk
Size: 28446
MD5Sum: 2b1e5190f11c18d97db900797d7317bf
SHA256sum: 698bbee1e4c9a1e06f852521ece24f465439d01104895d11eb3e61d3057ac33c
Description: Perl bindings to libcurl
Package: perl-www-mechanize
Version: 1.74-1
Depends: libc, perl, perl-www
Source: feeds/packages/lang/perl-www-mechanize
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9931
Filename: packages/perl-www-mechanize_1.74-1_ramips_24kec.ipk
Size: 10684
MD5Sum: d53c46fc35f021c5f553a99dbd24f9da
SHA256sum: 56c3aa8865a608c2cdbd41449313a0f4bf632655802ef9b560177927b0a8ecc1
Description: Perl WWW Mechanize
Package: perl-www
Version: 5.837-2
Depends: libc, perl, perl-html-parser, perl-html-tagset, perl-uri
Source: feeds/packages/lang/perl-www
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90594
Filename: packages/perl-www_5.837-2_ramips_24kec.ipk
Size: 91528
MD5Sum: 6a48842d36fa9781e17bc0bdece3386d
SHA256sum: ed09964cee9ed360aebe3ac1b106cc96fa0acb881c452f1be48878d4f2d604a2
Description: WWW client/server library for Perl (aka LWP)
Package: perl
Version: 5.20.2-1
Depends: libc, libpthread
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 788428
Filename: packages/perl_5.20.2-1_ramips_24kec.ipk
Size: 786757
MD5Sum: becf3d777cd0976c333f19210eb008fc
SHA256sum: 8041c91f341dc27d46a79eac6b576a142ccd86fe35ad9ac473513e8da598b856
Description: Perl is a stable, cross platform programming language.
It is used for mission critical projects in the public and private sectors
and is widely used to program web applications of all needs.
Package: perlbase-anydbm-file
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 464
Filename: packages/perlbase-anydbm-file_5.20.2-1_ramips_24kec.ipk
Size: 1246
MD5Sum: 6acae92aee4fa2dba7e32f5f62ea355b
SHA256sum: 8b93c546f1ca99dfbf2de57fcb1a7dd087c8bdebb8eacc4fc1d992db3bf3f513
Description: AnyDBM_File perl module
Package: perlbase-app
Version: 5.20.2-1
Depends: libc, perl, perlbase-autouse, perlbase-base, perlbase-config, perlbase-cpan, perlbase-essential, perlbase-file, perlbase-getopt, perlbase-if, perlbase-tap, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15857
Filename: packages/perlbase-app_5.20.2-1_ramips_24kec.ipk
Size: 16673
MD5Sum: 6d85b86faf4f64e314ca393b5b5c3ef7
SHA256sum: 834b37da0f5351484f4d5d39ad2aebda1dc21f785a29b1374baa12150964c37b
Description: app perl module
Package: perlbase-archive
Version: 5.20.2-1
Depends: libc, perl, perlbase-cwd, perlbase-essential, perlbase-file, perlbase-io
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17891
Filename: packages/perlbase-archive_5.20.2-1_ramips_24kec.ipk
Size: 18695
MD5Sum: b1659f6892d0a48d8b803572ee556c0b
SHA256sum: 8fbd38d1f337ed2d06aad94da4373c67bd299fc5a663c684638c2f83e3b63169
Description: Archive perl module
Package: perlbase-arybase
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7389
Filename: packages/perlbase-arybase_5.20.2-1_ramips_24kec.ipk
Size: 8167
MD5Sum: c460f098f5c9e2588b2bdc4609d1bd9c
SHA256sum: cfcd2319c7d83a63e5041a667c405b6084f2e15068289c2330170f5589588011
Description: arybase perl module
Package: perlbase-attribute
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2987
Filename: packages/perlbase-attribute_5.20.2-1_ramips_24kec.ipk
Size: 3743
MD5Sum: 50705ced7812791a36fa6f4e6e50f0b5
SHA256sum: 65f5cf8f118438dbeec50e4803130147515a4191e891bc454c5a31b453af3556
Description: Attribute perl module
Package: perlbase-attributes
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5036
Filename: packages/perlbase-attributes_5.20.2-1_ramips_24kec.ipk
Size: 5789
MD5Sum: 3eca6294028072a043ea53d99f99ab89
SHA256sum: 11299d0ed40f649ae7c6d3b66ad1c90ebfd0aa08470355aff156004241b1b24c
Description: attributes perl module
Package: perlbase-autodie
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-essential, perlbase-fatal, perlbase-if
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6298
Filename: packages/perlbase-autodie_5.20.2-1_ramips_24kec.ipk
Size: 7115
MD5Sum: e6f60e1545fe61ecced1a177cc152a56
SHA256sum: 84658e13532151b274d3e6a605934fd21513a9406d422304e5e35a6212f04ced
Description: autodie perl module
Package: perlbase-autoloader
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2255
Filename: packages/perlbase-autoloader_5.20.2-1_ramips_24kec.ipk
Size: 3048
MD5Sum: 25693092ef093e614f321642e4b3f9af
SHA256sum: 618949590397ec0d4c1da9053c01e5182f25b86155b1e1baf78932d2b389a796
Description: AutoLoader perl module
Package: perlbase-autosplit
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7936
Filename: packages/perlbase-autosplit_5.20.2-1_ramips_24kec.ipk
Size: 8745
MD5Sum: caf11c65524357743e78a583227b5af6
SHA256sum: 791ad53e19658e126d0ddb1718829e9ca4faf29f02af440fed2413d86efe5764
Description: AutoSplit perl module
Package: perlbase-autouse
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1091
Filename: packages/perlbase-autouse_5.20.2-1_ramips_24kec.ipk
Size: 1862
MD5Sum: e570ae0029c8708ebe6b88abf952eccc
SHA256sum: 209165fd1219cd3e2fe06f420099c4e0db7de001129331d498517814b0495ec5
Description: autouse perl module
Package: perlbase-b
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76556
Filename: packages/perlbase-b_5.20.2-1_ramips_24kec.ipk
Size: 77274
MD5Sum: 2e932b000df6fe7a8d30a947dd65604b
SHA256sum: 248c0ff766c8ab6e5f939ab7017a04973e17cbfc869f6dc2e3597a8213c8f46b
Description: B perl module
Package: perlbase-base
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2270
Filename: packages/perlbase-base_5.20.2-1_ramips_24kec.ipk
Size: 3055
MD5Sum: b9b8f1e95048e9c9a76a1d90ae47c497
SHA256sum: b92a6c213d4e7d153308e840b2b28c2221f17db45ade306f89ef688ed63e1e65
Description: base perl module
Package: perlbase-benchmark
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6043
Filename: packages/perlbase-benchmark_5.20.2-1_ramips_24kec.ipk
Size: 6817
MD5Sum: b6c8c728471a0f1b5ead0c4b3122214c
SHA256sum: c3fabb979a28d20868324ab393e574798e3f08835490160ff169fe7ff52a7539
Description: Benchmark perl module
Package: perlbase-bigint
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3040
Filename: packages/perlbase-bigint_5.20.2-1_ramips_24kec.ipk
Size: 3792
MD5Sum: 3310f7a4842baa23dcacd875b9df0ae3
SHA256sum: 2d69ed8686eeab53bc5ffe1d4ddee679bd68dbc7ccc6f554f1b83e0db125825f
Description: bigint perl module
Package: perlbase-bignum
Version: 5.20.2-1
Depends: libc, perl, perlbase-bigint, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2539
Filename: packages/perlbase-bignum_5.20.2-1_ramips_24kec.ipk
Size: 3313
MD5Sum: 48906447a67d55c2c820ae029693714d
SHA256sum: 730f05c17c9b467f40aa867e2fdc0e9234f36023163c6334525ce933f96ebb22
Description: bignum perl module
Package: perlbase-blib
Version: 5.20.2-1
Depends: libc, perl, perlbase-cwd, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 937
Filename: packages/perlbase-blib_5.20.2-1_ramips_24kec.ipk
Size: 1720
MD5Sum: dd60ac1a7a56ee1efd61ec751f9052db
SHA256sum: bb9aae026ed3ec9c5bdc9a44f551fac77be6885e5c62f2cd9989c3edd917e6a0
Description: blib perl module
Package: perlbase-bytes
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 628
Filename: packages/perlbase-bytes_5.20.2-1_ramips_24kec.ipk
Size: 1392
MD5Sum: 5bf2dd8096bb3ee21d15a1dce64534c4
SHA256sum: aff18842ee9f181bd55d0158f27f47c503b57245b329e85f2600a5b2a538f798
Description: bytes perl module
Package: perlbase-cgi
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-essential, perlbase-file, perlbase-if
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41061
Filename: packages/perlbase-cgi_5.20.2-1_ramips_24kec.ipk
Size: 41979
MD5Sum: 336ea49105c3c4ec4a91bbba21f08e73
SHA256sum: c0c21e7ea500e6772c3fced0fc671059737abc7650130357436328660b2d02eb
Description: CGI perl module
Package: perlbase-charnames
Version: 5.20.2-1
Depends: libc, perl, perlbase-bytes, perlbase-essential, perlbase-file, perlbase-re, perlbase-unicore
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9445
Filename: packages/perlbase-charnames_5.20.2-1_ramips_24kec.ipk
Size: 10239
MD5Sum: 83eb1734886c00ff20012a4c36529e62
SHA256sum: f3b7b0c409630f38658b909088221b1115b068e0a4f70ed70f397ee751db297c
Description: charnames perl module
Package: perlbase-class
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2261
Filename: packages/perlbase-class_5.20.2-1_ramips_24kec.ipk
Size: 3022
MD5Sum: 1f8c8b232d8443ce634107de45b6e705
SHA256sum: 1433f6f92d4a49a08dbab2bd49caecee63ea6e610443f5b25751097ddfeeeef1
Description: Class perl module
Package: perlbase-compress
Version: 5.20.2-1
Depends: libc, perl, perlbase-bytes, perlbase-essential, perlbase-io, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82750
Filename: packages/perlbase-compress_5.20.2-1_ramips_24kec.ipk
Size: 83543
MD5Sum: 18a985952eb19e0f5487a787e69e3ad7
SHA256sum: 8816d3eaa35c6e54f67850a3901e345c6f6ccf2f0936b0ba17d0cda72c05dcc1
Description: Compress perl module
Package: perlbase-config
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16817
Filename: packages/perlbase-config_5.20.2-1_ramips_24kec.ipk
Size: 17461
MD5Sum: 2a4f275a8d213c45b4eae85a018a3e73
SHA256sum: 7687a5069db8e3b2853e22198f1aeb2b2e145bb4dee59434f6fd994c782903ce
Description: Config perl module
Package: perlbase-cpan
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-config, perlbase-cwd, perlbase-dirhandle, perlbase-essential, perlbase-extutils, perlbase-fcntl, perlbase-file, perlbase-filehandle, perlbase-http-tiny, perlbase-list, perlbase-net, perlbase-safe, perlbase-scalar, perlbase-sys, perlbase-text, perlbase-version
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167129
Filename: packages/perlbase-cpan_5.20.2-1_ramips_24kec.ipk
Size: 168120
MD5Sum: d1c6a9a47afeac49385c1393db5eb82d
SHA256sum: e64fc50f458999347c84b90b7ee8df0f3620e6f4107ca48acc14843c4409dd23
Description: CPAN perl module
Package: perlbase-cwd
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11196
Filename: packages/perlbase-cwd_5.20.2-1_ramips_24kec.ipk
Size: 11942
MD5Sum: 4e69c0b5c0e473331180f260213f57d3
SHA256sum: 7d61b828ab4db80cfad119c31e11526419c4d39c38938884ede2c6736b7a9dc1
Description: Cwd perl module
Package: perlbase-data
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21616
Filename: packages/perlbase-data_5.20.2-1_ramips_24kec.ipk
Size: 22417
MD5Sum: 290e75a3ec6510077a1741bf7bd2eb0d
SHA256sum: d44f23190e688aeae9f1585a5a6d897f0958fbf209ed8643d6f36a5fbe057ce1
Description: Data perl module
Package: perlbase-db-file
Version: 5.20.2-1
Depends: libc, perl, libdb47, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18612
Filename: packages/perlbase-db-file_5.20.2-1_ramips_24kec.ipk
Size: 19394
MD5Sum: f3df177d24b54aa911714da489aea56d
SHA256sum: 2dcb075d24448e3bf153f60bf42e2ac799c2b74ea09d88b0a1f97f0507dd6765
Description: DB_File perl module
Package: perlbase-db
Version: 5.20.2-1
Depends: libc, perl, libdb47, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3459
Filename: packages/perlbase-db_5.20.2-1_ramips_24kec.ipk
Size: 4239
MD5Sum: d2e2afd7dae4cc3e5a79079a36821431
SHA256sum: 53ef6361872cd818f67fad0e7a84f0aa0447f3457bf63a8f88f7ca6990d83456
Description: DB perl module
Package: perlbase-dbm-filter
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2383
Filename: packages/perlbase-dbm-filter_5.20.2-1_ramips_24kec.ipk
Size: 3163
MD5Sum: 76a7472651b849f25320c1641dd53467
SHA256sum: 60e19ad11740d801de1deed422c7e0e11c7121a80b4410e6df9ca27e78d57726
Description: DBM_Filter perl module
Package: perlbase-devel
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80490
Filename: packages/perlbase-devel_5.20.2-1_ramips_24kec.ipk
Size: 81338
MD5Sum: c464cd3c7d8b86a359f43d512cf2f30b
SHA256sum: c447c45ba43f7c8c29074f7175328ff4563eeb7333d18558309e4bbe9a13fed4
Description: Devel perl module
Package: perlbase-diagnostics
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4959
Filename: packages/perlbase-diagnostics_5.20.2-1_ramips_24kec.ipk
Size: 5744
MD5Sum: 1e82d36bd1c1693d3f272ff86067e223
SHA256sum: b485364f42dfac0117c7a9288e6f116e36223989e4dccb747e04a42b7c84a0e5
Description: diagnostics perl module
Package: perlbase-digest
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-fcntl, perlbase-integer
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32248
Filename: packages/perlbase-digest_5.20.2-1_ramips_24kec.ipk
Size: 33071
MD5Sum: c2b209143e670a045a2edbfd15706913
SHA256sum: dac374cf7a7e190bf2c0b1f0126c257ee69e57d545c8eebd1a1916baa0c5d8ba
Description: Digest perl module
Package: perlbase-dirhandle
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-symbol
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 653
Filename: packages/perlbase-dirhandle_5.20.2-1_ramips_24kec.ipk
Size: 1441
MD5Sum: ff3e16bc7a5b17d6a1ee183e2b05ec61
SHA256sum: 09d98e97ee0c56f79c3fc61e61faa5767e598103b395c404acb3ac8d58741bfc
Description: DirHandle perl module
Package: perlbase-dumpvalue
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4031
Filename: packages/perlbase-dumpvalue_5.20.2-1_ramips_24kec.ipk
Size: 4807
MD5Sum: 980d90ec466c03fb2c183270e87c663e
SHA256sum: ec0cd3bf3c456096af825496e25201966bab2cd91a268e1011c10ab5afd642fd
Description: Dumpvalue perl module
Package: perlbase-dumpvar
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4967
Filename: packages/perlbase-dumpvar_5.20.2-1_ramips_24kec.ipk
Size: 5738
MD5Sum: bcd3b30a74e35fea12c8fb9b3a5f3532
SHA256sum: 6887b74c4c683f74752b905fe9e3cf2fca0a07bda7440fd8e271ad94bd74f3d8
Description: dumpvar perl module
Package: perlbase-dynaloader
Version: 5.20.2-1
Depends: libc, perl, perlbase-config
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3768
Filename: packages/perlbase-dynaloader_5.20.2-1_ramips_24kec.ipk
Size: 4524
MD5Sum: 09d7ab462f69172111a9521c163ad543
SHA256sum: 9944105887f27bd407546f13de7d51874037da8dce06e96891595f9aa5d98a5b
Description: DynaLoader perl module
Package: perlbase-encode
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-mime, perlbase-utf8, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1898863
Filename: packages/perlbase-encode_5.20.2-1_ramips_24kec.ipk
Size: 1669080
MD5Sum: 796a84b45588cc9632af41217da90d00
SHA256sum: 1b3d12e6f6284577f8298b5c0744b9fa2742fde354aebf9de58cc5233f98f5db
Description: Encode perl module
Package: perlbase-encoding
Version: 5.20.2-1
Depends: libc, perl, perlbase-encode, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2774
Filename: packages/perlbase-encoding_5.20.2-1_ramips_24kec.ipk
Size: 3538
MD5Sum: c91c87095f8ce0dfa477e7c7f589d0e3
SHA256sum: 0d6f05bc3cbcd3466deacaa7bb88003cbdc73c07b811eef65e830b147bfd5127
Description: encoding perl module
Package: perlbase-english
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1375
Filename: packages/perlbase-english_5.20.2-1_ramips_24kec.ipk
Size: 2147
MD5Sum: 333a6e8faaeae6653f3e96cf725fb2a4
SHA256sum: db8f3679eb556f345c63cb3b3ee3a702f25b0dcd0950254f3947067570c2f886
Description: English perl module
Package: perlbase-env
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-tie
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1149
Filename: packages/perlbase-env_5.20.2-1_ramips_24kec.ipk
Size: 1929
MD5Sum: 15369318a708d2c44001ade83e0460c1
SHA256sum: 80bd63374be05a65c0ea3ef84f91d0da74c07c890ad03b9879846058ee62e948
Description: Env perl module
Package: perlbase-errno
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2466
Filename: packages/perlbase-errno_5.20.2-1_ramips_24kec.ipk
Size: 3254
MD5Sum: c060baba952e22634af9514aa9ad9982
SHA256sum: 30fcf054c310ee81c47f92015b7164b4af5031da738afc529077f4609c816b96
Description: Errno perl module
Package: perlbase-essential
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18341
Filename: packages/perlbase-essential_5.20.2-1_ramips_24kec.ipk
Size: 19129
MD5Sum: 13be582e7a7a077222f23eeedb769b62
SHA256sum: 03b76d0f42ca3e624962939fa7cffa07f0d287b9b641d38c66cb3418a45520f1
Description: essential perl module
Package: perlbase-experimental
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-feature
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 835
Filename: packages/perlbase-experimental_5.20.2-1_ramips_24kec.ipk
Size: 1611
MD5Sum: 4bc3b715b8509eae9f4087c51416e6ac
SHA256sum: 7f753101506e8a61664060c135efb887c1dfaa45c678850ed55670e780b0c979
Description: experimental perl module
Package: perlbase-extutils
Version: 5.20.2-1
Depends: libc, perl, perlbase-autosplit, perlbase-config, perlbase-cwd, perlbase-dirhandle, perlbase-essential, perlbase-file, perlbase-io, perlbase-ipc, perlbase-ostype, perlbase-symbol, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 170568
Filename: packages/perlbase-extutils_5.20.2-1_ramips_24kec.ipk
Size: 171526
MD5Sum: ffac47788d522cc1377922c44d0162e4
SHA256sum: 03c5f5a506ec5c07919a01388b8cb8791f3d14790d4e724c6fcaaef8540d9c38
Description: ExtUtils perl module
Package: perlbase-fatal
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-scalar, perlbase-tie
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16040
Filename: packages/perlbase-fatal_5.20.2-1_ramips_24kec.ipk
Size: 16795
MD5Sum: c540e3701141d5a46c2b3688eff265e2
SHA256sum: 2273d7ae4fcfe9de893898089c01dc3d5c77a10e847cb4e5285b107405a34b45
Description: Fatal perl module
Package: perlbase-fcntl
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6051
Filename: packages/perlbase-fcntl_5.20.2-1_ramips_24kec.ipk
Size: 6791
MD5Sum: b87609a43c48800deb587b056a4f0e73
SHA256sum: fae72d768cd1b672cb74d1ad395f0f9b200daa90b54e5abbab272fe64489b65d
Description: Fcntl perl module
Package: perlbase-feature
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1276
Filename: packages/perlbase-feature_5.20.2-1_ramips_24kec.ipk
Size: 2052
MD5Sum: b8b045b27125c9581e38d9146823a264
SHA256sum: b21288138cd6e1c6a3240379c488272d63954488a965bfcf998823198f988830
Description: feature perl module
Package: perlbase-fields
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1912
Filename: packages/perlbase-fields_5.20.2-1_ramips_24kec.ipk
Size: 2702
MD5Sum: 289acc49cc31261f1198fc37fd96cb6a
SHA256sum: e86bee10fa69acd6ef02ad208041ff00a6f1eb7aa79cbb55badff252ba324ab4
Description: fields perl module
Package: perlbase-file
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-config, perlbase-cwd, perlbase-errno, perlbase-essential, perlbase-fcntl, perlbase-filehandle, perlbase-io, perlbase-locale, perlbase-params, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71548
Filename: packages/perlbase-file_5.20.2-1_ramips_24kec.ipk
Size: 72453
MD5Sum: f6b65dfc7dc9b13bf4231a7f2a3ab865
SHA256sum: 332b3c5c0ca1117ab5461d904c7e17cbe236dfd07b7380a32a8551408464f823
Description: File perl module
Package: perlbase-filecache
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1431
Filename: packages/perlbase-filecache_5.20.2-1_ramips_24kec.ipk
Size: 2208
MD5Sum: 54db86d6988b004a70f3495d32382f74
SHA256sum: 818818f4e87b6e4f8f5a280f40bf256b20b43483527fa2167ea2cde52bfb593f
Description: FileCache perl module
Package: perlbase-filehandle
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1004
Filename: packages/perlbase-filehandle_5.20.2-1_ramips_24kec.ipk
Size: 1784
MD5Sum: ee3cff78b4bf76900ef9a9ff4ea4e81a
SHA256sum: fa25026b19f05b33cab30b355170d2b7359925753e3c34634a49e57d587c5d4d
Description: FileHandle perl module
Package: perlbase-filetest
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 418
Filename: packages/perlbase-filetest_5.20.2-1_ramips_24kec.ipk
Size: 1180
MD5Sum: e1ac549b43d9109d3b1a76c1e4e4e034
SHA256sum: 5df6e79b57a211cdad989b603fe848b2bcd9d755466f42b26dddb483fed9caa1
Description: filetest perl module
Package: perlbase-filter
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7345
Filename: packages/perlbase-filter_5.20.2-1_ramips_24kec.ipk
Size: 8151
MD5Sum: b873dd9c2e3fe400038f46eafc857db6
SHA256sum: 103dd47c90699094dd2cd6193abb366e051cf678f75fee862ff6e486893b8e9e
Description: Filter perl module
Package: perlbase-findbin
Version: 5.20.2-1
Depends: libc, perl, perlbase-cwd, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1143
Filename: packages/perlbase-findbin_5.20.2-1_ramips_24kec.ipk
Size: 1932
MD5Sum: c063a1c7b916e2a5a12b5aefdc557625
SHA256sum: d40bec2182ef1157072b932b27d25efa424bd22f4521194b0ea13a1106450d23
Description: FindBin perl module
Package: perlbase-gdbm-file
Version: 5.20.2-1
Depends: libc, perl, libgdbm, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7195
Filename: packages/perlbase-gdbm-file_5.20.2-1_ramips_24kec.ipk
Size: 8002
MD5Sum: 815b4d65050da15107f8df7c4c7ba1fc
SHA256sum: 52c6a02a3fd107881f9e37584b9c7dfde23025aa4bf23e4bd395aecfd2e75a2b
Description: GDBM_File perl module
Package: perlbase-getopt
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12770
Filename: packages/perlbase-getopt_5.20.2-1_ramips_24kec.ipk
Size: 13560
MD5Sum: 290caa475ce6964b579d811541e42b82
SHA256sum: 81963c194d02aaa080f0e56f8357a029bb8145f6485b26177a810058c44b6b58
Description: Getopt perl module
Package: perlbase-hash
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11650
Filename: packages/perlbase-hash_5.20.2-1_ramips_24kec.ipk
Size: 12431
MD5Sum: adbe86919ed0805d35090e477d7f1e34
SHA256sum: 9f618cebff9e9c64c127ff872f30e04afd3425cf6a1a993f8c73e85f5fcdd53d
Description: Hash perl module
Package: perlbase-http-tiny
Version: 5.20.2-1
Depends: libc, perl, perlbase-errno, perlbase-essential, perlbase-io
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10133
Filename: packages/perlbase-http-tiny_5.20.2-1_ramips_24kec.ipk
Size: 10948
MD5Sum: c2fd3a737ea4652def3183b85fc7de99
SHA256sum: 0b23bc5e493e7dc62a3dfe199acd343386ad4767abd38d8cb2fb174cf67d12a5
Description: http-tiny perl module
Package: perlbase-i18n
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-posix
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20467
Filename: packages/perlbase-i18n_5.20.2-1_ramips_24kec.ipk
Size: 21233
MD5Sum: 94e2f0ca9d5bffdbd36b8567558d5528
SHA256sum: 3b6ea1f5783a80fc8858dffa788cb24110e8d4220e21b11e744eaee7708e579c
Description: I18N perl module
Package: perlbase-if
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 560
Filename: packages/perlbase-if_5.20.2-1_ramips_24kec.ipk
Size: 1320
MD5Sum: bb21c1d2e7b2eb6da0550c2ad66d94fc
SHA256sum: 0f9f734a6fa36c5f5b00f91dc3597077f18d1ba2197c8b6e89438eaa877480cd
Description: if perl module
Package: perlbase-integer
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 317
Filename: packages/perlbase-integer_5.20.2-1_ramips_24kec.ipk
Size: 1075
MD5Sum: 2ae59d3d95ac7cbd8afd7a6f27eff505
SHA256sum: 1c0a970d8871f86a5e465587e0abb3e75694e3ee500219588e4361228888d42c
Description: integer perl module
Package: perlbase-io
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-bytes, perlbase-config, perlbase-errno, perlbase-essential, perlbase-fcntl, perlbase-list, perlbase-posix, perlbase-scalar, perlbase-selectsaver, perlbase-socket, perlbase-symbol, perlbase-tie, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67121
Filename: packages/perlbase-io_5.20.2-1_ramips_24kec.ipk
Size: 68097
MD5Sum: e4b4888a45aefd6547f62b0238cddc71
SHA256sum: 74a5dc80e51663caa16e5e3722b8cbcba1ef8bb979595ea23a46d6f9159e1994
Description: IO perl module
Package: perlbase-ipc
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-file, perlbase-locale, perlbase-params, perlbase-symbol, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26227
Filename: packages/perlbase-ipc_5.20.2-1_ramips_24kec.ipk
Size: 26978
MD5Sum: 73c570de1c27738edaa8b323aadf938f
SHA256sum: f6fd5d8056ff81646f7f4f31f7d7304b9a20b83a6a8d81caab372879ec1820d7
Description: IPC perl module
Package: perlbase-json-pp
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-base, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10597
Filename: packages/perlbase-json-pp_5.20.2-1_ramips_24kec.ipk
Size: 11398
MD5Sum: 853bf10e3c2309cd60229a9ddb6136f0
SHA256sum: 343dea2d2fef06c93b91ef709025ee105e36eca06af1ada27547752e5736de82
Description: json-pp perl module
Package: perlbase-less
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 718
Filename: packages/perlbase-less_5.20.2-1_ramips_24kec.ipk
Size: 1485
MD5Sum: 09b60c56e5b978bd4e1947e888617dec
SHA256sum: a7d907140e3735e1ef0d22e71432996dcc9b8447d3a9dacbff81a3addb870820
Description: less perl module
Package: perlbase-list
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14935
Filename: packages/perlbase-list_5.20.2-1_ramips_24kec.ipk
Size: 15683
MD5Sum: 8f9f6359471137de3d40b925cc5109ac
SHA256sum: ac5d25a499be5445f0d43c0ca1839f73d74f3d4053b8127a7851ef71d12b3847
Description: List perl module
Package: perlbase-locale
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-i18n, perlbase-integer, perlbase-utf8
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 313629
Filename: packages/perlbase-locale_5.20.2-1_ramips_24kec.ipk
Size: 288706
MD5Sum: 0aab9cd102ec27bc7357e0ab5f663b88
SHA256sum: 3bb573257a4edf6dd4ece56450a4df8cb8132c426620f3ab3e42eeae149b3cb8
Description: Locale perl module
Package: perlbase-math
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 88251
Filename: packages/perlbase-math_5.20.2-1_ramips_24kec.ipk
Size: 89172
MD5Sum: 41674a49631f9292433c3e1a47bcf75b
SHA256sum: 2ca99a8244481f97e812befade24ceb052b97602a2d3483af2e29c7b118c3d6c
Description: Math perl module
Package: perlbase-memoize
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-storable
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5678
Filename: packages/perlbase-memoize_5.20.2-1_ramips_24kec.ipk
Size: 6452
MD5Sum: d8a039ad3d96196b5e17136affb95462
SHA256sum: 212c83532d05c816935870e64ebf7767f21cfdbbe01336a5a6974dee77b7015b
Description: Memoize perl module
Package: perlbase-mime
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6291
Filename: packages/perlbase-mime_5.20.2-1_ramips_24kec.ipk
Size: 7111
MD5Sum: bc02abaee686206766c3f503966154c5
SHA256sum: b9322533c58ee55f19735d5a5421430876dcbf7943fbc6903a8c13f45b0f22a5
Description: MIME perl module
Package: perlbase-module
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-cwd, perlbase-data, perlbase-essential, perlbase-extutils, perlbase-file, perlbase-filehandle, perlbase-if, perlbase-io, perlbase-locale, perlbase-ostype, perlbase-params, perlbase-text, perlbase-version
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 173259
Filename: packages/perlbase-module_5.20.2-1_ramips_24kec.ipk
Size: 173149
MD5Sum: ab7fb2d37e1c7a8de0fbbfb283d85251
SHA256sum: ad6add43af13611b29a51d03f75cd9cba4c0c6d9faca5c644d6aa8ccae59fbd9
Description: Module perl module
Package: perlbase-mro
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7318
Filename: packages/perlbase-mro_5.20.2-1_ramips_24kec.ipk
Size: 8089
MD5Sum: a616a5225f08ce19e19306db3becd238
SHA256sum: e0ee71c1dbdf7da0d1506892979d0d0d1047843313b249185108fec2e5b4973a
Description: mro perl module
Package: perlbase-net
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-errno, perlbase-essential, perlbase-fcntl, perlbase-filehandle, perlbase-io, perlbase-posix, perlbase-socket, perlbase-symbol, perlbase-time
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38130
Filename: packages/perlbase-net_5.20.2-1_ramips_24kec.ipk
Size: 39080
MD5Sum: a21c41fbf17239811d899a0d62483e80
SHA256sum: 81829365cca5dbc619503b35df9b1b121cc24b3aee4d7ad6976e416f332530e3
Description: Net perl module
Package: perlbase-next
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1744
Filename: packages/perlbase-next_5.20.2-1_ramips_24kec.ipk
Size: 2502
MD5Sum: 155ebd3c2fd39b7e7d0b3bcc4a877083
SHA256sum: 06cd7976269d37f94a54a662275dfd2e67e9187b5dc962bc4b483abd72a0444b
Description: NEXT perl module
Package: perlbase-o
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 829
Filename: packages/perlbase-o_5.20.2-1_ramips_24kec.ipk
Size: 1606
MD5Sum: 5dd809d3bb8f55b9defa329533b25a09
SHA256sum: b8495d74b69a7b3ba2b98e5bd45f8aa163d06c553e6439b859986ef741b1638b
Description: O perl module
Package: perlbase-opcode
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14785
Filename: packages/perlbase-opcode_5.20.2-1_ramips_24kec.ipk
Size: 15556
MD5Sum: ce4dd186a187946b4dddace1e7e98e29
SHA256sum: a3dbc4aa425a6bbc5419dc0578e377fba0b270bfda3a65208bf8edb11a7095a1
Description: Opcode perl module
Package: perlbase-open
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1690
Filename: packages/perlbase-open_5.20.2-1_ramips_24kec.ipk
Size: 2469
MD5Sum: 4bbd239438b15f59daf10193c654c025
SHA256sum: b35b58a2d87bed19ce4f4585dbaa6be0d1e24b06faadc546ca9b42142bed5e95
Description: open perl module
Package: perlbase-ops
Version: 5.20.2-1
Depends: libc, perl, perlbase-opcode
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 483
Filename: packages/perlbase-ops_5.20.2-1_ramips_24kec.ipk
Size: 1250
MD5Sum: 52084259008612931aee2f9322c7f01e
SHA256sum: 9639a4e59487fcab206326008af11f60519bea20382b7b6ed64c8cb49526f011
Description: ops perl module
Package: perlbase-ostype
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 825
Filename: packages/perlbase-ostype_5.20.2-1_ramips_24kec.ipk
Size: 1600
MD5Sum: fad30b25805fd5f22de9700ede3aeae5
SHA256sum: c981b17bfa959476a651915a8fc17a5b0356025687dbdb6e3429e3f58dc20ff3
Description: OSType perl module
Package: perlbase-package
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-if
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 684
Filename: packages/perlbase-package_5.20.2-1_ramips_24kec.ipk
Size: 1451
MD5Sum: f558b629785a58bdd6199bfac639b8d4
SHA256sum: 154586eed8546d82cbe04bd065bfb574931a528e8a219095368fa61a5b6268d0
Description: Package perl module
Package: perlbase-params
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-locale
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3284
Filename: packages/perlbase-params_5.20.2-1_ramips_24kec.ipk
Size: 4052
MD5Sum: 33a79d06b5bcea6059039b99303f3637
SHA256sum: 214aff6f47cd0318cb5ab2331b7107fc435d7233f32e9cff6fbd63ec208b3fd7
Description: Params perl module
Package: perlbase-perl5db
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62306
Filename: packages/perlbase-perl5db_5.20.2-1_ramips_24kec.ipk
Size: 63212
MD5Sum: fedee7e261377260339b3a80aedcd488
SHA256sum: 0071c6bf14651c6a67615c4cde5630fdfb541d7b1bd12bbdf844f7f04d14b794
Description: perl5db perl module
Package: perlbase-perlio
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-mime, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21579
Filename: packages/perlbase-perlio_5.20.2-1_ramips_24kec.ipk
Size: 22319
MD5Sum: 7226fdf122bfc7960e1920dcffdc0edf
SHA256sum: 98ce66326a79f2bce61b7a748cbb2c3ccb6bc53a9354fded9b61b5333b85f699
Description: PerlIO perl module
Package: perlbase-pod
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-cwd, perlbase-encode, perlbase-essential, perlbase-fcntl, perlbase-file, perlbase-getopt, perlbase-integer, perlbase-posix, perlbase-symbol, perlbase-term, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 176891
Filename: packages/perlbase-pod_5.20.2-1_ramips_24kec.ipk
Size: 177825
MD5Sum: b21359692f5faf81777901e32fdc7e6e
SHA256sum: c7d085edbe79a3f0cc0262934d8d5340ca59ae9efc40eb496ad151c8c3eb1ba8
Description: Pod perl module
Package: perlbase-posix
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-fcntl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29282
Filename: packages/perlbase-posix_5.20.2-1_ramips_24kec.ipk
Size: 29936
MD5Sum: 20284aeb4853ade51190e243025ba7ee
SHA256sum: 4de74ac479c7252e1a8252b59512b0e8172e16cc4ffb5c5f442f6a7cdf549b47
Description: POSIX perl module
Package: perlbase-re
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 168137
Filename: packages/perlbase-re_5.20.2-1_ramips_24kec.ipk
Size: 168986
MD5Sum: 692477a9c78d791e55d7ff3546aebca4
SHA256sum: 7a1c25ae19c86f2abb609d9a34bb0d83694959bcfdfb2af2cfb83ee9fdc581b7
Description: re perl module
Package: perlbase-safe
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-essential, perlbase-opcode, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4014
Filename: packages/perlbase-safe_5.20.2-1_ramips_24kec.ipk
Size: 4781
MD5Sum: c7c9ffa1b2352ab26cd60b28dcb7fb07
SHA256sum: d9c7ef2183a3fafc26c14316a8dc107b567172a258d6e61e29df33130ee8225c
Description: Safe perl module
Package: perlbase-scalar
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 748
Filename: packages/perlbase-scalar_5.20.2-1_ramips_24kec.ipk
Size: 1528
MD5Sum: 668ce562a8c906de272481d858b05d22
SHA256sum: be91ca4e48711173c66cf8f9a504137216a86f9965977e21f71c4c42e2151fcb
Description: Scalar perl module
Package: perlbase-sdbm-file
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9983
Filename: packages/perlbase-sdbm-file_5.20.2-1_ramips_24kec.ipk
Size: 10796
MD5Sum: 387832a9548c0471237be4b43adcc91f
SHA256sum: 77a0fc9ca63eecc5613fc42f854f3735ef692f5a0983e5a6412d967097f62b77
Description: SDBM_File perl module
Package: perlbase-search
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1133
Filename: packages/perlbase-search_5.20.2-1_ramips_24kec.ipk
Size: 1907
MD5Sum: 4a84afa8325212abdad803b58ab02742
SHA256sum: 6bc6a31b6042af96ea8fe6475d790ed598c4610cf27c432e1008b49204a1b082
Description: Search perl module
Package: perlbase-selectsaver
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-symbol
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 437
Filename: packages/perlbase-selectsaver_5.20.2-1_ramips_24kec.ipk
Size: 1221
MD5Sum: 926fb144d9e881ff0270a8921b73bfef
SHA256sum: ef2415f922385bcb6b641df023183447c8e4f212a8f816e8140b76542c058889
Description: SelectSaver perl module
Package: perlbase-selfloader
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-io
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2292
Filename: packages/perlbase-selfloader_5.20.2-1_ramips_24kec.ipk
Size: 3087
MD5Sum: bfe0541d2bc19a15f7fd3982d7fbdfa7
SHA256sum: 2dfecc9ac4ef189e82730e9036452f097c169ca5900c5aee2c1d33212f482d15
Description: SelfLoader perl module
Package: perlbase-sigtrap
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1457
Filename: packages/perlbase-sigtrap_5.20.2-1_ramips_24kec.ipk
Size: 2229
MD5Sum: 223def2ff0f987aa704c719f1c165cf5
SHA256sum: a1a1f632bc4d01eba7d1801c98765f504e8a9f74aea22c82af6041fac3fb3312
Description: sigtrap perl module
Package: perlbase-socket
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16454
Filename: packages/perlbase-socket_5.20.2-1_ramips_24kec.ipk
Size: 17138
MD5Sum: b53f1768aefa1708aa4e69e8307ff4c7
SHA256sum: 15d5e51f5ca1fb47b7eb2cb4b19e8ce62b196f57c368c281df981be6dff2afae
Description: Socket perl module
Package: perlbase-sort
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 724
Filename: packages/perlbase-sort_5.20.2-1_ramips_24kec.ipk
Size: 1500
MD5Sum: 798e157822e653c49abcce0d75109291
SHA256sum: 8fa55605b8e0252b9b7e2f3c21ce9b8523089fde8dd94a3169df138365918bfc
Description: sort perl module
Package: perlbase-storable
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33826
Filename: packages/perlbase-storable_5.20.2-1_ramips_24kec.ipk
Size: 34693
MD5Sum: 4ad464d30a0ddbd7b0e88ccf6b976653
SHA256sum: 97bbab653024de438f97a17cfe658131943a90ec91888afc13d235db498b41a5
Description: Storable perl module
Package: perlbase-symbol
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1118
Filename: packages/perlbase-symbol_5.20.2-1_ramips_24kec.ipk
Size: 1886
MD5Sum: a563fefebdb564de787dae9845fa2a97
SHA256sum: 83f5306df43358837345cfcac1fad6142a9522b17c0e3d36d1eaa4d494066ad3
Description: Symbol perl module
Package: perlbase-sys
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-file, perlbase-posix, perlbase-socket
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13331
Filename: packages/perlbase-sys_5.20.2-1_ramips_24kec.ipk
Size: 14130
MD5Sum: c32c8ff6ca3dc5e75510b107c55e2870
SHA256sum: 0fc2a8665eea046327a73d6218ad9b1c856685142997d172799173af6cf3d7d7
Description: Sys perl module
Package: perlbase-tap
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-benchmark, perlbase-config, perlbase-essential, perlbase-file, perlbase-io, perlbase-posix, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33993
Filename: packages/perlbase-tap_5.20.2-1_ramips_24kec.ipk
Size: 34938
MD5Sum: 21aaa33a0b461df8e56d5bc567dcf20a
SHA256sum: aaec8a85e92bcbb8da628af96fab15472917e8b54fa365c5f6a889d676b74b8f
Description: TAP perl module
Package: perlbase-term
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10918
Filename: packages/perlbase-term_5.20.2-1_ramips_24kec.ipk
Size: 11706
MD5Sum: 393507e41319e4171f279518ef3e582a
SHA256sum: 0d4ee1c51ca89998e6745cfb077cf096b53de8a0b8c775afab745bc297a4a425
Description: Term perl module
Package: perlbase-test
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-config, perlbase-essential, perlbase-symbol, perlbase-tap, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49715
Filename: packages/perlbase-test_5.20.2-1_ramips_24kec.ipk
Size: 50622
MD5Sum: abfb9ee25568a3dc6f7c5221a3baff90
SHA256sum: 4de29a064bd04ea961394e0c0ff824f6cc29475c55b780e3cdc88842bd98decd
Description: Test perl module
Package: perlbase-text
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-selfloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10784
Filename: packages/perlbase-text_5.20.2-1_ramips_24kec.ipk
Size: 11563
MD5Sum: f574a3ba676d186abdaedf2586ab43b3
SHA256sum: 167bb0c905974c0b0037e703b034a1fa1ec19538cd7a2778f52885be07d6695a
Description: Text perl module
Package: perlbase-thread
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-scalar, perlbase-threads
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2394
Filename: packages/perlbase-thread_5.20.2-1_ramips_24kec.ipk
Size: 3178
MD5Sum: e8c2f582c8bc48784cabb1a05e1e1ce4
SHA256sum: 36e76d18154dbbc296206a4b4a942330082485244a21f33d19758821bf7d87ea
Description: Thread perl module
Package: perlbase-threads
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29138
Filename: packages/perlbase-threads_5.20.2-1_ramips_24kec.ipk
Size: 29919
MD5Sum: 295314759c9cfdf3c0491a89db75719f
SHA256sum: 6dca3d46bc16fb38aa7910b67c2646c330b2958dce50e3053696d31a9b45d987
Description: threads perl module
Package: perlbase-tie
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-fcntl, perlbase-posix
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21566
Filename: packages/perlbase-tie_5.20.2-1_ramips_24kec.ipk
Size: 22345
MD5Sum: 02da817207798fb8864ce2d4ffdf5e99
SHA256sum: fc88db2ea8223124916a819b37ce4e30d3ab2d5d7f2719ffdd1d3b4d7084c70d
Description: Tie perl module
Package: perlbase-time
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23304
Filename: packages/perlbase-time_5.20.2-1_ramips_24kec.ipk
Size: 24064
MD5Sum: 3a3060b63592734bf13f229b24cff639
SHA256sum: dce3aec9d7d4a2d6149dc55a85cd573949516a6bddf88c758c4b047f84058b15
Description: Time perl module
Package: perlbase-unicode
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-charnames, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 891194
Filename: packages/perlbase-unicode_5.20.2-1_ramips_24kec.ipk
Size: 796922
MD5Sum: f49a862f07a06c8e28553989375a43d4
SHA256sum: 0eed9f22da63350fda741bbc48ea71f71a18d89f97756c5011df3dc6a4a7ddec
Description: Unicode perl module
Package: perlbase-unicore
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 549319
Filename: packages/perlbase-unicore_5.20.2-1_ramips_24kec.ipk
Size: 507977
MD5Sum: 6526a87e7dc38dba561ddaa32217a0eb
SHA256sum: 3a4ea6f59978410b8e120502b515aaf1cbeb29bda8354ea99e2757e2629fdf1e
Description: unicore perl module
Package: perlbase-universal
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 454
Filename: packages/perlbase-universal_5.20.2-1_ramips_24kec.ipk
Size: 1220
MD5Sum: 46bde9048506afd464b154d144a5cfa3
SHA256sum: 640f12c30846b29ef758d52a3bc347b2f6b3d149c2b0479504213d173c85a01c
Description: UNIVERSAL perl module
Package: perlbase-user
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2068
Filename: packages/perlbase-user_5.20.2-1_ramips_24kec.ipk
Size: 2840
MD5Sum: 6a571de4e36ba0239f2c47f1af606ba7
SHA256sum: 22ce9620be099ffd05670820e261efecec7852777e3338cd1be362c367946ba3
Description: User perl module
Package: perlbase-utf8
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-re
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9155
Filename: packages/perlbase-utf8_5.20.2-1_ramips_24kec.ipk
Size: 9961
MD5Sum: fb9cd1e2ea39c78e64c2a797480360a4
SHA256sum: f682e268f761d75f206926b2b4c924586703c2c4f8ceff39f7bf717e8b7ecad3
Description: utf8 perl module
Package: perlbase-version
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6898
Filename: packages/perlbase-version_5.20.2-1_ramips_24kec.ipk
Size: 7692
MD5Sum: bfea42cdb8c2371164548ffb7b587d4d
SHA256sum: 62af31b057db09fa1b5584bdd1611ab3071232e30367634d5b6890d728f88be0
Description: version perl module
Package: perlbase-xsloader
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1318
Filename: packages/perlbase-xsloader_5.20.2-1_ramips_24kec.ipk
Size: 2094
MD5Sum: 91262166c3d52c2b218079009eb12b86
SHA256sum: 7243cbad0f983c5642c3ecc31c898b4344aedc25ba64453446516238406d34a3
Description: XSLoader perl module
Package: pgsql-cli
Version: 9.0.17-1
Depends: libc, libpq
Source: feeds/packages/libs/postgresql
License: PostgreSQL
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 112851
Filename: packages/pgsql-cli_9.0.17-1_ramips_24kec.ipk
Size: 113477
MD5Sum: 7fec5743ba19e21d714452457b92f5df
SHA256sum: a0c1b1e8b9bc62e82aae18e7996a27ffbd708f0fd7375df6567308ddc6bfb18a
Description: Command Line Interface (CLI) to PostgreSQL databases.
Package: pgsql-server
Version: 9.0.17-1
Depends: libc, libpq
Source: feeds/packages/libs/postgresql
License: PostgreSQL
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4577730
Filename: packages/pgsql-server_9.0.17-1_ramips_24kec.ipk
Size: 4230431
MD5Sum: d01f380b2892057bbe55b08cf31ff019
SHA256sum: 71817ae8400db4ebc7c41b753e691f08014d8ea1906b17d884601111022e13ef
Description: PostgreSQL databases Server.
Package: pgsqlodbc
Version: 2.3.2-1
Depends: libc, unixodbc, libpq
Source: feeds/packages/libs/unixodbc
License: prog GPL libs LGPL
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84318
Filename: packages/pgsqlodbc_2.3.2-1_ramips_24kec.ipk
Size: 85045
MD5Sum: 9d88c366dda5262425ce2a730f8a43ac
SHA256sum: c6411d2fea539faf2ced92f599f277a1b58443dc06ae5af8baa044ba25b2bf42
Description: Postgresql driver for ODBC.
Package: php5-cgi
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 954466
Filename: packages/php5-cgi_5.6.6-1_ramips_24kec.ipk
Size: 953498
MD5Sum: eabe15c10e674bfa8c296faf5ad836a5
SHA256sum: b187203a051967ac89f12f6421d16654758a38e9b2a517bf501449ea61feafbf
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains the CGI version of the PHP5 interpreter.
Package: php5-cli
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 961298
Filename: packages/php5-cli_5.6.6-1_ramips_24kec.ipk
Size: 960371
MD5Sum: c6c0be49370a44961dc02f9052b000aa
SHA256sum: 8acb5a3ab08309cb2b2bdd385cbb60da34c0102e3eb0fec079a4ec72f2d5256f
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains the CLI version of the PHP5 interpreter.
Package: php5-fastcgi
Version: 5.6.6-1
Depends: libc, php5, php5-cgi
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 543
Filename: packages/php5-fastcgi_5.6.6-1_ramips_24kec.ipk
Size: 1348
MD5Sum: c8077bd652f64a8afbed12573b9dfc6d
SHA256sum: 98bf5dccac552a67f3f49857e5aed406ac04b008237e9ee67de916cf6efe380c
Description: As FastCGI support is now a core feature the php5-fastcgi package now depends
on the php5-cgi package, containing just the startup script.
Package: php5-fpm
Version: 5.6.6-1
Depends: libc, php5, php5-cgi
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 995376
Filename: packages/php5-fpm_5.6.6-1_ramips_24kec.ipk
Size: 994489
MD5Sum: 701b4fffe086fbd8f4c99d57c2c0790d
SHA256sum: e59c58345b8a66c06e624947c4ac7bb5367bc1ef68370885e0396325f7c560e2
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains the FastCGI Process Manager of the PHP5 interpreter.
Package: php5-mod-calendar
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9268
Filename: packages/php5-mod-calendar_5.6.6-1_ramips_24kec.ipk
Size: 9999
MD5Sum: cc879a5cefab6d55d4040cd6ace92d4c
SHA256sum: 11c753fc69a525b0a8555eab1d26690c64b5c2d280462306c6d700e1c689ff9e
Description: Calendar shared module
Package: php5-mod-ctype
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2295
Filename: packages/php5-mod-ctype_5.6.6-1_ramips_24kec.ipk
Size: 3050
MD5Sum: 2c1c7355bb39e6d6f254daa9732dc5f5
SHA256sum: 4544a98fcfff522856d90e6790a270fa48f810ee21806b3090ac9984df17b398
Description: Ctype shared module
Package: php5-mod-curl
Version: 5.6.6-1
Depends: libc, php5, libcurl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24341
Filename: packages/php5-mod-curl_5.6.6-1_ramips_24kec.ipk
Size: 25041
MD5Sum: b4b6c7da8948323483a516881969a9f7
SHA256sum: ad0d9454a3503c4b4c0d60676f6137ad32ca205a1445ea9cd8dd68b2258525f1
Description: cURL shared module
Package: php5-mod-dom
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41012
Filename: packages/php5-mod-dom_5.6.6-1_ramips_24kec.ipk
Size: 41646
MD5Sum: d5a31525b70569d9dbf4efd0cf5cb4a0
SHA256sum: 3c7a6cc2df1fd4324344c49dbfc7a4a959c761db8200d53d741f3a6f6bc5e559
Description: DOM shared module
Package: php5-mod-exif
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21042
Filename: packages/php5-mod-exif_5.6.6-1_ramips_24kec.ipk
Size: 21443
MD5Sum: 6992ec1def10e351eb7131c736a1f64e
SHA256sum: 5ff160e2cd8e39d9663d36288c890cb5aba8006a8477ad36394f2a2277781b24
Description: EXIF shared module
Package: php5-mod-fileinfo
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243132
Filename: packages/php5-mod-fileinfo_5.6.6-1_ramips_24kec.ipk
Size: 240923
MD5Sum: 81425a5b4239a8d02a115ba4ff59f676
SHA256sum: 45026f6fabe1b189f1f496f75caed5b400973ba4da4262494f3da4916c01d6b4
Description: Fileinfo shared module
Package: php5-mod-ftp
Version: 5.6.6-1
Depends: libc, php5, libopenssl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13576
Filename: packages/php5-mod-ftp_5.6.6-1_ramips_24kec.ipk
Size: 14280
MD5Sum: 47f88bef93592237899a78927d59aa03
SHA256sum: 88ac132609a5c82f77ff8b7caf126a4ccec633fc957b48a5ccaa3715990a9cd3
Description: FTP shared module
Package: php5-mod-gd
Version: 5.6.6-1
Depends: libc, php5, libjpeg, libpng
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93983
Filename: packages/php5-mod-gd_5.6.6-1_ramips_24kec.ipk
Size: 94446
MD5Sum: bc13513695d8bb333181b1aa83869a8e
SHA256sum: f8a3f89e0a8dfa56d16087df2d7c9cf0a1f28e42096950a6b634a43553003aa7
Description: GD graphics shared module
Package: php5-mod-gettext
Version: 5.6.6-1
Depends: libc, php5, libintl-full
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2591
Filename: packages/php5-mod-gettext_5.6.6-1_ramips_24kec.ipk
Size: 3329
MD5Sum: 7764c25f96267bbf0b3a6bcbc237f82a
SHA256sum: d6149bdb10750ff2db4c999c20c06f09bcef1c1251206b1463e7d460f2192892
Description: Gettext shared module
Package: php5-mod-gmp
Version: 5.6.6-1
Depends: libc, php5, libgmp
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12412
Filename: packages/php5-mod-gmp_5.6.6-1_ramips_24kec.ipk
Size: 13140
MD5Sum: 602693edde755802b2046535eed00783
SHA256sum: a042e2027bc87980542b372f0206508659265e8f464cec522a866322f383b92d
Description: GMP shared module
Package: php5-mod-hash
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 88253
Filename: packages/php5-mod-hash_5.6.6-1_ramips_24kec.ipk
Size: 88246
MD5Sum: 2a62d2022a2672dd16177025d999c11a
SHA256sum: a06846320df1a22a96acee4653c5486dea71f83a0cc44dbabae109cf6a57b522
Description: Hash shared module
Package: php5-mod-iconv
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15218
Filename: packages/php5-mod-iconv_5.6.6-1_ramips_24kec.ipk
Size: 15972
MD5Sum: 1d3be2601f9e8ae28c39ca3e6574b4f8
SHA256sum: 7102b4248268d4a0c4aaf54223ba9e20d8250b93d631a9d50f74a4f684365d9e
Description: iConv shared module
Package: php5-mod-json
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11858
Filename: packages/php5-mod-json_5.6.6-1_ramips_24kec.ipk
Size: 12608
MD5Sum: e85dcc86df894ddfa92b5b273277c8d4
SHA256sum: aa02bf4adfb73bc03ef5d4058d028e1b77e5c691f919213ae876ff88b050e89a
Description: JSON shared module
Package: php5-mod-ldap
Version: 5.6.6-1
Depends: libc, php5, libopenldap, libsasl2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17449
Filename: packages/php5-mod-ldap_5.6.6-1_ramips_24kec.ipk
Size: 18192
MD5Sum: bac21457fa13579eb48466a861514fab
SHA256sum: 5b5fe1af2b6dbb60dcb98f5953fe8225bdf69823db3959f7e878ed77d3df92c2
Description: LDAP shared module
Package: php5-mod-mbstring
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 608160
Filename: packages/php5-mod-mbstring_5.6.6-1_ramips_24kec.ipk
Size: 604859
MD5Sum: c0ba953fb5a46ef4207a1da6f2ac89eb
SHA256sum: 1f78faa48992df7c7c0e7ba5300f2c83cf1d430330920c0902dc0fc4c5dd69fe
Description: MBString shared module
Package: php5-mod-mcrypt
Version: 5.6.6-1
Depends: libc, php5, libmcrypt, libltdl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11227
Filename: packages/php5-mod-mcrypt_5.6.6-1_ramips_24kec.ipk
Size: 11931
MD5Sum: f3b5d061ff247735bbb47e44c19c3278
SHA256sum: c0a717237fbcf28633504cbf97785d3d5805b9f172356f41b2b5f95b1155c72b
Description: Mcrypt shared module
Package: php5-mod-mysql
Version: 5.6.6-1
Depends: libc, php5, libmysqlclient
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13763
Filename: packages/php5-mod-mysql_5.6.6-1_ramips_24kec.ipk
Size: 14481
MD5Sum: 67c8eb6bcffb0b356b7b3604bff57504
SHA256sum: 8cd1eb4c6873e632c0325ba100d331fd7e1ddf74e3bbd0d47974a0eec8484449
Description: MySQL shared module
Package: php5-mod-mysqli
Version: 5.6.6-1
Depends: libc, php5, libmysqlclient
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32913
Filename: packages/php5-mod-mysqli_5.6.6-1_ramips_24kec.ipk
Size: 33591
MD5Sum: 6db34bd38f68d822b1df24de6b7754d6
SHA256sum: 742a849eb8f95100dfa2ba7e5ed298749f58bd5e7805b677146e0ba1dede53b2
Description: MySQL Improved Extension shared module
Package: php5-mod-openssl
Version: 5.6.6-1
Depends: libc, php5, libopenssl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42119
Filename: packages/php5-mod-openssl_5.6.6-1_ramips_24kec.ipk
Size: 42630
MD5Sum: f93801b957568435d3e4f79865e7b0ba
SHA256sum: cf0f0161d431f24ccfd0a46223c430da091cefa33d9c8b081b3f05eab85b70b6
Description: OpenSSL shared module
Package: php5-mod-pcntl
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8621
Filename: packages/php5-mod-pcntl_5.6.6-1_ramips_24kec.ipk
Size: 9395
MD5Sum: 70f92b22e9f1fef71bde31ae151e91a2
SHA256sum: e3d60ea5f4d15b73e828d58b708f0e0916011c4581760ded66833bcd86655afc
Description: PCNTL shared module
Package: php5-mod-pdo-mysql
Version: 5.6.6-1
Depends: libc, php5, php5-mod-pdo, libmysqlclient
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9933
Filename: packages/php5-mod-pdo-mysql_5.6.6-1_ramips_24kec.ipk
Size: 10725
MD5Sum: f77d441c176520125a1368ad2457187d
SHA256sum: 8b9c385ee676ae707fe49deba2ef0fb23b499669faa4efaac93f16a4353553a5
Description: PDO driver for MySQL shared module
Package: php5-mod-pdo-pgsql
Version: 5.6.6-1
Depends: libc, php5, php5-mod-pdo, libpq
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13666
Filename: packages/php5-mod-pdo-pgsql_5.6.6-1_ramips_24kec.ipk
Size: 14431
MD5Sum: e12f45017974911b6146b821bd6f64b7
SHA256sum: fa945ac204eeeb40614a0dca2e68dbdaca891c391f341f0fd0b21d1f82c7d9a9
Description: PDO driver for PostgreSQL shared module
Package: php5-mod-pdo-sqlite
Version: 5.6.6-1
Depends: libc, php5, php5-mod-pdo, libsqlite3, librt
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8575
Filename: packages/php5-mod-pdo-sqlite_5.6.6-1_ramips_24kec.ipk
Size: 9369
MD5Sum: 13b3b84afab23b8f7aef8fdb167b9b3c
SHA256sum: 2ecca5b8ed14e7cb72eda14d4668c1cadabd90f22fbe14f6d0622ae1dec03489
Description: PDO driver for SQLite 3.x shared module
Package: php5-mod-pdo
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33040
Filename: packages/php5-mod-pdo_5.6.6-1_ramips_24kec.ipk
Size: 33708
MD5Sum: 33bf1ddab5df484289be85bd3769a294
SHA256sum: b13db71e409960f0da63147bd579ee61352de443a073bbf4ff4dfea82e30f442
Description: PHP Data Objects shared module
Package: php5-mod-pgsql
Version: 5.6.6-1
Depends: libc, php5, libpq
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34570
Filename: packages/php5-mod-pgsql_5.6.6-1_ramips_24kec.ipk
Size: 35163
MD5Sum: 4fe117ef851b5b7923b88b83bfecbe2f
SHA256sum: c9acfba71213ec6eab4b63ee5f35389a03a5208e24294b4cefbdb198874a0ffb
Description: PostgreSQL shared module
Package: php5-mod-session
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24545
Filename: packages/php5-mod-session_5.6.6-1_ramips_24kec.ipk
Size: 25262
MD5Sum: 296b0631e3706a09523f5a104a45c6f7
SHA256sum: 76c1a679c908ff2c81ecd024b9a8cdd841258f97da2e6acb60ce804fcdc7b1ba
Description: Session shared module
Package: php5-mod-shmop
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3271
Filename: packages/php5-mod-shmop_5.6.6-1_ramips_24kec.ipk
Size: 4005
MD5Sum: a51a1634cec4746b3c9eeeeea276bd97
SHA256sum: 54322fc8b72919225c8ea5588095de8b74931b5c932afadb443e81130f321e45
Description: Shared Memory shared module
Package: php5-mod-simplexml
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15718
Filename: packages/php5-mod-simplexml_5.6.6-1_ramips_24kec.ipk
Size: 16446
MD5Sum: e33407033a9dada7c4b45da6966d0d2d
SHA256sum: f6fe31d8c3b0300a1c0e4f0d5149412a583f240e57b80342611ddc92128b4fa3
Description: SimpleXML shared module
Package: php5-mod-soap
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 103273
Filename: packages/php5-mod-soap_5.6.6-1_ramips_24kec.ipk
Size: 103994
MD5Sum: d2be635a092ddbc4332eff597c94d752
SHA256sum: 0a90c2b7d7fcce79a74452a99d0a18007a4bb4d962257161a28ffb0814a11bcf
Description: SOAP shared module
Package: php5-mod-sockets
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26213
Filename: packages/php5-mod-sockets_5.6.6-1_ramips_24kec.ipk
Size: 26899
MD5Sum: d15aab318da966cd18f11b3def73fc4f
SHA256sum: fd8595996cb75fa693d2bb3a2690438f5c60765cb234a1ca797cd63cc49e8e39
Description: Sockets shared module
Package: php5-mod-sqlite3
Version: 5.6.6-1
Depends: libc, php5, libsqlite3
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13628
Filename: packages/php5-mod-sqlite3_5.6.6-1_ramips_24kec.ipk
Size: 14344
MD5Sum: 4e45ced086f2f37dc46b31c502f5f574
SHA256sum: 02e1be41b162d507cee56f301dc7d7c2ebaccc6a03623b06775f0abbc9f36334
Description: SQLite3 shared module
Package: php5-mod-sysvmsg
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5024
Filename: packages/php5-mod-sysvmsg_5.6.6-1_ramips_24kec.ipk
Size: 5764
MD5Sum: c59f9917993b31f93ea4b32d27c829bb
SHA256sum: fce70e7e4180693c5821ad71d8f907395e7b5410bb1fc6b5dcb91faa150c68ad
Description: System V messages shared module
Package: php5-mod-sysvsem
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2963
Filename: packages/php5-mod-sysvsem_5.6.6-1_ramips_24kec.ipk
Size: 3702
MD5Sum: f21aa68043967ef4aa2e077bbfd9a090
SHA256sum: e286538c19a4ef3c1ef1d548bbb3f6dd2995c740c1903e2f9502a1bdabc806e8
Description: System V shared memory shared module
Package: php5-mod-sysvshm
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3922
Filename: packages/php5-mod-sysvshm_5.6.6-1_ramips_24kec.ipk
Size: 4670
MD5Sum: 54ed0fec4c01104cdf62ba001ad1f328
SHA256sum: 42503d4e2a3744afb29e7ed3b009a4b0ed42b8938cbf2019c3786b3a23043a49
Description: System V semaphore shared module
Package: php5-mod-tokenizer
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4921
Filename: packages/php5-mod-tokenizer_5.6.6-1_ramips_24kec.ipk
Size: 5672
MD5Sum: b2ca1abd299c7ede87328106f642db79
SHA256sum: 3276fec3a5d1886c6dba44e8cdce5816235cd7a951298672635cd36920097055
Description: Tokenizer shared module
Package: php5-mod-xml
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14139
Filename: packages/php5-mod-xml_5.6.6-1_ramips_24kec.ipk
Size: 14862
MD5Sum: 514d1a935e98cbe0feb4e8e8b097d21c
SHA256sum: fac2f33856defbe31e04f072a9840c8d323ed1d53786d917e090e22e1017ba14
Description: XML shared module
Package: php5-mod-xmlreader
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8366
Filename: packages/php5-mod-xmlreader_5.6.6-1_ramips_24kec.ipk
Size: 9147
MD5Sum: 1ae39b718aa9ef3fac044e92e086d414
SHA256sum: aafcbb78136a0fbc827fc3f64ddf7e370fee4af13240ac128283419027d60446
Description: XMLReader shared module
Package: php5-mod-xmlwriter
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8552
Filename: packages/php5-mod-xmlwriter_5.6.6-1_ramips_24kec.ipk
Size: 9237
MD5Sum: 41964183d31f28cf1e8164c5fb4f497c
SHA256sum: 53553173982f8ae7b07de7e54020bb66900fcf34956d4485788f1b8229868c73
Description: XMLWriter shared module
Package: php5-mod-zip
Version: 5.6.6-1
Depends: libc, php5, zlib
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41929
Filename: packages/php5-mod-zip_5.6.6-1_ramips_24kec.ipk
Size: 42630
MD5Sum: 27c3e8243a13d1f47289ad787607319e
SHA256sum: 48a1ed36cf02fde38503b0301440723481595e03d2247bd4e4a9a31ce7c2842b
Description: ZIP shared module
Package: php5
Version: 5.6.6-1
Depends: libc, libpcre, zlib, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3306
Filename: packages/php5_5.6.6-1_ramips_24kec.ipk
Size: 4219
MD5Sum: 4af2bdbbe71dbed1a3375e07c21b0b71
SHA256sum: 0ce7cd19abcfabe1ff4a099beb33c4dea8341a7a0038c242793256959338d215
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains only the PHP config file. You must actually choose
your PHP flavour (cli, cgi or fastcgi).
Package: picocom
Version: 1.7-1
Depends: libc
Source: feeds/packages/utils/picocom
License: GPL-2.0+
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10375
Filename: packages/picocom_1.7-1_ramips_24kec.ipk
Size: 11101
MD5Sum: 721c7a5496088ffe47ee25d040b2a3ab
SHA256sum: fe2756ce9ad54efd3c55b215f202e111ac287e111758ec502c8318d5b8c10f1c
Description: minimal dumb-terminal emulation program
Package: polipo
Version: 1.1.1-1
Depends: libc
Source: feeds/packages/net/polipo
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99642
Filename: packages/polipo_1.1.1-1_ramips_24kec.ipk
Size: 100363
MD5Sum: f07c68cbc89be26fb93044a75d075ef5
SHA256sum: 7913fa57eafb535dc8aef88c1ad2528e326d994341f89fe545419a2af073b707
Description: Polipo is a small and fast caching web proxy (a web cache, an HTTP proxy,
a proxy server). While Polipo was designed to be used by one person or a
small group of people, there is nothing that prevents it from being used
by a larger group.
Package: portaudio
Version: 19_20140130-1
Depends: libc, alsa-lib, libpthread, librt
Source: feeds/packages/sound/portaudio
License: MIT
LicenseFiles: LICENSE.txt
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48497
Filename: packages/portaudio_19_20140130-1_ramips_24kec.ipk
Size: 49581
MD5Sum: 15a4d62aede6bbb2866ebd830e430a4b
SHA256sum: 1c9ed5c98e761cf691ee26179c65b77346895bb82a106c2f194dd2db80268254
Description: PortAudio is a free, cross-platform, open-source, audio I/O library. It lets
you write simple audio programs in 'C' or C++ that will compile and run on many
platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is
intended to promote the exchange of audio software between developers on
different platforms. Many applications use PortAudio for Audio I/O.
Package: portmap
Version: 6.0-4
Depends: libc, libwrap, librpc
Source: feeds/packages/net/portmap
License: BSD-4c
LicenseFiles: portmap.man
Section: net
Require-User: rpc=65533:rpc=65533
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6899
Filename: packages/portmap_6.0-4_ramips_24kec.ipk
Size: 7727
MD5Sum: 48259ddc0f658c6bcd24167f1397dbb2
SHA256sum: de78b4bf3c41a54720636a718980ed183eb6afd1e777af6dab2789f38e678503
Description: Portmap is a server that converts RPC (Remote Procedure Call) program
numbers into DARPA protocol port numbers.
Package: pos2kml
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 284726
Filename: packages/pos2kml_2.4.2_p9_ramips_24kec.ipk
Size: 285229
MD5Sum: 9b21a2f58e217829c8e05e92433ad9ed
SHA256sum: a8c7d54c03eba3759cb7056e928145b91779bafbd4564cc7da4204e4b3adeebe
Description: Solution to KML converter
Package: postfix
Version: 3.0.0-1
Depends: libc, libopenssl, libsasl2, libopenldap, libpcre
Source: feeds/packages/mail/postfix
License: IPL-1.0
LicenseFiles: LICENSE
Section: mail
Maintainer: Denis Shulyaka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3833072
Filename: packages/postfix_3.0.0-1_ramips_24kec.ipk
Size: 3824329
MD5Sum: 5a376e85d40f0955d36811c93dc1bee5
SHA256sum: 9abb32758aa00cdb1fb9bb504efb0b299169cf9c1bf31e4c49087ade477ee132
Description: Postfix is Wietse Venema's mailer that started life as an alternative to the widely-used Sendmail program. Postfix attempts to be fast, easy to administer, and secure, while at the same time being sendmail compatible enough to not upset existing users. Thus, the outside has a sendmail-ish flavor, but the inside is completely different.
Package: privoxy
Version: 3.0.23-3
Depends: libc, libpcre, libpthread, zlib
Source: feeds/packages/net/privoxy
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
Require-User: privoxy=8118:privoxy=8118
Maintainer: [email protected]
Architecture: ramips_24kec
Installed-Size: 175846
Filename: packages/privoxy_3.0.23-3_ramips_24kec.ipk
Size: 176585
MD5Sum: 2e90eee92a1f7af18b0ea03f9e432ab5
SHA256sum: 88061baeaafc7e563248eeac8760d7979d7203b2852d7c0f9d53db1827f79190
Description: Privoxy WEB Proxy - Homepage: www.privoxy.org
Package: procps-free
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3284
Filename: packages/procps-free_3.2.8-1_ramips_24kec.ipk
Size: 4050
MD5Sum: 96a3d6c668ae2df2ed5f5e6071c2dfd1
SHA256sum: 2575a6f0ab6478ccfeebaf9d75e25b4ab55c118a04cd3277a362bde5168b325f
Description: Installs the applet free.
Package: procps-pgrep
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5981
Filename: packages/procps-pgrep_3.2.8-1_ramips_24kec.ipk
Size: 6696
MD5Sum: e4c28a6e31f08746244cac262ef9a2d0
SHA256sum: 7c114322d23b51db16cb8f1e1340f5af186f8f9da60d590a96ef518400b4995a
Description: Installs the applet pgrep.
Package: procps-pkill
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5982
Filename: packages/procps-pkill_3.2.8-1_ramips_24kec.ipk
Size: 6693
MD5Sum: 49f06f2bca9dc1dd0b60a01a03322bd0
SHA256sum: 3f254b65dea7de34981e28495b126c2d0759a3a918e49e9e14669cdf31b2efaa
Description: Installs the applet pkill.
Package: procps-pmap
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4565
Filename: packages/procps-pmap_3.2.8-1_ramips_24kec.ipk
Size: 5282
MD5Sum: 950d581a3d97a377aa6a36da885c09ce
SHA256sum: 144045f5f826e9b1918025bff73cdd78c6181c8455a8ca2a696655e5a8b0ed03
Description: Installs the applet pmap.
Package: procps-ps
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30935
Filename: packages/procps-ps_3.2.8-1_ramips_24kec.ipk
Size: 31637
MD5Sum: 96ab3af912186a16c5d9dcbd729867bc
SHA256sum: 677833d764b5e4775106cd06c4128ab21a5a63c6ae2d541508fc56565eeccf71
Description: Installs the applet ps.
Package: procps-pwdx
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2110
Filename: packages/procps-pwdx_3.2.8-1_ramips_24kec.ipk
Size: 2863
MD5Sum: 83075b3f907c7f8fd3796cfccedd5387
SHA256sum: 00b6914b1ac2ce722bfb59bb628b4967e24730e12376378922e867f9ef5c0c3e
Description: Installs the applet pwdx.
Package: procps-skill
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6124
Filename: packages/procps-skill_3.2.8-1_ramips_24kec.ipk
Size: 6824
MD5Sum: 2586fa2152beb89aff3d076882855a77
SHA256sum: 6f2c768b5eebe296a800c873c674ee16b7efb878bea5fcaa240f21817f80ec0d
Description: Installs the applet skill.
Package: procps-slabtop
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4617
Filename: packages/procps-slabtop_3.2.8-1_ramips_24kec.ipk
Size: 5335
MD5Sum: 17a4309baa5333f89ef1eacaa4062759
SHA256sum: 80ef9d59243d494803cddbeb46dd5435db52acd371e4481759916777befa8217
Description: Installs the applet slabtop.
Package: procps-snice
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6124
Filename: packages/procps-snice_3.2.8-1_ramips_24kec.ipk
Size: 6824
MD5Sum: 4809bce6ab4264e2f7a968d7edb33732
SHA256sum: 4457db8fe2d254fad3f32ed7da21900566254d5461118f6867e00d5771da957a
Description: Installs the applet snice.
Package: procps-tload
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3117
Filename: packages/procps-tload_3.2.8-1_ramips_24kec.ipk
Size: 3883
MD5Sum: 080455b7005b29394e3c77cf6bfbf673
SHA256sum: f21aa9f8c864ef90217048f0b7d964507791b3941126d915e3951db567c5d52d
Description: Installs the applet tload.
Package: procps-top
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26483
Filename: packages/procps-top_3.2.8-1_ramips_24kec.ipk
Size: 27229
MD5Sum: 2d981ee3ad90431c2d5047a55e0fe75b
SHA256sum: e38d3734f8ac5ae3aefe728707136eb5fd171ee4335f64a0d9fcb324fa933108
Description: Installs the applet top.
Package: procps-vmstat
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8248
Filename: packages/procps-vmstat_3.2.8-1_ramips_24kec.ipk
Size: 9005
MD5Sum: 0a92a14a3813c4cd0b45636e93605fa3
SHA256sum: 7a6c9c8b89af621325b30c30223f36f1f50d9dd9508cbc9006bd4b782d01daca
Description: Installs the applet vmstat.
Package: procps-w
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4538
Filename: packages/procps-w_3.2.8-1_ramips_24kec.ipk
Size: 5258
MD5Sum: 25653c9e665063bf3505efe1856d0d4d
SHA256sum: acdd24feae8baa3522d02c66d60e7c873906c02cd57a8e8b655b7fad2e057ee6
Description: Installs the applet w.
Package: procps-watch
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4486
Filename: packages/procps-watch_3.2.8-1_ramips_24kec.ipk
Size: 5207
MD5Sum: 3415861414be2ba8d153a274664fea90
SHA256sum: d05a9ddb93f128f498af2057737c82849742ab603edbf05fa109ad5162364022
Description: Installs the applet watch.
Package: procps
Version: 3.2.8-1
Depends: libc, libncurses
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24955
Filename: packages/procps_3.2.8-1_ramips_24kec.ipk
Size: 25678
MD5Sum: 9ba9eba092b2f4d379dbbd87436cf769
SHA256sum: 30e5dcebf8c87472360eba89deba3d7400edc2b9610001e75e67ec3ab8b0e381
Description: procps is the package that has a bunch of small useful utilities that give
information about processes using the /proc filesystem. The package
includes the programs ps, top, vmstat, w, kill, free, slabtop, and skill.
Package: prosody
Version: 0.9.7-2
Depends: libc, luafilesystem, libidn, luaexpat, luasec, libopenssl, libidn, liblua
Source: feeds/packages/net/prosody
License: MIT/X11
Section: net
Require-User: prosody=54:prosody=54
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 223067
Filename: packages/prosody_0.9.7-2_ramips_24kec.ipk
Size: 224207
MD5Sum: 1e5cba4a667d11a87c116f5d4b6c7c01
SHA256sum: 4b1d1d48a1012627f0c33bef1b82329e206e53fc1525c8e84808cba96ff81ffc
Description: Prosody is an exciting new server for Jabber/XMPP
written in Lua. It aims to be easy to use, and light
on resources
Package: protobuf
Version: 2.5.0-1
Depends: libc, zlib, libpthread, libstdcpp
Source: feeds/packages/libs/protobuf
Section: libs
Maintainer: Obinou <[email protected]>
Architecture: ramips_24kec
Installed-Size: 505715
Filename: packages/protobuf_2.5.0-1_ramips_24kec.ipk
Size: 505968
MD5Sum: 801c03c1c0275a053ee101918fa9dea1
SHA256sum: 2c3a2d1b98cfee418ba5363f499b3996fb7c5dabfdb0f4997eede506f4942613
Description: Protocol Buffers are a way of encoding structured data in an efficient
yet extensible format. Google uses Protocol Buffers for almost all
of its internal RPC protocols and file formats.
Package: pthsem
Version: 2.0.8-3
Depends: libc
Source: feeds/packages/libs/pthsem
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25749
Filename: packages/pthsem_2.0.8-3_ramips_24kec.ipk
Size: 26550
MD5Sum: fbdbc12c2a7ce1ebfafc7a6366ab5f63
SHA256sum: 71e7c3b784a7296ee6f97dc3b3f7a60e01ef72b75c3513661b73956639b14069
Description: GNU pth is a user mode multi threading library.
pthsem is an extend version, with support for semaphores added. It can be installed parallel to a normal pth.
Package: pv
Version: 1.5.3-1
Depends: libc
Source: feeds/packages/utils/pv
License: Artistic-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22084
Filename: packages/pv_1.5.3-1_ramips_24kec.ipk
Size: 22931
MD5Sum: 048039bd030f9533d0ebb6d99e34ab57
SHA256sum: 690b9d54139aac9a8243d6153dfdcff00bdbed43ec5c66b345764859535b4bcd
Description: Pipe Viewer is a terminal-based tool for monitoring the progress of data
through a pipeline. It can be inserted into any normal pipeline between
two processes to give a visual indication of how quickly data is passing
through, how long it has taken, how near to completion it is, and an
estimate of how long it will be until completion.
Package: python-base
Version: 2.7.9-5
Depends: libc, libpthread, zlib
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 694984
Filename: packages/python-base_2.7.9-5_ramips_24kec.ipk
Size: 692979
MD5Sum: 366bf6821ea3d416ea82e34b4620ddd7
SHA256sum: 5ee44cbbc7be2d2c8c10f5ff3eb6250be9422609d3ae177e65370aa3873eb697
Description: This package contains only the interpreter and the bare minimum
for the interpreter to start.
Package: python-codecs
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 844744
Filename: packages/python-codecs_2.7.9-5_ramips_24kec.ipk
Size: 823396
MD5Sum: fb1509a7a2441915967dff5b7b5652c1
SHA256sum: cb7fcc4bf5ded0729291b3b619b3000fa33a41f9317bf5eb8f8a3d9c8f058a77
Description: Python 2.7 codecs + unicode support
Package: python-compiler
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38066
Filename: packages/python-compiler_2.7.9-5_ramips_24kec.ipk
Size: 38977
MD5Sum: 057d33c3a2aa2cb021deef044f86e775
SHA256sum: 80347a238f35fd62042405820e3bb3aeacb267f88d0aa3c01ef7270eb27cd7c0
Description: Python 2.7 compiler module
Package: python-ctypes
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99190
Filename: packages/python-ctypes_2.7.9-5_ramips_24kec.ipk
Size: 100060
MD5Sum: 99dabe0885de651793e6ce1658d4759c
SHA256sum: 2cf98cbc63d6b4130f3a59075beb9e7e8cbc78e8ebc1eea2a945a63fdbbfe311
Description: Python 2.7 ctypes module
Package: python-db
Version: 2.7.9-5
Depends: libc, python-light, libdb47
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100834
Filename: packages/python-db_2.7.9-5_ramips_24kec.ipk
Size: 101394
MD5Sum: f50ba857f431083efd46e96cab72a203
SHA256sum: 15ea7b991ac0728ad90659a6d4950336e6f8d355c31031a6639abd7107afcb3f
Description: Python 2.7 db module
Package: python-decimal
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47101
Filename: packages/python-decimal_2.7.9-5_ramips_24kec.ipk
Size: 48026
MD5Sum: 9eb2384c9eebfe2f853ac88d0c985576
SHA256sum: 49e0ca0a1903eaf034662f67a9a7e6c6d4af4bef6e09c641a207f7daa3ec2a22
Description: Python 2.7 decimal module
Package: python-distutils
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 541746
Filename: packages/python-distutils_2.7.9-5_ramips_24kec.ipk
Size: 542624
MD5Sum: ecb220b8baa23c8f9df3735893271978
SHA256sum: e05490ec4e86c5abf386b95ec05177e131ef0b806151d3d170419442a0e5e5d7
Description: Python 2.7 distutils
Package: python-dns
Version: 1.12.0-1
Depends: libc, python
Source: feeds/packages/lang/python-dns
License: ISC
LicenseFiles: LICENSE
Section: language-python
Maintainer: Denis Shulyaka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90350
Filename: packages/python-dns_1.12.0-1_ramips_24kec.ipk
Size: 91298
MD5Sum: 3e62a08cc03dc45610c645a7a9a83bc6
SHA256sum: fc43247f74fdae20ee45452981c9739d79d5c08414c9678abb480976fb70c2a1
Description: dnspython is a DNS toolkit for Python. It supports almost all record types. It can be used for queries, zone transfers, and dynamic updates. It supports TSIG authenticated messages and EDNS0.
Package: python-email
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 142425
Filename: packages/python-email_2.7.9-5_ramips_24kec.ipk
Size: 143296
MD5Sum: e56ea0581df3cdf97c0fccf080cc1683
SHA256sum: de396fd947ce614e43e4ee510aac0f9e17f3bba7984bb148c8d39a15abd01856
Description: Python 2.7 email module
Package: python-gdbm
Version: 2.7.9-5
Depends: libc, python-light, libgdbm
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5578
Filename: packages/python-gdbm_2.7.9-5_ramips_24kec.ipk
Size: 6389
MD5Sum: ea0cd73db215d3c4595360fea16588bb
SHA256sum: 99d7f9f9aff900f47eae04d09106a95e8854fe9993c9b2bc5ddd7f3a80e4f8d7
Description: Python 2.7 gdbm module
Package: python-imglib
Version: 1.1.7-1
Depends: libc, python, libfreetype, libjpeg, zlib
Source: feeds/packages/lang/python-imglib
License: CUSTOM
LicenseFiles: README
Section: language-python
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 259331
Filename: packages/python-imglib_1.1.7-1_ramips_24kec.ipk
Size: 259634
MD5Sum: 7be965345bfd87370c25a4b9726721da
SHA256sum: a5f7f7214ba9c6646195765d23ea8a6a1dde5915b0fd9e6126090a1c15616d62
Description: The Python Imaging Library adds image processing capabilities to your
Python interpreter.
This library provides extensive file format support, an efficient
internal representation, and fairly powerful image processing
capabilities.
The core image library is designed for fast access to data stored in a
few basic pixel formats. It should provide a solid foundation for a
general image processing tool.
Package: python-light
Version: 2.7.9-5
Depends: libc, python-base, libffi, libbz2
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1233847
Filename: packages/python-light_2.7.9-5_ramips_24kec.ipk
Size: 1233824
MD5Sum: 255803538a05d26d4483dce42dc810c4
SHA256sum: 69344a3f6cf8daaa7e5cf186a3fc3f7d446f18424a97c0ea53c7b7ca943333f1
Description: This package is essentially the python-base package plus
a few of the rarely used (and big) libraries stripped out
into separate packages.
Package: python-logging
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37240
Filename: packages/python-logging_2.7.9-5_ramips_24kec.ipk
Size: 38143
MD5Sum: 4575ae2df386787b11b11eafd1e218c6
SHA256sum: ba18a173e64931975ee25ffe09cdb994cec41849931d1eae5322fce50d5e5415
Description: Python 2.7 logging module
Package: python-multiprocessing
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46784
Filename: packages/python-multiprocessing_2.7.9-5_ramips_24kec.ipk
Size: 47586
MD5Sum: 0837417cb546137766c4f3d98f9edfcd
SHA256sum: 0ecd4be4731517903802c0a87c7328073f2a3db281edcd90331d0623007743ea
Description: Python 2.7 multiprocessing
Package: python-mysql
Version: 1.2.5-1
Depends: libc, python, libmysqlclient
Source: feeds/packages/lang/python-mysql
License: GPL-2.0
Section: lang
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36337
Filename: packages/python-mysql_1.2.5-1_ramips_24kec.ipk
Size: 37197
MD5Sum: 310b197a784784e5bbfd12b64e1f2597
SHA256sum: 73cedbaf1ce9977d5612c5e704fea1a23d44e670b602604adb29565f1b6fa090
Description: MySQLdb is an thread-compatible interface to the popular MySQL database
server that provides the Python database API.
Package: python-ncurses
Version: 2.7.9-5
Depends: libc, python-light, libncursesw
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25765
Filename: packages/python-ncurses_2.7.9-5_ramips_24kec.ipk
Size: 26383
MD5Sum: 2f850fdebd5a47a967f8f790868acb7b
SHA256sum: 27f053de259167d0478cc9104d1d821b71e323c962193e68362276715e8e96c9
Description: Python 2.7 ncurses module
Package: python-openssl
Version: 2.7.9-5
Depends: libc, python-light, libopenssl
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32207
Filename: packages/python-openssl_2.7.9-5_ramips_24kec.ipk
Size: 32836
MD5Sum: 5bdfa9c623e200840505d3bcb9a884a8
SHA256sum: a589aac6c0f67561c2175e3563ea86dd7b2cbae28d4b2f7b11e80083e9181120
Description: Python 2.7 SSL module
Package: python-pip
Version: 1.5.6-1
Depends: libc, python, python-setuptools
Source: feeds/packages/lang/python-pip
Section: lang
Architecture: ramips_24kec
Installed-Size: 739426
Filename: packages/python-pip_1.5.6-1_ramips_24kec.ipk
Size: 726486
MD5Sum: 7a8accbc63a127f5c31e26b9e0a012b8
SHA256sum: b6e385f9df4d07a2bd2f8bd621e40adc4bdaa1157a89816a3b4c32579a6123b5
Description: A tool for installing and managing Python packages.
Package: python-pydoc
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 164555
Filename: packages/python-pydoc_2.7.9-5_ramips_24kec.ipk
Size: 165456
MD5Sum: 41ece3a13d2c3ac865530ef43f95a826
SHA256sum: 2f607dd64ca1472d689659e366e75c7f9aefe14d842d10031b79c67f0c309f2e
Description: Python 2.7 pydoc module
Package: python-setuptools
Version: 7.0-1
Depends: libc, python
Source: feeds/packages/lang/python-setuptools
Section: lang
Architecture: ramips_24kec
Installed-Size: 203249
Filename: packages/python-setuptools_7.0-1_ramips_24kec.ipk
Size: 204095
MD5Sum: b005e021ea8a2a95c167092f8124695e
SHA256sum: e5bf9951d5e8488bc018859ede83558d55dce6757e88761f148e1451dde83ef1
Description: Easily download, build, install, upgrade, and uninstall Python packages
Package: python-sqlite3
Version: 2.7.9-5
Depends: libc, python-light, libsqlite3
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42296
Filename: packages/python-sqlite3_2.7.9-5_ramips_24kec.ipk
Size: 43136
MD5Sum: 7a8b3eecb2d1c2e472ee538e356f45aa
SHA256sum: 53d4890dec29b0530dd42e9c026ea2e910dbbd18b5ef25d70b950b97e5673df7
Description: Python 2.7 sqlite3 module
Package: python-unittest
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53849
Filename: packages/python-unittest_2.7.9-5_ramips_24kec.ipk
Size: 54730
MD5Sum: f9f6f3c00a220949cc90234bfe0755e0
SHA256sum: 22579de43362140694a5ea97160eac1f2e7fcbc6b55498a8b716878bfcaf2130
Description: Python 2.7 unittest module
Package: python-xml
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 156221
Filename: packages/python-xml_2.7.9-5_ramips_24kec.ipk
Size: 156690
MD5Sum: 4dfb6b69e5371a25a8c41bad1427e54c
SHA256sum: 7eb5e169905a66b6581702fbe5573783ad793b61430a87bbe10128f2d9acddd4
Description: Python 2.7 xml libs
Package: python3-asyncio
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78982
Filename: packages/python3-asyncio_3.4.3-2_ramips_24kec.ipk
Size: 79947
MD5Sum: 68991cc44e37f4da4ec6a25fbc36c60e
SHA256sum: 92578b0eef142b180f79322840f09a887b52419c21b9160170cb13f2acd8933c
Description: Python 3.4 asyncio module
Package: python3-base
Version: 3.4.3-2
Depends: libc, libpthread, zlib
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1120360
Filename: packages/python3-base_3.4.3-2_ramips_24kec.ipk
Size: 1109043
MD5Sum: 57c24390e0fad85c4226a47e80a155bf
SHA256sum: e49d70d9e67810bad6d96b10e8a2f2b24517b89728056684e83a837c4c7f414b
Description: This package contains only the interpreter and the bare minimum
for the interpreter to start.
Package: python3-bottle
Version: 0.12.8-1
Depends: libc, python3
Source: feeds/packages/lang/python3-bottle
License: MIT
Section: lang
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42619
Filename: packages/python3-bottle_0.12.8-1_ramips_24kec.ipk
Size: 43598
MD5Sum: 0e678635f8cc72534894c95ed661dcb1
SHA256sum: b7a2c3e4d13c85c4ee031d982c1e7a6c19ce665f0bd44b26e6c171010356df97
Description: Bottle is a fast, simple and lightweight WSGI micro web-framework for Python.
It is distributed as a single file module and has no dependencies other than the
Python Standard Library.
Package: python3-codecs
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 668295
Filename: packages/python3-codecs_3.4.3-2_ramips_24kec.ipk
Size: 650855
MD5Sum: 4a86635421af9799b7c77215be9b9986
SHA256sum: 7a5823ce0ba71eaecd2074ab8916b88379b12f483f58082c2a716abf33c9ce22
Description: Python 3.4 codecs + unicode support
Package: python3-ctypes
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 96774
Filename: packages/python3-ctypes_3.4.3-2_ramips_24kec.ipk
Size: 97520
MD5Sum: b54438000824a80076ca9df200b1ff74
SHA256sum: 0c0d898204da340c3346407eb461ba9014d6cdba0a8fcb143f8291744780c068
Description: Python 3.4 ctypes module
Package: python3-dbm
Version: 3.4.3-2
Depends: libc, python3-light, libdb47
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9795
Filename: packages/python3-dbm_3.4.3-2_ramips_24kec.ipk
Size: 10604
MD5Sum: 812a1a7ed12949db5faa0098096f1b5b
SHA256sum: cbbc0dd7ae36bb612997faabd9d42b8c703563e96e964f507ab9b013b54cea78
Description: Python 3.4 dbm module
Package: python3-decimal
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128966
Filename: packages/python3-decimal_3.4.3-2_ramips_24kec.ipk
Size: 129375
MD5Sum: 60244544b9a07910aa3c891b456b7b1c
SHA256sum: 11604168bb3ec86d4b866be1e85c217c463e4ce85c9a5de11eb6a91ce7d822b4
Description: Python 3.4 decimal module
Package: python3-distutils
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 771621
Filename: packages/python3-distutils_3.4.3-2_ramips_24kec.ipk
Size: 772495
MD5Sum: f9575ef75b3b77910800e6b78782871a
SHA256sum: 96b0c100c23ad32dddfb2cfbcce7a016d827f5d1e90444b90a060b6c099073b4
Description: Python 3.4 distutils module
Package: python3-email
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94326
Filename: packages/python3-email_3.4.3-2_ramips_24kec.ipk
Size: 95233
MD5Sum: 15fd63a77276670f5329826abd279bf6
SHA256sum: 3b3d15bb91ca1dc5bc3aa6d456c9ab0ac9e2f1c7efb3bec4ced1f5d23f6ee2c5
Description: Python 3.4 email module
Package: python3-gdbm
Version: 3.4.3-2
Depends: libc, python3-light, libgdbm
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5963
Filename: packages/python3-gdbm_3.4.3-2_ramips_24kec.ipk
Size: 6773
MD5Sum: 774837bbe1da5767fe469a74823f801b
SHA256sum: 7a4038bb8717a9a7f35c281191c0b6880030815801c565e41b41e554caabfb9e
Description: Python 3.4 gdbm module
Package: python3-light
Version: 3.4.3-2
Depends: libc, python3-base, libffi, libbz2
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1333377
Filename: packages/python3-light_3.4.3-2_ramips_24kec.ipk
Size: 1333207
MD5Sum: 933813352b4f741d71c5f8f5d999192b
SHA256sum: ef52d62c00494ae0d2e6a8c9af27050a55b1c06f822f7c8386acd783a26475a7
Description: This package is essentially the python3-base package plus
a few of the rarely used (and big) libraries stripped out
into separate packages.
Package: python3-logging
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41434
Filename: packages/python3-logging_3.4.3-2_ramips_24kec.ipk
Size: 42337
MD5Sum: cfb7210ddbae197272a0851cc12d76f8
SHA256sum: 3abb14d8092febdddca02f7cf41059879c64f3b3de0da60d9a1907e4d834ba69
Description: Python 3.4 logging module
Package: python3-multiprocessing
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 55574
Filename: packages/python3-multiprocessing_3.4.3-2_ramips_24kec.ipk
Size: 56448
MD5Sum: 65e74b051540f7e43fb9145d3f68bdc6
SHA256sum: e88db934c851ad020cf4db76d703c12bd98c9bda707c7f1f8f7c88ee554a6ae8
Description: Python 3.4 multiprocessing
Package: python3-ncurses
Version: 3.4.3-2
Depends: libc, python3-light, libncursesw
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29322
Filename: packages/python3-ncurses_3.4.3-2_ramips_24kec.ipk
Size: 29951
MD5Sum: 99877dd94cc3f08c0e33090332ca5aa9
SHA256sum: dffe6cb05c16ac5d264d7b854c2da3e69467f59acc4e90ac9e6c6c7f4e23d04e
Description: Python 3.4 ncurses module
Package: python3-openssl
Version: 3.4.3-2
Depends: libc, python3-light, libopenssl
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33323
Filename: packages/python3-openssl_3.4.3-2_ramips_24kec.ipk
Size: 33955
MD5Sum: 0c946af969de4fa80d841ae517b9a705
SHA256sum: d85031134721e581f02dbadb4866e12e7daa89bf820f416550b1dd24bec99254
Description: Python 3.4 SSL module
Package: python3-pydoc
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 162876
Filename: packages/python3-pydoc_3.4.3-2_ramips_24kec.ipk
Size: 163813
MD5Sum: f9b8d49374e59ab396a0595e71e7ffae
SHA256sum: 31d9c7491e5dc4f978668ca60782ee0a1ad738b6a4bd15b42c85ef9a2b44cf2b
Description: Python 3.4 pydoc module
Package: python3-sqlite3
Version: 3.4.3-2
Depends: libc, python3-light, libsqlite3
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42293
Filename: packages/python3-sqlite3_3.4.3-2_ramips_24kec.ipk
Size: 43132
MD5Sum: 670ba75590db4dbcfc0c9a6f9723e1cf
SHA256sum: 8d5fc820c46b9095b6cd4dabb1579ccdcc7a4f01a4d2f08b85ad3557389926ee
Description: Python 3.4 sqlite3 module
Package: python3-unittest
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 110530
Filename: packages/python3-unittest_3.4.3-2_ramips_24kec.ipk
Size: 111457
MD5Sum: 6f63988d1b73d127f224551abf254e17
SHA256sum: 0db129c6920ac623592914ee14303e08211b448ee983d1c782cf3529aca3e786
Description: Python 3.4 unittest module
Package: python3-xml
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 160956
Filename: packages/python3-xml_3.4.3-2_ramips_24kec.ipk
Size: 161510
MD5Sum: 961660baad459312147b0690967627b1
SHA256sum: 3e0bafb5468dd89080d9e5305f96cdfc12b7b5fbc81b9563fe645104d05f8603
Description: Python 3.4 xml libs
Package: python3
Version: 3.4.3-2
Depends: libc, python3-light, python3-asyncio, python3-codecs, python3-ctypes, python3-dbm, python3-decimal, python3-distutils, python3-email, python3-gdbm, python3-logging, python3-multiprocessing, python3-ncurses, python3-openssl, python3-pydoc, python3-sqlite3, python3-unittest, python3-xml
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/python3_3.4.3-2_ramips_24kec.ipk
Size: 1029
MD5Sum: 20efcbece7871e227d632477c526c0f0
SHA256sum: 9eebf3317f382c1a26ef9e42295131935bc82e8222163cd5745ee7439a24d7ba
Description: This package contains the (almost) full Python install.
It's python3-light + all other packages.
Package: python
Version: 2.7.9-5
Depends: libc, python-light, python-codecs, python-compiler, python-ctypes, python-db, python-decimal, python-distutils, python-email, python-gdbm, python-logging, python-multiprocessing, python-ncurses, python-openssl, python-pydoc, python-sqlite3, python-unittest, python-xml
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/python_2.7.9-5_ramips_24kec.ipk
Size: 1023
MD5Sum: c3a902507b9dd5ea823f4553b69b013e
SHA256sum: 3c10788ffd17b088748e394e302802dfda9f570b79607ff5f49c84d59c88ddce
Description: This package contains the (almost) full Python install.
It's python-light + all other packages.
Package: radsecproxy
Version: 1.6.6-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/radsecproxy
Section: net
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47106
Filename: packages/radsecproxy_1.6.6-1_ramips_24kec.ipk
Size: 47599
MD5Sum: 41e97f3b341d6b8fe387936ca9121090
SHA256sum: eed7acd9de01db58783e13b42a10f086ff9f1421d80fee4e54046bcc42749667
Description: A generic radius proxy for UDP/TLS (RadSec)
Package: redsocks
Version: 0.4-1
Depends: libc, libevent2
Source: feeds/packages/net/redsocks
License: Apache-2.0
Section: net
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34599
Filename: packages/redsocks_0.4-1_ramips_24kec.ipk
Size: 35757
MD5Sum: 7de0ab6cad44c13a48cef13997f05dd0
SHA256sum: 2f77e84b395b9e81d18de4480ce4874cf56fef4ab8bb6634272297c43a74bccb
Description: Redsocks is a daemon running on the local system, that will transparently
tunnel any TCP connection via a remote SOCKS4, SOCKS5 or HTTP proxy server. It
uses the system firewall's redirection facility to intercept TCP connections,
thus the redirection is system-wide, with fine-grained control, and does
not depend on LD_PRELOAD libraries.
Redsocks supports tunneling TCP connections and UDP packets. It has
authentication support for both, SOCKS and HTTP proxies.
Also included is a small DNS server returning answers with the "truncated" flag
set for any UDP query, forcing the resolver to use TCP.
Package: remserial
Version: 1.4-1
Depends: libc
Source: feeds/packages/net/remserial
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5834
Filename: packages/remserial_1.4-1_ramips_24kec.ipk
Size: 6532
MD5Sum: e30bb30a3305231b0fd492cbc6094303
SHA256sum: 6afad6d7f3162889654671f1f0b5c70d3bae6ab57f61d03b9b469f6fe6e8f725
Description: Bridge TCP/IP port with a device
Package: rng-tools
Version: 5-1
Depends: libc
Source: feeds/packages/utils/rng-tools
License: GPLv2
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37320
Filename: packages/rng-tools_5-1_ramips_24kec.ipk
Size: 37194
MD5Sum: 143c4a31476c46d31f7179187c65f31d
SHA256sum: 9e33458e683da6bd3b2f9588058a3d01a608ab05c36658a8ee8e0c0d255d6ee7
Description: Daemon for adding entropy to kernel entropy pool
Package: rnx2rtkp
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 478143
Filename: packages/rnx2rtkp_2.4.2_p9_ramips_24kec.ipk
Size: 478205
MD5Sum: a4e45c26cadb5ae4dcadf6141901564a
SHA256sum: d579f8f2dc2d673f4a6817862a42a5eaf486b15598c7abb9a655134fdd97fc89
Description: Post-Processing Analysis
Package: rpcd-mod-lxc
Version: 20141012
Depends: libc, rpcd, liblxc
Source: feeds/packages/utils/rpcd-mod-lxc
License: ISC
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3060
Filename: packages/rpcd-mod-lxc_20141012_ramips_24kec.ipk
Size: 3762
MD5Sum: c5e027bdebc1b9ccae40a31f7bc93643
SHA256sum: 3734db15f759d81e04898e4929d98e426b463fbe79eda591da92c6b527d05793
Description: LXC rpcd module
Package: rrdcgi1
Version: 1.0.50-2
Depends: libc, librrd1
Source: feeds/packages/utils/rrdtool1
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7069
Filename: packages/rrdcgi1_1.0.50-2_ramips_24kec.ipk
Size: 8253
MD5Sum: 8b4225dba9cea86164caf8ef28574500
SHA256sum: 8ea37a9b46ad747bbcce7c94795b529bbf2445ff1dfd9ab3d5febef0ca8cef13
Description: RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will
not expand over time, and it presents useful graphs by processing the data
to enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put friendly user interface on it.
This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
librrd.so. The library is much smaller compared to the 1.2.x version with
separate dynamic linked libraries.
This package contains the rrdcgi tool used to create web pages containing
RRD graphs based on templates.
Package: rrdtool1
Version: 1.0.50-2
Depends: libc, librrd1
Source: feeds/packages/utils/rrdtool1
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11177
Filename: packages/rrdtool1_1.0.50-2_ramips_24kec.ipk
Size: 12297
MD5Sum: b6efe2af56e515be4219b9f1c166cb38
SHA256sum: a89f696f6210000f2c8d4a47bc3eb601e02bc57bb62c7c30d1055d827a09e054
Description: RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will
not expand over time, and it presents useful graphs by processing the data
to enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put friendly user interface on it.
This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
librrd.so. The library is much smaller compared to the 1.2.x version with
separate dynamic linked libraries.
This package contains command line tools used to manage RRDs.
Package: rsync
Version: 3.1.1-2
Depends: libc, libpopt, zlib
Source: feeds/packages/net/rsync
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153497
Filename: packages/rsync_3.1.1-2_ramips_24kec.ipk
Size: 154278
MD5Sum: 59e6e8a470db2be91288675263a80df2
SHA256sum: 6f10dd9bf6ddc4b0047440ae71b886330d6a30f9bbb3484a15b18166aabec6c5
Description: rsync is a program that allows files to be copied to and from remote machines
in much the same way as rcp. It has many more options than rcp, and uses the
rsync remote-update protocol to greatly speed up file transfers when the
destination file already exists.
The rsync remote-update protocol allows rsync to transfer just the differences
between two sets of files across the network link.
Package: rsyncd
Version: 3.1.1-2
Depends: libc, rsync
Source: feeds/packages/net/rsync
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 578
Filename: packages/rsyncd_3.1.1-2_ramips_24kec.ipk
Size: 1397
MD5Sum: 1fa1541d68add419b0dd09a7829b0672
SHA256sum: 8abc44c13cf57e76ec3bddb6313c725209d440f4e24c9f90d6c9e601846e91bc
Description: rsyncd is a configuration file and initscript to utilize rsync as a daemon. It
uses the same binary as rsync.
Package: rtkrcv
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 593053
Filename: packages/rtkrcv_2.4.2_p9_ramips_24kec.ipk
Size: 593059
MD5Sum: 4a42f3bd2f0bec58b242ee16b11f347b
SHA256sum: 44032cfe91458690fc5b8a6b3d8dffec5f7b49fc0cd2cac8961908fda2d8399a
Description: Real-Time Positioning
Package: rtl-sdr
Version: 2014-02-10
Depends: libc, librt, libpthread, librtlsdr
Source: feeds/packages/utils/rtl-sdr
License: GPLv2
LicenseFiles: COPYING
Section: utils
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43434
Filename: packages/rtl-sdr_2014-02-10_ramips_24kec.ipk
Size: 44319
MD5Sum: f7f436d80d1f4e9cf52c3e34d5ff3409
SHA256sum: f67a44e5aa4c59c35b11dd3564ae27fd9a6e89561a5f6bbdf419125cc16f8ecb
Description: rtl-sdr allows DVB-T dongles based on the Realtek RTL2832U to be used as
an inexpensive SDR.
This package contains the utilities and daemons.
Package: rtorrent-rpc
Version: 0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a
Depends: libc, libcurl, libtorrent, libncursesw, libsigcxx, libpthread, xmlrpc-c-server
Source: feeds/packages/net/rtorrent
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 271569
Filename: packages/rtorrent-rpc_0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a_ramips_24kec.ipk
Size: 271294
MD5Sum: ee701bb0316848d4c5925b5cfd7c8435
SHA256sum: 26faa61911b41ce8d00aed21b322c2565eb0b5d8150a3ea37ab37bb8a0fe6a6e
Description: rTorrent is a BitTorrent client for ncurses, using the libtorrent library.
The client and library is written in C++ with emphasis on speed and
efficiency, while delivering equivalent features to those found in GUI based
clients in an ncurses client.
This package is built with xmlrpc support
Package: rtorrent
Version: 0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a
Depends: libc, libcurl, libtorrent, libncursesw, libsigcxx, libpthread
Source: feeds/packages/net/rtorrent
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 267645
Filename: packages/rtorrent_0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a_ramips_24kec.ipk
Size: 267563
MD5Sum: 3a54c2ac19a11b61f81d15f15d4cbcab
SHA256sum: 949e093a0f4dfab540ecd6165acd25dc9be1220e571fe6c4264bceaa7a15dc1e
Description: rTorrent is a BitTorrent client for ncurses, using the libtorrent library.
The client and library is written in C++ with emphasis on speed and
efficiency, while delivering equivalent features to those found in GUI based
clients in an ncurses client.
This package is built without xmlrpc support
Package: ruby-bigdecimal
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31409
Filename: packages/ruby-bigdecimal_2.2.1-1_ramips_24kec.ipk
Size: 32168
MD5Sum: 6616a921593789f24b81cb67a891f348
SHA256sum: 8bb2c075fef6fa75d240bf10bfd570673a31c750bca20fe8875d61817ee5582a
Description: Provides bigdecimal* files
Package: ruby-cgi
Version: 2.2.1-1
Depends: libc, ruby, ruby-filelib, ruby-pstore
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28634
Filename: packages/ruby-cgi_2.2.1-1_ramips_24kec.ipk
Size: 29415
MD5Sum: a45972025a7fd86b23ce01e682c3e405
SHA256sum: a160dedb622f9567f8328aefdedd8fc390788eda0bf69a10ca6e97aceb510249
Description: Ruby CGI support toolkit
Package: ruby-csv
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns, ruby-datetime, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22835
Filename: packages/ruby-csv_2.2.1-1_ramips_24kec.ipk
Size: 23608
MD5Sum: a79558a14fbb48ae7f399ab358e2a72f
SHA256sum: 35ddd18cf9dac278ea72ee61ee68ef719df15bbbc23693cc6974b8c89eef25ba
Description: Provides csv.rb file
Package: ruby-datetime
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62467
Filename: packages/ruby-datetime_2.2.1-1_ramips_24kec.ipk
Size: 63137
MD5Sum: 956b464cfb1dccf63fba31ce694fb1f9
SHA256sum: 5e83e4a43db83bd49e0ea0e9b1b71021eae6eebde50e5141e2499a94ee48d486
Description: Provides date.rb and time.rb
Package: ruby-dbm
Version: 2.2.1-1
Depends: libc, ruby, libdb47
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7009
Filename: packages/ruby-dbm_2.2.1-1_ramips_24kec.ipk
Size: 7848
MD5Sum: e85c2dd6c69fce7f64ebdfaa52425864
SHA256sum: 6ce715a26eda3b0192e9ec042e506e312e702479f344a1cf5cfa2b50ecba4258
Description: The DBM class provides a wrapper to a Unix-style dbm or Database Manager library.
This package provides dbm.so file.
Package: ruby-debuglib
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread, ruby-prettyprint
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28937
Filename: packages/ruby-debuglib_2.2.1-1_ramips_24kec.ipk
Size: 29578
MD5Sum: 224581dea6fd7e19a1c161f1f4fc939e
SHA256sum: c945cc5a4a044f5b68edcc4e9603b64e8ad30f46f622cbe1e6cbd2b75568f17b
Description: Provides files for debugging:
- benchmark.rb
- debug.rb
- objspace.so
- profile.rb
- profiler.rb
- tracer.rb
Package: ruby-digest
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23876
Filename: packages/ruby-digest_2.2.1-1_ramips_24kec.ipk
Size: 24649
MD5Sum: 270fac03a32476ba85eb52b628e9a960
SHA256sum: 9dfce88b3e158c9c969fb4399e03cca29bd1aa3177044708f9b6051829e15707
Description: Provides digest* files. Can be configured to use OpenSSL or
bundled hash functions.
Package: ruby-drb
Version: 2.2.1-1
Depends: libc, ruby, ruby-filelib, ruby-patterns, ruby-socket
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24869
Filename: packages/ruby-drb_2.2.1-1_ramips_24kec.ipk
Size: 25641
MD5Sum: bdc832d903f17aff20a4ea9a1cd84626
SHA256sum: 27101bd51da3c5e92bb3b0157316843e51111c13cd0383db38b9b37aa72bfa3b
Description: Provides drb* files
Package: ruby-enc-extra
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1388154
Filename: packages/ruby-enc-extra_2.2.1-1_ramips_24kec.ipk
Size: 1258855
MD5Sum: cc5ff978208550f56de0aaa20d23878b
SHA256sum: db8598776dc0efc9dbc47a6b3eb64a03c239a4b422a8bc980a69749024570837
Description: Provides extra encodings not provided by ruby-enc:
- enc/big5.so
- enc/cp949.so
- enc/emacs_mule.so
- enc/euc_kr.so
- enc/euc_tw.so
- enc/gb18030.so
- enc/gb2312.so
- enc/gbk.so
- enc/iso_8859_10.so
- enc/iso_8859_11.so
- enc/iso_8859_13.so
- enc/iso_8859_14.so
- enc/iso_8859_15.so
- enc/iso_8859_16.so
- enc/iso_8859_2.so
- enc/iso_8859_3.so
- enc/iso_8859_4.so
- enc/iso_8859_5.so
- enc/iso_8859_6.so
- enc/iso_8859_7.so
- enc/iso_8859_8.so
- enc/iso_8859_9.so
- enc/koi8_r.so
- enc/koi8_u.so
- enc/shift_jis.so
- enc/trans/big5.so
- enc/trans/chinese.so
- enc/trans/emoji.so
- enc/trans/emoji_iso2022_kddi.so
- enc/trans/emoji_sjis_docomo.so
- enc/trans/emoji_sjis_kddi.so
- enc/trans/emoji_sjis_softbank.so
- enc/trans/escape.so
- enc/trans/gb18030.so
- enc/trans/gbk.so
- enc/trans/iso2022.so
- enc/trans/japanese.so
- enc/trans/japanese_euc.so
- enc/trans/japanese_sjis.so
- enc/trans/korean.so
- enc/trans/single_byte.so
- enc/trans/transdb.so
- enc/trans/utf8_mac.so
- enc/trans/utf_16_32.so
- enc/windows_1251.so
- enc/windows_31j.so
Package: ruby-enc
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9758
Filename: packages/ruby-enc_2.2.1-1_ramips_24kec.ipk
Size: 10627
MD5Sum: 5b71e180614c0d8bfc7de9de5c707c4f
SHA256sum: c8b42ab1482ec467a84a64eb435d4c27218152c2f9e735c538cee0fddf0557db
Description: Provides ruby encoding library for encodings used directly by
libraries in Ruby Standard Library:
- enc/encdb.so
- enc/euc_jp.so
- enc/iso_8859_1.so
- enc/utf_16be.so
- enc/utf_16le.so
- enc/utf_32be.so
- enc/utf_32le.so
FYI: ASCII-8BIT, UTF-7, UTF-8 and US-ASCII are already in Core.
Package: ruby-erb
Version: 2.2.1-1
Depends: libc, ruby, ruby-cgi
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9706
Filename: packages/ruby-erb_2.2.1-1_ramips_24kec.ipk
Size: 10487
MD5Sum: fc91fec7f7d615676f628b34c8e91272
SHA256sum: 8573b0704fe252568b9aac01d75bcb3c0c0ca8c99bd0c65971a73a96260cd3ec
Description: Provides erb* files
Package: ruby-fiddle
Version: 2.2.1-1
Depends: libc, ruby, libffi
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19542
Filename: packages/ruby-fiddle_2.2.1-1_ramips_24kec.ipk
Size: 20319
MD5Sum: 5d4be2c3ed96a1bf779decb5a7453d0c
SHA256sum: 4a16490c073f2e121f029fd2ff75cfbf64c23b98f788f28cd17750ac919e30da
Description: Provides fiddle* files
Package: ruby-filelib
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29166
Filename: packages/ruby-filelib_2.2.1-1_ramips_24kec.ipk
Size: 29973
MD5Sum: d6b76561f8fcd25ecfc1fb3f605f647b
SHA256sum: c86e2542a21f5d9065e9cbc57fa1e7b710234d30847cd918721fbcbac93db0b2
Description: Provides filesystem interaction files, including
path and temp:
- fileutils.rb
- find.rb
- pathname.rb
- pathname.so
- tempfile.rb
- tmpdir.rb
Package: ruby-gdbm
Version: 2.2.1-1
Depends: libc, ruby, libgdbm
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7509
Filename: packages/ruby-gdbm_2.2.1-1_ramips_24kec.ipk
Size: 8298
MD5Sum: 9871221f4d7a3eaa16bdffe147ab0f67
SHA256sum: dd680751dd3217a84ed7bcd214d2963d233d574588fbe43a8664b0b651706d9c
Description: Provides gdbm* files
Package: ruby-gems
Version: 2.2.1-1
Depends: libc, ruby, ruby-net, ruby-rdoc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 217559
Filename: packages/ruby-gems_2.2.1-1_ramips_24kec.ipk
Size: 218502
MD5Sum: 760ad94843501a9ffb3988f3fff653ca
SHA256sum: 5bffcc3202685357b3d31a0060133e0f8724e2198ebc6f28163a68d2a0b73eb9
Description: Provides rubygems for gems usage, download and installation
Package: ruby-io-console
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5576
Filename: packages/ruby-io-console_2.2.1-1_ramips_24kec.ipk
Size: 6298
MD5Sum: f17cdf0f9a4847bb940c461dd58d7290
SHA256sum: bc5c4ed9ca7567745bba81755e33f65e4e97d43dcbb325b9fa19e78084835e01
Description: Provides io-console* files
Package: ruby-irb
Version: 2.2.1-1
Depends: libc, ruby, ruby-debuglib, ruby-filelib, ruby-math
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43278
Filename: packages/ruby-irb_2.2.1-1_ramips_24kec.ipk
Size: 44169
MD5Sum: 0cffadf7c460b852c9fb54837cee6699
SHA256sum: 0dc4c4f031de8a902b4f4ce1329a573c8df330426cfd52b55ece30a8c3b21947
Description: Provides irb* files
Package: ruby-json
Version: 2.2.1-1
Depends: libc, ruby, ruby-datetime, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27218
Filename: packages/ruby-json_2.2.1-1_ramips_24kec.ipk
Size: 28012
MD5Sum: f33c66f896026074bfe306cccf0685a1
SHA256sum: c75bcacfa78cdbdf4d25ef6848faeff843084b5853748e218b17ae5ebb62054f
Description: Provides json* files
Package: ruby-logger
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12863
Filename: packages/ruby-logger_2.2.1-1_ramips_24kec.ipk
Size: 13653
MD5Sum: a32bbdffedebc2e967281cfabe7c7880
SHA256sum: 24e9e4d9bad2fe35b0fe84494db2e7bd1f651162f0e22ab4f36eea8a1f481f8b
Description: Provides log library, including syslog:
- logger.rb
- syslog.so
- syslog/logger.rb
Package: ruby-math
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28259
Filename: packages/ruby-math_2.2.1-1_ramips_24kec.ipk
Size: 29083
MD5Sum: 989b1881286688ed05802b916066e07e
SHA256sum: 475baae41ea9f34a9a7ee215534aebbd4efefffbc78aba882044c2d48cae1ec1
Description: Provides math related files:
- cmath.rb
- complex.rb
- mathn.rb
- mathn/complex.so
- mathn/rational.so
- matrix.rb
- matrix/eigenvalue_decomposition.rb
- matrix/lup_decomposition.rb
- prime.rb
- rational.rb
Package: ruby-minitest
Version: 2.2.1-1
Depends: libc, ruby, ruby-gems
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45183
Filename: packages/ruby-minitest_2.2.1-1_ramips_24kec.ipk
Size: 46038
MD5Sum: a3b9041a0d51c893cddade10e5fc1fc7
SHA256sum: aeea60df3861bf9d88a64a0052a1b00b272708340ffada25ce82f01c13dfc5ac
Description: Provides minitest gem
Package: ruby-misc
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71942
Filename: packages/ruby-misc_2.2.1-1_ramips_24kec.ipk
Size: 72887
MD5Sum: 7375ae04e662e9dd1453560f90707f1b
SHA256sum: 53e6c10e78622050c59960dd026489346712149e0d80bc21450ec4d44877317a
Description: This package contains miscellaneous files from stdlib
not splitted in other ruby packages like stringio:
- English.rb
- abbrev.rb
- base64.rb
- continuation.so
- coverage.so
- delegate.rb
- e2mmap.rb
- etc.so
- expect.rb
- fcntl.so
- fiber.so
- getoptlong.rb
- open3.rb
- ostruct.rb
- pty.so
- scanf.rb
- securerandom.rb
- set.rb
- shellwords.rb
- stringio.so
- strscan.so
- tsort.rb
- weakref.rb
Package: ruby-mkmf
Version: 2.2.1-1
Depends: libc, ruby, ruby-filelib, ruby-optparse, ruby-rbconfig
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26718
Filename: packages/ruby-mkmf_2.2.1-1_ramips_24kec.ipk
Size: 27541
MD5Sum: f995dcd140cc50e363799ead6a941f45
SHA256sum: 58dd32280040eb5fb32496a4103342e61a216e276fec453d49b2ee80f24cb005
Description: Provides mkmf* files
Package: ruby-multithread
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14507
Filename: packages/ruby-multithread_2.2.1-1_ramips_24kec.ipk
Size: 15330
MD5Sum: 94710535fc89fc6cb6e8fc50016d8365
SHA256sum: f0442435f988ee340ae8483303f9006d5a36f67f288425590dfa588adeca8b6b
Description: Provides files for multithread usage:
- io/nonblock.so
- io/wait.so
- thread.so (FYI, Thread is a core class)
- monitor.rb
- mutex_m.rb
- sync.rb
- thwait.rb
- timeout.rb
Package: ruby-net
Version: 2.2.1-1
Depends: libc, ruby, ruby-datetime, ruby-digest, ruby-filelib, ruby-uri
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90614
Filename: packages/ruby-net_2.2.1-1_ramips_24kec.ipk
Size: 91495
MD5Sum: 73f80d9fa0ba98054e11c698d4a6720c
SHA256sum: b8b3239217c2a3cb6d8c319e49132bde9579afe37c575ab1d8cb2ee5a7531045
Description: Provides net* files
Package: ruby-nkf
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123587
Filename: packages/ruby-nkf_2.2.1-1_ramips_24kec.ipk
Size: 122926
MD5Sum: 1afe62b5f5b72caa129a1ebf1d012725
SHA256sum: 4652ae58c9cab1f5b255576ce4225c016a2c4a6e95ea27e073f3ba1c99d0cf51
Description: Provides nkf* files
Package: ruby-openssl
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc, libopenssl, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100533
Filename: packages/ruby-openssl_2.2.1-1_ramips_24kec.ipk
Size: 101199
MD5Sum: 65eab3672189c7c2a9a07843315f22d9
SHA256sum: 73ffa1901737cb794aade191f2ea0b0754e5ff484c5a2a43036273d9caea8ab1
Description: Provides openssl* files
Package: ruby-optparse
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16696
Filename: packages/ruby-optparse_2.2.1-1_ramips_24kec.ipk
Size: 17502
MD5Sum: f276a2ce66883ae3a1d75d920d26e2df
SHA256sum: 08fbe2a8eef7e46bd0e4dcf0774f6e0ce5dc0915081ff79e4e04b14e4e9bb65a
Description: Provides optparse* files
Package: ruby-patterns
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6019
Filename: packages/ruby-patterns_2.2.1-1_ramips_24kec.ipk
Size: 6790
MD5Sum: e05aef4df7c765eb71765a3f29b8f239
SHA256sum: e255cdb2e29fc4ac7caf578283ad1f9fd2e28598c5fe01c6ac64e8213183d4d6
Description: Provides design patterns helpers files:
- forwardable.rb
- observer.rb
- singleton.rb
Package: ruby-powerassert
Version: 2.2.1-1
Depends: libc, ruby, ruby-ripper
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6914
Filename: packages/ruby-powerassert_2.2.1-1_ramips_24kec.ipk
Size: 7817
MD5Sum: 2fa39dd130825a002c43629bff231ed7
SHA256sum: a6c935ddbc8169aa96aadc9831b05c021673e1ce70dc9e28038054bc6df47aec
Description: Power Assert gem for Ruby. Power Assert shows each value of variables
and method calls in the expression. It is useful for testing, providing
which value wasn't correct when the condition is not satisfied
Package: ruby-prettyprint
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8676
Filename: packages/ruby-prettyprint_2.2.1-1_ramips_24kec.ipk
Size: 9467
MD5Sum: 92abaf7b0d9fddfbe07006fef96375bb
SHA256sum: bdfaa8cc6cab11df65b152b5d1d69539c51ce78ad90fa1ac7637a5b66c778cfc
Description: Provides Pretty Print library:
- pp.rb
- prettyprint.rb
Package: ruby-pstore
Version: 2.2.1-1
Depends: libc, ruby, ruby-digest, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4853
Filename: packages/ruby-pstore_2.2.1-1_ramips_24kec.ipk
Size: 5635
MD5Sum: a30f47827ad320e71f6000f01983a629
SHA256sum: 0757e873c17af1c18d1fd3a2a407d7cfc85335b9400aa5c277976abbf12591f9
Description: Provides pstore.rb file
Package: ruby-psych
Version: 2.2.1-1
Depends: libc, ruby, ruby-bigdecimal, ruby-datetime, ruby-misc, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71333
Filename: packages/ruby-psych_2.2.1-1_ramips_24kec.ipk
Size: 72246
MD5Sum: 1e2cd5c2cf7733f7dfb43350211ed6fd
SHA256sum: 11cda71972dd0c7f653e3fe08f6f7cf9a2f36f8dc92c22e53f45e7f80e99dc1e
Description: Provides psych* files
Package: ruby-racc
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11242
Filename: packages/ruby-racc_2.2.1-1_ramips_24kec.ipk
Size: 12019
MD5Sum: f833637e68baeac2e473817fff436321
SHA256sum: ff70eae2c5c4aebe68d119e0093e4f163b7728abc28bc2b50954990a601dca08
Description: Provides racc* files
Package: ruby-rake
Version: 2.2.1-1
Depends: libc, ruby, ruby-datetime, ruby-filelib, ruby-optparse, ruby-patterns, ruby-rbconfig
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43993
Filename: packages/ruby-rake_2.2.1-1_ramips_24kec.ipk
Size: 44846
MD5Sum: e8b46ae7db69787c99439e1728afa9a6
SHA256sum: 4eaeea177465d33f24b0e17297eea87520f7af9c7615c47810a2a9b0ed638e1e
Description: Provides rake* files
Package: ruby-rbconfig
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5755
Filename: packages/ruby-rbconfig_2.2.1-1_ramips_24kec.ipk
Size: 6518
MD5Sum: 354f1b03e374945c4f5004c8e5317cde
SHA256sum: 22596b94df3e7ec3fc6ef25519d2ed3f473f0b11238c28cd33150cd9364594d7
Description: Provides rbconfig file
Package: ruby-rdoc
Version: 2.2.1-1
Depends: libc, ruby, ruby-erb, ruby-irb, ruby-json, ruby-racc, ruby-rake, ruby-yaml, ruby-zlib
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 556745
Filename: packages/ruby-rdoc_2.2.1-1_ramips_24kec.ipk
Size: 522369
MD5Sum: 16810f5f46c87617672ebc9d71910315
SHA256sum: 12ec2da0848be61c6460c0535f5771d8d2d71f88f74767f9f455ea701b9ab967
Description: Provides rdoc* and ri files
Package: ruby-readline
Version: 2.2.1-1
Depends: libc, ruby, libncurses, libreadline
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9394
Filename: packages/ruby-readline_2.2.1-1_ramips_24kec.ipk
Size: 10188
MD5Sum: cb8c63bd2179ea5899dd67ead031c9f4
SHA256sum: cea25079b50abff56711cfe660b80804798505d1c1c43af3a99e7a7caeefe0b3
Description: Provides readline* files
Package: ruby-rexml
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69767
Filename: packages/ruby-rexml_2.2.1-1_ramips_24kec.ipk
Size: 70682
MD5Sum: b6e0f91471d55b964bb0d65aafe4ba77
SHA256sum: 211f91e1022c82b5c583658760863319c6c6d116cee314b5ad7cddab893eb5b4
Description: Provides rexml* files
Package: ruby-rinda
Version: 2.2.1-1
Depends: libc, ruby, ruby-drb
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9288
Filename: packages/ruby-rinda_2.2.1-1_ramips_24kec.ipk
Size: 10099
MD5Sum: f53544eb7af9659c908f710e733456f0
SHA256sum: 24bb26f976e9d3555d6dc893051321c45ec60c0010d6ac6b3e36bfbcea51d58a
Description: Provides rinda* files
Package: ruby-ripper
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58434
Filename: packages/ruby-ripper_2.2.1-1_ramips_24kec.ipk
Size: 59234
MD5Sum: 7f5edfe092b1411814cf511b5bd301e0
SHA256sum: 401633011f9df1592db59e919fa75b77bc414ee99c4bf32d093951d87ed7ae67
Description: Provides ripper* files
Package: ruby-rss
Version: 2.2.1-1
Depends: libc, ruby, ruby-net, ruby-nkf, ruby-rexml
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48218
Filename: packages/ruby-rss_2.2.1-1_ramips_24kec.ipk
Size: 49066
MD5Sum: 771014fac350e082d535c4db380f335a
SHA256sum: 8c60aa1123da179b7c06d1f45c4605fee78f94b2cb708b2143033b16779797a9
Description: Provides rss* files
Package: ruby-sdbm
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9741
Filename: packages/ruby-sdbm_2.2.1-1_ramips_24kec.ipk
Size: 10513
MD5Sum: 70ca87bbb69043a1233edbc23e8a6464
SHA256sum: ed7dfacdbe7873ae6ac210cf53a3c27ac9e40ec3d0ded52345d0b7c3f70e7001
Description: Provides sdbm* files
Package: ruby-shell
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12045
Filename: packages/ruby-shell_2.2.1-1_ramips_24kec.ipk
Size: 12840
MD5Sum: e2a5e6e829b9bc06f4380ffad84693fd
SHA256sum: ab4914ad14d30f06662e2338401d15e96a4ee01efec6810ec153ac1d580893f3
Description: Provides shell* files
Package: ruby-socket
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 79712
Filename: packages/ruby-socket_2.2.1-1_ramips_24kec.ipk
Size: 80515
MD5Sum: f904006c4ac54cdaddc6bd8d92385099
SHA256sum: 97e0b89fd546e3f6d200d5d2483c47b9cb90bb4f182780b9e6b3f1b4a7c886df
Description: Provides socket-related files:
- gserver.rb
- ipaddr.rb
- resolv-replace.rb
- resolv.rb
- socket.rb
- socket.so
Package: ruby-stdlib
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc, ruby-bigdecimal, ruby-cgi, ruby-csv, ruby-datetime, ruby-dbm, ruby-debuglib, ruby-digest, ruby-drb, ruby-enc, ruby-enc-extra, ruby-erb, ruby-gdbm, ruby-gems, ruby-json, ruby-io-console, ruby-irb, ruby-fiddle, ruby-filelib, ruby-logger, ruby-math, ruby-minitest, ruby-mkmf, ruby-multithread, ruby-nkf, ruby-net, ruby-openssl, ruby-optparse, ruby-patterns, ruby-powerassert, ruby-prettyprint, ruby-pstore, ruby-psych, ruby-racc, ruby-rake, ruby-rbconfig, ruby-rdoc, ruby-readline, ruby-rexml, ruby-rinda, ruby-ripper, ruby-rss, ruby-sdbm, ruby-shell, ruby-socket, ruby-testunit, ruby-unicodenormalize, ruby-uri, ruby-webrick, ruby-xmlrpc, ruby-yaml, ruby-zlib
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/ruby-stdlib_2.2.1-1_ramips_24kec.ipk
Size: 1178
MD5Sum: 6347731f8da84f630bff60a4b1e18385
SHA256sum: 2948f81116028aba014700e452d0b9552d7b2c187b78b7a58de2632b968cce2a
Description: This metapackage currently install all ruby-* packages,
providing a complete Ruby Standard Library.
Package: ruby-testunit
Version: 2.2.1-1
Depends: libc, ruby, ruby-csv, ruby-erb, ruby-optparse, ruby-powerassert, ruby-prettyprint, ruby-rexml, ruby-yaml
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90678
Filename: packages/ruby-testunit_2.2.1-1_ramips_24kec.ipk
Size: 91647
MD5Sum: 4d77fabc8ddfe17dfbea5877c43aa2fa
SHA256sum: 828b2452a83e6b192064c3c5dd824474899202a852580550d3b7314ff92a8cb8
Description: Provides test/unit* files
Package: ruby-unicodenormalize
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc, ruby-enc-extra
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47209
Filename: packages/ruby-unicodenormalize_2.2.1-1_ramips_24kec.ipk
Size: 46167
MD5Sum: 9ca4e499bf411102323ae8b14079cd4a
SHA256sum: e322f0a16a676f051a5ada4dc410cb7dad61ac0ac19d899f35ddd53d2283f51f
Description: Additions to class String for Unicode normalization
Package: ruby-uri
Version: 2.2.1-1
Depends: libc, ruby, ruby-socket, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27091
Filename: packages/ruby-uri_2.2.1-1_ramips_24kec.ipk
Size: 27880
MD5Sum: 01431e1592c6f66a5aefc4d01ed72be4
SHA256sum: bc9a330fa6a827029ec93a7ba5eb72e52757c3475970f667378e71b89e355ff8
Description: Provides uri* files
Package: ruby-webrick
Version: 2.2.1-1
Depends: libc, ruby, ruby-erb, ruby-net, ruby-patterns, ruby-rbconfig
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50743
Filename: packages/ruby-webrick_2.2.1-1_ramips_24kec.ipk
Size: 51641
MD5Sum: 194b8cb541a3bf8c22a6298868c35030
SHA256sum: 157d0ce232359bb3f5b796c5c467c2fddf2c9fe09a4cf2c5c56bcc9b822583b3
Description: Provides webrick* files
Package: ruby-xmlrpc
Version: 2.2.1-1
Depends: libc, ruby, ruby-rexml, ruby-webrick
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23295
Filename: packages/ruby-xmlrpc_2.2.1-1_ramips_24kec.ipk
Size: 24082
MD5Sum: bb4d648d7928518ae12f9911d6dc7376
SHA256sum: 22e2b73f6ae252f57af431d4f26d098383e470c9062615f30f483d2e3c8b45d8
Description: Provides xmlrpc* files
Package: ruby-yaml
Version: 2.2.1-1
Depends: libc, ruby, ruby-dbm, ruby-pstore, ruby-psych
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3752
Filename: packages/ruby-yaml_2.2.1-1_ramips_24kec.ipk
Size: 4523
MD5Sum: eaa186c1854761f4fd4f374188ccc2f9
SHA256sum: 6c43385954eba9156b9216ec8a03bd82df22f59e545e48f0c83853412a6648c1
Description: Provides yaml* files
Package: ruby-zlib
Version: 2.2.1-1
Depends: libc, ruby, zlib
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19320
Filename: packages/ruby-zlib_2.2.1-1_ramips_24kec.ipk
Size: 20067
MD5Sum: 07c223cbaba26f0c504670d91b6d9588
SHA256sum: 9aa230e103fcbb4cb8a74dc9673af7212f1ca2b37120dff002a75b159b41bc34
Description: Provides zlib* files
Package: ruby
Version: 2.2.1-1
Depends: libc, libruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1881
Filename: packages/ruby_2.2.1-1_ramips_24kec.ipk
Size: 2751
MD5Sum: 6f6b7e2bdda2e10ae9cc058ee562a931
SHA256sum: b214709feecf0d8eae547525db085aeeb4938dc8dfb49954fb1d23ae4dfd95ae
Description: Ruby is the interpreted scripting language for quick and easy
object-oriented programming. It has many features to process text files
and to do system management tasks (as in perl). It is simple,
straight-forward, and extensible.
Package: screen
Version: 4.2.1-2
Depends: libc, libncurses
Source: feeds/packages/utils/screen
License: GPL-3.0+
Section: utils
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167543
Filename: packages/screen_4.2.1-2_ramips_24kec.ipk
Size: 168256
MD5Sum: 6e2d9e4fdf87523a71788eac39c531a3
SHA256sum: d25388259257dd453c562d6799cf2564fe98e62034a139fc51310552b6005cf0
Description: Screen is a full-screen window manager that multiplexes a physical
terminal between several processes, typically interactive shells.
Package: seafile-ccnet
Version: 4.0.6-1e1aeae83cc33356ebd5f064f4a4c148186b814d
Depends: libc, libsearpc, libevent2, libopenssl, glib2, python, libzdb, libuuid, libpthread, libsqlite3, jansson
Source: feeds/packages/net/seafile-ccnet
License: GPL-3.0
Section: net
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 155385
Filename: packages/seafile-ccnet_4.0.6-1e1aeae83cc33356ebd5f064f4a4c148186b814d_ramips_24kec.ipk
Size: 155388
MD5Sum: 1fd904a04891d2fdd293f99834a01daf
SHA256sum: ccda187d23dd90a69b54d44cb07a2083176e8216261036c2a4a36cc984f4de3f
Description: Ccnet is a framework for writing networked applications in C.
Package: seafile-seahub
Version: 4.0.6-739b32b02c4803448d5cb75b3e22ec0073930aed
Depends: libc, python, simplejson, python-imglib, python-setuptools
Source: feeds/packages/net/seafile-seahub
License: Apache-2.0
Section: net
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11478237
Filename: packages/seafile-seahub_4.0.6-739b32b02c4803448d5cb75b3e22ec0073930aed_ramips_24kec.ipk
Size: 11411559
MD5Sum: b4ba1bd4d230bd507166fe157d7788e6
SHA256sum: 58eb4e8e0e28bbfe7c393184d99b1e1d679cc4f3d9359f2b76d6f1fe52cc8a3a
Description: The web end of seafile server.
NOTE: in order to have better performance, language support is turned off by default.
Please set 'USE_I18N = True' in seahub_settings.py to support multiple languages.
Package: seafile-server
Version: 4.0.6-adf9a875a960c1471bf6c93fce397c576e985bb3
Depends: seafile-ccnet (=4.0.6-1e1aeae83cc33356ebd5f064f4a4c148186b814d), seafile-seahub (=4.0.6-739b32b02c4803448d5cb75b3e22ec0073930aed), libc, shadow-useradd, libarchive, libopenssl, glib2, libsearpc, seafile-ccnet, seafile-seahub, sqlite3-cli, python-mysql, jansson, libevent2, libevent2-openssl, zlib, libzdb, libsqlite3, libmysqlclient, libevhtp, libpthread, libuuid, bash, sudo, procps, procps-pkill
Source: feeds/packages/net/seafile-server
License: GPL-3.0
Section: net
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 418806
Filename: packages/seafile-server_4.0.6-adf9a875a960c1471bf6c93fce397c576e985bb3_ramips_24kec.ipk
Size: 418204
MD5Sum: db3ac2321886e38ba443d839cfdc2a6b
SHA256sum: 58bacbc456d07198e0d5a7efcd5b9b37d42b68d68e6a2a6fa618b11bc8884a69
Description: Open source cloud storage with advanced features on privacy protection and teamwork.
Package: ser2net
Version: 2.10.0-1
Depends: libc
Source: feeds/packages/net/ser2net
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28176
Filename: packages/ser2net_2.10.0-1_ramips_24kec.ipk
Size: 28994
MD5Sum: 4481fae5b91c17ba0a5747b6f2269c25
SHA256sum: f04313abfdaeeadd9f9976a662325d49299842152e259a9032ef92138e00d641
Description: This project provides a proxy that allows telnet/tcp connections to be made to
serial ports on a machine.
Package: serialconsole
Version: 0.95-1
Depends: libc
Source: feeds/packages/utils/serialconsole
Section: utils
Maintainer: Stefan Bethke <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5118
Filename: packages/serialconsole_0.95-1_ramips_24kec.ipk
Size: 5860
MD5Sum: 50f1a8acc26dacf40e34db0887706c28
SHA256sum: 6fb5a0ccf55701fe65737273c5d2fb21302403a64b72b5b38d0a284fcbc09468
Description: serialconsole (sc) is a minimal terminal program allowing to use one machine
to access the serial console of another machine.
Package: shadow-chage
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16591
Filename: packages/shadow-chage_4.2.1-4_ramips_24kec.ipk
Size: 17420
MD5Sum: 9c7a974fc7fef7973396b48cfedf610d
SHA256sum: 4a4fb12d0e2cd21b3d4c7d56baa628db3ebb712950b348dd3f887b800c10494d
Description: Full version of standard chage utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-common
Version: 4.2.1-4
Depends: libc
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4731
Filename: packages/shadow-common_4.2.1-4_ramips_24kec.ipk
Size: 5503
MD5Sum: 8e30157be5e117f49ed273ba651b80c1
SHA256sum: 82be56381174933e3e4587433353130989abf1d539f7f0046c6ad0afd007cdb3
Description: Shared definitions for the PLD Linux shadow utilities
Package: shadow-groupadd
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14831
Filename: packages/shadow-groupadd_4.2.1-4_ramips_24kec.ipk
Size: 15610
MD5Sum: c7b2183346ed6cf4de14ede99d233d8a
SHA256sum: 8ea0f1dcbe77c65f34525b1dccbb774fc36d4a1b722ced5ab1ec3846a3d9819a
Description: Full version of standard groupadd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-groupdel
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13282
Filename: packages/shadow-groupdel_4.2.1-4_ramips_24kec.ipk
Size: 14027
MD5Sum: 407639a93fc9ef560ca6b604c03c1357
SHA256sum: a14e8848608cc3202ff45681b8d1803cc951f67aa1ed93d48adb1126fb818cb3
Description: Full version of standard groupdel utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-groupmod
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16483
Filename: packages/shadow-groupmod_4.2.1-4_ramips_24kec.ipk
Size: 17257
MD5Sum: f731b8b95b5f8203288c05fd531d53a1
SHA256sum: 2c4b64e412296761db237ad12248a0815b739ef21e799e607106ebaa295e379d
Description: Full version of standard groupmod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-groups
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3147
Filename: packages/shadow-groups_4.2.1-4_ramips_24kec.ipk
Size: 3973
MD5Sum: b18fbadc3034089e0893d1a10fe34dc9
SHA256sum: 63e8ffa8c8aba5655959b968bc8ed5303d289a6de83980176bf2a27f65db6b9d
Description: Full version of standard groups utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-passwd
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17234
Filename: packages/shadow-passwd_4.2.1-4_ramips_24kec.ipk
Size: 17910
MD5Sum: ad710d84f94af55a42c19859261edcb4
SHA256sum: 624f9617a40630264f84879a855b8fbd20ff06a116c7b91ab732e78880dd4d7a
Description: Full version of standard passwd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-su
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17578
Filename: packages/shadow-su_4.2.1-4_ramips_24kec.ipk
Size: 18344
MD5Sum: 1aae2bfbf7d016f399e46678a02dbc15
SHA256sum: 9f6d45f345a0eab4833da1910226e05a543f4cb1f1589a258a344e4c09883aad
Description: Full version of standard su utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-useradd
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27384
Filename: packages/shadow-useradd_4.2.1-4_ramips_24kec.ipk
Size: 28168
MD5Sum: 960a658eaad99cf94cf6fb84b714682b
SHA256sum: af4a20a488ef924fe98fe6ccac423f0300c2eb7120cbba3b3434a045ffee5868
Description: Full version of standard useradd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-userdel
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16716
Filename: packages/shadow-userdel_4.2.1-4_ramips_24kec.ipk
Size: 17395
MD5Sum: 24f26886c20330b1cdd23b4ff34b580e
SHA256sum: 1bf39b6da26f8c3a6ad1aac747132f20fb85a0f2e3996c210ad71846ef6d389d
Description: Full version of standard userdel utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-usermod
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27567
Filename: packages/shadow-usermod_4.2.1-4_ramips_24kec.ipk
Size: 28133
MD5Sum: 75fb5f9e32e33643f3f6d88609f3b9da
SHA256sum: ded7552d9818a07dff96d4aff0667d1c494053371965de5f69f8fb0040c55a03
Description: Full version of standard usermod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-utils
Version: 4.2.1-4
Depends: libc
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/shadow-utils_4.2.1-4_ramips_24kec.ipk
Size: 905
MD5Sum: f694ba34ed6fb1e4ecc5f04a6af34234
SHA256sum: 5c6a5ff4b19a8f11d3d2d0dd09252dcff681f3904142a096a0116e3ca1080eb0
Description: Full versions of standard shadow utilities. Normally, you would not
use this package, since the functionality in BusyBox is more than
sufficient and much smaller.
Package: shadow
Version: 4.2.1-4
Depends: libc, shadow-chage, shadow-groupadd, shadow-groupdel, shadow-groupmod, shadow-groups, shadow-passwd, shadow-su, shadow-useradd, shadow-userdel, shadow-usermod
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/shadow_4.2.1-4_ramips_24kec.ipk
Size: 958
MD5Sum: 9addd1d5f214f806bc61309f91006dfc
SHA256sum: 5a487b814fbfc247eedf46f3ca3d564809fd2511ee09179b70ec3426c9af905e
Description: Full versions of standard shadow utilities. Normally, you would not
use this package, since the functionality in BusyBox is more than
sufficient and much smaller.
Package: shadowsocks-client
Version: 0.5-d8ef02715f40de0fb7ba0f7267d3f8260f38ba80
Depends: libc, libopenssl
Source: feeds/packages/net/shadowsocks-client
License: MIT
LicenseFiles: COPYING
Section: net
Maintainer: Zhao, Gang <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12187
Filename: packages/shadowsocks-client_0.5-d8ef02715f40de0fb7ba0f7267d3f8260f38ba80_ramips_24kec.ipk
Size: 12951
MD5Sum: 15ff9306d5b0437ab824b15d9dd035f5
SHA256sum: e349f4bbdf637aa7b3f4b54715b2d615b8b97b381bdc18cf538ad935b2dfbb2a
Description: shadowsocks client for router
Package: shairplay
Version: 2014-10-27-2
Depends: libc, libao, libavahi-compat-libdnssd, libltdl, libpthread
Source: feeds/packages/sound/shairplay
License: MIT
LicenseFiles: LICENSE
Section: sound
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44431
Filename: packages/shairplay_2014-10-27-2_ramips_24kec.ipk
Size: 45255
MD5Sum: e324120c658d10435e4e14dc70c1d736
SHA256sum: 6f295b9474b439ce36277378b9afc5d732cc83e948b03443941b91bdff3a004e
Description: Free portable AirPlay server implementation similar to ShairPort.
Package: shairport-sync
Version: 2.1.15-1
Depends: libc, libpthread, libopenssl, libavahi-client, alsa-lib, libdaemon, libsoxr, libpopt
Source: feeds/packages/sound/shairport-sync
License: MIT
LicenseFiles: COPYING LICENSES shairport.c
Section: sound
Maintainer: Mike Brady <[email protected]>
Architecture: ramips_24kec
Installed-Size: 97976
Filename: packages/shairport-sync_2.1.15-1_ramips_24kec.ipk
Size: 98446
MD5Sum: 8bcc30b9f4c7d682077ce8ef1b779328
SHA256sum: 9e155b643c90c022e7c5a9cc06d9e53aec27df80f753b02e1fe02f0f62a71c37
Description: Shairport Sync is server software that implements the Apple-originated RAOP protocol for
playback of audio from a compatible remote client such as the iPhone, iTunes, Apple TV, Quicktime Player or forked-daapd.
Shairport Sync implements audio synchronisation, supporting multi-room use.
Shairport Sync supports audio only.
Package: shairport
Version: 2014-10-28-2
Depends: libc, libpthread, libopenssl, libavahi-client, alsa-lib
Source: feeds/packages/sound/shairport
License: MIT
LicenseFiles: LICENSES
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36592
Filename: packages/shairport_2014-10-28-2_ramips_24kec.ipk
Size: 37491
MD5Sum: 80d76e60e93da8c2f6b4f2e60cdf85cc
SHA256sum: fad158a7c3f00eaef0951b49cdefd1c70b67f610bdcb3f747927e02822cbf544
Description: This program emulates an AirPort Express for the purpose of streaming
music from iTunes and compatible iPods. It implements a server for the
Apple RAOP protocol.
ShairPort does not support AirPlay v2 (video and photo streaming).
It supports multiple simultaneous streams, if your audio output chain
(as detected by libao) does so.
Package: shine
Version: 3.1.0-1
Depends: libc
Source: feeds/packages/sound/shine
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32628
Filename: packages/shine_3.1.0-1_ramips_24kec.ipk
Size: 33508
MD5Sum: 4a4991cc1b92b9a61da6a9fd9e44202a
SHA256sum: 2ec1374237d1076cd24d6e648124f9a205471bf8d832b21b1a02aa7970731fe9
Description: savonet/shine is a blazing fast mp3 encoding library implemented in fixed-point
arithmetic. The library can thus be used to perform super fast mp3 encoding on
architectures without a FPU, such as armel, etc.. It is also, however, also
super fast on architectures with a FPU!
Package: simplejson
Version: 3.6.5-1
Depends: libc, python
Source: feeds/packages/lang/simplejson
License: MIT
Section: lang
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48743
Filename: packages/simplejson_3.6.5-1_ramips_24kec.ipk
Size: 49599
MD5Sum: f2f5109e86f7b4a23f2fcf9c07ffcb6b
SHA256sum: 1dc999ba33fb8118573d4b13cdad74cac6219a8be0be40cf16246d0320391522
Description: Simple, fast, extensible JSON encoder/decoder for Python
Package: sispmctl
Version: 3.1+20120206-1
Depends: libc, libusb-compat
Source: feeds/packages/utils/sispmctl
License: GPL-2.0+
Section: utils
Maintainer: Richard Kunze <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8211
Filename: packages/sispmctl_3.1+20120206-1_ramips_24kec.ipk
Size: 9181
MD5Sum: 5dc0fa80892d3fbc8e3e6b2e36f130be
SHA256sum: b2cf24ea09ec5031a589a25b7c115a55324b602c013c153ea4ee9f19c9873a14
Description: The sispmctl tool can control Gembird SIS-PM Silver Shield
programmable power outlet strips (also known under the name
Revolt Intelli-Plug) from the command line.
.
It can be used to switch on or off any of the programmable
power sockets of the SIS-PM via USB. It can also show the
current status of each power socket, and it can handle
multiple SIS-PM devices, too.
Package: smartd
Version: 6.3-1
Depends: libc, uclibcxx
Source: feeds/packages/utils/smartmontools
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 145228
Filename: packages/smartd_6.3-1_ramips_24kec.ipk
Size: 146151
MD5Sum: 49efc257ed86da18208cda9b2e029a67
SHA256sum: f7b737443d151bdcd689f97e4e80c06140d4fa3736d5563dfdbbe231645195c8
Description: smartmontools contains utility programs (smartd) to
control/monitor storage systems using the Self-Monitoring, Analysis
and Reporting Technology System (S.M.A.R.T.) built into most modern
ATA and SCSI disks. It is derived from smartsuite.
Package: smartmontools
Version: 6.3-1
Depends: libc, uclibcxx
Source: feeds/packages/utils/smartmontools
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 163969
Filename: packages/smartmontools_6.3-1_ramips_24kec.ipk
Size: 164748
MD5Sum: 39b246bfa568775bab50ad595475928f
SHA256sum: ade457cb9fb0b95ecf6e9524c9dd0b202a83299b235148a312e4e7e8cbe80e63
Description: smartmontools contains utility programs (smartctl) to
control/monitor storage systems using the Self-Monitoring, Analysis
and Reporting Technology System (S.M.A.R.T.) built into most modern
ATA and SCSI disks. It is derived from smartsuite.
Package: smartsnmpd
Version: 2014-08-13-fb93473d895f058b2d8975d3cfa280ae2a8ae98d
Depends: libc, lua, liblua, libubox, libuci-lua, libubus-lua
Source: feeds/packages/net/smartsnmpd
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Xiongfei Guo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21009
Filename: packages/smartsnmpd_2014-08-13-fb93473d895f058b2d8975d3cfa280ae2a8ae98d_ramips_24kec.ipk
Size: 21948
MD5Sum: 2ba548b652bc46a579ebbdd38f32070a
SHA256sum: 24a1d7fd6215b9c8feeb5aabc717410fb381a90d0d2ef6d36b7bf3843bf33833
Description: smartsnmpd is an implementation of SNMP Agent. Its goal is "Easily
writing boring SNMP MIB with Lua". This package add native support
for OpenWrt. Include using ubus and uci to get system info/status.
And, it use libubox/uloop as low level event-driven library.
Package: smstools3
Version: 3.1.15-1
Depends: libc, libiconv-full, iconv
Source: feeds/packages/utils/smstools3
License: GPL-2.0
LicenseFiles: LICENSE
Section: utils
Maintainer: Gérald Kerma <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90298
Filename: packages/smstools3_3.1.15-1_ramips_24kec.ipk
Size: 91067
MD5Sum: d733251155dc9ec8e36a5140c08ace6a
SHA256sum: aa5bd882846650e67e6abf257623e46937569a9157ea30b4cf247fdc085d3d97
Description: The SMS Server Tools 3 is a SMS Gateway software which can send and receive
short messages through GSM modems and mobile phones.
Package: snmp-utils
Version: 5.4.4-1
Depends: libc, libnetsnmp
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16047
Filename: packages/snmp-utils_5.4.4-1_ramips_24kec.ipk
Size: 16917
MD5Sum: 6ab2b5ea8bdafa792026487357dc4105
SHA256sum: 604ea4ed7ab6cd61a2c87b2c670bb8a896c5daff659313a944ee0efdda8c3cd2
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains SNMP client utilities.
Package: snmpd-static
Version: 5.4.4-1
Depends: libc
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 302341
Filename: packages/snmpd-static_5.4.4-1_ramips_24kec.ipk
Size: 302938
MD5Sum: b2d6166f99b7202752be0cc04874e6cc
SHA256sum: 15e364e9c1cc416079d98dc9db1ca7c23697a00150fc76aa7e1440b19c28a35c
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains the SNMP agent, statically linked.
Package: snmpd
Version: 5.4.4-1
Depends: libc, libnetsnmp
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9035
Filename: packages/snmpd_5.4.4-1_ramips_24kec.ipk
Size: 10056
MD5Sum: a9a28c6ccbeac67235cb86ff68a3ce25
SHA256sum: 1dab3aec6c030be5b56b9065f7fc8899351d5cd81977b2fa930627aa796c5b3e
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains the SNMP agent, dynamically linked.
Package: snort-mysql
Version: 2.9.7.2-1
Depends: libc, libdaq, libdnet, libopenssl, libpcap, libpcre, libpthread, libuuid, zlib, libmysqlclient
Source: feeds/packages/net/snort
Section: net
Architecture: ramips_24kec
Installed-Size: 833043
Filename: packages/snort-mysql_2.9.7.2-1_ramips_24kec.ipk
Size: 827986
MD5Sum: c8afd88c51fe2edce95aadb5fdf6016f
SHA256sum: 79944db1e11bbd519e8bb7823a27b67cedf153941c3affb878312f6ee9161266
Description: Snort is an open source network intrusion detection and prevention system.
It is capable of performing real-time traffic analysis, alerting, blocking
and packet logging on IP networks. It utilizes a combination of protocol
analysis and pattern matching in order to detect anomalies, misuse and
attacks.
This package contains snort with support for logging to a MySQL database.
Package: snort-pgsql
Version: 2.9.7.2-1
Depends: libc, libdaq, libdnet, libopenssl, libpcap, libpcre, libpthread, libuuid, zlib, libpq, libuuid
Source: feeds/packages/net/snort
Section: net
Architecture: ramips_24kec
Installed-Size: 833043
Filename: packages/snort-pgsql_2.9.7.2-1_ramips_24kec.ipk
Size: 828450
MD5Sum: f482cf04284bb3a9c64bbf304338a137
SHA256sum: 3bb2a29533312b2566efe8d90c7f74a7f61de7bb92dfcc8e02126e7748405620
Description: Snort is an open source network intrusion detection and prevention system.
It is capable of performing real-time traffic analysis, alerting, blocking
and packet logging on IP networks. It utilizes a combination of protocol
analysis and pattern matching in order to detect anomalies, misuse and
attacks.
This package contains snort with support for logging to a PostgreSQL database.
Package: snort
Version: 2.9.7.2-1
Depends: libc, libdaq, libdnet, libopenssl, libpcap, libpcre, libpthread, libuuid, zlib
Source: feeds/packages/net/snort
Section: net
Architecture: ramips_24kec
Installed-Size: 833057
Filename: packages/snort_2.9.7.2-1_ramips_24kec.ipk
Size: 827562
MD5Sum: 43a6c84c4c95ad13f030212466b8237c
SHA256sum: 2fa476ecb0d8a080ef37e7adeaadcc9d2262ed18fb70ce831f50c69821084623
Description: Snort is an open source network intrusion detection and prevention system.
It is capable of performing real-time traffic analysis, alerting, blocking
and packet logging on IP networks. It utilizes a combination of protocol
analysis and pattern matching in order to detect anomalies, misuse and
attacks.
Package: socat
Version: 1.7.3.0-1
Depends: libc, libpthread, librt
Source: feeds/packages/net/socat
License: GPL-2.0 OpenSSL
LicenseFiles: COPYING COPYING.OpenSSL
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87281
Filename: packages/socat_1.7.3.0-1_ramips_24kec.ipk
Size: 87959
MD5Sum: 443c5647f95f5b7c7be9a1f0c1572843
SHA256sum: 5af554607c76a2bbe116fef9a5d08edbdf68537817ba8300a91d58236611b261
Description: SoCat (for SOcket CAT) establishes two bidirectional byte streams and
transfers data between them.
Data channels may be files, pipes, devices (terminal or modem, etc.), or
sockets (Unix, IPv4, IPv6, raw, UDP, TCP, SSL). It provides forking,
logging and tracing, different modes for interprocess communication and
many more options.
Package: sockread
Version: 1.0-1
Depends: libc
Source: feeds/packages/utils/sockread
License: CC0-1.0
Section: utils
Maintainer: Moritz Warning <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2063
Filename: packages/sockread_1.0-1_ramips_24kec.ipk
Size: 2844
MD5Sum: 9b9f379bec2c70ded6127ec12976afbe
SHA256sum: 82c27251c053bda55c85fad65171a3e5ab9e9b3c129b807904191b24c6e45f9a
Description: sockread writes and reads data from a Unix domain socket
represented as a special file on the file system.
Package: softflowd
Version: 0.9.9-1
Depends: libc, libpcap
Source: feeds/packages/net/softflowd
License: BSD-3-Clause
Section: net
Maintainer: Ross Vandegrift <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20474
Filename: packages/softflowd_0.9.9-1_ramips_24kec.ipk
Size: 21253
MD5Sum: 8e2f3b4bb9227089a79721a10abe3b9d
SHA256sum: 836c8ffe259f943d6a1ea8b1d9d9e4068ced9d8a860c658aa81253f88b28012b
Description: Software netflow exporter
Package: sox
Version: 14.4.1-3
Depends: libc, lame-lib, libmad, libid3tag, libvorbis, libvorbisidec, alsa-lib, libsndfile, libflac, libmagic, libpng, libffmpeg
Source: feeds/packages/sound/sox
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING LICENSE.LGPL LICENSE.GPL
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 310534
Filename: packages/sox_14.4.1-3_ramips_24kec.ipk
Size: 310416
MD5Sum: 239d8df7caa295f1bd9d825115c2d8a1
SHA256sum: 82b39531bb4f1b692f78bad027e7bcaef07fa00fdd55bba7047f226c59d5dd87
Description: SoX is a command line utility that can convert various formats
of computer audio files in to other formats. It can also apply
various effects to these sound files during the conversion.
As an added bonus, SoX can play and record audio files on
several unix-style platforms.
Package: sqlite3-cli
Version: 3080803-1
Depends: libc, libsqlite3, libncurses, libreadline
Source: feeds/packages/libs/sqlite3
License: PUBLICDOMAIN
Section: utils
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27358
Filename: packages/sqlite3-cli_3080803-1_ramips_24kec.ipk
Size: 28283
MD5Sum: 4f79a6d78249c37c3e10a849933fe6c0
SHA256sum: 78310b523c4483dccfa781268ce8660c31d707b985d20f372227e197dd477c5d
Description: SQLite is a small C library that implements a self-contained, embeddable,
zero-configuration SQL database engine.
This package contains a terminal-based front-end to the SQLite (v3.x) library
that can evaluate queries interactively and display the results in multiple
formats.
Package: sqm-scripts
Version: 8-2
Depends: libc, tc, kmod-sched, kmod-ifb, iptables, ip, iptables-mod-filter, iptables-mod-ipopt, iptables-mod-conntrack-extra
Source: feeds/packages/net/sqm-scripts
License: GPLv2
Section: net
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: all
Installed-Size: 11389
Filename: packages/sqm-scripts_8-2_all.ipk
Size: 12206
MD5Sum: 2f9f9dd84a8fdb0252ca835ac1c80db5
SHA256sum: 4601114cec9bd705d756a436f2cb81664060a9559e5a7d5777f4a8988ad8f6a7
Description: A set of scripts that does simple SQM configuration.
Package: squid-mod-cachemgr
Version: 3.5.2-2
Depends: libc, squid
Source: feeds/packages/net/squid
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23643
Filename: packages/squid-mod-cachemgr_3.5.2-2_ramips_24kec.ipk
Size: 24382
MD5Sum: 473b9e76bbe7a4d5033f46860825423b
SHA256sum: 9325ef2a48cc5a694f1388ca62d9bcfe61b898c8a3ad76bb3c191321e30b64be
Description: Web based proxy manager and reporting tool
Package: squid
Version: 3.5.2-2
Depends: libc, libopenssl, libpthread, librt, libltdl, libstdcpp, libgnutls
Source: feeds/packages/net/squid
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1582281
Filename: packages/squid_3.5.2-2_ramips_24kec.ipk
Size: 1580246
MD5Sum: db802b78a70d41c67b2eb721fe5f1830
SHA256sum: 0f1226b4a1cb6d925036c9ca17c4c3a526a516cf7b8b83783dc5da11a24d2ce7
Description: Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more.
It reduces bandwidth and improves response times by caching and reusing
frequently-requested web pages.
Package: sshfs
Version: 2.5-1
Depends: libc, libfuse, fuse-utils, glib2, libpthread
Source: feeds/packages/net/sshfs
License: GPL-2.0
Section: net
Maintainer: Zoltan HERPAI <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22894
Filename: packages/sshfs_2.5-1_ramips_24kec.ipk
Size: 23543
MD5Sum: 029d250adf05f9a537f8b397ac5dbf28
SHA256sum: 478a4fc476a99323ecdd188c39087e10bd6d2c3a674994f676da2a45e70df82a
Description: Mount remote system over sftp.
Package: sshtunnel
Version: 3-3
Depends: libc, openssh-client
Source: feeds/packages/net/sshtunnel
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3266
Filename: packages/sshtunnel_3-3_ramips_24kec.ipk
Size: 4123
MD5Sum: 70e7de134ef1d20f0a04ba70c9ff9703
SHA256sum: 337d2e5a7e459ccf84f04e95caa5cf65f454da007ad12600a7e07370e128b26c
Description: Creates openssh ssh(1) Local and Remote tunnels configured in UCI file. Can be used to allow remote connections, possibly over NATed connections or without public IP/DNS
Package: sslh
Version: v1.17-1
Depends: libc
Source: feeds/packages/net/sslh
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 10214
Filename: packages/sslh_v1.17-1_ramips_24kec.ipk
Size: 10953
MD5Sum: 55f23a2f3a078d5405e6a9d3fffd7de2
SHA256sum: 702048a6a7f92d614cdb838adc472133445c41c5be856e0a879a6b7f72b8dc22
Description: SSL/SSH multiplexer
Package: ssmtp
Version: 2.64-1.1
Depends: libc, libopenssl
Source: feeds/packages/mail/ssmtp
License: GPL-2.0+
Section: mail
Maintainer: Dirk Brenken <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11718
Filename: packages/ssmtp_2.64-1.1_ramips_24kec.ipk
Size: 12737
MD5Sum: 5e30a108b4911bf093da32fa2f3818dd
SHA256sum: 56df55546b6aab9de5bce5c6d4c441d3a5a58043cbedc9590bff52aa57f59210
Description: A secure, effective and simple way of getting mail off a system to your
mail hub. It contains no suid-binaries or other dangerous things - no
mail spool to poke around in, and no daemons running in the background.
Mail is simply forwarded to the configured mailhost. Extremely easy
configuration.
Package: sstp-client
Version: 1.0.9-1
Depends: libc, libevent2, libopenssl, ppp
Source: feeds/packages/net/sstp-client
License: GPLv2
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28106
Filename: packages/sstp-client_1.0.9-1_ramips_24kec.ipk
Size: 29011
MD5Sum: 02dcde8c329cdce98d6887960482011e
SHA256sum: 3eba2fe6adac3e1f872eb46b6f445b9c7976c82c784557f3b6397f04a801f040
Description: It can be used instead of PPTP or L2TP, and is only available with Windows Vista/7 connecting to a Windows 2008 Server. The advantage of SSTP compared to PPTP and L2TP is that it cannot be easily blocked by firewalls since the traffic is transmitted over HTTPS on port 443.
Windows Vista/7 uses SSTP whenever PPTP or L2TP cannot be established. For further information on SSTP check out wikipedia's article on Secure Socket Tunneling Protocol.
Package: stm32flash
Version: 0.4-1
Depends: libc
Source: feeds/packages/utils/stm32flash
License: GPL-2.0+
LicenseFiles: gpl-2.0.txt
Section: utils
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15623
Filename: packages/stm32flash_0.4-1_ramips_24kec.ipk
Size: 16382
MD5Sum: 6d37094f70037fa81b254cc98b9001b4
SHA256sum: e5adbc3ca696524eff2a257e05f91bc966fdd75c53e8628807f9308d62c43ccc
Description: This tool can be used to burn firmware images to STM32 ARM processors
using the built-in serial bootloader.
Package: stoken
Version: 0.8-1
Depends: libc, libstoken
Source: feeds/packages/utils/stoken
License: LGPL-2.1
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3514
Filename: packages/stoken_0.8-1_ramips_24kec.ipk
Size: 4280
MD5Sum: b54b1bc034e78bfb32b04322cce5abe6
SHA256sum: 9734b132d61e8053472c4b4748325df4e68ceff34423ddbc20904e426d515a7d
Description: stoken is a tokencode generator compatible with RSA SecurID 128-bit (AES). This package contains the cli
Package: str2str
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 460352
Filename: packages/str2str_2.4.2_p9_ramips_24kec.ipk
Size: 460509
MD5Sum: ae306ea5bb3b78c2642c2d36679aa0ad
SHA256sum: 11b2ef45a62070fde1f49efa3a4461f0bfebce08493105b846a9ee73fb69564c
Description: Communication Server
Package: strongswan-charon
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 171900
Filename: packages/strongswan-charon_5.2.2-2_ramips_24kec.ipk
Size: 172382
MD5Sum: c1cd7f0c752fcbfc7a4046872209a1f8
SHA256sum: 395939b00df9e3d4ac21862bc6d5d4ab3dda0568e5cfb45204467a85fe4f4b8f
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This package contains charon, an IKEv2 keying daemon.
Package: strongswan-default
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-charon, strongswan-mod-aes, strongswan-mod-attr, strongswan-mod-constraints, strongswan-mod-des, strongswan-mod-dnskey, strongswan-mod-fips-prf, strongswan-mod-gmp, strongswan-mod-hmac, strongswan-mod-kernel-netlink, strongswan-mod-md5, strongswan-mod-nonce, strongswan-mod-pem, strongswan-mod-pgp, strongswan-mod-pkcs1, strongswan-mod-pubkey, strongswan-mod-random, strongswan-mod-resolve, strongswan-mod-revocation, strongswan-mod-sha1, strongswan-mod-sha2, strongswan-mod-socket-default, strongswan-mod-stroke, strongswan-mod-updown, strongswan-mod-x509, strongswan-mod-xauth-generic, strongswan-mod-xcbc, strongswan-utils
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: packages/strongswan-default_5.2.2-2_ramips_24kec.ipk
Size: 1075
MD5Sum: 591e951021f3dad3d9706f2ca3e57485
SHA256sum: 62b7726c5b54af4542ac6011e09463b87bc3e98d5383f80e9ee10361db8731c7
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This meta-package contains only dependencies to match upstream defaults.
Package: strongswan-full
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-charon, strongswan-mod-addrblock, strongswan-mod-aes, strongswan-mod-af-alg, strongswan-mod-agent, strongswan-mod-attr, strongswan-mod-attr-sql, strongswan-mod-blowfish, strongswan-mod-ccm, strongswan-mod-cmac, strongswan-mod-constraints, strongswan-mod-coupling, strongswan-mod-ctr, strongswan-mod-curl, strongswan-mod-des, strongswan-mod-dhcp, strongswan-mod-dnskey, strongswan-mod-duplicheck, strongswan-mod-eap-identity, strongswan-mod-eap-md5, strongswan-mod-eap-mschapv2, strongswan-mod-eap-radius, strongswan-mod-farp, strongswan-mod-fips-prf, strongswan-mod-gcm, strongswan-mod-gcrypt, strongswan-mod-gmp, strongswan-mod-ha, strongswan-mod-hmac, strongswan-mod-kernel-netlink, strongswan-mod-ldap, strongswan-mod-led, strongswan-mod-load-tester, strongswan-mod-nonce, strongswan-mod-md4, strongswan-mod-md5, strongswan-mod-mysql, strongswan-mod-openssl, strongswan-mod-pem, strongswan-mod-pgp, strongswan-mod-pkcs1, strongswan-mod-pkcs8, strongswan-mod-pkcs11, strongswan-mod-pubkey, strongswan-mod-random, strongswan-mod-resolve, strongswan-mod-revocation, strongswan-mod-sha1, strongswan-mod-sha2, strongswan-mod-smp, strongswan-mod-socket-default, strongswan-mod-sql, strongswan-mod-sqlite, strongswan-mod-stroke, strongswan-mod-test-vectors, strongswan-mod-uci, strongswan-mod-unity, strongswan-mod-updown, strongswan-mod-whitelist, strongswan-mod-x509, strongswan-mod-xauth-eap, strongswan-mod-xauth-generic, strongswan-mod-xcbc, strongswan-utils
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: packages/strongswan-full_5.2.2-2_ramips_24kec.ipk
Size: 1318
MD5Sum: ed6954666585b0bc7963eb0b28b4d942
SHA256sum: ff4bfe93fa248385bfceff758656dbbb2e35ea0d69771aaa665c3c7139d1b0a2
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This meta-package contains dependencies for all of the strongswan plugins
except kernel-libipsec,
socket-dynamic and which are ommitted in favor of the kernel-netlink and
socket-default plugins.
Package: strongswan-minimal
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-charon, strongswan-mod-aes, strongswan-mod-gmp, strongswan-mod-hmac, strongswan-mod-kernel-netlink, strongswan-mod-nonce, strongswan-mod-pubkey, strongswan-mod-random, strongswan-mod-sha1, strongswan-mod-socket-default, strongswan-mod-stroke, strongswan-mod-updown, strongswan-mod-x509, strongswan-mod-xcbc
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: packages/strongswan-minimal_5.2.2-2_ramips_24kec.ipk
Size: 1002
MD5Sum: 9bf65eac2ddb903906ff86f79277116b
SHA256sum: 8ee2007a7b4f7ee98958fded05e1efa536b3d67431d9f5158e89952a9202df25
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This meta-package contains only dependencies for a minimal IKEv2 setup.
Package: strongswan-mod-addrblock
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2815
Filename: packages/strongswan-mod-addrblock_5.2.2-2_ramips_24kec.ipk
Size: 3569
MD5Sum: 2763596b8871f7e8f32cf54ee9d8aad3
SHA256sum: b81b210640d6153d8ee55e45d45da649ef7cf0a21fbef069a19a42eecc1085af
Description: StrongSwan RFC 3779 address block constraint support plugin
Package: strongswan-mod-aes
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15807
Filename: packages/strongswan-mod-aes_5.2.2-2_ramips_24kec.ipk
Size: 15490
MD5Sum: bb38edb23e6bb6fd663e6b71e2b69c3d
SHA256sum: ff6416e072f8d8faa4c8129f1bec16ec1e8bf571feb8b9f3b2dc4af25f3a39b0
Description: StrongSwan AES crypto plugin
Package: strongswan-mod-af-alg
Version: 5.2.2-2
Depends: libc, strongswan, kmod-crypto-user
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5423
Filename: packages/strongswan-mod-af-alg_5.2.2-2_ramips_24kec.ipk
Size: 6185
MD5Sum: 4312ff53e0e626d9e54b7830f8932e2b
SHA256sum: cdbb40d9a46628a4ce9120108d4be8fbf741450c6873ec459983f6f8151926a4
Description: StrongSwan AF_ALG crypto interface to Linux Crypto API plugin
Package: strongswan-mod-agent
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3916
Filename: packages/strongswan-mod-agent_5.2.2-2_ramips_24kec.ipk
Size: 4648
MD5Sum: 3a9508b1e748b83663d57cdf8af8bbbe
SHA256sum: b4fb9a8612110ba44db572e66a07cce36b5a4cf5bac25863705d5b102368ed6d
Description: StrongSwan SSH agent signing plugin
Package: strongswan-mod-attr-sql
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sql
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17189
Filename: packages/strongswan-mod-attr-sql_5.2.2-2_ramips_24kec.ipk
Size: 17963
MD5Sum: 40ac17e3d15c1e51bc673f4cf9cc0035
SHA256sum: 06cc42c6f05c50ae1c9dbd9b0faf740f7afbee4dff7831040e29f2382ee98772
Description: StrongSwan SQL based config plugin
Package: strongswan-mod-attr
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3833
Filename: packages/strongswan-mod-attr_5.2.2-2_ramips_24kec.ipk
Size: 4566
MD5Sum: 158140a5476dd6ccc0797da75dccb195
SHA256sum: 8df3ce7f6543684d9fe580533337e6c8e48b5d28f3e9310272dd831c89eca503
Description: StrongSwan file based config plugin
Package: strongswan-mod-blowfish
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7901
Filename: packages/strongswan-mod-blowfish_5.2.2-2_ramips_24kec.ipk
Size: 8691
MD5Sum: a2d0ff7339b3e62179df72ce18807908
SHA256sum: 535bda49a28e9dc3c27b01081a97ee4a22b81997508ccbee37a61a3f700bb883
Description: StrongSwan Blowfish crypto plugin
Package: strongswan-mod-ccm
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3618
Filename: packages/strongswan-mod-ccm_5.2.2-2_ramips_24kec.ipk
Size: 4346
MD5Sum: 62ab12816e2a0c077140c45142b179f0
SHA256sum: 9e5047a3955ad349f9842b8fe6d957814003482119963ec298b8b4720831f19b
Description: StrongSwan CCM AEAD wrapper crypto plugin
Package: strongswan-mod-cmac
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3288
Filename: packages/strongswan-mod-cmac_5.2.2-2_ramips_24kec.ipk
Size: 4020
MD5Sum: b292815d14ef9c237492020ed00a3ae6
SHA256sum: 3a684c84d3982d3c9cb5915b4eefef665d6c01a2c359535a13cb25f588ea8abc
Description: StrongSwan CMAC crypto plugin
Package: strongswan-mod-constraints
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4658
Filename: packages/strongswan-mod-constraints_5.2.2-2_ramips_24kec.ipk
Size: 5397
MD5Sum: cc25aeaa5bb436270bb5515544af37c4
SHA256sum: 5cb60f07fc5955a90c3bb227ad09c5b8e5b77c76080d43a05a7f9d6995c2d1d1
Description: StrongSwan advanced X509 constraint checking plugin
Package: strongswan-mod-coupling
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3275
Filename: packages/strongswan-mod-coupling_5.2.2-2_ramips_24kec.ipk
Size: 4041
MD5Sum: 357de9e06dc441956e289a1556937d6b
SHA256sum: f35f140de6c8c134020a3e7dacc8947b518f77498dca40aa75947cb1f653f34d
Description: StrongSwan IKEv2 plugin to couple peer certificates permanently to authentication plugin
Package: strongswan-mod-ctr
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2477
Filename: packages/strongswan-mod-ctr_5.2.2-2_ramips_24kec.ipk
Size: 3214
MD5Sum: 37635895bc6dcef5a3acfd7df80389bc
SHA256sum: 1ec9426e8c2115b229c45e3199df853ce46346ec0ee424cb914eae823c41a6fa
Description: StrongSwan Counter Mode wrapper crypto plugin
Package: strongswan-mod-curl
Version: 5.2.2-2
Depends: libc, strongswan, libcurl
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3673
Filename: packages/strongswan-mod-curl_5.2.2-2_ramips_24kec.ipk
Size: 4402
MD5Sum: 9cb0588da485e2cb42c5932b0c7797c3
SHA256sum: c1d98a522f7b1594703aaaf42b7dbdbbb4cbf4b419c6b5ae17f62aa0967b644b
Description: StrongSwan cURL fetcher plugin plugin
Package: strongswan-mod-des
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8566
Filename: packages/strongswan-mod-des_5.2.2-2_ramips_24kec.ipk
Size: 9314
MD5Sum: 1268ebabab30445203a7e919c6befca4
SHA256sum: be49abaeadc0dc07244e6575895195cb615cfff6cfbf8c6b0ec58cc375dc47ee
Description: StrongSwan DES crypto plugin
Package: strongswan-mod-dhcp
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7245
Filename: packages/strongswan-mod-dhcp_5.2.2-2_ramips_24kec.ipk
Size: 8012
MD5Sum: 6e4d205fb6f9467d1a3f12a4c20601f0
SHA256sum: 0c7cd46f333b0fec82bbb9af4d93eec6ab97310227eebf2c444c8bfa6c74cc5b
Description: StrongSwan DHCP based attribute provider plugin
Package: strongswan-mod-dnskey
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2636
Filename: packages/strongswan-mod-dnskey_5.2.2-2_ramips_24kec.ipk
Size: 3378
MD5Sum: 3e9d2a7d3f2a6916c96441cdc40bd0b0
SHA256sum: 30520f6d4b17b2eb9060037bb6e3cc7f8e3d598a10c20a12b52fcf32f0990288
Description: StrongSwan DNS RR key decoding plugin
Package: strongswan-mod-duplicheck
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5307
Filename: packages/strongswan-mod-duplicheck_5.2.2-2_ramips_24kec.ipk
Size: 6069
MD5Sum: e928f307dfb6eca3fca73c5581e48c54
SHA256sum: 2acbf62dbcd5cf58d8d3f8abb76eea58abab4d383b1567688c54447f8231264a
Description: StrongSwan advanced duplicate checking plugin
Package: strongswan-mod-eap-identity
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2346
Filename: packages/strongswan-mod-eap-identity_5.2.2-2_ramips_24kec.ipk
Size: 3082
MD5Sum: 4f345000da2621b15e724814705d4ede
SHA256sum: 9f7e29f77c17a103726d78c1a6df555d50f3e81b76f74201b2882ce09ac8c9f3
Description: StrongSwan EAP identity helper plugin
Package: strongswan-mod-eap-md5
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3214
Filename: packages/strongswan-mod-eap-md5_5.2.2-2_ramips_24kec.ipk
Size: 3950
MD5Sum: a9e67501e64edf2ae27145f0303c9b1a
SHA256sum: cebd39c1fce296f28b88edd68282dea51c2c2cdf50e91d7b2d28ec1c543d4e39
Description: StrongSwan EAP MD5 (CHAP) EAP auth plugin
Package: strongswan-mod-eap-mschapv2
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-md4, strongswan-mod-des
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8458
Filename: packages/strongswan-mod-eap-mschapv2_5.2.2-2_ramips_24kec.ipk
Size: 9243
MD5Sum: c37e4019902c09ee90fd7d21d7fe8953
SHA256sum: 713f367a215d1ccf804048a6367d2fb0a0c25c3368285322c09bd8926b30cb7b
Description: StrongSwan EAP MS-CHAPv2 EAP auth plugin
Package: strongswan-mod-eap-radius
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26737
Filename: packages/strongswan-mod-eap-radius_5.2.2-2_ramips_24kec.ipk
Size: 27528
MD5Sum: ce7f7095dc1606a53fb972ed37490494
SHA256sum: 2867a372e489128536661a68c869ff960a9f79375e07665934f5ed5aeb30c202
Description: StrongSwan EAP RADIUS auth plugin
Package: strongswan-mod-farp
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3345
Filename: packages/strongswan-mod-farp_5.2.2-2_ramips_24kec.ipk
Size: 4081
MD5Sum: e94d0b5425d477315595285258f91b34
SHA256sum: 1df7de6f4d130bd6547b2dd1cf867e08254fa6975492d468ae539e556ab7a209
Description: StrongSwan fake arp respsonses plugin
Package: strongswan-mod-fips-prf
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sha1
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2611
Filename: packages/strongswan-mod-fips-prf_5.2.2-2_ramips_24kec.ipk
Size: 3352
MD5Sum: a6c1086382656a24adf09bcd1b428af2
SHA256sum: 8a67f0da2c18f67820dee3952e9d8569f7637a6ed10d8dc387b83b65a9606e99
Description: StrongSwan FIPS PRF crypto plugin
Package: strongswan-mod-gcm
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3763
Filename: packages/strongswan-mod-gcm_5.2.2-2_ramips_24kec.ipk
Size: 4503
MD5Sum: fd97b0b87b310f088bc53d7cc9baed8d
SHA256sum: c93d529aeb67aa6c8bd03aaf4219d01f26655972ea1e889c1d148972761a8591
Description: StrongSwan GCM AEAD wrapper crypto plugin
Package: strongswan-mod-gcrypt
Version: 5.2.2-2
Depends: libc, strongswan, libgcrypt
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10183
Filename: packages/strongswan-mod-gcrypt_5.2.2-2_ramips_24kec.ipk
Size: 10901
MD5Sum: 73b4e6ebc420fb7f2d8834836aea242c
SHA256sum: 215ca4c71df59b957416c60c3ff196159fd1190e05ee61bfdf8f6f0a0799a189
Description: StrongSwan libgcrypt plugin
Package: strongswan-mod-gmp
Version: 5.2.2-2
Depends: libc, strongswan, libgmp
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9787
Filename: packages/strongswan-mod-gmp_5.2.2-2_ramips_24kec.ipk
Size: 10543
MD5Sum: 1ea270ceb0e0a574489b0a2b3de26504
SHA256sum: c2e4dc8a1807dc7912a19a4e1718ba4bbe7b323397fdc14391d5870e281dfc30
Description: StrongSwan libgmp plugin
Package: strongswan-mod-ha
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20537
Filename: packages/strongswan-mod-ha_5.2.2-2_ramips_24kec.ipk
Size: 21288
MD5Sum: b6b73fdac40c41798f289ef87629dc6d
SHA256sum: 8cea6953e4e1c39e46f59309bba35ff6a22ffe5bb59dd2d816a83dedab1be7e9
Description: StrongSwan high availability cluster plugin
Package: strongswan-mod-hmac
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2567
Filename: packages/strongswan-mod-hmac_5.2.2-2_ramips_24kec.ipk
Size: 3296
MD5Sum: ad67be9ecfdb31c6018a7a5bb37ecda4
SHA256sum: 28f50f4330efe7640fed63444df8917402c87f774e6f2bdd8c02296c212c1bc9
Description: StrongSwan HMAC crypto plugin
Package: strongswan-mod-kernel-libipsec
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18879
Filename: packages/strongswan-mod-kernel-libipsec_5.2.2-2_ramips_24kec.ipk
Size: 19650
MD5Sum: e97e64b303c18c1226f8673a673c239b
SHA256sum: 61183edbd370c2205417056d5e97e64c9dc9ba2306e064d4abe065cffda5827d
Description: StrongSwan libipsec kernel interface plugin
Package: strongswan-mod-kernel-netlink
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28046
Filename: packages/strongswan-mod-kernel-netlink_5.2.2-2_ramips_24kec.ipk
Size: 28757
MD5Sum: c1cc5fe6aa7cf10bdabf02c59b0f1595
SHA256sum: d000d1e0ef2f38030cb1222c735d871932e21a68ed1014b980427c5d996e6411
Description: StrongSwan netlink kernel interface plugin
Package: strongswan-mod-ldap
Version: 5.2.2-2
Depends: libc, strongswan, libopenldap
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2802
Filename: packages/strongswan-mod-ldap_5.2.2-2_ramips_24kec.ipk
Size: 3530
MD5Sum: 078e34da803adf7fca092d51dd6564e7
SHA256sum: 575ec8ac54b0a7443c04b7fa7ecbe0a99f938b8213e6dd973af7b7961ca8cdd9
Description: StrongSwan LDAP plugin
Package: strongswan-mod-led
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2948
Filename: packages/strongswan-mod-led_5.2.2-2_ramips_24kec.ipk
Size: 3686
MD5Sum: 7e76017f7b55d88505dc8e88514d3af1
SHA256sum: d48452f4e5d0af483889d87466becd13d200309e6bb6c16d5ed1084f50bf0bbd
Description: StrongSwan LED blink on IKE activity plugin
Package: strongswan-mod-load-tester
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12946
Filename: packages/strongswan-mod-load-tester_5.2.2-2_ramips_24kec.ipk
Size: 13704
MD5Sum: 25a51f4f3ddc64abf281ce7ff524033e
SHA256sum: 7147d372215f832f140d9868aa7e1f7e4333e41bb6936b3b24c096d139f3adfe
Description: StrongSwan load testing plugin
Package: strongswan-mod-md4
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3210
Filename: packages/strongswan-mod-md4_5.2.2-2_ramips_24kec.ipk
Size: 3930
MD5Sum: 618bbd6fc8cacc13e5c73837fa4b3ea1
SHA256sum: 882e25526671b2e55995ac964fd62c3c576a4775ee6521f68a9fd5a1ae37a954
Description: StrongSwan MD4 crypto plugin
Package: strongswan-mod-md5
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4256
Filename: packages/strongswan-mod-md5_5.2.2-2_ramips_24kec.ipk
Size: 4984
MD5Sum: af3a5c40d6c01b10b6eb2711366a9d66
SHA256sum: da1c627d3e85911dc78f1ff83bcc3371bfb4beb455285965589ac6e22c57fa2d
Description: StrongSwan MD5 crypto plugin
Package: strongswan-mod-mysql
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sql, libmysqlclient-r
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5447
Filename: packages/strongswan-mod-mysql_5.2.2-2_ramips_24kec.ipk
Size: 6221
MD5Sum: 0b1ba0da5e2d253410b9dacd0b8102d2
SHA256sum: 0f493a002fc0682bfca6ccd81ce895d0de962799da0521d7909b5221640ffdc7
Description: StrongSwan MySQL database interface plugin
Package: strongswan-mod-nonce
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1797
Filename: packages/strongswan-mod-nonce_5.2.2-2_ramips_24kec.ipk
Size: 2564
MD5Sum: 57e04e992fe01a81d3a8a1afb7ece398
SHA256sum: 5b53f83c872830fcba283acbfa872235c09c5ad848807fc560e6bbf8c72aac8a
Description: StrongSwan nonce genereation plugin
Package: strongswan-mod-openssl
Version: 5.2.2-2
Depends: libc, strongswan, libopenssl
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26749
Filename: packages/strongswan-mod-openssl_5.2.2-2_ramips_24kec.ipk
Size: 27453
MD5Sum: 0e55b1140a51e79caba14a5dc82b403a
SHA256sum: 289b0ee398da3aeac069057d2d739199ad2330a76487c87ac7ac3a7fd899a32a
Description: StrongSwan OpenSSL crypto plugin
Package: strongswan-mod-pem
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5917
Filename: packages/strongswan-mod-pem_5.2.2-2_ramips_24kec.ipk
Size: 6664
MD5Sum: 1062f43e72ca5c1afe3997cc8f0fa97c
SHA256sum: 146bd02f40a0193a04e4832a5f95bbb80bc4f811eacc7a8793083bc1c1e9ed70
Description: StrongSwan PEM decoding plugin
Package: strongswan-mod-pgp
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6031
Filename: packages/strongswan-mod-pgp_5.2.2-2_ramips_24kec.ipk
Size: 6781
MD5Sum: 8fdd251f918b3259f01ea3a1fcabce3b
SHA256sum: 56f974ba8dcdfff6ef66c5b32889f2e48d7556f2ca6fabe0f21b8509f21c6b46
Description: StrongSwan PGP key decoding plugin
Package: strongswan-mod-pkcs11
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22207
Filename: packages/strongswan-mod-pkcs11_5.2.2-2_ramips_24kec.ipk
Size: 22748
MD5Sum: e40f7bcd7a0503e4f90b3af102881625
SHA256sum: 3266ed48d85b9afc69f0e5e742df9252319f25a91db546455ee52e2c41ed7329
Description: StrongSwan PKCS11 key decoding plugin
Package: strongswan-mod-pkcs1
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4235
Filename: packages/strongswan-mod-pkcs1_5.2.2-2_ramips_24kec.ipk
Size: 4967
MD5Sum: d055d5369841fbf3dc8e432ba4459219
SHA256sum: b375486b78d3fd06ff57d2540354f6b8ae8476428fb10e1f1792f523f928ae17
Description: StrongSwan PKCS1 key decoding plugin
Package: strongswan-mod-pkcs8
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2725
Filename: packages/strongswan-mod-pkcs8_5.2.2-2_ramips_24kec.ipk
Size: 3463
MD5Sum: 35acfad6de9fb30e206df9d18b453f82
SHA256sum: ce2ed77d7ced5c317537370f5037bb0e31837585df27dd34fa111d6463a09fe1
Description: StrongSwan PKCS8 key decoding plugin
Package: strongswan-mod-pubkey
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2766
Filename: packages/strongswan-mod-pubkey_5.2.2-2_ramips_24kec.ipk
Size: 3490
MD5Sum: fa660df2a9dae93b1261ac313ca97eeb
SHA256sum: 7d31bab6cf987f64d31fe6941fe2114e350e2615ed2918e5eb5282e194f4c81b
Description: StrongSwan raw public key plugin
Package: strongswan-mod-random
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2757
Filename: packages/strongswan-mod-random_5.2.2-2_ramips_24kec.ipk
Size: 3482
MD5Sum: 84f881c5d4b8ff755ac8eeaa6e4ef3db
SHA256sum: c0ccef12e9ad2be1da82d43f538dd68f195f0db9081726a7ac0d2d061bb43425
Description: StrongSwan RNG plugin
Package: strongswan-mod-resolve
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3558
Filename: packages/strongswan-mod-resolve_5.2.2-2_ramips_24kec.ipk
Size: 4285
MD5Sum: 98fd950f186ce99ff35b7989cf3d7830
SHA256sum: e3733309d47204da157cb4350b4a5d85ca495e105041539bd6571ed0e031b993
Description: StrongSwan DNS resolver plugin
Package: strongswan-mod-revocation
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5520
Filename: packages/strongswan-mod-revocation_5.2.2-2_ramips_24kec.ipk
Size: 6274
MD5Sum: f69957dfaa6203f57989392f8599042f
SHA256sum: ae9ce11ccd33d7c0d8093867357930bbe0db0ba2a3a91eea7c1cc3157b209710
Description: StrongSwan X509 CRL/OCSP revocation plugin
Package: strongswan-mod-sha1
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4880
Filename: packages/strongswan-mod-sha1_5.2.2-2_ramips_24kec.ipk
Size: 5592
MD5Sum: c35a7e4c826261542099dcec5a7c5f09
SHA256sum: 96e083d17b12df86404b3b9e206cf22be999a4ef485f5c520ee2d5a912b8930c
Description: StrongSwan SHA1 crypto plugin
Package: strongswan-mod-sha2
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5656
Filename: packages/strongswan-mod-sha2_5.2.2-2_ramips_24kec.ipk
Size: 6400
MD5Sum: 25b830cfaad20a203a5fb0fb62fd765e
SHA256sum: 8676d50a76ccc5153fb2b69a7e39b705944fcfbfb77de50e09b8d6cbdcb1310b
Description: StrongSwan SHA2 crypto plugin
Package: strongswan-mod-smp
Version: 5.2.2-2
Depends: libc, strongswan, libxml2
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6305
Filename: packages/strongswan-mod-smp_5.2.2-2_ramips_24kec.ipk
Size: 7085
MD5Sum: 533fa94b3936f6ee4a90b07fd4397547
SHA256sum: dfa60bb4d0e803f9b44b505468bc3b84f81b44532b19f22db12d9dccbd39b07a
Description: StrongSwan SMP configuration and control interface plugin
Package: strongswan-mod-socket-default
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5261
Filename: packages/strongswan-mod-socket-default_5.2.2-2_ramips_24kec.ipk
Size: 6010
MD5Sum: 904104135453ab971131d2b66624dfc4
SHA256sum: 54c797f22221683324b436e528620e0665cc4824d97934e9bc505b5fc13d941c
Description: StrongSwan default socket implementation for charon plugin
Package: strongswan-mod-socket-dynamic
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4737
Filename: packages/strongswan-mod-socket-dynamic_5.2.2-2_ramips_24kec.ipk
Size: 5479
MD5Sum: aba17641a024e2c803fb38e0a43f424e
SHA256sum: 3db60d3bb35174429c7d93670a390ca9b7df80062745744ff7f01d6448401792
Description: StrongSwan dynamic socket implementation for charon plugin
Package: strongswan-mod-sql
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7465
Filename: packages/strongswan-mod-sql_5.2.2-2_ramips_24kec.ipk
Size: 8243
MD5Sum: bbccfb21641de92b7bcc507f6467cbc4
SHA256sum: ecd5e0b58f8a88a55f4ee6822f01a657b1563bbba63192260724dac5ea6316a2
Description: StrongSwan SQL database interface plugin
Package: strongswan-mod-sqlite
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sql, libsqlite3
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3899
Filename: packages/strongswan-mod-sqlite_5.2.2-2_ramips_24kec.ipk
Size: 4653
MD5Sum: faa61f26a73c19be583544371b2e8ac9
SHA256sum: 1738ca53f8695c1663caaed7bc3c64300c8b1738286690bbed3c2f442d690b69
Description: StrongSwan SQLite database interface plugin
Package: strongswan-mod-stroke
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-utils
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 68118
Filename: packages/strongswan-mod-stroke_5.2.2-2_ramips_24kec.ipk
Size: 68916
MD5Sum: f51c5280d7b0e8e3462997a7145c7765
SHA256sum: 74c4f9e3141d1afeeff7b1c29fc34265015665118f48a12b76b83aea82aacde0
Description: StrongSwan Stroke plugin
Package: strongswan-mod-test-vectors
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19062
Filename: packages/strongswan-mod-test-vectors_5.2.2-2_ramips_24kec.ipk
Size: 19654
MD5Sum: 42c2559820aed59cb1aa6d64b0f3019b
SHA256sum: a67da103fdf2043912c21a8e5ef1be7c82df0d67915de3102561b2c27f7dc27b
Description: StrongSwan crypto test vectors plugin
Package: strongswan-mod-uci
Version: 5.2.2-2
Depends: libc, strongswan, libuci
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6279
Filename: packages/strongswan-mod-uci_5.2.2-2_ramips_24kec.ipk
Size: 7080
MD5Sum: 496b493e7fd36391d82e55501c9abeaf
SHA256sum: 157480bb8923d83c91d8fad2dc3f371b2b08cbd3c17dfb79773f75420b43c95a
Description: StrongSwan UCI config interface plugin
Package: strongswan-mod-unity
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5737
Filename: packages/strongswan-mod-unity_5.2.2-2_ramips_24kec.ipk
Size: 6473
MD5Sum: 252a5e9f47bd280f06ef819cd4647529
SHA256sum: db4423695560361d4a854e7ffa872047f1f562ff8e21c63c6cd8d69fe39d7665
Description: StrongSwan Cisco Unity extension plugin
Package: strongswan-mod-updown
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10777
Filename: packages/strongswan-mod-updown_5.2.2-2_ramips_24kec.ipk
Size: 11522
MD5Sum: 982b9b0a7c714fdb1278037236ce4281
SHA256sum: 8329d5a0b30e0f6b197898575a03e00b6b7a3a3978b534f598b828fb1a55957d
Description: StrongSwan updown firewall plugin
Package: strongswan-mod-whitelist
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6002
Filename: packages/strongswan-mod-whitelist_5.2.2-2_ramips_24kec.ipk
Size: 6757
MD5Sum: 8f1e363342bc5b3d0b75df215a5c9963
SHA256sum: 9fd8261bfb42a4b7ad465ca7f13e5e6b604ceee06bda02e3ec62d657253d244d
Description: StrongSwan peer identity whitelisting plugin
Package: strongswan-mod-x509
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27716
Filename: packages/strongswan-mod-x509_5.2.2-2_ramips_24kec.ipk
Size: 28123
MD5Sum: 832767e8d942d42528be020df38c0136
SHA256sum: 085f1e10dad6ac6eb9648f10d45a2058cd973ba88d0e720755a58af6413a3d0d
Description: StrongSwan x509 certificate plugin
Package: strongswan-mod-xauth-eap
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3161
Filename: packages/strongswan-mod-xauth-eap_5.2.2-2_ramips_24kec.ipk
Size: 3899
MD5Sum: a4cfd26422a2ab8c8afb47b0f38e16e0
SHA256sum: 39a4ce2635ddac7149ed105445eeecd276e90381ffcb339dc29c49318365cc32
Description: StrongSwan EAP XAuth backend plugin
Package: strongswan-mod-xauth-generic
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3148
Filename: packages/strongswan-mod-xauth-generic_5.2.2-2_ramips_24kec.ipk
Size: 3889
MD5Sum: f8468e11bd04ac4f7e33d54a18416928
SHA256sum: 61aad178b512b7a591c9de9b1b7fed19bf410c62324d2ebc846d4410cc98c789
Description: StrongSwan generic XAuth backend plugin
Package: strongswan-mod-xcbc
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3238
Filename: packages/strongswan-mod-xcbc_5.2.2-2_ramips_24kec.ipk
Size: 3968
MD5Sum: 8e65f5038ee39e1ec7a89bc32af9cec8
SHA256sum: e1faf757a32adb455aca0c468bc64b3e40b3db3adf907b3d91caf66d2cae00f7
Description: StrongSwan xcbc crypto plugin
Package: strongswan-utils
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37799
Filename: packages/strongswan-utils_5.2.2-2_ramips_24kec.ipk
Size: 38705
MD5Sum: 3f3c97e17fea0b40bb75d6eabb469052
SHA256sum: 617e993a3538868bc574a74cc2b640cb60bdb0e084b477b149709869dd250a86
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This package contains the pki & scepclient utilities.
Package: strongswan
Version: 5.2.2-2
Depends: libc, libpthread, ip, kmod-crypto-authenc, kmod-ipsec, kmod-ipsec4, kmod-ipsec6, kmod-ipt-ipsec, iptables-mod-ipsec
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 129630
Filename: packages/strongswan_5.2.2-2_ramips_24kec.ipk
Size: 130211
MD5Sum: 33cae69ac75621d8ee2399ce283adc64
SHA256sum: adb576b24fd8f96d6fc8c3a3fbfd59748dc382b14280c5261fe92e00d96b63e6
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This package contains shared libraries and scripts.
Package: stunnel
Version: 5.10-1
Depends: libc, libopenssl
Source: feeds/packages/net/stunnel
License: GPL-2.0+
LicenseFiles: COPYING COPYRIGHT.GPL
Section: net
Maintainer: Michael Haas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 59409
Filename: packages/stunnel_5.10-1_ramips_24kec.ipk
Size: 60284
MD5Sum: f638b9b0b4e678e2298ebda3157eb727
SHA256sum: b39b9da327e82370d88bc49d2dfe1c5b7a8e0ede9848f1b301651ac9f6dfae9e
Description: Stunnel is a program that allows you to encrypt arbitrary TCP
connections inside SSL (Secure Sockets Layer) available on both Unix
and Windows. Stunnel can allow you to secure non-SSL aware daemons and
protocols (like POP, IMAP, LDAP, etc) by having Stunnel provide the
encryption, requiring no changes to the daemon's code.
Package: sudo
Version: 1.8.12-1
Depends: libc
Source: feeds/packages/admin/sudo
License: ISC
LicenseFiles: doc/LICENSE
Section: admin
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 233656
Filename: packages/sudo_1.8.12-1_ramips_24kec.ipk
Size: 234066
MD5Sum: ecf3469993e4e55281a8ac2c1fccfc3f
SHA256sum: a20781aaad8b035ca61bd92da04c9f1c14d9e629505ee986d562303bfb85e07d
Description: Sudo (su "do") allows a system administrator to delegate authority to
give certain users (or groups of users) the ability to run some (or
all) commands as root or another user while providing an audit trail of
the commands and their arguments.
Package: sumo
Version: 0.22.0-1
Depends: libc, libstdcpp, libxerces-c
Source: feeds/packages/utils/sumo
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3782159
Filename: packages/sumo_0.22.0-1_ramips_24kec.ipk
Size: 3774778
MD5Sum: 1bf6c27836e3309fb6ae06d27cd7bc95
SHA256sum: 229d72baf143143e987441d576f9d0adba38e9cf46ad9f5e9a14c7b44cd0ed34
Description: SUMO is a free and open traffic simulation suite which is available since 2001.
SUMO allows modelling of intermodal traffic systems including road vehicles,
public transport and pedestrians. Included with SUMO is a wealth of supporting
tools which handle tasks such as route finding, visualization, network import
and emission calculation. SUMO can be enhanced with custom models and provides
various APIs to remotely control the simulation.
Package: svox
Version: 1.0+git20130326-2
Depends: libc, libpopt
Source: feeds/packages/sound/svox
License: Apache-2.0
Section: sound
Maintainer: Alessandro Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4809443
Filename: packages/svox_1.0+git20130326-2_ramips_24kec.ipk
Size: 4806452
MD5Sum: 01a1a2d481203031555d5a920c668ffa
SHA256sum: 7250bd24c699cf7857da240a615d1074be5a9b888d66b839b076b032fceffb1e
Description: SVOX is an embedded speech technology company founded in 2000 and
headquartered in Zurich, Switzerland. SVOX was acquired by Nuance
Communications in 2011. Company's products included Automated Speech
Recognition (ASR), Text-to-Speech (TTS) and Speech Dialog systems,
with customers mostly being manufacturers and system integrators in
automotive and mobile device industries.
SVOX TTS technology is characterized by natural and clear sound as well
as unique polyglot capability - the same voice can speak multiple
languages like a native speaker.
Package: tar
Version: 1.28-2
Depends: libc, bzip2, libacl, libattr
Source: feeds/packages/utils/tar
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 178126
Filename: packages/tar_1.28-2_ramips_24kec.ipk
Size: 178789
MD5Sum: d7b7929dafd571fefc02e40c9a831499
SHA256sum: 12842af12bb5577c441c3d6455d24d6156d6dad8b3f8f8ee54e8f8c25540a858
Description: Tar is a program for packaging a set of files as a
single archive in tar format.
Package: taskwarrior
Version: 2.4.1-1
Depends: libc, libstdcpp, libuuid, libgnutls
Source: feeds/packages/utils/taskwarrior
License: MIT
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 393583
Filename: packages/taskwarrior_2.4.1-1_ramips_24kec.ipk
Size: 393413
MD5Sum: cfb636ac4a121490d31b3aaf15f360d3
SHA256sum: 182e274f2a2428c31dfdfc3ac7f20020556b52d206c4e0de13d80556e1f3d767
Description: taskwarrior is a command-line todo list manager
Package: tayga
Version: 0.9.2-2
Depends: libc, ip, kmod-ipv6, kmod-tun
Source: feeds/packages/ipv6/tayga
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Ondrej Caletka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18356
Filename: packages/tayga_0.9.2-2_ramips_24kec.ipk
Size: 19202
MD5Sum: dffd0c0726f7dd969a883be2dbc075cc
SHA256sum: d19781b4ffa092dcf3f5d16a8d3bcfb07b6af5e0c2cb0ed5af17d90553f7f20e
Description: TAYGA is an out-of-kernel stateless NAT64 implementation for
Linux. It uses the TUN driver to exchange packets with the
kernel, which is the same driver used by OpenVPN and QEMU/KVM.
Package: tcpproxy
Version: 1.1-1
Depends: libc
Source: feeds/packages/net/tcpproxy
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17593
Filename: packages/tcpproxy_1.1-1_ramips_24kec.ipk
Size: 18485
MD5Sum: 9329656baef16bcc0dccf46c10d50909
SHA256sum: 85abd90b28dac31b97630ffebfb78d8e14652c4dadb3c6f6cbc27c90daadccf8
Description: tcpproxy is a simple tcp connection proxy which combines the features of rinetd and 6tunnel.
tcpproxy supports IPv4 and IPv6 and also supports connections from IPv6 to IPv4 endpoints and vice versa.
Package: tcsh
Version: 6.18.01-1
Depends: libc, libncurses
Source: feeds/packages/utils/tcsh
License: BSD-4-Clause-UC
LicenseFiles: Copyright
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153346
Filename: packages/tcsh_6.18.01-1_ramips_24kec.ipk
Size: 154281
MD5Sum: 09dd00c0a0e2f77253c57af5c327a054
SHA256sum: bc2a7d37f70af5f618e0b9d9d291a962d042e9cfdca2590d15af4b510aafcd9f
Description: Tcsh is an enhanced, but completely compatible
version of the Berkeley UNIX C shell (csh). It
is a command language interpreter usable both
as an interactive login shell and a shell
script command processor. It includes a
command-line editor, programmable word
completion, spelling correction, a history
mechanism, job control and a C-like syntax.
Package: tdb
Version: 1.0.6-1
Depends: libc
Source: feeds/packages/libs/tdb
License: GPL-2.0
Section: libs
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25615
Filename: packages/tdb_1.0.6-1_ramips_24kec.ipk
Size: 26093
MD5Sum: 922a9e84f86107f0bd8978b56d9f730c
SHA256sum: 99972164d5d96b6d1ba435e270175fab8c24c64412b3935625a2f182dd3504a1
Description: TDB is a Trivial Database. In concept, it is very much like GDBM,
and BSD's DB except that it allows multiple simultaneous writers
and uses locking internally to keep writers from trampling on
each other. TDB is also extremely small.
Package: tgt
Version: 1.0.53-3
Depends: libc, libpthread, libaio
Source: feeds/packages/net/tgt
License: GPL-2.0
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 131197
Filename: packages/tgt_1.0.53-3_ramips_24kec.ipk
Size: 132207
MD5Sum: 25cc05cce24c236c92f0b14270ef2288
SHA256sum: 70e96e083d03351305e2054945c8a3b0cf63c8a3e8bc35474a50740dfe503ce9
Description: Linux SCSI target framework (tgt) aims to simplify various SCSI target driver (iSCSI, Fibre Channel, SRP, etc) creation and maintenance.
Key goals of the project are the clean integration into the scsi-mid layer and implementing a great portion of tgt in user space.
Tgt consists of kernel-space and user-space code. The kernel-space component is included in upstream as of 2.6.20.
Note that if you are interested in only iSCSI (probably you are), you need only the user-space code (any kernel version is fine).
Package: tiff-utils
Version: 4.0.3-4
Depends: libc, libtiff
Source: feeds/packages/libs/tiff
License: BSD
LicenseFiles: COPYRIGHT
Section: utils
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 174094
Filename: packages/tiff-utils_4.0.3-4_ramips_24kec.ipk
Size: 174828
MD5Sum: 1ad6634e04f7dd50ffe72a112388f35c
SHA256sum: de5a1cadbbcd0e976ab2c3c859e68256f0b7c6ea6b3fe3831a480133e9f05253
Description: TIFF utilities
Package: tinc
Version: 1.0.25-1
Depends: libc, liblzo, libopenssl, kmod-tun
Source: feeds/packages/net/tinc
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62264
Filename: packages/tinc_1.0.25-1_ramips_24kec.ipk
Size: 63083
MD5Sum: 82255d8a9a3b2452f50cb5a115c3c840
SHA256sum: 8ce6c9d5e745cdfd72240ae72648b903122d62ce967bf9f28786d6c1443149d8
Description: tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and
encryption to create a secure private network between hosts on the Internet.
Package: tinyproxy
Version: 1.8.3-2
Depends: libc
Source: feeds/packages/net/tinyproxy
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29228
Filename: packages/tinyproxy_1.8.3-2_ramips_24kec.ipk
Size: 29944
MD5Sum: 07aba386295cf2e0d2fe09d7b7ed9ef3
SHA256sum: c16ef97ffa65ce3d1caa631d1b101864891d4e4cc7e8f6cd25f6448300772022
Description: Tinyproxy is a lightweight HTTP and HTTPS proxy
Package: tmux
Version: 1.9a-1
Depends: libc, libncurses, libevent2, libpthread, librt
Source: feeds/packages/utils/tmux
License: ISC
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 158263
Filename: packages/tmux_1.9a-1_ramips_24kec.ipk
Size: 158467
MD5Sum: b60fdc499b718f5f8ddd13be9d90540e
SHA256sum: cde3f934af6ee265edae626f11485b7114a202fe2b03d4ee51c05792cfc57b79
Description: tmux is a modern, BSD-licensed alternative to GNU screen.
Package: tracertools
Version: 20141027-9ba70d1fe4f3c0f24d565d98c79fee71711823f0
Depends: libc
Source: feeds/packages/utils/tracertools
License: GPL-3.0
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4986
Filename: packages/tracertools_20141027-9ba70d1fe4f3c0f24d565d98c79fee71711823f0_ramips_24kec.ipk
Size: 5737
MD5Sum: 035a6fac1b4a325211ac7fd502c8522f
SHA256sum: e79980f5d6396bd1a9923cd3ae43b66d33d65d63f9bf99b21cf436e59af450fe
Description: Tools for the Tracer MPPT solar charge controller.
Package: transmission-cli
Version: 2.84-1
Depends: libc, transmission-daemon
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 742020
Filename: packages/transmission-cli_2.84-1_ramips_24kec.ipk
Size: 740609
MD5Sum: f726a0c2a790ec3510a4f7df5f13c74e
SHA256sum: 663a46ab47f19f033a747164808e9c868f3efda361fb74d27226b5d215a30456
Description: CLI utilities for transmission.
Package: transmission-daemon
Version: 2.84-1
Depends: libc, libcurl, libopenssl, libpthread, libevent2, librt
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 189892
Filename: packages/transmission-daemon_2.84-1_ramips_24kec.ipk
Size: 190176
MD5Sum: a27898456fa7885f04b1a3265ddc1216
SHA256sum: cb50f3774f8ea97bd09aabd09fdb596e97807636d20f2870f2b7e4787b60ae85
Description: Transmission is a simple BitTorrent client.
It features a very simple, intuitive interface
on top on an efficient, cross-platform back-end.
This package contains the daemon itself.
Package: transmission-remote
Version: 2.84-1
Depends: libc, libcurl, libopenssl, libpthread, libevent2, librt
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197232
Filename: packages/transmission-remote_2.84-1_ramips_24kec.ipk
Size: 197453
MD5Sum: 8eb5ede69e926788771049a1923295b5
SHA256sum: bc79272a34689367bb4b0c4a69ac14028a1e324cd3be655737ea92f17de1ec02
Description: CLI remote interface for transmission.
Package: transmission-web
Version: 2.84-1
Depends: libc, transmission-daemon
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 205362
Filename: packages/transmission-web_2.84-1_ramips_24kec.ipk
Size: 206232
MD5Sum: bfd036cb2027574568378d3e6a371e32
SHA256sum: 19020577bfe231571f490b5a2f0ad8146ace5949d9736bb0be8e642129ad84fd
Description: Webinterface resources for transmission.
Package: triggerhappy
Version: 0.3.4-2
Depends: libc
Source: feeds/packages/utils/triggerhappy
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15250
Filename: packages/triggerhappy_0.3.4-2_ramips_24kec.ipk
Size: 15925
MD5Sum: 66578baa0194e35f34c4ce6800463961
SHA256sum: 221b6f882843798f0fd072d5c534f98a71fdb800012716f81733034bffa6e3fb
Description: triggerhappy - handle input events and run configured programs
The daemon thd can handle hotplugged input devices and is configured through
simple configuration files in /etc/triggerhappy/triggers.d/.
Package: uanytun-nettle
Version: 0.3.5-1
Depends: libc, kmod-tun, libnettle
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21101
Filename: packages/uanytun-nettle_0.3.5-1_ramips_24kec.ipk
Size: 22272
MD5Sum: 9cb0695e71f9a7ba3c6403d9fe3887c5
SHA256sum: ae15e942db24e59f79bc22b01de2c1b769942cae4eaf185f745d9c71ddfa528c
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: uanytun-nocrypt
Version: 0.3.5-1
Depends: libc, kmod-tun
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16840
Filename: packages/uanytun-nocrypt_0.3.5-1_ramips_24kec.ipk
Size: 18008
MD5Sum: 27ff63418c9f0ff723fd82d83a28f438
SHA256sum: b904a7cf36bb4034d31428b850bd547b85928c55c9450952cdf4320aa1bc27c7
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: uanytun-sslcrypt
Version: 0.3.5-1
Depends: libc, kmod-tun, libopenssl
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21111
Filename: packages/uanytun-sslcrypt_0.3.5-1_ramips_24kec.ipk
Size: 22296
MD5Sum: d4f16f5fade48fe200adb36fe008b04f
SHA256sum: 2e5daa99f9e0d0b649741b4c27d835debd9ef3ae8c306383e479cede762e0a17
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: uanytun
Version: 0.3.5-1
Depends: libc, kmod-tun, libgcrypt
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21531
Filename: packages/uanytun_0.3.5-1_ramips_24kec.ipk
Size: 22712
MD5Sum: 4332937e8a810b0338730c170e844eae
SHA256sum: 6fd08cb67e4a16d539ad439655e90d50dfb82d2192a0e502bff3fc5bf4248c66
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: udpxy
Version: 2015-03-08-c045a1e855a8033c5d70ab3e42271ba5636eb520-1
Depends: libc
Source: feeds/packages/net/udpxy
License: GPL-3.0
LicenseFiles: gpl.txt
Section: net
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31338
Filename: packages/udpxy_2015-03-08-c045a1e855a8033c5d70ab3e42271ba5636eb520-1_ramips_24kec.ipk
Size: 32335
MD5Sum: 701b39499b01fdbed2cfe1d245718a5c
SHA256sum: 8606f22cb715f2bfbca0ba2a50940e292826cb9a6bd6b9ebf1cc062536c16c71
Description: udproxy makes it possible to convert UDP IPTV streams into HTTP
streams which can be viewed even over WLANs. HTTP streams do
not generate huge amounts of multicast traffic, so a sd stream
only takes about 300k. Interesting for peoply who have IPTV at
home and do not want to rent multiple decoders from their
provider but just use their own streaming client (for example
popcornhour/mediatomb/vlc).
Package: ulogd-mod-dbi
Version: 2.0.4-1
Depends: libc, ulogd, libdbi
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6617
Filename: packages/ulogd-mod-dbi_2.0.4-1_ramips_24kec.ipk
Size: 7405
MD5Sum: 8772feab98c520fda98fd6c27503846c
SHA256sum: 98fcb17ec62037d50881ba4bdb3ee0a7b628f65d4c405bcf3b1357e68e3fc0fa
Description: Output plugin for logging to a database using libdbi
Package: ulogd-mod-extra
Version: 2.0.4-1
Depends: libc, ulogd
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21135
Filename: packages/ulogd-mod-extra_2.0.4-1_ramips_24kec.ipk
Size: 21830
MD5Sum: 52ed7aa15891841d73f814950e05bebc
SHA256sum: 7e2aad3f9a84188a0bc6de28130deeff295856f192774a25dc79b39534394e94
Description: Extra plugins
Package: ulogd-mod-mysql
Version: 2.0.4-1
Depends: libc, ulogd, libmysqlclient
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6233
Filename: packages/ulogd-mod-mysql_2.0.4-1_ramips_24kec.ipk
Size: 7052
MD5Sum: 4f0b2f92b8e3bb167318ab75e72f3ed7
SHA256sum: 6a4eed10cbadff7b7f221bfc4d7f19766560b6ada8c25d0fd17eaf12beeaef9d
Description: Output plugin for logging to a MySQL database
Package: ulogd-mod-nfacct
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-acct
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3031
Filename: packages/ulogd-mod-nfacct_2.0.4-1_ramips_24kec.ipk
Size: 3783
MD5Sum: 5e864cd58305a31501c2217fe0e59c07
SHA256sum: 4521abee013b7d99098025201a3a27ffee8ae189b3af5aa9ff7e00eae7ba2139
Description: Input plugin for flow-based logging (accounting)
Package: ulogd-mod-nfct
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-conntrack
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7973
Filename: packages/ulogd-mod-nfct_2.0.4-1_ramips_24kec.ipk
Size: 8760
MD5Sum: 50ed358d31dd8f50aa39b96ed90223e6
SHA256sum: f28e00bfdcdf8a51d5b2d4664be80a6f92ff913a6822d6b6aac8655d5fa6e34c
Description: Input plugin for flow-based logging (conntracking)
Package: ulogd-mod-nflog
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-log
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4447
Filename: packages/ulogd-mod-nflog_2.0.4-1_ramips_24kec.ipk
Size: 5205
MD5Sum: b2e89757d2edeb41618543317105395f
SHA256sum: 7a607abc63e08068a8f61fab342d6d0ddbbcc5adb832e3e518b738f1a8346efc
Description: Input plugin using NFLOG
Package: ulogd-mod-pcap
Version: 2.0.4-1
Depends: libc, ulogd, libpcap
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2322
Filename: packages/ulogd-mod-pcap_2.0.4-1_ramips_24kec.ipk
Size: 3096
MD5Sum: c31fbd3e1a1dfe2c8412f4358cd70825
SHA256sum: 1e557843af4959daf0bfb16afb8d1da3226be8758a4f14bd7eb84535e17dcc6c
Description: Output plugin for logging in pcap format
Package: ulogd-mod-pgsql
Version: 2.0.4-1
Depends: libc, ulogd, libpq
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7158
Filename: packages/ulogd-mod-pgsql_2.0.4-1_ramips_24kec.ipk
Size: 7946
MD5Sum: 8f15fb3bf51c0b4762700430f95cc504
SHA256sum: 7e9b7d1e953281a2ba62472c1cd22eac8ed9c3340fb81e2aaa4b9d7a1d2a9ea8
Description: Output plugin for logging to a PostgreSQL database
Package: ulogd-mod-sqlite
Version: 2.0.4-1
Depends: libc, ulogd, libsqlite3
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6952
Filename: packages/ulogd-mod-sqlite_2.0.4-1_ramips_24kec.ipk
Size: 7768
MD5Sum: cf1ebff332b5a328f45ebaf48a48874d
SHA256sum: ea6c966b2942995694925ed2ee0ca2e4aa66847b472e93245de4da826e504ada
Description: Output plugin for logging to an SQLite database
Package: ulogd-mod-syslog
Version: 2.0.4-1
Depends: libc, ulogd
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2060
Filename: packages/ulogd-mod-syslog_2.0.4-1_ramips_24kec.ipk
Size: 2823
MD5Sum: d090365030dd29b0c766f19a35a6d318
SHA256sum: 0e2f782963772fb268e82fcb176f7f1f09f239738081d206c635a0e6cb27329c
Description: Syslog output plugin
Package: ulogd-mod-xml
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-acct, libnetfilter-conntrack, libnetfilter-log
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2758
Filename: packages/ulogd-mod-xml_2.0.4-1_ramips_24kec.ipk
Size: 3541
MD5Sum: 22e4a0f807d59826a96dad4f17ca75e4
SHA256sum: 9729e6bd01e51c213ebf357592c602daf71eeb039b81d83113bbb2efe29d2c42
Description: XML output plugin
Package: ulogd
Version: 2.0.4-1
Depends: libc, libmnl, libnfnetlink, libpthread
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20336
Filename: packages/ulogd_2.0.4-1_ramips_24kec.ipk
Size: 21142
MD5Sum: b064efd939948bfd211bacc75d96e211
SHA256sum: 8e3a99f41f574c4b30aa2eb43fbb543f41e283510340f25b482726c5d1c35459
Description: Netfilter userspace logging daemon
Package: umurmur-openssl
Version: 0.2.15-1
Depends: libc, libconfig, libprotobuf-c, libopenssl
Source: feeds/packages/net/umurmur
License: BSD-3-Clause
Section: net
Maintainer: Martin Johansson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36167
Filename: packages/umurmur-openssl_0.2.15-1_ramips_24kec.ipk
Size: 36772
MD5Sum: b61b61470eeb92d8c0da1a90fd4e4994
SHA256sum: 7570e790eeab577fcc6e964cc3dd4d8ed551a1d96ba6dd38ee3a07f32d8a36d5
Description: Minimalistic Mumble server daemon.
Uses OpenSSL library for SSL and crypto.
Package: umurmur-polarssl
Version: 0.2.15-1
Depends: libc, libconfig, libprotobuf-c, libpolarssl
Source: feeds/packages/net/umurmur
License: BSD-3-Clause
Section: net
Maintainer: Martin Johansson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34761
Filename: packages/umurmur-polarssl_0.2.15-1_ramips_24kec.ipk
Size: 35230
MD5Sum: fceaa1a7548b2cf4a487fd651fd192c1
SHA256sum: 7bdbde3a2e7bb201b4686eddea4926434fdf06c5bcbf093c6972eace0c41ec7b
Description: Minimalistic Mumble server daemon.
Uses the PolarSSL library for SSL and crypto.
Package: unbound-anchor
Version: 1.5.1-1
Depends: libc, libopenssl, unbound, libexpat
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19019
Filename: packages/unbound-anchor_1.5.1-1_ramips_24kec.ipk
Size: 19667
MD5Sum: f3626ea4a70deaf3060622735f443403
SHA256sum: b0a6b3b2728b4fe02f32a44cb08daa412fd87e7e799577207914545f808f8d8d
Description: This package contains the Unbound anchor utility.
Package: unbound-control-setup
Version: 1.5.1-1
Depends: libc, libopenssl, unbound-control, openssl-util
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2361
Filename: packages/unbound-control-setup_1.5.1-1_ramips_24kec.ipk
Size: 3157
MD5Sum: 21943e50b7c6635cf651b974eab906b2
SHA256sum: 65dcc122e6cec111d370029d0c0b9447db0e632670e8b46209061716542885fc
Description: This package contains the Unbound control setup utility.
Package: unbound-control
Version: 1.5.1-1
Depends: libc, libopenssl, unbound
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42506
Filename: packages/unbound-control_1.5.1-1_ramips_24kec.ipk
Size: 42957
MD5Sum: f47e2dbb91624fdeee599ee24745c9dc
SHA256sum: 920e624586dde3e317f14769279fbf71291e623216a04746c47be6dc7df90b10
Description: This package contains the Unbound control utility.
Package: unbound-host
Version: 1.5.1-1
Depends: libc, libopenssl, libunbound
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36560
Filename: packages/unbound-host_1.5.1-1_ramips_24kec.ipk
Size: 37118
MD5Sum: 86b548eb8a6db3626b42cac65d220fe7
SHA256sum: 12dc6856d1cef30271215fc284904d5a3f4c6e58da913db36b3c7c1d615cfb50
Description: This package contains the Unbound DNS lookup utility.
Package: unbound
Version: 1.5.1-1
Depends: libc, libopenssl, libunbound
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 122428
Filename: packages/unbound_1.5.1-1_ramips_24kec.ipk
Size: 122006
MD5Sum: 3eb67d004566d54fe3f7433fc3b94483
SHA256sum: 8aad571db62406a598f4606b03a9226516ed072231cdfe38addccbc4acf17a09
Description: This package contains the Unbound daemon.
Package: unixodbc-tools
Version: 2.3.2-1
Depends: libc, unixodbc, libncurses, libreadline
Source: feeds/packages/libs/unixodbc
License: prog GPL libs LGPL
Section: utils
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25896
Filename: packages/unixodbc-tools_2.3.2-1_ramips_24kec.ipk
Size: 26607
MD5Sum: 44a12b535b7f74fbc053d1c9c84ba681
SHA256sum: 8c6ab07be23501365ade4e0562d7e19a74336a40ab0037755201430565a081f4
Description: Command Line Tools to help install a driver and work with SQL.
Package: unixodbc
Version: 2.3.2-1
Depends: libc, libltdl, libpthread
Source: feeds/packages/libs/unixodbc
License: prog GPL libs LGPL
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 181634
Filename: packages/unixodbc_2.3.2-1_ramips_24kec.ipk
Size: 182064
MD5Sum: 59b742ca3095612c4eb05248433db3a0
SHA256sum: b0f5dbd9e3ce8a20b07684c0597fb34fae539003022ab933946aa5686aded60a
Description: unixODBC is an Open Source ODBC sub-system and an ODBC SDK for Linux,
Mac OSX, and UNIX.
Package: unrar
Version: 5.2.6-1
Depends: libc, uclibcxx, libpthread
Source: feeds/packages/utils/unrar
License: UnRAR
LicenseFiles: license.txt
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 119699
Filename: packages/unrar_5.2.6-1_ramips_24kec.ipk
Size: 120419
MD5Sum: a301975a27b391031136268a6dca7a72
SHA256sum: 595a4ef0bace618da1645a4c994fa69d5c73dd1b096470b67c49f0771a3770aa
Description: UnRAR is an application that can decompress files and archives created using
the RAR compression scheme
Package: unzip
Version: 6.0-2
Depends: libc
Source: feeds/packages/utils/unzip
License: BSD-4-Clause
LicenseFiles: LICENSE
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 163029
Filename: packages/unzip_6.0-2_ramips_24kec.ipk
Size: 163825
MD5Sum: 1e137ca9aa3617660d990e5a32ad4a46
SHA256sum: 4e92f17a34b07f3d5f13996b90a7e5f8c328e7a24cdf8b923985765550318a93
Description: InfoZIP's unzip program. With the exception of multi-volume archives
(ie, .ZIP files that are split across several disks using PKZIP's /& option),
this can handle any file produced either by PKZIP, or the corresponding
InfoZIP zip program.
Package: upmpdcli
Version: 0.9.0-2
Depends: libc, libupnpp, libmpdclient
Source: feeds/packages/sound/upmpdcli
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Require-User: upmpdcli=89:upmpdcli=89
Maintainer: Petko Bordjukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106005
Filename: packages/upmpdcli_0.9.0-2_ramips_24kec.ipk
Size: 106452
MD5Sum: bea84d7336f7421c9802a3ec3f43c0a4
SHA256sum: c705329c7092883596a8f6b8a9255c3b0776c30e98a82bdbe8c05ba6ab6dc08f
Description: upmpdcli implements an UPnP Media Renderer, using MPD to perform the real work.
Package: usbmuxd
Version: 1.1.1-2
Depends: libc, librt, libusb-1.0, libusbmuxd, libcrypto, libopenssl, libimobiledevice
Source: feeds/packages/utils/usbmuxd
License: GPL-2.0
LicenseFiles: COPYING.GPLv2
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28136
Filename: packages/usbmuxd_1.1.1-2_ramips_24kec.ipk
Size: 29099
MD5Sum: a97cccf6c3a93a93be69adbeed3964e3
SHA256sum: c7456b1fda05139795beed570311a9c3b5bb2923ad3c0f9019c946fbae932c92
Description: This daemon is in charge of multiplexing connections over USB to an iPhone or
iPod touch. To users, it means you can sync your music, contacts, photos, etc.
over USB. To developers, it means you can connect to any listening localhost
socket on the device. usbmuxd is not used for tethering data transfer, which
uses a dedicated USB interface as a virtual network device.
Package: uuid
Version: 0.2.0-1
Depends: libc, lua, luasocket
Source: feeds/packages/lang/uuid
License: Apache-2.0
Section: lang
Maintainer: Amr Hassan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3219
Filename: packages/uuid_0.2.0-1_ramips_24kec.ipk
Size: 3936
MD5Sum: 7d0a2f75cea20294ba706218d7f6570d
SHA256sum: f139de1b9dd5c9132d424b355c94ab769c16e1caa14cb5f738fe0721f46ca71f
Description: A pure Lua uuid generator
Package: uvcdynctrl
Version: 0.2.4
Depends: libc, libwebcam
Source: feeds/packages/utils/uvcdynctrl
Section: utils
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20290
Filename: packages/uvcdynctrl_0.2.4_ramips_24kec.ipk
Size: 20902
MD5Sum: f98b0cdc48309bc55a53f5653978493f
SHA256sum: c2ffb7d2112dc4b771dfe2a9f9f9444d8998d7b2e5875904926938c07894ca65
Description: The webcam-tools package contains the following two components:
- libwebcam: Webcam Library (LGPL)
- uvcdynctrl: Manage dynamic controls in uvcvideo (GPL)
Package: v4l-utils
Version: 1.6.2-1
Depends: libc, libv4l, uclibcxx
Source: feeds/packages/libs/libv4l
License: GPL-2.0 LGPL-2.1
LicenseFiles: COPYING COPYING.libv4l
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 222780
Filename: packages/v4l-utils_1.6.2-1_ramips_24kec.ipk
Size: 223729
MD5Sum: 07faf126813ed0473d7f96c5efbf84da
SHA256sum: 8b5e3583c430e6d226c796c6063cc00f2837607b943f017fdc3d0cb613c9b1fa
Description: libv4l is a collection of libraries which adds a thin abstraction layer on
top of video4linux2 devices. The purpose of this (thin) layer is to make it
easy for application writers to support a wide variety of devices without
having to write separate code for different devices in the same class. libv4l
consists of 3 different libraries: libv4lconvert, libv4l1 and libv4l2.
libv4l1 offers the (deprecated) v4l1 API on top of v4l2 devices, independent
of the drivers for those devices supporting v4l1 compatibility (which many
v4l2 drivers do not).
libv4l2 offers the v4l2 API on top of v4l2 devices, while adding for the
application transparent libv4lconvert conversion where necessary.
This package contains the video4linux utilities.
Package: vim-full
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 750567
Filename: packages/vim-full_7.4-2_ramips_24kec.ipk
Size: 750921
MD5Sum: 73f753da1a2ac65465dd0f883c09a592
SHA256sum: 9686168effdc98f1da8f07d91379193661b7d91c85dca4d67669952448aed2d1
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Normal build)
Package: vim-help
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1875083
Filename: packages/vim-help_7.4-2_ramips_24kec.ipk
Size: 1875511
MD5Sum: 4c6bc91a1da260dfe5119fad7ece169a
SHA256sum: b3530da84aa66e5b295706133eeb3b8b0f2a4e3f4d80d46f7e141f7104ce2cca
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Help files)
Package: vim-runtime
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1763542
Filename: packages/vim-runtime_7.4-2_ramips_24kec.ipk
Size: 1760200
MD5Sum: c7428d2e0d5e656c6955ca05de3358c6
SHA256sum: 3d9b61b22e16f010b4979816a3e84d93b0dca3bf858f0f50b30ce2fec44c6a92
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Runtime files)
Package: vim
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 266366
Filename: packages/vim_7.4-2_ramips_24kec.ipk
Size: 267037
MD5Sum: 5004f63fa6af880a6f599c019179d80a
SHA256sum: 8fa8fe84c54137c5c63e8e910f9da70b3c2e80fe8bb248161bb48ebe6e977a24
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Tiny build)
Package: vips
Version: 7.42.1-1
Depends: libc, glib2, libexif, libjpeg, libpng, libxml2
Source: feeds/packages/libs/vips
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 476264
Filename: packages/vips_7.42.1-1_ramips_24kec.ipk
Size: 473518
MD5Sum: 738fac02a79fbb892c3abe15f24d77aa
SHA256sum: e004fce92a55cf3a8953ea130e3372f3a86790780cb1455dfb4cd7511caebcbc
Description: An image manipulation library
Package: vnstat
Version: 1.12-1
Depends: libc
Source: feeds/packages/net/vnstat
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 65646
Filename: packages/vnstat_1.12-1_ramips_24kec.ipk
Size: 66432
MD5Sum: 4fa7c75b404f0166321c389cacdbba32
SHA256sum: 362c0ff62a7e1dc55ea0b103edd924315415bfc8a3824ad2ddc5b9a13077ab08
Description: vnStat is a network traffic monitor for Linux that keeps a log of daily
network traffic for the selected interface(s). vnStat isn't a packet
sniffer. The traffic information is analyzed from the /proc -filesystem,
so vnStat can be used without root permissions.
Package: vnstati
Version: 1.12-1
Depends: libc, vnstat, libgd
Source: feeds/packages/net/vnstat
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32124
Filename: packages/vnstati_1.12-1_ramips_24kec.ipk
Size: 32889
MD5Sum: 998076fc9d5afcda91c38d8cac3a6413
SHA256sum: ba27d8329f66e4d24a9ce4a8d05ed927d3c00af370336c9284cb14169b2e93cb
Description: The purpose of vnstati is to provide image output support for statistics
collected using vnstat(1). However, the image file format is limited to
png. All basic outputs of vnStat are supported excluding live traffic
features. The image can be outputted either to a file or to standard
output.
Package: vpnc-scripts
Version: 20150116-1
Depends: libc
Source: feeds/packages/net/vpnc-scripts
Section: net
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2173
Filename: packages/vpnc-scripts_20150116-1_ramips_24kec.ipk
Size: 2958
MD5Sum: 1ea42195efe37395be3a1f0567fe229c
SHA256sum: ef4f2136132516ebc0d8bf45c7be76958622c90125394e7700a08522e81aee03
Description: This package contains the vpnc-script which is used by vpnc
and OpenConnect to configure the tunnel interface.
Package: vpnc
Version: 0.5.3.r550-1
Depends: libc, libgpg-error, libgcrypt, kmod-tun, libgnutls, vpnc-scripts, resolveip
Source: feeds/packages/net/vpnc
License: VARIOUS
LicenseFiles: COPYING
Section: net
Maintainer: Daniel Gimpelevich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48720
Filename: packages/vpnc_0.5.3.r550-1_ramips_24kec.ipk
Size: 49621
MD5Sum: d236e3cbfe57c4c56e90b481303cf0b7
SHA256sum: b13898e0e18ea1aa08c6bedc095c09621c36110ea69e58d02268858e5e4ae018
Description: A VPN client compatible with Cisco's EasyVPN equipment.
Supports IPSec (ESP) with Mode Configuration and Xauth. Supports only
shared-secret IPSec authentication with Xauth, AES (256, 192, 128),
3DES, 1DES, MD5, SHA1, DH1/2/5 and IP tunneling.
Package: vsftpd-tls
Version: 3.0.2-4
Depends: libc, libopenssl
Source: feeds/packages/net/vsftpd
License: GPLv2
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44991
Filename: packages/vsftpd-tls_3.0.2-4_ramips_24kec.ipk
Size: 45831
MD5Sum: 1476e1690160d922ce0b1e7f4006b9be
SHA256sum: 14c8bc88bef34edd12751b203206520d945c1ed269b30e5ef28ccf9fae5c0e99
Description: A fast and secure FTP server (TLS)
Package: vsftpd
Version: 3.0.2-4
Depends: libc
Source: feeds/packages/net/vsftpd
License: GPLv2
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42190
Filename: packages/vsftpd_3.0.2-4_ramips_24kec.ipk
Size: 42971
MD5Sum: 265513f7791f910ee5fde6276db1f136
SHA256sum: ab447fa6f79ee411abd46d2d662c3d3ea4b4cd5d7f5dddf3da79a9acadc4910f
Description: A fast and secure FTP server (no TLS)
Package: watchcat
Version: 1-5
Depends: libc
Source: feeds/packages/utils/watchcat
License: GPL-2.0
Section: utils
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2138
Filename: packages/watchcat_1-5_ramips_24kec.ipk
Size: 2926
MD5Sum: b911781dbea19a1ed16ea8f5758f9e86
SHA256sum: 04eea89533913e764b3791eafa002356b8b6cb1ce95d76edb4d9921793cb224d
Description: Allows to configure a periodically reboot, or after loosing internet connectivity. Configured trough UCI /etc/config/system.
Package: wavemon
Version: 0.7.6-1
Depends: libc, libncurses, libpthread
Source: feeds/packages/net/wavemon
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 31542
Filename: packages/wavemon_0.7.6-1_ramips_24kec.ipk
Size: 32268
MD5Sum: 3189da416bc73b0fb61876509630cf02
SHA256sum: 7e7115679eb66db20e5397dd6bdc5d88d8d2a3952a562355d9c8e7d723e2136e
Description: wavemon is a ncurses-based monitoring application for wireless network
devices. It currently works under Linux with devices that are supported
by the wireless extensions by Jean Tourrilhes (included in Kernel 2.4
and higher), e.g. the Lucent Orinoco cards.
Package: wget-nossl
Version: 1.16.2-1
Depends: libc, libpcre, zlib
Source: feeds/packages/net/wget
License: GPL-3.0+
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 179818
Filename: packages/wget-nossl_1.16.2-1_ramips_24kec.ipk
Size: 180114
MD5Sum: 0b04b46f4a2f8eb66e2761ba74f0cd6d
SHA256sum: 4005eb39cf5f1b2c586b912d28e52a0d36b8dc3a335be70575ff57883f403b9f
Description: Wget is a network utility to retrieve files from the Web using http
and ftp, the two most widely used Internet protocols. It works
non-interactively, so it will work in the background, after having
logged off. The program supports recursive retrieval of web-authoring
pages as well as ftp sites -- you can use wget to make mirrors of
archives and home pages or to travel the Web like a WWW robot.
This package is built without SSL support.
Package: wget
Version: 1.16.2-1
Depends: libc, libpcre, libopenssl, librt
Source: feeds/packages/net/wget
License: GPL-3.0+
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 186085
Filename: packages/wget_1.16.2-1_ramips_24kec.ipk
Size: 186563
MD5Sum: ffb7e096eb42b981538a0658b10284b6
SHA256sum: 00a6f3d440a693cdfff0b34085391ce413669df2689f2400767cea9d93cdde96
Description: Wget is a network utility to retrieve files from the Web using http
and ftp, the two most widely used Internet protocols. It works
non-interactively, so it will work in the background, after having
logged off. The program supports recursive retrieval of web-authoring
pages as well as ftp sites -- you can use wget to make mirrors of
archives and home pages or to travel the Web like a WWW robot.
This package is built with SSL support.
Package: wifitoggle
Version: 1-4
Depends: libc
Source: feeds/packages/utils/wifitoggle
License: GPL-2.0+
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1526
Filename: packages/wifitoggle_1-4_ramips_24kec.ipk
Size: 2387
MD5Sum: 88d17b52faa5048ae403919fec0e57f1
SHA256sum: dced7861d753f591cc34e74fb3eb1f023cf5e10c11cb0d466d88bffe7512b53f
Description: Very versatile script to toggle Wi-Fi with a button. Allows to set
timeouts, persist changes after boot, and set LEDs according to the state.
Package: wshaper
Version: 1.1a-1
Depends: libc, kmod-sched, tc
Source: feeds/packages/net/wshaper
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: all
Installed-Size: 2171
Filename: packages/wshaper_1.1a-1_all.ipk
Size: 3060
MD5Sum: 1da727db77e34bce8e8d0190a84cae9c
SHA256sum: 2a3c64908e3ac0d0fc975e52d791e43dc47d91e62531b78c83cdc4eb76d5dda5
Description: A script to do traffing shaping with the HTB algorithm.
Wshaper attempts to:
* Maintain low latency for interfactive traffic at all times
* Allow 'surfing' at reasonable speeds while up or downloading
* Make sure uploads don't harm downloads, and the other way around
Package: xinetd
Version: 2.3.15-3
Depends: libc
Source: feeds/packages/net/xinetd
License: xinetd
LicenseFiles: COPYRIGHT
Section: net
Architecture: ramips_24kec
Installed-Size: 58197
Filename: packages/xinetd_2.3.15-3_ramips_24kec.ipk
Size: 59038
MD5Sum: e2d46d08f885f108223352a5e0a771b9
SHA256sum: bcb52e8b68ca55b111c87c784c8d7f6ecc629681dce6032ad368cd48cc708d2c
Description: xinetd has access control mechanisms, extensive logging capabilities,
the ability to make services available based on time, can place limits
on the number of servers that can be started, and has deployable
defence mechanisms to protect against port scanners, among other
things.
Package: xl2tpd
Version: 1.3.6-5619e1771048e74b729804e8602f409af0f3faea
Depends: libc, ppp-mod-pppol2tp, ip, resolveip
Source: feeds/packages/net/xl2tpd
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44755
Filename: packages/xl2tpd_1.3.6-5619e1771048e74b729804e8602f409af0f3faea_ramips_24kec.ipk
Size: 45670
MD5Sum: c134cc7966083c40a97f2b56331c0f71
SHA256sum: f6992c9b236c338e3e0b38cc8c7a6e928155f4b83691e940543d717c945b1345
Description: l2tpd is the open source implementation of the L2TP tunneling protocol (RFC2661).
It does implement both LAC and LNS role in a L2TP networking architecture. The
main goal of this protocol is to tunnel PPP frame trough an IP network.
Package: xmlrpc-c-client
Version: 1.39.0-1
Depends: libc, xmlrpc-c, libcurl
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 98552
Filename: packages/xmlrpc-c-client_1.39.0-1_ramips_24kec.ipk
Size: 99306
MD5Sum: 0e3b6a8b362a2b80771230ad97b87456
SHA256sum: aae20bcdf14948d6cb530a4b64d71385a92cf0da6d98d27212a04e6f2a1480c4
Description: XML-RPC library - client
Package: xmlrpc-c-common
Version: 1.39.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7313
Filename: packages/xmlrpc-c-common_1.39.0-1_ramips_24kec.ipk
Size: 8229
MD5Sum: 7edf3f228e727673e201ec6e5521c85c
SHA256sum: ccdaac92b68b423d5852e4b880dd66752f58e052204cc3d1ede76fcf3925a78b
Description: Programming library for writing an XML-RPC server or client in C or C++.
XML-RPC is a standard network protocol to allow a client program to make
a simple remote procedure call (RPC) type request of a server.
Package: xmlrpc-c-internal
Version: 1.39.0-1
Depends: libc, xmlrpc-c-common
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71888
Filename: packages/xmlrpc-c-internal_1.39.0-1_ramips_24kec.ipk
Size: 72686
MD5Sum: be9700b70fd25b9368c31bc67dcff29c
SHA256sum: 8151920bb3da86582f0edd98462216ce35926d720947b81ef50e8ec8ba37ccd3
Description: Programming library for writing an XML-RPC server or client in C or C++.
XML-RPC is a standard network protocol to allow a client program to make
a simple remote procedure call (RPC) type request of a server. Uses internal expat variant (stripped down)
Package: xmlrpc-c-server
Version: 1.39.0-1
Depends: libc, xmlrpc-c
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8009
Filename: packages/xmlrpc-c-server_1.39.0-1_ramips_24kec.ipk
Size: 8783
MD5Sum: b63ea7caa7a1d5c81afc4f7d8103e8ea
SHA256sum: 31d780d03497fc64baf68f0fbf72393adf9912e272e4fed23ca57c04a67043eb
Description: XML-RPC library - server
Package: xmlrpc-c
Version: 1.39.0-1
Depends: libc, xmlrpc-c-internal
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: packages/xmlrpc-c_1.39.0-1_ramips_24kec.ipk
Size: 868
MD5Sum: 88f7803e7a54b82ae9c55a1cf916c8bd
SHA256sum: fb0828a1402d01caa6eacc333b7dc820e29c24a96c2075d1b835fae16dc41c2a
Description: XML-RPC library (uses internal expat variant)
Package: xsltproc
Version: 1.1.28-2
Depends: libc, libxml2, libxslt, libexslt
Source: feeds/packages/libs/libxslt
License: MIT
LicenseFiles: COPYING
Section: utils
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7545
Filename: packages/xsltproc_1.1.28-2_ramips_24kec.ipk
Size: 8317
MD5Sum: 358546be5c014ed5e882d6e13e6d9d5d
SHA256sum: 62e968989e9f65a48c7a6421854bf1128075b7cb0b2ec115734ad11ed3ae9e27
Description: XSLT XML transformation utility.
Package: xupnpd
Version: 404-1
Depends: libc, liblua
Source: feeds/packages/multimedia/xupnpd
Section: multimedia
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 117174
Filename: packages/xupnpd_404-1_ramips_24kec.ipk
Size: 118165
MD5Sum: 76b69b7fb99a8aa7a9244a9b983854de
SHA256sum: 6eaf0c52438da02d7768afdadc22e3fbe92757ac81d814ef65abe7a3b66afc59
Description: xupnpd - eXtensible UPnP agent
This program is a light DLNA Media Server which provides ContentDirectory:1 service for sharing IPTV unicast streams over local area network (with udpxy for multicast to HTTP unicast conversion).
The program shares UTF8-encoded M3U playlists with links over local area network as content of the directory.
You can watch HDTV broadcasts (multicast or unicast) and listen Internet Radio in IP network without transcoding and PC.
Package: xxd
Version: 7.4-2
Depends: libc
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5816
Filename: packages/xxd_7.4-2_ramips_24kec.ipk
Size: 6588
MD5Sum: c9a413878b45ff78aa594e013ed72779
SHA256sum: 62d065702916a5cd90dee400bd825c3703b02f0ee26e1f211ea56317faa91c2a
Description: xxd creates a hex dump of a given file or standard input, it can also convert
a hex dump back to its original binary form.
Package: zabbix-agent
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87533
Filename: packages/zabbix-agent_2.4.4-1_ramips_24kec.ipk
Size: 88340
MD5Sum: 600c6e23857a2409ed13d9732f0bbb15
SHA256sum: 65d01065862d4fea082944a003662d29772d617d46817529edec280192129f81
Description: Zabbix agent
Package: zabbix-agentd
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 107636
Filename: packages/zabbix-agentd_2.4.4-1_ramips_24kec.ipk
Size: 108268
MD5Sum: 63d12caf621ace758ffceb6e7cae6ebf
SHA256sum: 204a94c588979e51bdd993bce927aed5456e44312716982395f23d8903255125
Description: Zabbix agentd
Package: zabbix-extra-mac80211
Version: 2.4.4-1
Depends: libc, zabbix-agentd
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2756
Filename: packages/zabbix-extra-mac80211_2.4.4-1_ramips_24kec.ipk
Size: 3661
MD5Sum: 87222dcd6d6bb63742ea4095c476a0d3
SHA256sum: 4453f4da2164dcebe04cab3cb61b20cf86ba08f926aafed58508527f59716b14
Description: An extra package for zabbix-agentd that adds a discovery rule for mac80211 wifi phy and many userparameters.
It contains an suid helper to allow zabbix-agentd to still run as zabbix user and not as root.
See http://wiki.openwrt.org/doc/howto/zabbix for ready to use zabbix templates.
Package: zabbix-extra-network
Version: 2.4.4-1
Depends: libc, zabbix-agentd, libuci-lua, lua
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 522
Filename: packages/zabbix-extra-network_2.4.4-1_ramips_24kec.ipk
Size: 1462
MD5Sum: c7c80dabe7e45f8966571901cbe56594
SHA256sum: 387059e2f49e15bd854186043f5d9b483e511ca157567c87f5d8a807a27c7b34
Description: An extra package for zabbix-agentd that adds a discovery rule for openwrt network interfaces.
The idea here is to discover only interfaces listed in /etc/config/network (discover br-lan and not eth0.1 and wlan0)
See http://wiki.openwrt.org/doc/howto/zabbix for ready to use zabbix templates.
Package: zabbix-extra-wifi
Version: 2.4.4-1
Depends: libc, zabbix-agentd, libiwinfo-lua, libuci-lua, lua
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1135
Filename: packages/zabbix-extra-wifi_2.4.4-1_ramips_24kec.ipk
Size: 2082
MD5Sum: 678a8d3c1adfbcc78b71c5664f47f8b0
SHA256sum: 03a3172ba10ba9c8f5b0aa90b3c4914afa4fd012a81e4c6fe568cc601f1d4a2d
Description: An extra package for zabbix-agentd that adds a discovery rule for wifi interfaces and many userparameters.
As it uses libiwinfo, it works with all wifi devices supported by openwrt.
See http://wiki.openwrt.org/doc/howto/zabbix for ready to use zabbix templates.
Package: zabbix-get
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33744
Filename: packages/zabbix-get_2.4.4-1_ramips_24kec.ipk
Size: 34546
MD5Sum: 5b06e7eaf5322aa3c5d594270dd1e439
SHA256sum: d92c3d57fd1bf671fe3ce9bf408443bd687ed03807fc0e53a80a63b3f08a47f1
Description: Zabbix get
Package: zabbix-proxy
Version: 2.4.4-1
Depends: libc, libsqlite3
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 281098
Filename: packages/zabbix-proxy_2.4.4-1_ramips_24kec.ipk
Size: 281135
MD5Sum: 0f8c556ec6ea6e4a72d9e205677a6fa1
SHA256sum: ce6e855c4fe3731d5c6f0009afa56463a290e0747a0612d1b766ee3067eb7802
Description: Zabbix proxy
Package: zabbix-sender
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 40684
Filename: packages/zabbix-sender_2.4.4-1_ramips_24kec.ipk
Size: 41291
MD5Sum: 56fcd7a205502ac8d033e3b9ddc30c37
SHA256sum: 0c2d4ca173a6bc9b3d38a3a1c268443d4ae96fc004ab8cae0231b2daf663f2ab
Description: Zabbix sender
Package: zabbix-server
Version: 2.4.4-1
Depends: libc, libsqlite3
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 308912
Filename: packages/zabbix-server_2.4.4-1_ramips_24kec.ipk
Size: 309169
MD5Sum: 57d2cf0b62b1f29d60fad56fb741c3a9
SHA256sum: 86c31c139fd913d4a067f912bf98c15a65f87388fae9710e4cb98aa7c2b86771
Description: Zabbix server
Package: zile
Version: 2.3.24-1
Depends: libc, libncursesw
Source: feeds/packages/utils/zile
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94889
Filename: packages/zile_2.3.24-1_ramips_24kec.ipk
Size: 95451
MD5Sum: 3d071f73a60f147694ed482ab7395299
SHA256sum: 6a3fc28d4b0450173a801cc2961947ceca67e66a567b0f5b6554d4664822ac94
Description: Zile is a small Emacs clone. Zile is a customizable, self-documenting
real-time display editor. Zile was written to be as similar as possible
to Emacs; every Emacs user should feel at home with Zile.
Package: zip
Version: 3.0-1
Depends: libc
Source: feeds/packages/utils/zip
License: BSD-4-Clause
LicenseFiles: LICENSE
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 189733
Filename: packages/zip_3.0-1_ramips_24kec.ipk
Size: 190586
MD5Sum: 52e8fcb8e14ca1164b219d8ed61f3922
SHA256sum: c5e26e872333728355c8bf1049decb7e6b7156ba2abd05d7002f3e1080134c2e
Description: This is InfoZIP's zip program. It produces files that are fully
compatible with the popular PKZIP program; however, the command line
options are not identical. In other words, the end result is the same,
but the methods differ.
Package: znc-mod-adminlog
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16509
Filename: packages/znc-mod-adminlog_1.4-2_ramips_24kec.ipk
Size: 17323
MD5Sum: 45c3e2a867013f0995924b73270891e8
SHA256sum: 868d2dce63c03e1c0e5ed42c6fecd35116e1c8bfc097d7f6de41709177862154
Description: Log user connects and disconnects and failed logins to file or syslog.
Package: znc-mod-autoattach
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17526
Filename: packages/znc-mod-autoattach_1.4-2_ramips_24kec.ipk
Size: 18328
MD5Sum: 04a9eafb21e96e7312852bca147669de
SHA256sum: 0fcf6ad4d9205e72ac03070cb732e304bbebfccafa7f77419e89e97ac4865150
Description: Reattaches you to channels on activity.
Package: znc-mod-autocycle
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16366
Filename: packages/znc-mod-autocycle_1.4-2_ramips_24kec.ipk
Size: 17133
MD5Sum: f8ad1041ac334cbd03b59df51d10fcba
SHA256sum: 3cab499bb4fd32145074ed9d7e2a9b3df9553dbb91cde0744d731a410eba0dc4
Description: Cycles a channel when you are the only one in there and you don't have op.
Package: znc-mod-autoop
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25807
Filename: packages/znc-mod-autoop_1.4-2_ramips_24kec.ipk
Size: 26551
MD5Sum: aaceea82ea3a9d57f0b36b42f2516afc
SHA256sum: 4ec1a069517947fcc8274afcce3d8da478fc6e270c3197806499a692f29fb48a
Description: Auto op the good guys.
Package: znc-mod-autoreply
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11516
Filename: packages/znc-mod-autoreply_1.4-2_ramips_24kec.ipk
Size: 12319
MD5Sum: bad4999b905282c9f803040856ec379f
SHA256sum: e44b79f248852bb4b125afb83767cc7f8dbf9940a03907c2a7639e32fe882d10
Description: Gives a automatic reply if someone messages you if you are away.
Package: znc-mod-autovoice
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19712
Filename: packages/znc-mod-autovoice_1.4-2_ramips_24kec.ipk
Size: 20516
MD5Sum: a5cc87341004f576d156bfc348e894f4
SHA256sum: fad9477dbc5cf4443a8f68bedda4545a91d63bcd1ec3d5351b754606c29aaeaf
Description: Autovoices everyone who joins some channel.
Package: znc-mod-awaynick
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11174
Filename: packages/znc-mod-awaynick_1.4-2_ramips_24kec.ipk
Size: 11936
MD5Sum: 8b8006c453b0e38a9a98ecb902a1c829
SHA256sum: 07df87cd7a4ba338a44b1051bab857b007ffd2f1b13010f5fdcc9f2305b3d8ca
Description: Change your nick while you are away.
Package: znc-mod-awaystore
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24119
Filename: packages/znc-mod-awaystore_1.4-2_ramips_24kec.ipk
Size: 24849
MD5Sum: 3017e4a2dcae7fd170e78c640560247c
SHA256sum: 0051c70a5962cafb866158e944f804f1f109c19418713fe37cad4336add7a6c1
Description: Stores messages while away, also auto away.
Package: znc-mod-block-motd
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7106
Filename: packages/znc-mod-block-motd_1.4-2_ramips_24kec.ipk
Size: 7899
MD5Sum: 08a51b527afc1f330fcd2f32d56cf70e
SHA256sum: 607343d66efd90cb4d20d3a917c94f6c60006fc484e0993424326a02a2332241
Description: This module blocks the server's Message of the Day.
Package: znc-mod-blockuser
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18555
Filename: packages/znc-mod-blockuser_1.4-2_ramips_24kec.ipk
Size: 19379
MD5Sum: 41ff4c650e1e5d3d2e802510c60b46db
SHA256sum: 84ed832331033aa68b66fcb12558ac4b1b4ddf270dc00d5f8eddc533097c2ea8
Description: Blocks certain users from using ZNC saying their account was disabled.
Package: znc-mod-bouncedcc
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29307
Filename: packages/znc-mod-bouncedcc_1.4-2_ramips_24kec.ipk
Size: 30090
MD5Sum: a9046ffc127e0fbf5d29ab95a637b430
SHA256sum: 2933da09d0156bd59da7dc6533b7a0d9a75473d3061f47eca2180811d62349c1
Description: Bounces dcc transfers through the znc server instead of sending them directly to the user.
Package: znc-mod-buffextras
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11417
Filename: packages/znc-mod-buffextras_1.4-2_ramips_24kec.ipk
Size: 12188
MD5Sum: 92939e87a9b212b2c3975b04f916475a
SHA256sum: bb757837be0878d3ef8b5f01aa3029bf0cd73d15959bdf50b600ec48b8274a14
Description: Add nick changes, joins, parts, topic changes etc. to your playback buffer.
Package: znc-mod-cert
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11486
Filename: packages/znc-mod-cert_1.4-2_ramips_24kec.ipk
Size: 12281
MD5Sum: fe73c564885d289379f957aa254bb121
SHA256sum: 093c875cc77605fddad19160008386da9319368885f3b27553b8026463385e01
Description: Use a SSL certificate for connecting to a server.
Package: znc-mod-certauth
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21136
Filename: packages/znc-mod-certauth_1.4-2_ramips_24kec.ipk
Size: 21919
MD5Sum: 18155ca86c66026aa9374cb64b8ad3ca
SHA256sum: 58acfbe822391486b9a3e07a6ad71ad76a30d50d9bafa530846fddfa44c89c78
Description: This module allows users to log in to ZNC via SSL client keys.
Package: znc-mod-chansaver
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6847
Filename: packages/znc-mod-chansaver_1.4-2_ramips_24kec.ipk
Size: 7629
MD5Sum: 539cd7b358f311312334ceb2e8820308
SHA256sum: 32bb5644584820e7e5c08f1124dbf4d314c95710ba017865417df789dc71e0a2
Description: Keeping config up to date when user joins and parts.
Package: znc-mod-clearbufferonmsg
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6491
Filename: packages/znc-mod-clearbufferonmsg_1.4-2_ramips_24kec.ipk
Size: 7289
MD5Sum: 65712b4beed5215676070e1abc215bad
SHA256sum: 29481c5c56cfe0f73cdc44960042b51c0d37073a193ced3b97a4481bb012f9e5
Description: This module keeps the buffer until the next message from the client.
Package: znc-mod-clientnotify
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11401
Filename: packages/znc-mod-clientnotify_1.4-2_ramips_24kec.ipk
Size: 12189
MD5Sum: e0367e3a4857900f18f32534cfba5677
SHA256sum: ff0067c3d2ba02815fce490b873609bff76ecaade69b780a0d9ff7135bed5c61
Description: Notify about new incoming connections to your user.
Package: znc-mod-controlpanel
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44613
Filename: packages/znc-mod-controlpanel_1.4-2_ramips_24kec.ipk
Size: 45386
MD5Sum: 246d7c111d5c732b8966523def3f8d37
SHA256sum: c3102df85bfd32b6d4df719878c6f1256e0c35acd3629c3b18fa9bd19f0933ee
Description: Allows you to add/remove/edit users and settings on the fly via IRC messages.
Package: znc-mod-crypt
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13727
Filename: packages/znc-mod-crypt_1.4-2_ramips_24kec.ipk
Size: 14468
MD5Sum: 2f8c26b7a66b7628d4c063643db6aeb7
SHA256sum: 1de14b92088c4c79917632d4017ad159ad7fc1e7c97e34f0bb2b91c52530a12b
Description: Encryption for channel/private messages.
Package: znc-mod-ctcpflood
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10773
Filename: packages/znc-mod-ctcpflood_1.4-2_ramips_24kec.ipk
Size: 11541
MD5Sum: a1fc8c975397cde814a83d28de2f02a5
SHA256sum: 0bb481efab968e009fb7b2281688e12c159c8ca87a1ad6713a7669e24e13dfd9
Description: This module tries to block ctcp floods.
Package: znc-mod-dcc
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27466
Filename: packages/znc-mod-dcc_1.4-2_ramips_24kec.ipk
Size: 28220
MD5Sum: 6a2fac105d0df6cf71f07387b3facdc5
SHA256sum: 457462aed375522b38be68d6c14e3951d029bb9a582db1db818fb2f47ca36228
Description: Allows you to transfer files to and from ZNC.
Package: znc-mod-disconkick
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6744
Filename: packages/znc-mod-disconkick_1.4-2_ramips_24kec.ipk
Size: 7570
MD5Sum: a1148c04d09394db63686874ceda09f4
SHA256sum: d67144a928c51c1fe8c74093fef9ef47376e31a1b0a75dd58a704c35c4d2fb59
Description: This module will kick your client from all channels where you are, in case if ZNC disconnects from server.
Package: znc-mod-fail2ban
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11576
Filename: packages/znc-mod-fail2ban_1.4-2_ramips_24kec.ipk
Size: 12321
MD5Sum: 996a6adf9c0002b24c0559b7a79d64cf
SHA256sum: f94df8a5ac6f9775db25ceffc34c45dd71eb7df1dbc8fc3c30f13b61aef43920
Description: Block IPs for some time after a failed login.
Package: znc-mod-flooddetach
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12790
Filename: packages/znc-mod-flooddetach_1.4-2_ramips_24kec.ipk
Size: 13574
MD5Sum: 97b2429678282e011455d57f1f8c2716
SHA256sum: 4c3548f7ef8605a842b7eea84c42a2e1c092662106aa9b2e6b3e15bff8403026
Description: This module detaches you from channels which are flooded.
Package: znc-mod-identfile
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15881
Filename: packages/znc-mod-identfile_1.4-2_ramips_24kec.ipk
Size: 16604
MD5Sum: a856efd323bfa9d4f016fb05c94ed925
SHA256sum: 00552a5853fe9a1b7eaeb59ac14979d7ef3c31d410bbcb457c434e56fb18f0da
Description: Places the ident of a user to a file when they are trying to connect.
Package: znc-mod-keepnick
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11240
Filename: packages/znc-mod-keepnick_1.4-2_ramips_24kec.ipk
Size: 12002
MD5Sum: 6380ea8cd04c7d813381239546824833
SHA256sum: a13480a09e02e0ea6aff48fd48e1e478e3388d58e6df34ccca633fb0233820a3
Description: Tries to get you your primary nick.
Package: znc-mod-kickrejoin
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9588
Filename: packages/znc-mod-kickrejoin_1.4-2_ramips_24kec.ipk
Size: 10377
MD5Sum: 2fa4db800583ed376734545275d2c3fa
SHA256sum: 9e8653ed25c38e3c219470f611ec0cff8942fedac3c772e7d5b16ca1277c5ede
Description: Implements auto-rejoin-on-kick.
Package: znc-mod-lastseen
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13317
Filename: packages/znc-mod-lastseen_1.4-2_ramips_24kec.ipk
Size: 14050
MD5Sum: 61880daf44a4ff8351e06b0bdd6d6a16
SHA256sum: a3c77df17181bc4acd0a5ed32e6ed69b4dec6bad5e590d4603039a105ef61536
Description: Logs when a user last logged in to ZNC.
Package: znc-mod-listsockets
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16551
Filename: packages/znc-mod-listsockets_1.4-2_ramips_24kec.ipk
Size: 17326
MD5Sum: 22d5fe3b18ca4b2b2728df4a15fc27ef
SHA256sum: 2903bd4ecef1acaf5bac059aaf31e8c0b9bff1830ffb7147915837bbf945a258
Description: This module displays a list of all open sockets in ZNC.
Package: znc-mod-log
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16115
Filename: packages/znc-mod-log_1.4-2_ramips_24kec.ipk
Size: 16827
MD5Sum: 3d2b92b82f2838eea5b8f4ab489cae20
SHA256sum: 4f52d3733750eaf026e680b1b2c911d3010389184edadb30c54ea6e0b0c26ce5
Description: Log conversations to file.
Package: znc-mod-modules_online
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11303
Filename: packages/znc-mod-modules_online_1.4-2_ramips_24kec.ipk
Size: 12096
MD5Sum: 876262a89c5e821b58adee181f4ec669
SHA256sum: d5c3638620af7fd05a6721fd2fa8c3d4a63e762ff1a436bc85c06a2f37ca1439
Description: This module fakes the online status of ZNC-*users.
Package: znc-mod-nickserv
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16620
Filename: packages/znc-mod-nickserv_1.4-2_ramips_24kec.ipk
Size: 17291
MD5Sum: 148a7c8b62c2afab0058890b3dd49618
SHA256sum: 02c0f3467952305d1da6b2ad7245add08cfab6c1c4e12db7e6338fe6a8ba60d3
Description: Auths you with NickServ.
Package: znc-mod-notes
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17810
Filename: packages/znc-mod-notes_1.4-2_ramips_24kec.ipk
Size: 18612
MD5Sum: 84f7ab8c10a6f1b4a1e3a84e951c5def
SHA256sum: 598f163e6560ea4bc08e26b3cf74baf3db1b07adb798485494e23d1f631b4938
Description: This modules stores and displays short notes using a key/note pairs and shows them to you on connect.
Package: znc-mod-notify-connect
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6704
Filename: packages/znc-mod-notify-connect_1.4-2_ramips_24kec.ipk
Size: 7495
MD5Sum: 9a60a23071b3cc482ac130393e8bbe8a
SHA256sum: ce7b39ead74e50e3743743496bf3a1344b4f56d81dd261d31f35af84d89550a0
Description: Sends a notice to all admins when a user logs in or out.
Package: znc-mod-partyline
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31623
Filename: packages/znc-mod-partyline_1.4-2_ramips_24kec.ipk
Size: 32382
MD5Sum: 8b4598811935c381ea3cc4ed0ca3d62b
SHA256sum: 6b60e3fc2da2895f584d806bed981c876efd4c7d396dd8e3c87ce0b4b23263b5
Description: Allows ZNC users to join internal channels and query other ZNC users on the same ZNC.
Package: znc-mod-perform
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17276
Filename: packages/znc-mod-perform_1.4-2_ramips_24kec.ipk
Size: 18008
MD5Sum: 8555a5af9e72e3438ed0a3e84935af88
SHA256sum: 4734e8a1ea239b62ea730e53696b883b2ebe70e74ee11ecfab0cf7ffc21b6382
Description: Performs commands on connect.
Package: znc-mod-q
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28172
Filename: packages/znc-mod-q_1.4-2_ramips_24kec.ipk
Size: 28904
MD5Sum: fd15ef9df22660025354902de4a08dcc
SHA256sum: d7ff7cb413ea4b044341f5e4514eeaedff87192498448a91d197eb2980aff8c9
Description: Auths you with Q (and a little more).
Package: znc-mod-raw
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6736
Filename: packages/znc-mod-raw_1.4-2_ramips_24kec.ipk
Size: 7504
MD5Sum: e64a7a1d77afd8f5226b2610d5676cbd
SHA256sum: 41f3080cdc04173415ddaccceeec66e44bf5aa8872e3266dd197f4bd1a315a63
Description: View all of the raw traffic.
Package: znc-mod-route-replies
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16098
Filename: packages/znc-mod-route-replies_1.4-2_ramips_24kec.ipk
Size: 16878
MD5Sum: 2208ee5f7b656816ef224dc99459f6a6
SHA256sum: 1145b5e16e8bb3a993583f515230df8c1a2e4248ecfc3a5f2aedc2880a94ec7b
Description: Routes back answers to the right client when connected with multiple clients.
Package: znc-mod-sasl
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24220
Filename: packages/znc-mod-sasl_1.4-2_ramips_24kec.ipk
Size: 24977
MD5Sum: cd8eb63a9a3cde07870d7e3438498d96
SHA256sum: 844b2228940ac195524bf84e0d3e10ff677a63f939940fc295c8982e93fcd9f6
Description: The SASL module allows you to authenticate to an IRC network via SASL.
Package: znc-mod-savebuff
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16222
Filename: packages/znc-mod-savebuff_1.4-2_ramips_24kec.ipk
Size: 17012
MD5Sum: f2ea21eb0f76bc0744b9ac9724a7c1e9
SHA256sum: c1d62a6e24e2c877d2b02924d98ef76cdddca16cbc105bbd4739bc1dc47554a8
Description: Saves your channel buffers into an encrypted file so they can survive restarts and reboots.
Package: znc-mod-schat
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27234
Filename: packages/znc-mod-schat_1.4-2_ramips_24kec.ipk
Size: 28026
MD5Sum: 92231acf022d699b1f488d5be62e4b6f
SHA256sum: 5add386d2f2fc77d4b4c1bc9156416ae1a18909a9477ecf424f09260fbe17edc
Description: SSL (encrypted) DCC chats.
Package: znc-mod-send-raw
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15818
Filename: packages/znc-mod-send-raw_1.4-2_ramips_24kec.ipk
Size: 16572
MD5Sum: 7816f5cf62e21c5d5bec7d0e20c17d76
SHA256sum: 3fec4911d896a4f8e6cef2a65faedf0cece639f0b83062b44124bcc158590672
Description: Allows you to send raw traffic to IRC from other users.
Package: znc-mod-shell
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12279
Filename: packages/znc-mod-shell_1.4-2_ramips_24kec.ipk
Size: 13089
MD5Sum: 36020c6b57698e67d078543f175faa3d
SHA256sum: b50945ae13f1734624d7ed82d5d6afa9c8669542abb42461acae532e27be3f9e
Description: Have your unix shell in a query window right inside of your IRC client.
Package: znc-mod-simple-away
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14945
Filename: packages/znc-mod-simple-away_1.4-2_ramips_24kec.ipk
Size: 15741
MD5Sum: ee4e51631b1d94e6fdf99f41c2f2443d
SHA256sum: 8c0d3b53866ca201f4dcbda8e3ae181aa87266d195c2ded5a82b006aa95f4798
Description: This module will automatically set you away on IRC while you are disconnected from the bouncer.
Package: znc-mod-stickychan
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16493
Filename: packages/znc-mod-stickychan_1.4-2_ramips_24kec.ipk
Size: 17260
MD5Sum: 7397e7886946760bedb205d303bd34e7
SHA256sum: 1d28b211e5acbc217146979bc19cf82db968f99f43537138d461e2d17f7e7aa2
Description: Keeps you sticked to specific channels.
Package: znc-mod-watch
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29122
Filename: packages/znc-mod-watch_1.4-2_ramips_24kec.ipk
Size: 29916
MD5Sum: 3686c6ad0e9591d9150087eaf9893dd9
SHA256sum: 92b013d1ff1fac59e26b96dd8b90aea84de4ec0e8d35405a5c856a2ae7628b71
Description: Monitor activity for specific text patterns from specific users and have the text sent to a special query window.
Package: znc-mod-webadmin
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 79435
Filename: packages/znc-mod-webadmin_1.4-2_ramips_24kec.ipk
Size: 80239
MD5Sum: 669447ddff47a53c7bcfd7023a44b672
SHA256sum: 3eeb34d38245b9d10d7b8322a5e7338662f0db975d3118f547157d73a94036a7
Description: Allows you to add/remove/edit users and settings on the fly via a web browser.
Package: znc-webskin-dark-clouds
Version: 1.4-2
Depends: libc, znc-mod-webadmin
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32461
Filename: packages/znc-webskin-dark-clouds_1.4-2_ramips_24kec.ipk
Size: 33323
MD5Sum: 79410ec332ef2b5dbe31c4ebf1ba3239
SHA256sum: 8454527ed47c63c0a8cab710e7411efa5098c9b0f23d7274bbd76580c088c415
Description: dark-clouds webskin for webadmin
Package: znc-webskin-forest
Version: 1.4-2
Depends: libc, znc-mod-webadmin
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 220964
Filename: packages/znc-webskin-forest_1.4-2_ramips_24kec.ipk
Size: 221839
MD5Sum: c568cdd519d5f712d56aba84720c9dd0
SHA256sum: 396730fe89d742be3d3194bb3da790f9b7dd87ea6e273c2da7fcda6aebb3f972
Description: forest webskin for webadmin
Package: znc-webskin-ice
Version: 1.4-2
Depends: libc, znc-mod-webadmin
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4509
Filename: packages/znc-webskin-ice_1.4-2_ramips_24kec.ipk
Size: 5236
MD5Sum: a3f6b822773305a3d64c2ea0dd42e0de
SHA256sum: eac800f7f54c79164d91ddf77bab4f8c8eaef3a4f92498625a201e9e8544247a
Description: ice webskin for webadmin
Package: znc
Version: 1.4-2
Depends: libc, libopenssl, libpthread, libstdcpp
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 476286
Filename: packages/znc_1.4-2_ramips_24kec.ipk
Size: 476559
MD5Sum: de265ebdfbb7640f324493b056856b57
SHA256sum: 6480f7d25987b65ac37c29600d8a5dfc3c593a399266b2103d19194e4d67f933
Description: ZNC is an IRC bouncer with many advanced features like detaching,
multiple users, per channel playback buffer, SSL, IPv6, transparent DCC
bouncing, and c++ module support to name a few.
Package: zoneinfo-africa
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7691
Filename: packages/zoneinfo-africa_2015a-1_ramips_24kec.ipk
Size: 8422
MD5Sum: 519318ad829351bbd9da7e915c7f9584
SHA256sum: fa0ef66928b146cf1cc211df9bfd27f1d31c23e120e575f4959b1067918a44fb
Description: Zone Information (Africa)
Package: zoneinfo-asia
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30201
Filename: packages/zoneinfo-asia_2015a-1_ramips_24kec.ipk
Size: 30654
MD5Sum: 3c5c8c43a01dfbcb970d204815c765d6
SHA256sum: dbbd1cda9151d41c418caaeb21421aa9923205d8f98731fe1165c0474bae44bc
Description: Zone Information (Asia)
Package: zoneinfo-atlantic
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6081
Filename: packages/zoneinfo-atlantic_2015a-1_ramips_24kec.ipk
Size: 6780
MD5Sum: 51a0101e491d666727e618f75ad41b8c
SHA256sum: ab36f54940c988e94d0392f59080319f586a2f83bf6342383dfcae465b8e1bcb
Description: Zone Information (Atlantic)
Package: zoneinfo-australia-nz
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6591
Filename: packages/zoneinfo-australia-nz_2015a-1_ramips_24kec.ipk
Size: 7208
MD5Sum: 52367e3028650c3bb3cb733e6057aa29
SHA256sum: a55928d705e335ade64561c318a463c0864ba12da8ff3506d820ba00e7397050
Description: Zone Information (Australia-NZ)
Package: zoneinfo-core
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21013
Filename: packages/zoneinfo-core_2015a-1_ramips_24kec.ipk
Size: 21606
MD5Sum: 47406cdfd3609ae699ed038bd141b2ab
SHA256sum: aceba6a22c0117e61117f831c2393f3e14a8b05f6e8b5f677f61ee0153f4df04
Description: Zone Information (core)
Package: zoneinfo-europe
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22837
Filename: packages/zoneinfo-europe_2015a-1_ramips_24kec.ipk
Size: 23366
MD5Sum: df6647aa28ea6144a44ca9edbda624b0
SHA256sum: 1b080ec5406e98a22ca3da2a470fff282ca537e068fb9f4374bd608749be579d
Description: Zone Information (Europe)
Package: zoneinfo-india
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 985
Filename: packages/zoneinfo-india_2015a-1_ramips_24kec.ipk
Size: 1728
MD5Sum: 9c251b85790db5e9177262a4d08e1bfc
SHA256sum: 98bb95d13c218b112071f612e52b85603569ff5f73f33ad17fca48418454b0a2
Description: Zone Information (India)
Package: zoneinfo-northamerica
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 83873
Filename: packages/zoneinfo-northamerica_2015a-1_ramips_24kec.ipk
Size: 83881
MD5Sum: 5c43d82c13d42eea86db9e8b4a7972cc
SHA256sum: dc02a40089eb1dab1abeaf6092a5112ffb0b64cb488d255195a87525457f2833
Description: Zone Information (NorthAmerica)
Package: zoneinfo-pacific
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6295
Filename: packages/zoneinfo-pacific_2015a-1_ramips_24kec.ipk
Size: 6992
MD5Sum: 8e046c5a3c4fb01bcaa26a8346bea3b0
SHA256sum: d61e102be78a749b047eaa2386f92039401cf0b9a52fae3f7e46a97e1fdc9258
Description: Zone Information (Pacific)
Package: zoneinfo-poles
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4665
Filename: packages/zoneinfo-poles_2015a-1_ramips_24kec.ipk
Size: 5399
MD5Sum: 828d5b6c93595d5dbd576585c1282393
SHA256sum: 9d8d5cb71d1de890426f315757b6f83f727b13b7b066b93bd5ff33e37bd1c92b
Description: Zone Information (Arctic, Antarctic)
Package: zoneinfo-simple
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17364
Filename: packages/zoneinfo-simple_2015a-1_ramips_24kec.ipk
Size: 17878
MD5Sum: 95e6ee71079494b878b472f36cf8c653
SHA256sum: 236dfe7d2a1c7ec4ca6e4ff342bf99f7f88fe1e9a613078ca2fdc1b3cb92ce2f
Description: Zone Information (simple)
Package: zoneinfo-southamerica
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4980
Filename: packages/zoneinfo-southamerica_2015a-1_ramips_24kec.ipk
Size: 5679
MD5Sum: 6415a40f52a2203f668b564cc0a864cf
SHA256sum: 33bbd8ca3c0d994ce0f548ec4d153c3cf02e862e179a7f136c7b5c93c3860623
Description: Zone Information (SouthAmerica)
Package: zsh
Version: 5.0.6-1
Depends: libc, libncurses, libncursesw, libpcre, librt
Source: feeds/packages/utils/zsh
License: ZSH
Section: utils
Maintainer: Vadim A. Misbakh-Soloviov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1276952
Filename: packages/zsh_5.0.6-1_ramips_24kec.ipk
Size: 1277335
MD5Sum: 621ac9e38c4264f66d66bf42a0dac5c3
SHA256sum: 67e23c7a2ee923595329d9b0385ade54228d40115038d7fc6e23ac961350d19f
Description: Zsh is a UNIX command interpreter (shell) usable as an interactive
login shell and as a shell script command processor. Of the standard
shells, zsh most closely resembles ksh but includes many enhancements.
Zsh has command line editing, builtin spelling correction, programmable
command completion, shell functions (with autoloading), a history
mechanism, and a host of other features.
Package: ahcpd
Version: 0.53-2
Depends: libc, kmod-ipv6, ip, librt
Source: feeds/routing/ahcpd
License: MIT
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21601
Filename: routing/ahcpd_0.53-2_ramips_24kec.ipk
Size: 22470
MD5Sum: 3a0e9b4160d013c9c18981b3c5007d35
SHA256sum: 4a5ba15c7aa9b3275a8d3aed1c2a89ea0ee7347e83a033859502b3a08393c5dc
Description: Ahcpd is a daemon for configuring an IPv6 network using the Ad-Hoc
Configuration Protocol (AHCP). AHCP is designed for wireless mesh
networks, where IPv6 autoconfiguration and DHCPv6 do not work, but may
also be used on wired networks.
Package: alfred
Version: 2014.4.0-0
Depends: libc, kmod-ipv6, librt
Source: feeds/routing/alfred
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 19494
Filename: routing/alfred_2014.4.0-0_ramips_24kec.ipk
Size: 20647
MD5Sum: ae05f1a622f9536be2975b2b2798b800
SHA256sum: 62df9389c1ba57220cef22d862f549dd0bf5f9bc8a1f582f4f48f8758a626d65
Description: alfred is a user space daemon for distributing arbitrary local information over
the mesh/network in a decentralized fashion. This data can be anything which
appears to be useful - originally designed to replace the batman-adv
visualization (vis), you may distribute hostnames, phone books, administration
information, DNS information, the local weather forecast ...
alfred runs as daemon in the background of the system. A user may insert
information by using the alfred binary on the command line, or use special
programs to communicate with alfred (done via unix sockets). alfred then takes
care of distributing the local information to other alfred servers on other
nodes. This is done via IPv6 link-local multicast, and does not require any
configuration. A user can request data from alfred, and will receive the
information available from all alfred servers in the network.
Package: babel-pinger
Version: 0.1-1
Depends: libc, librt
Source: feeds/routing/babel-pinger
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3803
Filename: routing/babel-pinger_0.1-1_ramips_24kec.ipk
Size: 4600
MD5Sum: 36254d870bfeef305577698aa4afd4dc
SHA256sum: cb5a67cf7abbdc86cf7d65c7da832e5eda2886e30ae5580b3da91c5f7fcd4af0
Description: Babel-pinger is a hack to export a default route into Babel for people
using DHCP to configure their routers rather than speaking to their
upstream provider with a proper routing protocol.
Package: babeld
Version: 1.5.1-1
Depends: libc, kmod-ipv6, librt
Source: feeds/routing/babeld
License: MIT
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45880
Filename: routing/babeld_1.5.1-1_ramips_24kec.ipk
Size: 46833
MD5Sum: 0c7274b376f2d77fbabcba42f56d6299
SHA256sum: 64bb301cd56b4d9a80a269f6c274272a09efb810fd4f8a148a1ac06f4ffb8df3
Description: Babel is a loop-avoiding distance-vector routing protocol roughly based
on DSDV and AODV, but with provisions for link cost estimation and
redistribution of routes from other routing protocols.
While it is optimised for wireless mesh networks, Babel will also work
efficiently on wired networks. It will generate between 1.2 and 2.4 times
the amount of routing traffic that RIPng would generate, while
never counting to infinity.
Package: babels
Version: 2014-08-09-2598774f6bd7d9225483c48d72733eab5745d14e-1
Depends: libc, kmod-ipv6
Source: feeds/routing/babels
License: MIT
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53544
Filename: routing/babels_2014-08-09-2598774f6bd7d9225483c48d72733eab5745d14e-1_ramips_24kec.ipk
Size: 54689
MD5Sum: 0880d0d9d674949abd4b64a722bb47ea
SHA256sum: 3b6b404aa679ecff3043ce3566144e7ef614e81feffb3b5f50c7e8520888db9e
Description: Babel is a loop-avoiding distance-vector routing protocol roughly based
on DSDV and AODV, but with provisions for link cost estimation and
redistribution of routes from other routing protocols.
While it is optimised for wireless mesh networks, Babel will also work
efficiently on wired networks. It will generate between 1.2 and 2.4 times
the amount of routing traffic that RIPng would generate, while
never counting to infinity.
This is experimental source routing branch, and should be only used if you
know what you are doing.
Package: batctl
Version: 2014.4.0-1
Depends: libc, kmod-batman-adv, libnl-tiny
Source: feeds/routing/batctl
License: GPL-2.0
Section: net
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23314
Filename: routing/batctl_2014.4.0-1_ramips_24kec.ipk
Size: 24097
MD5Sum: 8b62cdab386d9ec9eee1bc22c407aa4d
SHA256sum: 2e6fbdccd0d604a04d804b833c9a9578c54f2f70db9afbb8717dc178bfe23471
Description: batctl is a more intuitive managment utility for B.A.T.M.A.N.-Advanced.
It is an easier method for configuring batman-adv and provides some
additional tools for debugging as well. This package builds
version 2014.4.0 of the user space utility.
Package: batmand
Version: r1439-2
Depends: libc, libpthread, kmod-tun
Source: feeds/routing/batmand
License: GPL-2.0
Section: net
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37558
Filename: routing/batmand_r1439-2_ramips_24kec.ipk
Size: 38400
MD5Sum: 5699b2ac959a7e3448ad8cd461aa41e9
SHA256sum: 9923f5a41cebcc50013050c47592a80da3d7e6480a65d6e8b2997759dac36290
Description: B.A.T.M.A.N. layer 3 routing daemon
Package: bird4-uci
Version: 0.2
Depends: libc, bird4, libuci, uci
Source: feeds/routing/bird-openwrt/bird4-openwrt
License: GPL-3.0+
Section: net
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4055
Filename: routing/bird4-uci_0.2_ramips_24kec.ipk
Size: 4865
MD5Sum: f6c8d0902c30638a8bee7fd09759ac57
SHA256sum: d928897cb8d8ddb60a8756b672c062622c2ddf1db366c5e7a33a38438f3445a5
Description: bird4 UCI integration module
Package: bird4
Version: 1.4.5-2
Depends: libc, libpthread
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 167828
Filename: routing/bird4_1.4.5-2_ramips_24kec.ipk
Size: 168713
MD5Sum: 0cc24533c9ecc24c43aba48dc9175516
SHA256sum: b8cedc2200c9c543083aadadc4f4c4f3560a24f1b5f9ca63756c49b0011ef2bc
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is IPv4 version of BIRD, it supports OSPFv2, RIPv2 and BGP
protocols.
In BGP, BIRD supports communities, multiprotocol extensions, MD5
authentication, 32bit AS numbers and could act as a route server or a
route reflector. BIRD also supports multiple RIBs, multiple kernel
routing tables and redistribution between the protocols with a powerful
configuration syntax.
Package: bird6-uci
Version: 0.2
Depends: libc, bird6, libuci, uci
Source: feeds/routing/bird-openwrt/bird6-openwrt
License: GPL-3.0+
Section: net
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4229
Filename: routing/bird6-uci_0.2_ramips_24kec.ipk
Size: 5051
MD5Sum: f7adf77f4148e31e205b49c07c61d3e0
SHA256sum: b7799f473c005b411d3a2e4e674470db4ce1fa4934aa365ec3ab362341421bec
Description: bird6 UCI integration module
Package: bird6
Version: 1.4.5-2
Depends: libc, libpthread
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 187478
Filename: routing/bird6_1.4.5-2_ramips_24kec.ipk
Size: 188415
MD5Sum: 1c2d59a36b5d96ccbc04fb9b96550b98
SHA256sum: c35abda773e6b11334ebc13ccc72d42162e6b114a12fbb290bf10b08d7789483
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is IPv6 version of BIRD, it supports OSPFv3, RIPng and BGP
protocols.
In BGP, BIRD supports communities, multiprotocol extensions, MD5
authentication, 32bit AS numbers and could act as a route server or a
route reflector. BIRD also supports multiple RIBs, multiple kernel
routing tables and redistribution between the protocols with a powerful
configuration syntax.
Package: birdc4
Version: 1.4.5-2
Depends: libc, libreadline, libncurses, bird4
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10953
Filename: routing/birdc4_1.4.5-2_ramips_24kec.ipk
Size: 11990
MD5Sum: d7f8f6a24ad7a8a41f5800fa15096162
SHA256sum: 5fe254c495586bf1e5a6c690b130b84645f5c350459c52e713025dfdad9b908e
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Unless you can't afford dependency on ncurses and readline, you
should install BIRD command-line client together with BIRD.
Package: birdc6
Version: 1.4.5-2
Depends: libc, libreadline, libncurses, bird6
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 12200
Filename: routing/birdc6_1.4.5-2_ramips_24kec.ipk
Size: 13247
MD5Sum: f411730f709ebccaa0a140f552885e9a
SHA256sum: fb235807fab089405c93265ccd1ffd91f6c744116f6b36107a60e1a1e2cd5a8f
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Unless you can't afford dependency on ncurses and readline, you
should install BIRD command-line client together with BIRD.
Package: birdcl4
Version: 1.4.5-2
Depends: libc, bird4
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10274
Filename: routing/birdcl4_1.4.5-2_ramips_24kec.ipk
Size: 11253
MD5Sum: 0c6aae00ba1cb711a18e213053d5214e
SHA256sum: bb14d755ce0430fca7c582d2cbf2a03ce3204880ae7ec55edf863198c6f46e13
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD lightweight command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Package: birdcl6
Version: 1.4.5-2
Depends: libc, bird6
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 11542
Filename: routing/birdcl6_1.4.5-2_ramips_24kec.ipk
Size: 12503
MD5Sum: d6c4f137373bebfc8bbf7753fc290b3e
SHA256sum: 15bd46ef978619317552327cae37b6326e2f5d4ebd23cc75f6928bf2b931edf0
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD lightweight command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Package: bmx6-uci-config
Version: r2014112401-4
Depends: libc, bmx6, libuci
Source: feeds/routing/bmx6
License: GPL-2.0
Section: net
Maintainer: Axel Neumann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8593
Filename: routing/bmx6-uci-config_r2014112401-4_ramips_24kec.ipk
Size: 9400
MD5Sum: 4d83944cdbfca03048705615415239be
SHA256sum: 88b13671ccf52001cf891a536c1a8819cd4b1e81e307f790e1088224b0de3cc4
Description: configuration plugin based on uci (recommended!)
Package: bmx6
Version: r2014112401-4
Depends: libc, kmod-ip6-tunnel, kmod-iptunnel6, kmod-tun
Source: feeds/routing/bmx6
License: GPL-2.0
Section: net
Maintainer: Axel Neumann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 130569
Filename: routing/bmx6_r2014112401-4_ramips_24kec.ipk
Size: 131238
MD5Sum: e675de7dfb1790bf1fba80340527edb7
SHA256sum: 2a3c740996fbb22b776f099dceb720607b4718b883ac232774accb9a7fa7e0cb
Description: BMX6 layer 3 routing daemon supporting IPv4, IPv6, and IPv4 over IPv6
Package: hnet-full
Version: 2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1
Depends: libc, hnetd, luci-app-hnet, babels, ohybridproxy, miniupnpd, minimalist-pcproxy
Source: feeds/routing/hnetd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: routing/hnet-full_2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1_ramips_24kec.ipk
Size: 901
MD5Sum: c2520f5aad9f322d225e6395ae9d3724
SHA256sum: 6535c83de8755b587c460de52d9dbd61c8773afdb24f9091e90547fcecac7c36
Description: HNCP Homenet metapackage
Package: hnetd
Version: 2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1
Depends: libc, odhcpd, odhcp6c, netifd
Source: feeds/routing/hnetd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 77598
Filename: routing/hnetd_2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1_ramips_24kec.ipk
Size: 78518
MD5Sum: 2883cde85910b2845b1a46fb111adc4e
SHA256sum: 5de3c1a15bfeb5f0f6e5d0362ae8c788a1aaff2c3bba11f83b4965376ab695f3
Description: This package provides a daemon which implementats distributed prefix assignment
and service discovery for a home network consisting of multiple routers
connected to multiple service providers. It provides a netifd protocol "hnet"
for use in /etc/config/network.
Package: kmod-batman-adv
Version: 3.18.9+2014.4.0-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc16, kmod-crypto-core, kmod-crypto-crc32c, kmod-lib-crc32c
Source: feeds/routing/batman-adv
License: GPL-2.0
Section: kernel
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66533
Filename: routing/kmod-batman-adv_3.18.9+2014.4.0-1_ramips_24kec.ipk
Size: 67368
MD5Sum: b89382a2b35292d9ae39353fda732759
SHA256sum: 65dca0f8a87082ef6c1b335f401dd0fd2f8f586ae8827d480325d2395a67f826
Description: B.A.T.M.A.N. advanced is a kernel module which allows to
build layer 2 mesh networks. This package builds
version 2014.4.0 of the kernel module.
Package: kmod-nat46
Version: 3.18.9+3-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6
Source: feeds/routing/nat46
License: GPL-2.0
Section: kernel
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14688
Filename: routing/kmod-nat46_3.18.9+3-1_ramips_24kec.ipk
Size: 15446
MD5Sum: 7500ffa303b1a96a8edcbc1bcce1b3c8
SHA256sum: 8d9040566cfd41a0a4bae2adc1e3afb2b87749f9c758164482c13dac9fe68834
Description: Stateless NAT46 translation kernel module
Package: luci-app-bird4
Version: 0.2
Depends: libc, bird4-uci, luci-base
Source: feeds/routing/bird-openwrt/bird4-openwrt
License: GPL-3.0+
Section: luci
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4266
Filename: routing/luci-app-bird4_0.2_ramips_24kec.ipk
Size: 5031
MD5Sum: eae95e10758b781027d6e453e27e3482
SHA256sum: 301ed8889de6128f6fb96a34cae850829dd3fde37e1d465c2a14b4c03b849fcc
Description: bird4 application for LuCI
Package: luci-app-bird6
Version: 0.2
Depends: libc, bird6-uci, luci-base
Source: feeds/routing/bird-openwrt/bird6-openwrt
License: GPL-3.0+
Section: luci
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4419
Filename: routing/luci-app-bird6_0.2_ramips_24kec.ipk
Size: 5171
MD5Sum: 10778544d9b11f08f6b89c7a4cb52473
SHA256sum: 2fdc9c7daff064cf64cdeb2243e79541f8dc3052eaf7bb9fe09716574fa77bea
Description: bird6 application for LuCI
Package: luci-app-bmx6
Version: 3
Depends: libc, luci-lib-json, luci-mod-admin-full, luci-lib-httpclient, bmx6
Source: feeds/routing/luci-app-bmx6
License: GPL-2.0+
Section: luci
Maintainer: Pau Escrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 81868
Filename: routing/luci-app-bmx6_3_ramips_24kec.ipk
Size: 82733
MD5Sum: dc7d6ebe02a1dcb8f9dde8c13d0f759d
SHA256sum: e4e24c563c5507cfbcb0dd00aa98a005c4143b79f734d06c5fad8728ba046595
Description: bmx6 web application (status and configuration) for LuCi web interface
Package: luci-app-hnet
Version: 2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1
Depends: libc, hnetd
Source: feeds/routing/hnetd
License: GPL-2.0
Section: luci
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56927
Filename: routing/luci-app-hnet_2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1_ramips_24kec.ipk
Size: 57788
MD5Sum: 57d785604e17463e47648eda2ca4c775
SHA256sum: d79d42ba5f5365898d7f125b9577065a53325e41da768352adeef4c71085cbeb
Description: HNCP Homenet configuration and visualization
Package: map-t
Version: 3
Depends: libc, map, kmod-nat46
Source: feeds/routing/nat46
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: routing/map-t_3_ramips_24kec.ipk
Size: 821
MD5Sum: c3839f478551c17f03ecb1db50001bff
SHA256sum: a54429a55f53daed953c49bc5ab59cfbcada76666d04bd40d61f5927001ca223
Description: MAP-T configuration support
Package: mcproxy
Version: 2014-12-31-b7bd2d0809a0d1f177181c361b9a6c83e193b79a-2
Depends: libc, libpthread, libstdcpp
Source: feeds/routing/mcproxy
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 118917
Filename: routing/mcproxy_2014-12-31-b7bd2d0809a0d1f177181c361b9a6c83e193b79a-2_ramips_24kec.ipk
Size: 119619
MD5Sum: 67f6002ff276dfb64b1bd2667f2157ad
SHA256sum: 2050fa8666a3431e0a73715a0924db0d83881f8990cd85e4ef52f20f527cd220
Description: mcproxy is a free & open source implementation of the IGMP/MLD proxy function (see RFC 4605) for Linux systems.
It operates on the kernel tables for multicast routing and allows for multiple instantiations,
as well as dynamically changing downstream interfaces.
Package: minimalist-pcproxy
Version: 2015-01-12-2d6d1b0b0a3b79a9b4a9b0a7606a84600a967bcb-1
Depends: libc, libubox
Source: feeds/routing/minimalist-pcproxy
License: GPL-2.0
Section: net
Maintainer: Markus Stenberg <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6269
Filename: routing/minimalist-pcproxy_2015-01-12-2d6d1b0b0a3b79a9b4a9b0a7606a84600a967bcb-1_ramips_24kec.ipk
Size: 7342
MD5Sum: 1794afdda59c5d8385e4db96c96e6bf3
SHA256sum: 613601d5d6a0e17407579be909da94c08e51b78ad84d4010bb996ecc1fc1d6b1
Description: This package contains a daemon which can be used to forward
PCP (Port Control Protocol - RFC6887) requests requests to PCP remote servers.
In and of itself, it is not very useful, but combined with hnetd+miniupnpd
it allows for control of NAT forwarding and firewall pinholes from multiple
hops away.
Package: miniupnpd
Version: 1.9.20141209-1
Depends: libc, iptables, libip4tc, libip6tc, ip6tables, libnfnetlink
Source: feeds/routing/miniupnpd
License: BSD-3-Clause
Section: net
Maintainer: Markus Stenberg <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53472
Filename: routing/miniupnpd_1.9.20141209-1_ramips_24kec.ipk
Size: 54345
MD5Sum: b387b69a4f372be49d64c03660b0e361
SHA256sum: d242ff46e8622fc6386e266d52aff63d055c36b13869607d5b1098194de68068
Description: Lightweight UPnP IGD, NAT-PMP & PCP daemon
Package: mrd6
Version: 2013-11-30-c805eb33255dbc0b6647d463c6c67d1c9d3105a0-1
Depends: libc, libstdcpp
Source: feeds/routing/mrd6
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 265261
Filename: routing/mrd6_2013-11-30-c805eb33255dbc0b6647d463c6c67d1c9d3105a0-1_ramips_24kec.ipk
Size: 266009
MD5Sum: 1cc4a38650ca30a6b4f2e0fb17d8f848
SHA256sum: 44bb4f9703c5c873b2497dfe1ca4c6c76b3f5429189090dd1d381c4f4be2b49d
Description: Multicast is becoming a major component in next generation networks, used
in several scenarios, from video broadcasting to multimedia conferencing.
In order to be implemented, new technology needs supporting hardware and
software across a set of devices and systems. MRD6 is an implementation of
a modular IPv6 Multicast Routing Framework for the Linux operating system
and provides MLDv2 (as well as MLDv1), PIM-SM and MBGP support.
Package: ndppd
Version: 0.2.3-1
Depends: libc, kmod-ipv6, uclibcxx
Source: feeds/routing/ndppd
License: GPL-3.0+
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31510
Filename: routing/ndppd_0.2.3-1_ramips_24kec.ipk
Size: 32437
MD5Sum: 0baea2e46680152bbede6ad15876b157
SHA256sum: 4edf58f1fcab25ee702b247ed8ef8efdc562b82160f1d83d4273c4e214c2024b
Description: ndppd, or NDP Proxy Daemon, is a daemon that proxies NDP (Neighbor Discovery
Protocol) messages between interfaces. ndppd currently only supports Neighbor
Solicitation Messages and Neighbor Advertisement Messages.
The ndp_proxy provided by Linux doesn't support listing proxies, and only hosts
are supported. No subnets. ndppd solves this by listening for Neighbor
Solicitation messages on an interface, then query the internal interfaces for
that target IP before finally sending a Neighbor Advertisement message.
Package: nodogsplash
Version: 0.9_beta9.9.9-5
Depends: libc, libpthread, iptables-mod-ipopt
Source: feeds/routing/nodogsplash
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 46326
Filename: routing/nodogsplash_0.9_beta9.9.9-5_ramips_24kec.ipk
Size: 47048
MD5Sum: d89a70b3f2b743996233369a81bfcec0
SHA256sum: 401b7017d7048afae19bd966c8dc1cb02384cb8a0dff8097d2649230a33a08b5
Description: Nodogsplash offers a simple way to open a free hotspot providing
restricted access to an internet connection.
Package: ohybridproxy
Version: 2015-01-12-f2ba152799c481471ddc0213b3f98b1c143d97a3-1
Depends: libc, libubox, mdnsd
Source: feeds/routing/ohybridproxy
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10572
Filename: routing/ohybridproxy_2015-01-12-f2ba152799c481471ddc0213b3f98b1c143d97a3-1_ramips_24kec.ipk
Size: 11418
MD5Sum: 1e8456ac3d647327b127f598b502286e
SHA256sum: 6ad06ffd8ee502917157011172d33e104fbe2405aa5b2540939e44f0d0131da3
Description: This package provides a statically configured daemon for translating DNS
requests to Multicast DNS and back again.
Package: olsrd-mod-arprefresh
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1938
Filename: routing/olsrd-mod-arprefresh_0.6.8-2_ramips_24kec.ipk
Size: 2683
MD5Sum: 96d7143b26a64f28972ab91ff1391754
SHA256sum: 91997885cbc2104128c408c5f82489fdd64aa3f8d2bbcbc79dc631ca6da54299
Description: Kernel ARP cache refresh plugin
Package: olsrd-mod-bmf
Version: 0.6.8-2
Depends: libc, olsrd, kmod-tun
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11675
Filename: routing/olsrd-mod-bmf_0.6.8-2_ramips_24kec.ipk
Size: 12462
MD5Sum: 794e9f13087bc8664a5a4e636ca4f7f7
SHA256sum: b9cc35e4f08b0ec599e3edd349c4bdfac107dc6a55c64bfe7f005a90c70ed799
Description: Basic multicast forwarding plugin
Package: olsrd-mod-dot-draw
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3688
Filename: routing/olsrd-mod-dot-draw_0.6.8-2_ramips_24kec.ipk
Size: 4394
MD5Sum: de2b7fa12cd380ac2b3a39b5ba6a6eeb
SHA256sum: 8b458618a4bfede326a799b0788097dcf1baeb373122a891aed4ca81d8cfb7ce
Description: Dot topology information plugin
Package: olsrd-mod-dyn-gw-plain
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2281
Filename: routing/olsrd-mod-dyn-gw-plain_0.6.8-2_ramips_24kec.ipk
Size: 3049
MD5Sum: aad9c77834ac63d4edb94c6524b53500
SHA256sum: 8fa0220ecef575ee80462ab0e780e08bf2d562f3b3554f52e92aaabda0ad80fc
Description: Dynamic internet gateway plain plugin
Package: olsrd-mod-dyn-gw
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4004
Filename: routing/olsrd-mod-dyn-gw_0.6.8-2_ramips_24kec.ipk
Size: 4717
MD5Sum: 172cd77d44590b068bfcc3cc4fa7b66b
SHA256sum: c5e60e8678557844d09dc91ec27cd4fcc65ef39cf1c06aad9b38bd008905c479
Description: Dynamic internet gateway plugin
Package: olsrd-mod-httpinfo
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28490
Filename: routing/olsrd-mod-httpinfo_0.6.8-2_ramips_24kec.ipk
Size: 29223
MD5Sum: 9692ca54ded490e6ac1ec0c16f82b1ed
SHA256sum: cd596f4bd50f0db5e9969bb4942bb33f079132aca3cc5094f78c833322e09a67
Description: Small informative web server plugin
Package: olsrd-mod-jsoninfo
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11579
Filename: routing/olsrd-mod-jsoninfo_0.6.8-2_ramips_24kec.ipk
Size: 12340
MD5Sum: f122e4c75f20d20a1a2e3333f99a74eb
SHA256sum: 7ff210b8a9e3bcb6d2bdc59b018a947e2f37dd8e04aad445a84b00c433b3298c
Description: Small informative plugin with JSON output
Package: olsrd-mod-mdns
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8014
Filename: routing/olsrd-mod-mdns_0.6.8-2_ramips_24kec.ipk
Size: 8768
MD5Sum: bb1197408779a4c4b7113de7252a8aa4
SHA256sum: 33badf66a0679f765e480eb4f3d3fc5b6887155ea588cdf754a1a72250c4360d
Description: MDNS/Zeroconf/Bonjour packet distribution
Package: olsrd-mod-nameservice
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10796
Filename: routing/olsrd-mod-nameservice_0.6.8-2_ramips_24kec.ipk
Size: 11542
MD5Sum: 0c18accb8ab10589c24abc681d48880a
SHA256sum: 33d471ebb124b85cdadbd1150b1976b95b823edda368b812ee6e407cfec6e8fe
Description: Lightweight hostname resolver plugin
Package: olsrd-mod-p2pd
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7601
Filename: routing/olsrd-mod-p2pd_0.6.8-2_ramips_24kec.ipk
Size: 8380
MD5Sum: b60e178734fe26a6add5761f4e922e8e
SHA256sum: 5d1a1948dadf08a043ebcbc2fbb94bc9c88a13c5d153171e6001c580602f2158
Description: Peer to Peer Discovery plugin
Package: olsrd-mod-pgraph
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2748
Filename: routing/olsrd-mod-pgraph_0.6.8-2_ramips_24kec.ipk
Size: 3514
MD5Sum: f0ea7ab001e1f601af65da12526fbcde
SHA256sum: 491926892ae167b0ba7f3504a0abe179c0c3e9d36fc5b04d52865cb8ff13ef6a
Description: output network topology for pgraph
Package: olsrd-mod-pud
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51869
Filename: routing/olsrd-mod-pud_0.6.8-2_ramips_24kec.ipk
Size: 52605
MD5Sum: f304348bf7e083965a5bd1af7a2fae32
SHA256sum: 5efdb3bbeb379548731eb9fe3e53dbde9d873c0d81f530622cb7cf34306cbb09
Description: Position Update Distribution plugin
Package: olsrd-mod-quagga
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5678
Filename: routing/olsrd-mod-quagga_0.6.8-2_ramips_24kec.ipk
Size: 6412
MD5Sum: 0285c500b889cda0cd6dbe00fbfaa67d
SHA256sum: a984e7a6be1bb0174752e96112fa9976941fcedaea2d7c41adbb56d3c55db344
Description: Quagga plugin
Package: olsrd-mod-secure
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9244
Filename: routing/olsrd-mod-secure_0.6.8-2_ramips_24kec.ipk
Size: 10029
MD5Sum: eb46d3701136577096f47a52ce37d651
SHA256sum: 2e60048792271dc3395f29d47ac994014ba4e1b030de93c7531cee7247b81a67
Description: Message signing plugin to secure routing domain
Package: olsrd-mod-sgwdynspeed
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4368
Filename: routing/olsrd-mod-sgwdynspeed_0.6.8-2_ramips_24kec.ipk
Size: 5147
MD5Sum: b3c7a1efbda7d811250f082e4df545a5
SHA256sum: ed506309444310c31dae4d6326f275c98aede6b984faa4478d7a702bcfa9ce63
Description: Smart Gateway dynamic speed plugin
Package: olsrd-mod-txtinfo
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6746
Filename: routing/olsrd-mod-txtinfo_0.6.8-2_ramips_24kec.ipk
Size: 7517
MD5Sum: 1946d5fad46e2d1d9e87a1d90c2dbd51
SHA256sum: a16e8343c9b65098e2de09427eb205e3a7cc8b7c50c7353f4ea10d533d9fa037
Description: Small informative web server plugin
Package: olsrd-mod-watchdog
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1732
Filename: routing/olsrd-mod-watchdog_0.6.8-2_ramips_24kec.ipk
Size: 2443
MD5Sum: 15547bc4a38438876af3ea575e4d5df9
SHA256sum: 51e2dda008711ed3bb4198a9a3e80e961121c64ae18ccdf199278cc6985fed88
Description: Watchdog plugin
Package: olsrd
Version: 0.6.8-2
Depends: libc, libpthread
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 122254
Filename: routing/olsrd_0.6.8-2_ramips_24kec.ipk
Size: 123068
MD5Sum: c2bc763dcf030b3b4c876fa44882ed83
SHA256sum: 26c6304ba68f46307afa74b55ac35466a36ac2616c48b3c90c27cd044b5b913e
Description: OLSR (Optimized Link State Routing) daemon
Package: quagga-babeld
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35222
Filename: routing/quagga-babeld_0.99.22.4-2_ramips_24kec.ipk
Size: 35941
MD5Sum: 99a7c0153ff2aa7bba6396d7e3d85bcf
SHA256sum: b007ba71ec4072b91a8140704ff62f77014ce9ae2485644f2ced5b9bb59ae89c
Description: Babel routing engine
Package: quagga-bgpd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 171920
Filename: routing/quagga-bgpd_0.99.22.4-2_ramips_24kec.ipk
Size: 171527
MD5Sum: 28e61586de04c40c51652781030a62b7
SHA256sum: 41c083fcefad40275d84920712df1d000f741506f80a45ececfff8d2d71aba13
Description: BGPv4, BGPv4+, BGPv4- routing engine
Package: quagga-isisd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71057
Filename: routing/quagga-isisd_0.99.22.4-2_ramips_24kec.ipk
Size: 71365
MD5Sum: 4652e2f6409783b5ce9a3a6b423f0f55
SHA256sum: eb9c7ec9561ca56045aeed55b2581eedaa0ed42161b15f7eb21847fc23374d53
Description: IS-IS routing engine
Package: quagga-libospf
Version: 0.99.22.4-2
Depends: libc, quagga
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 164533
Filename: routing/quagga-libospf_0.99.22.4-2_ramips_24kec.ipk
Size: 164549
MD5Sum: 4be33c41a5d42fe9c47437682fc91f27
SHA256sum: 58d108eb5177e18cea58921a20216743c723929e001f8d5f57a0b08bf2b21123
Description: OSPF library
Package: quagga-libzebra
Version: 0.99.22.4-2
Depends: libc, quagga
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105097
Filename: routing/quagga-libzebra_0.99.22.4-2_ramips_24kec.ipk
Size: 105380
MD5Sum: c1357a31541df1be6cec811f43ef1747
SHA256sum: 909a1a1e7da5681e1d5aa99ce4f513458f8b476a277349f2e2fc2be5b4fe0f43
Description: zebra library
Package: quagga-ospf6d
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libospf, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74300
Filename: routing/quagga-ospf6d_0.99.22.4-2_ramips_24kec.ipk
Size: 74899
MD5Sum: 319e302464b20f50098aea6390fa1501
SHA256sum: 4cc132a063b2c38e75ed36497ca600ab9e9a643f310ea4dd8d4a90e54957e186
Description: OSPFv3 routing engine
Package: quagga-ospfd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libospf, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3898
Filename: routing/quagga-ospfd_0.99.22.4-2_ramips_24kec.ipk
Size: 4665
MD5Sum: dbcf1d58a9585855439be1d56db250fa
SHA256sum: 90b297cf4b8b48c5713a9afc9379f3656dbba5a919fa80729046e2fb577a8cfe
Description: OSPFv2 routing engine
Package: quagga-ripd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33486
Filename: routing/quagga-ripd_0.99.22.4-2_ramips_24kec.ipk
Size: 34243
MD5Sum: c65447ceb091597efe2f106ea9123368
SHA256sum: ab6c02227ac0f4d1b6410ae4d09de59eb6e0033b01f0deeef34097f2ef9190bb
Description: RIP routing engine
Package: quagga-ripngd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27045
Filename: routing/quagga-ripngd_0.99.22.4-2_ramips_24kec.ipk
Size: 27812
MD5Sum: 6d7a32c087c1ede6ae227a7b2ef3c292
SHA256sum: c998a0f53a579caca0e2ab3285f22c7d43cc6ddf6c7d8151cdc85296628d365b
Description: RIPNG routing engine
Package: quagga-vtysh
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra, libreadline, libncurses
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 101145
Filename: routing/quagga-vtysh_0.99.22.4-2_ramips_24kec.ipk
Size: 101739
MD5Sum: a8578930710bd67744ce3c5e83308b00
SHA256sum: 5b4dbc2f31d07df910f41064dbb64029fa4e56171383527f8f3edc505fe53314
Description: integrated shell for Quagga routing software
Package: quagga-watchquagga
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11214
Filename: routing/quagga-watchquagga_0.99.22.4-2_ramips_24kec.ipk
Size: 11974
MD5Sum: e26db7c3998b427e6de75fe39bdf2519
SHA256sum: 3f242b2f46781f26fa2a85b918a26cdef5a16405fae183e811688601c7e6ee87
Description: Quagga watchdog
Package: quagga-zebra
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 64229
Filename: routing/quagga-zebra_0.99.22.4-2_ramips_24kec.ipk
Size: 64793
MD5Sum: 7639b122842e68ba2518ddb6a3b2b9c7
SHA256sum: c6157ba2495d95cc28871fdc74d6195999ce0f04c86fec8e12c930fbc1d634f0
Description: Zebra daemon
Package: quagga
Version: 0.99.22.4-2
Depends: libc, librt
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2389
Filename: routing/quagga_0.99.22.4-2_ramips_24kec.ipk
Size: 3202
MD5Sum: 6b8466bf782e8039394da39efaa10d93
SHA256sum: 9ae33a04ea3331ff2c49d039fce53a789874e9f094adef947fd18e69687e889a
Description: A routing software package that provides TCP/IP based routing services
with routing protocols support such as RIPv1, RIPv2, RIPng, OSPFv2,
OSPFv3, BGP-4, and BGP-4+
Package: smcroute
Version: 2.0.0-1
Depends: libc
Source: feeds/routing/smcroute
License: GPL-2.0+
Section: net
Maintainer: Leonardo Brondani Schenkel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13414
Filename: routing/smcroute_2.0.0-1_ramips_24kec.ipk
Size: 14161
MD5Sum: c6f01f418964ccc498f5c19f541cabc1
SHA256sum: 7d4c5685bb12500ffe69ad3c46e88997b338abf93ed6b675c815ff02683d8664
Description: SMCRoute is a command line tool to manipulate the multicast routes of the Linux kernel.
Package: vis
Version: r1439-2
Depends: libc, libpthread
Source: feeds/routing/batmand
License: GPL-2.0
Section: net
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10064
Filename: routing/vis_r1439-2_ramips_24kec.ipk
Size: 10856
MD5Sum: b3dff73b9da2f7c298f5165d9548120c
SHA256sum: a13538255dc6c6066c9efc7b99349f45c65d5565c78125dfc1007ca6ef8ec979
Description: visualization server for B.A.T.M.A.N. layer 3
Package: asterisk11-app-alarmreceiver
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7367
Filename: telephony/asterisk11-app-alarmreceiver_11.16.0-4_ramips_24kec.ipk
Size: 8189
MD5Sum: 78dc660f1f70711c0d65161603f03ebd
SHA256sum: a73f8b16e764b3a874ea428b30c50e711af02aec2474aab39ed023dd6db8a884
Description: This package provides support Central Station Alarm receiver for Ademco Contact ID in Asterisk.
Package: asterisk11-app-authenticate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3497
Filename: telephony/asterisk11-app-authenticate_11.16.0-4_ramips_24kec.ipk
Size: 4271
MD5Sum: 96bd9390ad57a60fc18780366bda1705
SHA256sum: 1ae404fec6240296da16c6eb70bf55dec1e5b51ae8773fe82dca2bc71f411080
Description: This package provides support Execute arbitrary authenticate commands in Asterisk.
Package: asterisk11-app-chanisavail
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2972
Filename: telephony/asterisk11-app-chanisavail_11.16.0-4_ramips_24kec.ipk
Size: 3789
MD5Sum: 69b0ff9e82ee25676210256dfe4f8aee
SHA256sum: dee47079bffe8e52b526718222cc596c814c4bca7b7bfe25c887b1df6b0e5b02
Description: This package provides support support for checking if a channel is available in Asterisk.
Package: asterisk11-app-chanspy
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9822
Filename: telephony/asterisk11-app-chanspy_11.16.0-4_ramips_24kec.ipk
Size: 10619
MD5Sum: a4adfeb58af9b28d914fa3d214f5f94d
SHA256sum: d073b65455ba6690b265d5a146b9316712772616908dd886b5b683eb39855725
Description: This package provides support support for listening in on any channel in Asterisk.
Package: asterisk11-app-confbridge
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 55527
Filename: telephony/asterisk11-app-confbridge_11.16.0-4_ramips_24kec.ipk
Size: 56240
MD5Sum: ec0c13243ea069d3dc6ca545ff7ec860
SHA256sum: c789a5dc839c669dc2ec40d7c8ad44026934341ccf86ab2c97bcb9448bf07188
Description: This package provides support Software bridge for multi-party audio conferencing in Asterisk.
Package: asterisk11-app-dahdiras
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-chan-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3779
Filename: telephony/asterisk11-app-dahdiras_11.16.0-4_ramips_24kec.ipk
Size: 4556
MD5Sum: 2e571ac1d97b82d18d59abc752861fe7
SHA256sum: 5d3317cba2bbb90336de63ab0e4b557d4b9a20d92ff6bcd02353029a810f6346
Description: This package provides support support for executing an ISDN RAS using DAHDI in Asterisk.
Package: asterisk11-app-directed_pickup
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4036
Filename: telephony/asterisk11-app-directed_pickup_11.16.0-4_ramips_24kec.ipk
Size: 4811
MD5Sum: 75f816df6422844f48f5cfa36f69c2bd
SHA256sum: 278de53255db8fea95eb9469350daf5039513767844071ab1cc92f29886146c2
Description: This package provides support support for directed call pickup in Asterisk.
Package: asterisk11-app-disa
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5151
Filename: telephony/asterisk11-app-disa_11.16.0-4_ramips_24kec.ipk
Size: 5938
MD5Sum: 21bbb73ed5ba0c7d68f50fd39ee97b5e
SHA256sum: bd73cbaa0cb03e73cb555fee47290d1b7e8f56a870d7e50aceff8f3fc365a181
Description: This package provides support Direct Inward System Access in Asterisk.
Package: asterisk11-app-exec
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3506
Filename: telephony/asterisk11-app-exec_11.16.0-4_ramips_24kec.ipk
Size: 4275
MD5Sum: 9f9837e14807a634b6201e86297af493
SHA256sum: 0af835d1218c10706090e5b430ea1636a6395a438f047f7bf5f97ed989ac1d00
Description: This package provides support support for application execution in Asterisk.
Package: asterisk11-app-minivm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34025
Filename: telephony/asterisk11-app-minivm_11.16.0-4_ramips_24kec.ipk
Size: 34995
MD5Sum: 673f0e7cc85903d93fe4420b8eda14a2
SHA256sum: 0bf0ca8528cd502efe3c4736d4d497499900aad925db7a9782cc82f4be6d8f2e
Description: This package provides support a voicemail system in small building blocks working together based on the Comedian Mail voicemail in Asterisk.
Package: asterisk11-app-mixmonitor
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12546
Filename: telephony/asterisk11-app-mixmonitor_11.16.0-4_ramips_24kec.ipk
Size: 13325
MD5Sum: a9520f1a63f93f04b6d0a9c3a33c17cc
SHA256sum: cae80819aafd4fa070209a19881bfbbe0fe023025c714582428185790dd86d04
Description: This package provides support record a call and mix the audio during the recording in Asterisk.
Package: asterisk11-app-originate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3578
Filename: telephony/asterisk11-app-originate_11.16.0-4_ramips_24kec.ipk
Size: 4381
MD5Sum: 4539229de0eee7649bb715bacdb6d1e2
SHA256sum: 5ca0546ebce65d75d79b8cde2b73f81a19ba2c0736e42a6d8de78febcfa7b736
Description: This package provides support originating an outbound call and connecting it to a specified extension or application in Asterisk.
Package: asterisk11-app-playtones
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2218
Filename: telephony/asterisk11-app-playtones_11.16.0-4_ramips_24kec.ipk
Size: 3023
MD5Sum: baa82bc5f664a11e4c483229c554040d
SHA256sum: db2152a7bcc7179765b93163a74e5a34a19d35eccad774a63210c9abbef2aee8
Description: This package provides support play a tone list in Asterisk.
Package: asterisk11-app-read
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3754
Filename: telephony/asterisk11-app-read_11.16.0-4_ramips_24kec.ipk
Size: 4534
MD5Sum: 6b2468d576bb40560bcfd313dbe22efc
SHA256sum: c1919e704f57985a01fdf68d191ad6f783c1dbb52ca5c0979fde744a875e2487
Description: This package provides support a trivial application to read a variable in Asterisk.
Package: asterisk11-app-readexten
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3891
Filename: telephony/asterisk11-app-readexten_11.16.0-4_ramips_24kec.ipk
Size: 4684
MD5Sum: 0a6f022732d9a04e0169066996928e5a
SHA256sum: 8597c18bb793b9b6123737fcda156dcbeec02a4bef16bbad000fef5bfa95da5b
Description: This package provides support a trivial application to read an extension into a variable in Asterisk.
Package: asterisk11-app-record
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4955
Filename: telephony/asterisk11-app-record_11.16.0-4_ramips_24kec.ipk
Size: 5735
MD5Sum: 318e60258f9f6d1398c2c35fb5b67e6f
SHA256sum: fdb1489077422061bfa903b647d4e7283c3e65d9974a4cc086131cdafdc794dd
Description: This package provides support to record a sound file in Asterisk.
Package: asterisk11-app-sayunixtime
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2549
Filename: telephony/asterisk11-app-sayunixtime_11.16.0-4_ramips_24kec.ipk
Size: 3328
MD5Sum: 8d49a264de3d0ebe8d9f1d0d3cf97830
SHA256sum: b3746c2e278d43fae6f8ae77e67c60703d1b4ef70edfe9a362bda4afd8870193
Description: This package provides support an application to say Unix time in Asterisk.
Package: asterisk11-app-senddtmf
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2865
Filename: telephony/asterisk11-app-senddtmf_11.16.0-4_ramips_24kec.ipk
Size: 3683
MD5Sum: cdfb8f4fcf33df7a2d4978bc529091a3
SHA256sum: e9329bfcc4e2184f745f4ecf7cb279f9b168983ab6ec42609b35579054436f42
Description: This package provides support Sends arbitrary DTMF digits in Asterisk.
Package: asterisk11-app-sms
Version: 11.16.0-4
Depends: libc, asterisk11, libpopt, libstdcpp
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24926
Filename: telephony/asterisk11-app-sms_11.16.0-4_ramips_24kec.ipk
Size: 25706
MD5Sum: be22f9c5ae0e0678a58bcbc62c2d74b0
SHA256sum: f6fb8734827538d1f955af082661ddf3986182c76ade463bdaa10f1d67887067
Description: This package provides support SMS support (ETSI ES 201 912 protocol 1) in Asterisk.
Package: asterisk11-app-stack
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-agi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11690
Filename: telephony/asterisk11-app-stack_11.16.0-4_ramips_24kec.ipk
Size: 12464
MD5Sum: 2490d23ac2eba09ad3146b405619ed1c
SHA256sum: a465aaeeb6a768875639a1400dab01a2e83a325d91ceb4b2a9360694e6d7c72d
Description: This package provides support Stack applications Gosub Return etc. in Asterisk.
Package: asterisk11-app-system
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2988
Filename: telephony/asterisk11-app-system_11.16.0-4_ramips_24kec.ipk
Size: 3801
MD5Sum: d98590efeedfbde2fd3d509837e93a5d
SHA256sum: bc9f4a7f1fb83038d0d4d29f692ca0831cd11006cbf38e42544c56b1ec74826d
Description: This package provides support support for executing system commands in Asterisk.
Package: asterisk11-app-talkdetect
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4459
Filename: telephony/asterisk11-app-talkdetect_11.16.0-4_ramips_24kec.ipk
Size: 5246
MD5Sum: 1d42e3a5b90cc1e50e38ae160f67e87b
SHA256sum: 58386945bb45d97d1ba21d95a46e6cbf3e1317be6f600f8cde2bb89a013c41a4
Description: This package provides support for file playback with audio detect in Asterisk.
Package: asterisk11-app-verbose
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2776
Filename: telephony/asterisk11-app-verbose_11.16.0-4_ramips_24kec.ipk
Size: 3584
MD5Sum: e53e2c165da4db93168fa071257df1cd
SHA256sum: aa3d53e9d87cb0a11c1ac24aeed1de383e3ce893feda26bb75470bbd56558242
Description: This package provides support Verbose logging application in Asterisk.
Package: asterisk11-app-waituntil
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2489
Filename: telephony/asterisk11-app-waituntil_11.16.0-4_ramips_24kec.ipk
Size: 3308
MD5Sum: 010e3daebc9fb2497b2b5e76201cdbf2
SHA256sum: f4fb8f0921351534ebe4a3caff3145f37b6dffb51963a3a0721dfa7949eb2d2a
Description: This package provides support support sleeping until the given epoch in Asterisk.
Package: asterisk11-app-while
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4350
Filename: telephony/asterisk11-app-while_11.16.0-4_ramips_24kec.ipk
Size: 5112
MD5Sum: 600304a664b7eae09cf528e87e86d104
SHA256sum: 3db5ecaf2be46c68d740cb2b45916e69b81e53e4fb37d71ad17b1631da76d6da
Description: This package provides support a while loop implementation in Asterisk.
Package: asterisk11-cdr-csv
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4272
Filename: telephony/asterisk11-cdr-csv_11.16.0-4_ramips_24kec.ipk
Size: 5041
MD5Sum: 9ea42a3cc885f5015f73ffb9f04dbca5
SHA256sum: 2ca0a652682392b64ba10c95b52ab43eae57ab46a3ed1186f06f3c64e281ca8b
Description: This package provides support Call Detail Record with CSV support in Asterisk.
Package: asterisk11-cdr-sqlite3
Version: 11.16.0-4
Depends: libc, asterisk11, libsqlite3
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5411
Filename: telephony/asterisk11-cdr-sqlite3_11.16.0-4_ramips_24kec.ipk
Size: 6173
MD5Sum: c8eb29f817c96a03feb1f663bfc3896d
SHA256sum: 11e2d700f60dc9db3230acdea13bcbcf4da4f3ba1fe60a7e0d318de1199aee5b
Description: This package provides support Call Detail Record with SQLITE3 support in Asterisk.
Package: asterisk11-cdr
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21787
Filename: telephony/asterisk11-cdr_11.16.0-4_ramips_24kec.ipk
Size: 22607
MD5Sum: ea9104cc3654fc604a8e96cf5041b3e5
SHA256sum: 6c3f51add11ab678f88d9df6fe23ecc8db48d504ba46daddf095b4943cc1b982
Description: This package provides support Call Detail Record in Asterisk.
Package: asterisk11-chan-agent
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23577
Filename: telephony/asterisk11-chan-agent_11.16.0-4_ramips_24kec.ipk
Size: 24231
MD5Sum: 3d449cbd6df12be38b149d1c3a0168dd
SHA256sum: 4222d37f68bd7f4bb6d269b47680990850a8e2917486084fe640cda84f8ec8bc
Description: This package provides support an implementation of agents proxy channel in Asterisk.
Package: asterisk11-chan-dahdi
Version: 11.16.0-4
Depends: libc, asterisk11, dahdi-tools-libtonezone, kmod-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 132684
Filename: telephony/asterisk11-chan-dahdi_11.16.0-4_ramips_24kec.ipk
Size: 133190
MD5Sum: c0ea54848a9f4e69d8423f051b48b0d7
SHA256sum: d2c868e85ea5ea8765f25389c192c6798a2f35db73fed5bd5b737f6ed29b360a
Description: This package provides support DAHDI channel support in Asterisk.
Package: asterisk11-chan-dongle
Version: 1.1r35-3
Depends: libc, asterisk11, libiconv-full, kmod-usb-acm, kmod-usb-serial, kmod-usb-serial-option, libusb-1.0, usb-modeswitch
Source: feeds/telephony/net/asterisk-11.x-chan-dongle
License: GPL-2.0
LicenseFiles: COPYRIGHT.txt LICENSE.txt
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 68716
Filename: telephony/asterisk11-chan-dongle_1.1r35-3_ramips_24kec.ipk
Size: 69504
MD5Sum: dbc83e180765dee20ca8472368cec7ef
SHA256sum: 83c8675e78a88852fa7f624b33bffb79c61072094e91d712a1609fdcd04e837e
Description: Asterisk channel driver for Huawei UMTS 3G dongle.
Package: asterisk11-chan-iax2
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-timing-timerfd
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 144831
Filename: telephony/asterisk11-chan-iax2_11.16.0-4_ramips_24kec.ipk
Size: 145317
MD5Sum: 4be51bc95be531f3e8c29badbba66c7e
SHA256sum: 931c5e781b85211dc5f5a004948d13f79cca4732504ba60038c58468bcf19d17
Description: This package provides support IAX support in Asterisk.
Package: asterisk11-chan-mgcp
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43172
Filename: telephony/asterisk11-chan-mgcp_11.16.0-4_ramips_24kec.ipk
Size: 44006
MD5Sum: 3ae64380615bc4927cebf505db57c900
SHA256sum: 4de77f33864532f99760c0ac9a631aaaeda472494835d890234697308b0f1020
Description: This package provides support the channel chan_mgcp in Asterisk.
Package: asterisk11-chan-motif
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-xmpp
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23099
Filename: telephony/asterisk11-chan-motif_11.16.0-4_ramips_24kec.ipk
Size: 23848
MD5Sum: 253e087e504859beacc560131a635361
SHA256sum: b6c34d71711ba756ae71c0d5570bce54831f6fc5599cc3729267c4dd8043a0ef
Description: This package provides support Motif Jingle Channel Driver in Asterisk.
Package: asterisk11-chan-ooh323
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 283875
Filename: telephony/asterisk11-chan-ooh323_11.16.0-4_ramips_24kec.ipk
Size: 283715
MD5Sum: f09989325fe2544852ae8b4b72a2c87b
SHA256sum: b510e4792e290ba5e129f5bd8d9c31c7ea004151fb3467317798321684acf985
Description: This package provides support the channel chan_ooh323 in Asterisk.
Package: asterisk11-chan-sccp-b
Version: v4.2-r5845-1
Depends: libc, libltdl, asterisk11
Source: feeds/telephony/net/chan-sccp-b
License: GPL-1.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 345386
Filename: telephony/asterisk11-chan-sccp-b_v4.2-r5845-1_ramips_24kec.ipk
Size: 341685
MD5Sum: b6c6b225767ee1773310526c49b24285
SHA256sum: 5d456cdffcb45c2922597cbcdf537c1fcce7acbdc361fbf1925a297c11c73927
Description: SCCP channel provider for asterisk. It delivers extended functionality for SCCP phones over chan_skinny delivered
by asterisk by default.
Package: asterisk11-chan-skinny
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49318
Filename: telephony/asterisk11-chan-skinny_11.16.0-4_ramips_24kec.ipk
Size: 50043
MD5Sum: 7b5cc4bc16879cb8b0d6162157c3291e
SHA256sum: 5853e1d03b806351be1e244311344cbc7f6f0e91516ee39191d0e5919e081df7
Description: This package provides support the channel chan_skinny in Asterisk.
Package: asterisk11-chan-unistim
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52468
Filename: telephony/asterisk11-chan-unistim_11.16.0-4_ramips_24kec.ipk
Size: 53389
MD5Sum: 77c153eb5e8531afd2ee5a5a2593d1cd
SHA256sum: da181c45a9d5edef6db3fe8d3327444f77cd0ba78a40315bad8d822a18b097b1
Description: This package provides support channel driver for the UNISTIM (Unified Networks IP Stimulus) protocol in Asterisk.
Package: asterisk11-codec-a-mu
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2489
Filename: telephony/asterisk11-codec-a-mu_11.16.0-4_ramips_24kec.ipk
Size: 3275
MD5Sum: e1e728a1a575f5a4ebd4dabc4814ea1e
SHA256sum: 7f82dfd4f225ad30d5da5073414a9cfea5ec57f85a2252f78153f9619e14ae22
Description: This package provides support translation between alaw and ulaw codecs in Asterisk.
Package: asterisk11-codec-adpcm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3261
Filename: telephony/asterisk11-codec-adpcm_11.16.0-4_ramips_24kec.ipk
Size: 4028
MD5Sum: b76d9a2ffc1864e10377face414d78c2
SHA256sum: b174148fab955473899fb9ac4ce7d49754dfe05e104d001cd2276a360526fc7e
Description: This package provides support ADPCM text in Asterisk.
Package: asterisk11-codec-alaw
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2584
Filename: telephony/asterisk11-codec-alaw_11.16.0-4_ramips_24kec.ipk
Size: 3373
MD5Sum: edc91802f0dffbd0757aa75ee3d3a4d0
SHA256sum: c44b1441e6263c914819bf221d69b33ec0f0a08fd0163e7112753a87565ae98c
Description: This package provides support translation between signed linear and alaw codecs in Asterisk.
Package: asterisk11-codec-dahdi
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-chan-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6304
Filename: telephony/asterisk11-codec-dahdi_11.16.0-4_ramips_24kec.ipk
Size: 7141
MD5Sum: 432a9b589ac79005c90a521b90502570
SHA256sum: 33689194c9b42aa9bc6c49e9cb1e99d6dd599439bae18127e796c11aa6da1278
Description: This package provides support DAHDI native transcoding support in Asterisk.
Package: asterisk11-codec-g722
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5894
Filename: telephony/asterisk11-codec-g722_11.16.0-4_ramips_24kec.ipk
Size: 6707
MD5Sum: 8d0aa8a8eaa86bb28c139a5af7383fcb
SHA256sum: 8b6d5c947833549c7387e0e96174e4a4432729b9e296702a8c54154371ac8d7e
Description: This package provides support a high bit rate 48/56/64Kbps ITU standard codec in Asterisk.
Package: asterisk11-codec-g726
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4502
Filename: telephony/asterisk11-codec-g726_11.16.0-4_ramips_24kec.ipk
Size: 5312
MD5Sum: c51ccf8cc3e945838e488c7ed1ca9208
SHA256sum: 9a18dd0992551ab44edd7db64618b6cd07eae8245ca59c16ac64aaaf15ac7190
Description: This package provides support translation between signed linear and ITU G.726-32kbps codecs in Asterisk.
Package: asterisk11-codec-g729
Version: 1.3-1
Depends: libc, bcg729, asterisk11
Source: feeds/telephony/net/asterisk-g72x
License: GPL-3.0
LicenseFiles: README.md
Section: net
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: telephony/asterisk11-codec-g729_1.3-1_ramips_24kec.ipk
Size: 4924
MD5Sum: 958bc430c07c8441e11b637a7606d818
SHA256sum: 3d27ad6043e4208512a2a3ee60f22c64b39d017c216e503d969178300e957432
Description: Asterisk G.729 codec based on bcg729 implementation.
Package: asterisk11-codec-gsm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20725
Filename: telephony/asterisk11-codec-gsm_11.16.0-4_ramips_24kec.ipk
Size: 21516
MD5Sum: f0f95a0ef72578e10b6b5cb6df42a431
SHA256sum: c0de5225207e9d46f245b4c48374637ec37f32f6d36edd3909d1dada64eb5ca5
Description: This package provides support translate between signed linear and GSM in Asterisk.
Package: asterisk11-codec-ilbc
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31875
Filename: telephony/asterisk11-codec-ilbc_11.16.0-4_ramips_24kec.ipk
Size: 32690
MD5Sum: e371bcc16016a5096df95004c6cfc043
SHA256sum: a110a55167f1fd7969c0e70079b0bc936e602f8ec48d468c3504840e4dc9e870
Description: This package provides support translate between signed linear and ILBC in Asterisk.
Package: asterisk11-codec-lpc10
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22326
Filename: telephony/asterisk11-codec-lpc10_11.16.0-4_ramips_24kec.ipk
Size: 23058
MD5Sum: bc2ecd1b779a2c2f97c585e48476f8d0
SHA256sum: f4836dd91539341a5f9dd064ae4b7ea84fef9b256ff1f1c436d67fa2ed9649e5
Description: This package provides support translate between signed linear and LPC10 in Asterisk.
Package: asterisk11-codec-resample
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10325
Filename: telephony/asterisk11-codec-resample_11.16.0-4_ramips_24kec.ipk
Size: 11120
MD5Sum: 5d1c3ca927ed1b42cd0168b918b4ecfd
SHA256sum: 4a46c8a7316d68e8f68ecfe9428352a672be5575ecf16a60c6485300129f9f6e
Description: This package provides support resample sLinear audio in Asterisk.
Package: asterisk11-curl
Version: 11.16.0-4
Depends: libc, asterisk11, libcurl
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8802
Filename: telephony/asterisk11-curl_11.16.0-4_ramips_24kec.ipk
Size: 9592
MD5Sum: f4cc03a215f761ae11ebf71b3ac39cc0
SHA256sum: 8a93ee1e4053aa731323e6ec386b3a96a73aa31c9bfa61ea07bc01516862f6b9
Description: This package provides support CURL support in Asterisk.
Package: asterisk11-format-g726
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3155
Filename: telephony/asterisk11-format-g726_11.16.0-4_ramips_24kec.ipk
Size: 3950
MD5Sum: b9f9c7af8f1fae1d6f5df74bcb9ecc6b
SHA256sum: cf51b508906d6a5310c356fd4149563b9b662fec6085d098be950574d021c8fc
Description: This package provides support support for headerless G.726 16/24/32/40kbps data format in Asterisk.
Package: asterisk11-format-g729
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3138
Filename: telephony/asterisk11-format-g729_11.16.0-4_ramips_24kec.ipk
Size: 3912
MD5Sum: d62f02be9d0dc4cb39542c8a416b53ae
SHA256sum: 12274a3f75e6d1311eec781608d4276225bf847f382d9cb1a9e516e2d764916c
Description: This package provides support support for raw headerless G729 data in Asterisk.
Package: asterisk11-format-gsm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6051
Filename: telephony/asterisk11-format-gsm_11.16.0-4_ramips_24kec.ipk
Size: 6809
MD5Sum: eb13b6aa63f72b78900c49a80c539dd4
SHA256sum: 540965529cd3523166fe1499f0e383ad122323e45c9dac733450bedc85341f86
Description: This package provides support support for GSM format in Asterisk.
Package: asterisk11-format-h263
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3098
Filename: telephony/asterisk11-format-h263_11.16.0-4_ramips_24kec.ipk
Size: 3860
MD5Sum: ac6ff5f85fec402bc8401d3d998aeec1
SHA256sum: 6b0710069e26fbcd162daa49e899e230f845a9990ac989a8b7a1509a95f9cf45
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk11-format-h264
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3169
Filename: telephony/asterisk11-format-h264_11.16.0-4_ramips_24kec.ipk
Size: 3929
MD5Sum: db64d1789f5e1967839217d48d426e64
SHA256sum: 1018de1bd0569269a33ad8fafe21eecf7b4e11c4877fe2bacbd866a86b247ba6
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk11-format-ilbc
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3124
Filename: telephony/asterisk11-format-ilbc_11.16.0-4_ramips_24kec.ipk
Size: 3887
MD5Sum: 9e15bb1282c6d979dfccb5f9e3587f94
SHA256sum: 8488ae62faefc468715aed9142d8abc7fee16550f97e64faa7479c7ca58cff4f
Description: This package provides support support for ILBC format in Asterisk.
Package: asterisk11-format-sln
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3732
Filename: telephony/asterisk11-format-sln_11.16.0-4_ramips_24kec.ipk
Size: 4506
MD5Sum: b3f14e436d66310f5cc9e82d470c213c
SHA256sum: 28dd482a9e8c0cfbe3f8e75b2c2d99730e5d1741b8abf7be849f76258b5b92f6
Description: This package provides support support for raw slinear format in Asterisk.
Package: asterisk11-format-vox
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3080
Filename: telephony/asterisk11-format-vox_11.16.0-4_ramips_24kec.ipk
Size: 3855
MD5Sum: e03334ea60dfd96b24204fca7b97709a
SHA256sum: b4686462263673b9a450336927636ea7099587d177187b269ae730ee32ce7702
Description: This package provides support support for ADPCM vox format in Asterisk.
Package: asterisk11-format-wav-gsm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9981
Filename: telephony/asterisk11-format-wav-gsm_11.16.0-4_ramips_24kec.ipk
Size: 10795
MD5Sum: 71045ad6b2b1bb86927992bea9dd7c1e
SHA256sum: 1e7afacdcadc6f4cd6635c764eaa00335e3486f03d43b4c738322034b8611fbc
Description: This package provides support support for proprietary Microsoft WAV format (Proprietary GSM) in Asterisk.
Package: asterisk11-format-wav
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5258
Filename: telephony/asterisk11-format-wav_11.16.0-4_ramips_24kec.ipk
Size: 6056
MD5Sum: 5bc4665fb684eda3b8e16ce108e3f472
SHA256sum: 5dd7eb9958d1b02118882d5628f18b1133abc19df9fd53dbe8906283b245b7c8
Description: This package provides support support for proprietary Microsoft WAV format (8000hz Signed Linear) in Asterisk.
Package: asterisk11-func-base64
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2775
Filename: telephony/asterisk11-func-base64_11.16.0-4_ramips_24kec.ipk
Size: 3567
MD5Sum: 38e19557225d4727e5fc4247615a357d
SHA256sum: 4b4f80bdd66d9f5d3dfe820f6532bbb5ea964ab8d2ae706176aba552e6faa320
Description: This package provides support support of base64 function in Asterisk.
Package: asterisk11-func-blacklist
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2704
Filename: telephony/asterisk11-func-blacklist_11.16.0-4_ramips_24kec.ipk
Size: 3533
MD5Sum: 83a027d4f50cda9d82cba9833cd44ed6
SHA256sum: 0a7ea128c3f6dbb92922ac0edfef75f3840e973da070f5e5b5545cdac83fbf10
Description: This package provides support looking up the callerid number and see if it is blacklisted in Asterisk.
Package: asterisk11-func-channel
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7968
Filename: telephony/asterisk11-func-channel_11.16.0-4_ramips_24kec.ipk
Size: 8791
MD5Sum: 44cfa367bee86d220dccd8a5658dd4a8
SHA256sum: 49196acb4168d0e0fe4d199317872e213a4424e9abe31245f8e3f83d4685f97d
Description: This package provides support Channel info dialplan function in Asterisk.
Package: asterisk11-func-cut
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4234
Filename: telephony/asterisk11-func-cut_11.16.0-4_ramips_24kec.ipk
Size: 4990
MD5Sum: 132743e10d8da948741afab7f64c7e49
SHA256sum: f6113f7f07af619d6b711a6a83f6f8684c228f73d1a46f060195cba6ecac6606
Description: This package provides support CUT function in Asterisk.
Package: asterisk11-func-db
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5065
Filename: telephony/asterisk11-func-db_11.16.0-4_ramips_24kec.ipk
Size: 5859
MD5Sum: 3b38139a3aff94c593e1aedbf97d83b8
SHA256sum: 170be4d99defd734ca69e9f1a99a1e64d721b9d9a64d0ceea42665a480e5c4cb
Description: This package provides support functions for interaction with the database in Asterisk.
Package: asterisk11-func-devstate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4033
Filename: telephony/asterisk11-func-devstate_11.16.0-4_ramips_24kec.ipk
Size: 4822
MD5Sum: 708379b5a8003c2316c8cc91b604d2a1
SHA256sum: a629a5330d5ed0db971ce2a397c403a2845a52e288d3c7b3547a0fb2df463c7d
Description: This package provides support functions for manually controlled blinky lights in Asterisk.
Package: asterisk11-func-enum
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5258
Filename: telephony/asterisk11-func-enum_11.16.0-4_ramips_24kec.ipk
Size: 6063
MD5Sum: f7b10b3232df994bbe71a556c201d86e
SHA256sum: 0b6dc494b55eb911dcab93f00c4fb5db384486ce7f854cd3b21e26570b884b69
Description: This package provides support ENUM in Asterisk.
Package: asterisk11-func-env
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11042
Filename: telephony/asterisk11-func-env_11.16.0-4_ramips_24kec.ipk
Size: 11853
MD5Sum: e0b0de08f087e8255f422857b0d9259f
SHA256sum: aee28a6f56b091e8e13df06832045e518c679e647b4b259e03a3dbdef4e9c95c
Description: This package provides support Environment dialplan functions in Asterisk.
Package: asterisk11-func-extstate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2303
Filename: telephony/asterisk11-func-extstate_11.16.0-4_ramips_24kec.ipk
Size: 3121
MD5Sum: 767af7b842ecb3635aec8460e4b91e6b
SHA256sum: 3909a841b71e913670880febefde305cb16f1195210fd4bcdc5a638a7f637eff
Description: This package provides support retrieving the state of a hinted extension for dialplan control in Asterisk.
Package: asterisk11-func-global
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4290
Filename: telephony/asterisk11-func-global_11.16.0-4_ramips_24kec.ipk
Size: 5071
MD5Sum: fd22ea84468005678cea08d9e23a54bb
SHA256sum: 8cffc477a18dc18ef2de001a672405f8a30dda54f9ed2db1d69382c893a13bb0
Description: This package provides support global variable dialplan functions in Asterisk.
Package: asterisk11-func-groupcount
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3595
Filename: telephony/asterisk11-func-groupcount_11.16.0-4_ramips_24kec.ipk
Size: 4386
MD5Sum: e2f8421881b4956490a790725bf89ede
SHA256sum: e1d504df2a20dd0f3d2f59daa073ead9bf0cadc688299d2b0388efa91be5a74d
Description: This package provides support for counting number of channels in the specified group in Asterisk.
Package: asterisk11-func-math
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4485
Filename: telephony/asterisk11-func-math_11.16.0-4_ramips_24kec.ipk
Size: 5244
MD5Sum: fbd4ed00dc66995c3247f22d1fb31fdd
SHA256sum: f4d4477ccf36f48d69550b7b4a7efcc507505bfb02e97c0e6ce9f8b8462d5625
Description: This package provides support Math functions in Asterisk.
Package: asterisk11-func-module
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1935
Filename: telephony/asterisk11-func-module_11.16.0-4_ramips_24kec.ipk
Size: 2741
MD5Sum: fe24184574dcea43d18f518d25e0f560
SHA256sum: 2401b006d66d5762e6e96e851fbde462dcf75ba900d874c9c06caa130f449b59
Description: This package provides support Simple module check function in Asterisk.
Package: asterisk11-func-shell
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2332
Filename: telephony/asterisk11-func-shell_11.16.0-4_ramips_24kec.ipk
Size: 3143
MD5Sum: 57831caf1c46686bde520e0ef1e30dca
SHA256sum: f4c2e1a5a60be4dfa01f16dcdad93b700c674fd26612fcfe0bc5546dd96df64f
Description: This package provides support support for shell execution in Asterisk.
Package: asterisk11-func-uri
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2076
Filename: telephony/asterisk11-func-uri_11.16.0-4_ramips_24kec.ipk
Size: 2893
MD5Sum: 6e0d083fafdf85b3a452d58d275fbd93
SHA256sum: f19d84563789600a2bca73d562ce4bba5af23f099ac0840a261423a3486aeb6e
Description: This package provides support Encodes and decodes URI-safe strings in Asterisk.
Package: asterisk11-func-vmcount
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2184
Filename: telephony/asterisk11-func-vmcount_11.16.0-4_ramips_24kec.ipk
Size: 2993
MD5Sum: 1a9af80f07777129e6cb1c3b3101d1a6
SHA256sum: 8219f341c99ac79fa16d0f663a1e051580bc992b33d911e15bd512015e19c9bb
Description: This package provides support a vmcount dialplan function in Asterisk.
Package: asterisk11-mysql
Version: 11.16.0-4
Depends: libc, asterisk11, libmysqlclient
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22172
Filename: telephony/asterisk11-mysql_11.16.0-4_ramips_24kec.ipk
Size: 22969
MD5Sum: 477db0f00a8b4049d4d3d9e18de9fbac
SHA256sum: 4c9697ab4a350986c8190c54d3dfc86e505ca9b41e455fc76125d7df007612c7
Description: This package provides support MySQL support in Asterisk.
Package: asterisk11-odbc
Version: 11.16.0-4
Depends: libc, asterisk11, libpthread, libc, unixodbc
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 70613
Filename: telephony/asterisk11-odbc_11.16.0-4_ramips_24kec.ipk
Size: 71530
MD5Sum: fe033e14b82ac4f09cf3ccae24ac69cc
SHA256sum: ea382e2e3feb13b03bf4f9349d2e710096ccdefb72f0bb7c009c8b0b7cf62865
Description: This package provides support ODBC support in Asterisk.
Package: asterisk11-pbx-ael
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8855
Filename: telephony/asterisk11-pbx-ael_11.16.0-4_ramips_24kec.ipk
Size: 9668
MD5Sum: d7690cdb27d99ec34c8f97cd6e50d102
SHA256sum: b35c3b650bc97d1a51c152cdb0687b6ded0856b3c9f0948e6886bec118c5ca5a
Description: This package provides support support for symbolic Asterisk Extension Logic in Asterisk.
Package: asterisk11-pbx-dundi
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52896
Filename: telephony/asterisk11-pbx-dundi_11.16.0-4_ramips_24kec.ipk
Size: 53699
MD5Sum: 1324ffbf24715b5dad8b955fc941c435
SHA256sum: 1b7b1518690f45557088bf44e94cb94f54fbef741cfe89d5caa20d5319f00094
Description: This package provides support provides Dundi Lookup service for Asterisk in Asterisk.
Package: asterisk11-pbx-lua
Version: 11.16.0-4
Depends: libc, asterisk11, libpthread, libc, liblua
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12951
Filename: telephony/asterisk11-pbx-lua_11.16.0-4_ramips_24kec.ipk
Size: 13802
MD5Sum: c6965dca2a66c6b2510214b633446b57
SHA256sum: 35870fa76c90c2e7e4a353f3607d42da7eea303beab7d7865f23312d2f18a3e2
Description: This package provides support provides Lua resources for Asterisk in Asterisk.
Package: asterisk11-pbx-spool
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9172
Filename: telephony/asterisk11-pbx-spool_11.16.0-4_ramips_24kec.ipk
Size: 9965
MD5Sum: 6ec3406424defbff29802b0fff08fe92
SHA256sum: 9342d276221fb29b1028f553bf1c703b480af454f4b25a780031abc348bd3178
Description: This package provides support outgoing call spool support in Asterisk.
Package: asterisk11-pgsql
Version: 11.16.0-4
Depends: libc, asterisk11, libpq
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37747
Filename: telephony/asterisk11-pgsql_11.16.0-4_ramips_24kec.ipk
Size: 38692
MD5Sum: f8d69a8c6d6af0ad9945552062d3ed8f
SHA256sum: c6e5024c2261c432f79ea3c985c7997aa71864f500f763e23a4fdeccda441b86
Description: This package provides support PostgreSQL support in Asterisk.
Package: asterisk11-res-ael-share
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41853
Filename: telephony/asterisk11-res-ael-share_11.16.0-4_ramips_24kec.ipk
Size: 42640
MD5Sum: 6fa03b9ce7fb8de04ee023aeeea1648b
SHA256sum: c69b104588f43710fdd7a7503e8f312ca44025b2457da3b88b0594bad397188b
Description: This package provides support support for shareable AEL code mainly between internal and external modules in Asterisk.
Package: asterisk11-res-agi
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27954
Filename: telephony/asterisk11-res-agi_11.16.0-4_ramips_24kec.ipk
Size: 28694
MD5Sum: dd6f231fb1152555583c966438452985
SHA256sum: b2ce6cf855a3def705d86548ee6d747164b23f02caaea2e3b15d99159eef0bb0
Description: This package provides support Support for the Asterisk Gateway Interface extension in Asterisk.
Package: asterisk11-res-clioriginate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3872
Filename: telephony/asterisk11-res-clioriginate_11.16.0-4_ramips_24kec.ipk
Size: 4638
MD5Sum: 38da3a0feabc4b22acd55ddf8d1e59f2
SHA256sum: f9e19ddd91a13efdf686a2cc86d90bda7b454703fe45d00c0139e49d454034fb
Description: This package provides support Originate calls via the CLI in Asterisk.
Package: asterisk11-res-fax-spandsp
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-fax, libspandsp, libtiff
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10305
Filename: telephony/asterisk11-res-fax-spandsp_11.16.0-4_ramips_24kec.ipk
Size: 11128
MD5Sum: 34e300f6c6c962dc578fc9c49bc62f99
SHA256sum: 93f0750627a8d9202392d87d67696822b435b2fcddb0c4360884ee92de61def2
Description: This package provides support Spandsp T.38 and G.711 FAX Resource in Asterisk.
Package: asterisk11-res-fax
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-timing-pthread
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31389
Filename: telephony/asterisk11-res-fax_11.16.0-4_ramips_24kec.ipk
Size: 32249
MD5Sum: f6d25f7a79a509a261e5a74f82ff6df2
SHA256sum: cac643037e5ff9f5baa98bb7a7387e8ba3ebcc6e4e2ff7d150a4a107e01a8a39
Description: This package provides support Generic FAX resource for FAX technology resource modules in Asterisk.
Package: asterisk11-res-monitor
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8235
Filename: telephony/asterisk11-res-monitor_11.16.0-4_ramips_24kec.ipk
Size: 9045
MD5Sum: 7e2c21fe7ffb99bc8900a8eb3c8752bb
SHA256sum: 58e6c52c3c1e9e01eee833463f825dc687e2c7eb807503f9d3e3d6f4df2d22cc
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk11-res-musiconhold
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18539
Filename: telephony/asterisk11-res-musiconhold_11.16.0-4_ramips_24kec.ipk
Size: 19331
MD5Sum: 0caf5987f45c419fcb2b20bd7dea8313
SHA256sum: 37e410c38855e8e883cdd759bd142a0cf7994708d60ef0c18e7bd499aca9057b
Description: This package provides support Music On Hold support in Asterisk.
Package: asterisk11-res-phoneprov
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13516
Filename: telephony/asterisk11-res-phoneprov_11.16.0-4_ramips_24kec.ipk
Size: 14354
MD5Sum: 5813fc30a614a6ea6d93e5bf5bfb7e4a
SHA256sum: 7494e7d791a4d0b9e40021b472085982412c668dd9cb7f9a42f3459af51c2494
Description: This package provides support Phone provisioning application for the asterisk internal http server in Asterisk.
Package: asterisk11-res-pktccops
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14880
Filename: telephony/asterisk11-res-pktccops_11.16.0-4_ramips_24kec.ipk
Size: 15735
MD5Sum: f2b2e6a0636a048af5ade165ae01c59d
SHA256sum: 6f3108acbd062d2855eb393b1018dcda77e6e5f2f843ef72da0bfbb5e9542b64
Description: This package provides support simple client/server model for supporting policy control over QoS signaling protocols in Asterisk.
Package: asterisk11-res-smdi
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17128
Filename: telephony/asterisk11-res-smdi_11.16.0-4_ramips_24kec.ipk
Size: 18004
MD5Sum: 06796dc5cd86fd3c054b5f0619be09fb
SHA256sum: 35d1079de48f914ab378bc11cf577e6dd3d096bfbb9d85d5376b9c6995b352fe
Description: This package provides support Simple Message Desk Interface capability in Asterisk.
Package: asterisk11-res-srtp
Version: 11.16.0-4
Depends: libc, asterisk11, libsrtp
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5926
Filename: telephony/asterisk11-res-srtp_11.16.0-4_ramips_24kec.ipk
Size: 6715
MD5Sum: 0bae6a13cec2b71a14371d8f157e7b89
SHA256sum: abb5b19ea84c64028787e54f55cd97de0a4b88d9f35d2b2d6f79b0e48312a501
Description: This package provides support Secure RTP in Asterisk.
Package: asterisk11-res-timing-dahdi
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-chan-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3120
Filename: telephony/asterisk11-res-timing-dahdi_11.16.0-4_ramips_24kec.ipk
Size: 3891
MD5Sum: a7e5f696e56d3b8479f156d998198ffc
SHA256sum: 1b2585ea400b078e3caf7d380bfc327d2320f3e30c5b4ab7e7f22beeb90e17e7
Description: This package provides support in Asterisk.
Package: asterisk11-res-timing-pthread
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4857
Filename: telephony/asterisk11-res-timing-pthread_11.16.0-4_ramips_24kec.ipk
Size: 5611
MD5Sum: 03700339b147c6aff570c8c3f731dd2f
SHA256sum: 07a0d7c5f0c297e06c3ce6cc6ff3a33fa413a134c23845b2db0edbc34d1334d7
Description: This package provides support in Asterisk.
Package: asterisk11-res-timing-timerfd
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4053
Filename: telephony/asterisk11-res-timing-timerfd_11.16.0-4_ramips_24kec.ipk
Size: 4824
MD5Sum: ea20d179568e88cafb401c577c0ea164
SHA256sum: bf96ce1264911884236eef8d40af743b8a58401d15c0398258333c95b6b148f9
Description: This package provides support in Asterisk.
Package: asterisk11-res-xmpp
Version: 11.16.0-4
Depends: libc, asterisk11, libiksemel, libopenssl
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35582
Filename: telephony/asterisk11-res-xmpp_11.16.0-4_ramips_24kec.ipk
Size: 36508
MD5Sum: 3b2dceb5ebe3680f9f230e17d8480a8e
SHA256sum: ee2b88d46fb9ab6dea42f199572c920157d58f640c44591bb5d25addd43c838a
Description: This package provides support reference module for interfacting Asterisk directly as a client or component with XMPP server in Asterisk.
Package: asterisk11-sounds
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1392558
Filename: telephony/asterisk11-sounds_11.16.0-4_ramips_24kec.ipk
Size: 1393836
MD5Sum: 5d3f6f819f5ae7796299f666d3fb2ab2
SHA256sum: de8662c1541ab31046b07b2e53722f345e6806d537f447c324495bdc8f126890
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
This package provides sounds for Asterisk.
Package: asterisk11-voicemail
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 613896
Filename: telephony/asterisk11-voicemail_11.16.0-4_ramips_24kec.ipk
Size: 614819
MD5Sum: 9f70fc774a3c245490f153c42735821f
SHA256sum: 1712f8242adeb166d6111ce65369d1c9b2efb41922a164befeef1d76dec41821
Description: This package provides support voicemail related modules in Asterisk.
Package: asterisk11
Version: 11.16.0-4
Depends: libc, libopenssl, libncurses, libpopt, libpthread, libsqlite3, librt, libuuid, zlib
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1241355
Filename: telephony/asterisk11_11.16.0-4_ramips_24kec.ipk
Size: 1239838
MD5Sum: 39305c6e7785e5d517294d1b270bb7ba
SHA256sum: 35dd56e769dea23d891f6078e86b164fe70c18dd5b49466363c4a72f006b3ecc
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
Package: asterisk13-app-alarmreceiver
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7980
Filename: telephony/asterisk13-app-alarmreceiver_13.2.0-4_ramips_24kec.ipk
Size: 8792
MD5Sum: 07994d81b239c8fffb091404031bebf7
SHA256sum: cc9ed1c8281408ccb039f66f7dc12e9b845ebaf5b2aa2e00c50834f4d49530c5
Description: This package provides support Central Station Alarm receiver for Ademco Contact ID in Asterisk.
Package: asterisk13-app-authenticate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3467
Filename: telephony/asterisk13-app-authenticate_13.2.0-4_ramips_24kec.ipk
Size: 4240
MD5Sum: 94486bba3b38d0a8cd14a3b991580eb7
SHA256sum: 79552d27124d2d2fa0e563abddf8b9426f9754bcb8afc22614f898a1cd47a3db
Description: This package provides support Execute arbitrary authenticate commands in Asterisk.
Package: asterisk13-app-chanisavail
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2959
Filename: telephony/asterisk13-app-chanisavail_13.2.0-4_ramips_24kec.ipk
Size: 3778
MD5Sum: 8f716f0b7175ebffdc39c63e67d32de2
SHA256sum: 474b1a400ba4f789a4903ef500edb8eb9325ab7b5458de68ceb120a4a53dbe5b
Description: This package provides support support for checking if a channel is available in Asterisk.
Package: asterisk13-app-chanspy
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10341
Filename: telephony/asterisk13-app-chanspy_13.2.0-4_ramips_24kec.ipk
Size: 11157
MD5Sum: 9dedee7b77b045b3ee96913e3da58e50
SHA256sum: 85aa4084701a04d77c3e50c07cd1f1d7256f1f99b0502b7fecfa703e459f51c8
Description: This package provides support support for listening in on any channel in Asterisk.
Package: asterisk13-app-directed_pickup
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4062
Filename: telephony/asterisk13-app-directed_pickup_13.2.0-4_ramips_24kec.ipk
Size: 4838
MD5Sum: 3d4034c2f284d42add1f2db34e1021e2
SHA256sum: 2060b5a45d0aebbb86b61db002320d711fd558c403e937b5c199867fecfa24ab
Description: This package provides support support for directed call pickup in Asterisk.
Package: asterisk13-app-disa
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5287
Filename: telephony/asterisk13-app-disa_13.2.0-4_ramips_24kec.ipk
Size: 6071
MD5Sum: 37aa6d6a8485e6d4706201eb2e525fbe
SHA256sum: a03b8ff0a16cf8551906cfc1d9921f3d655153a150c973ea28c240046370e245
Description: This package provides support Direct Inward System Access in Asterisk.
Package: asterisk13-app-exec
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3469
Filename: telephony/asterisk13-app-exec_13.2.0-4_ramips_24kec.ipk
Size: 4237
MD5Sum: 6baa7831427e870756a967183d19f76c
SHA256sum: be6641ec42d0ae62bef0ddc70d16bfe7b777a6d2a6b94b180141adf1ec264c4d
Description: This package provides support support for application execution in Asterisk.
Package: asterisk13-app-minivm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34043
Filename: telephony/asterisk13-app-minivm_13.2.0-4_ramips_24kec.ipk
Size: 34986
MD5Sum: 213583ca9250f8faab5bf0c30d8e02d0
SHA256sum: be722a392fb342bd4bb5320617879eefc1d114b715ef3b911a5452e61e39c1e0
Description: This package provides support a voicemail system in small building blocks working together based on the Comedian Mail voicemail in Asterisk.
Package: asterisk13-app-mixmonitor
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13629
Filename: telephony/asterisk13-app-mixmonitor_13.2.0-4_ramips_24kec.ipk
Size: 14399
MD5Sum: 49127c02fa74035a12ff2733ea5b2bfe
SHA256sum: 870e6f64c91c28419ca4981eb2f2f403b3defa8e2d1084409a2c2077dfe7f683
Description: This package provides support record a call and mix the audio during the recording in Asterisk.
Package: asterisk13-app-originate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3642
Filename: telephony/asterisk13-app-originate_13.2.0-4_ramips_24kec.ipk
Size: 4441
MD5Sum: 636772d9f61da4dd08f0ca72fc54f6b4
SHA256sum: ea998387806ec9266e37ea7c776249f2c261a3b731f27dd3230ea8b2cd3b5c25
Description: This package provides support originating an outbound call and connecting it to a specified extension or application in Asterisk.
Package: asterisk13-app-playtones
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2203
Filename: telephony/asterisk13-app-playtones_13.2.0-4_ramips_24kec.ipk
Size: 3005
MD5Sum: 8a450da8b6ba9c75feaf8aeb1b7b44dd
SHA256sum: ec861262bb9a66c1d4ebe187518f09b80ebf0f2e3d819a3132fd53f96c48719b
Description: This package provides support play a tone list in Asterisk.
Package: asterisk13-app-read
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3749
Filename: telephony/asterisk13-app-read_13.2.0-4_ramips_24kec.ipk
Size: 4536
MD5Sum: d474c024066625b1c9088c1b72a44301
SHA256sum: 99a5b45bb2369b8fac287bb655a0b2c13c29f05b5d44c2f66accd66940f6af06
Description: This package provides support a trivial application to read a variable in Asterisk.
Package: asterisk13-app-readexten
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3874
Filename: telephony/asterisk13-app-readexten_13.2.0-4_ramips_24kec.ipk
Size: 4655
MD5Sum: fdc9937ea207a3ce65654c91f795a936
SHA256sum: d8ab8fbc0f0f6079c4d7ca9e27295001ec63a5db67c12a72cfc2cd584d96381c
Description: This package provides support a trivial application to read an extension into a variable in Asterisk.
Package: asterisk13-app-record
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4998
Filename: telephony/asterisk13-app-record_13.2.0-4_ramips_24kec.ipk
Size: 5768
MD5Sum: e0f8b4727af86ea9ef0bfc157d825464
SHA256sum: d2dab55ebf98e7f4b6855cd6a66490a68baaa9bd2eb90b0def63b1fa80e32064
Description: This package provides support to record a sound file in Asterisk.
Package: asterisk13-app-sayunixtime
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2759
Filename: telephony/asterisk13-app-sayunixtime_13.2.0-4_ramips_24kec.ipk
Size: 3538
MD5Sum: 432897d2912d397d338fd09d41e87f59
SHA256sum: 9052e0473680aa70f31f01b5deebb4f8b8bb0033c901fd12c351b769cc1079bc
Description: This package provides support an application to say Unix time in Asterisk.
Package: asterisk13-app-senddtmf
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2984
Filename: telephony/asterisk13-app-senddtmf_13.2.0-4_ramips_24kec.ipk
Size: 3803
MD5Sum: dc6d4a673fa2cce7c953728e365e91b2
SHA256sum: 324d21b413627ad925f36bf62d831c5efe3a711eaa74bab4f7131b328fe10bf7
Description: This package provides support Sends arbitrary DTMF digits in Asterisk.
Package: asterisk13-app-sms
Version: 13.2.0-4
Depends: libc, asterisk13, libpopt, libstdcpp
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15837
Filename: telephony/asterisk13-app-sms_13.2.0-4_ramips_24kec.ipk
Size: 16624
MD5Sum: f72975f773d2107ad20f844e89607154
SHA256sum: b8842f9a3d9a77faa3ff42b3c306d8e94a109b8ecceec96f5230a2b88255b1eb
Description: This package provides support SMS support (ETSI ES 201 912 protocol 1) in Asterisk.
Package: asterisk13-app-stack
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-agi
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11816
Filename: telephony/asterisk13-app-stack_13.2.0-4_ramips_24kec.ipk
Size: 12599
MD5Sum: 36cb95a497a046c3b691fa3b5932971b
SHA256sum: 6ac885aec0b8aa77d795bac8b8e47ac89f661d86239756a3dfe99cf5acb42d56
Description: This package provides support Stack applications Gosub Return etc. in Asterisk.
Package: asterisk13-app-system
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2944
Filename: telephony/asterisk13-app-system_13.2.0-4_ramips_24kec.ipk
Size: 3762
MD5Sum: 21fcbc11dd8748c37675d8c6e4067b6c
SHA256sum: 1d419ada472cd68566f5a906352693196539b36fb07cefa2d781108f78505a44
Description: This package provides support support for executing system commands in Asterisk.
Package: asterisk13-app-talkdetect
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4446
Filename: telephony/asterisk13-app-talkdetect_13.2.0-4_ramips_24kec.ipk
Size: 5233
MD5Sum: 01930ccf189bf713ceafb1659cf9ce2f
SHA256sum: 5b4fa18a664b77519904e7dd30dcad36ffbe3814d606e7925ab9e51ffc69e29b
Description: This package provides support for file playback with audio detect in Asterisk.
Package: asterisk13-app-verbose
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2774
Filename: telephony/asterisk13-app-verbose_13.2.0-4_ramips_24kec.ipk
Size: 3582
MD5Sum: 9e12143a63aca843c00c45bd42e3b641
SHA256sum: 1662fe4ee301fd03b6d4cd92b591e5c889d423552cbc3ef796c8a4980ce73851
Description: This package provides support Verbose logging application in Asterisk.
Package: asterisk13-app-waituntil
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2483
Filename: telephony/asterisk13-app-waituntil_13.2.0-4_ramips_24kec.ipk
Size: 3295
MD5Sum: 1da67093739dbc315d3963d5c467db37
SHA256sum: 8962c8c5d542ff62eeb17821e5d1aeaee47f3f0d0d6e59c0962703b35c057d1a
Description: This package provides support support sleeping until the given epoch in Asterisk.
Package: asterisk13-app-while
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4338
Filename: telephony/asterisk13-app-while_13.2.0-4_ramips_24kec.ipk
Size: 5103
MD5Sum: 4fc69851cb5adfe02603d7b49c0d23af
SHA256sum: 8945dd87856a2bd4ec38466330e56908ba05d6264c7132d0bb636afb91f26926
Description: This package provides support a while loop implementation in Asterisk.
Package: asterisk13-cdr-csv
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4268
Filename: telephony/asterisk13-cdr-csv_13.2.0-4_ramips_24kec.ipk
Size: 5039
MD5Sum: f66835a8a775721c64c04e894e328859
SHA256sum: e3e3d688d18e4f970007f769e01e68a94b9dac7b57e332a72f36b7e119c0e689
Description: This package provides support Call Detail Record with CSV support in Asterisk.
Package: asterisk13-cdr-sqlite3
Version: 13.2.0-4
Depends: libc, asterisk13, libsqlite3
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5327
Filename: telephony/asterisk13-cdr-sqlite3_13.2.0-4_ramips_24kec.ipk
Size: 6103
MD5Sum: 04adfebb78336b48be2c20f0b9785ef4
SHA256sum: dbf07afdcb66a840f1b4269b852ee87bea049221f74a6fcac8f6fdb8c6d01704
Description: This package provides support Call Detail Record with SQLITE3 support in Asterisk.
Package: asterisk13-cdr
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21406
Filename: telephony/asterisk13-cdr_13.2.0-4_ramips_24kec.ipk
Size: 22216
MD5Sum: c92b8386227cdd528da157b249938a68
SHA256sum: eab480271daa1befa0f46f1ade40e5a2893109c56b298a008fb2c4939d73aff8
Description: This package provides support Call Detail Record in Asterisk.
Package: asterisk13-chan-iax2
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-timing-timerfd
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141115
Filename: telephony/asterisk13-chan-iax2_13.2.0-4_ramips_24kec.ipk
Size: 141351
MD5Sum: d3fbdbdc2a719b1332f167fed40a2134
SHA256sum: 462cb1c6de5537f45efb6d96723dfe02a821e709aef4bac66ebbf76472ded605
Description: This package provides support IAX support in Asterisk.
Package: asterisk13-chan-sccp-b
Version: v4.2-r5845-1
Depends: libc, libltdl, asterisk13
Source: feeds/telephony/net/chan-sccp-b
License: GPL-1.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 345373
Filename: telephony/asterisk13-chan-sccp-b_v4.2-r5845-1_ramips_24kec.ipk
Size: 341599
MD5Sum: dfc36d535fa5cc32081626ae7d78a331
SHA256sum: e1c8b7483dc06c34a82deeb7de1afb5d22c9c2e8854448e45fa60bd2c9ee0356
Description: SCCP channel provider for asterisk. It delivers extended functionality for SCCP phones over chan_skinny delivered
by asterisk by default.
Package: asterisk13-chan-sip
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 288747
Filename: telephony/asterisk13-chan-sip_13.2.0-4_ramips_24kec.ipk
Size: 288515
MD5Sum: 92182628739fde0cd2aa8014312e2861
SHA256sum: 57af24a8a8d9834c933a307d5c1d28e6dbdfb7327d5c2d9bed4590b7dc12c368
Description: This package provides support the channel chan_sip in Asterisk.
Package: asterisk13-chan-skinny
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51828
Filename: telephony/asterisk13-chan-skinny_13.2.0-4_ramips_24kec.ipk
Size: 52649
MD5Sum: a7aa5005af477f934b82efca2b42f1de
SHA256sum: 659cf6ed2771c87cd71c29b85211ca73c1ad9602735690684ddd3e2061bc2080
Description: This package provides support the channel chan_skinny in Asterisk.
Package: asterisk13-chan-unistim
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53503
Filename: telephony/asterisk13-chan-unistim_13.2.0-4_ramips_24kec.ipk
Size: 54389
MD5Sum: a7a7c6f15ec9ccd842e81b134900ef8c
SHA256sum: 5e266eb9978ee40d4d8ae41b5e660293a41134c54f8cae4a6dc8ca5c83f83a5e
Description: This package provides support channel driver for the UNISTIM (Unified Networks IP Stimulus) protocol in Asterisk.
Package: asterisk13-codec-a-mu
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2380
Filename: telephony/asterisk13-codec-a-mu_13.2.0-4_ramips_24kec.ipk
Size: 3197
MD5Sum: 86964cbf58d64558a16f2a057f174ac1
SHA256sum: 4c3b2c30b37190ddeb621efce08d56935ae96675fda5459c4da3ca994dc0cce9
Description: This package provides support translation between alaw and ulaw codecs in Asterisk.
Package: asterisk13-codec-adpcm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3154
Filename: telephony/asterisk13-codec-adpcm_13.2.0-4_ramips_24kec.ipk
Size: 3951
MD5Sum: f90eabe36029963ebd70e646c10be5ce
SHA256sum: 3b9dac6a667efac00bcccff024318ffc7e46baeda613f8a5617b6d5f79bf5edb
Description: This package provides support ADPCM text in Asterisk.
Package: asterisk13-codec-alaw
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2480
Filename: telephony/asterisk13-codec-alaw_13.2.0-4_ramips_24kec.ipk
Size: 3301
MD5Sum: 2866c5eea8f9155b4348b0beb79df8bc
SHA256sum: 7c67d5bf99959b91aa01287abdd678f4ff0802390ffa380c6051e79fb6321942
Description: This package provides support translation between signed linear and alaw codecs in Asterisk.
Package: asterisk13-codec-g722
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5856
Filename: telephony/asterisk13-codec-g722_13.2.0-4_ramips_24kec.ipk
Size: 6665
MD5Sum: fc5c11c2a7f2c390a804c33dc33b5b14
SHA256sum: 47e3030becf2ecd36beeef4fa579c2dbbf8e0793c48f54a5890be198d39ba331
Description: This package provides support a high bit rate 48/56/64Kbps ITU standard codec in Asterisk.
Package: asterisk13-codec-g726
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4454
Filename: telephony/asterisk13-codec-g726_13.2.0-4_ramips_24kec.ipk
Size: 5254
MD5Sum: 3ffd2284a2531a69ffec6847ed7ccca1
SHA256sum: e83ace68e22be933b50a079c82b033a23e29edc284eb7a59d454445f825a6840
Description: This package provides support translation between signed linear and ITU G.726-32kbps codecs in Asterisk.
Package: asterisk13-codec-g729
Version: 1.3-1
Depends: libc, bcg729, asterisk13
Source: feeds/telephony/net/asterisk-g72x
License: GPL-3.0
LicenseFiles: README.md
Section: net
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: telephony/asterisk13-codec-g729_1.3-1_ramips_24kec.ipk
Size: 4923
MD5Sum: b8be5dda3a7b862a623e09a486267506
SHA256sum: a401eac38ca44e4817a58959d3e8833a5a20e373ae148269c4599e9b4fa52b4e
Description: Asterisk G.729 codec based on bcg729 implementation.
Package: asterisk13-codec-gsm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20704
Filename: telephony/asterisk13-codec-gsm_13.2.0-4_ramips_24kec.ipk
Size: 21487
MD5Sum: 3fa88c54972251366e6ff49977ec475a
SHA256sum: 740f67c5299089739a74f13c4cf35592206e920f01ce497d0f272ba2b0e3923f
Description: This package provides support translate between signed linear and GSM in Asterisk.
Package: asterisk13-codec-ilbc
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31854
Filename: telephony/asterisk13-codec-ilbc_13.2.0-4_ramips_24kec.ipk
Size: 32655
MD5Sum: 96b5659ed7ece596bc86b4650c3243a3
SHA256sum: a5b0813ded686f22023137d53aaaa742d3b593430560c723298c82b41bf73600
Description: This package provides support translate between signed linear and ILBC in Asterisk.
Package: asterisk13-codec-lpc10
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22203
Filename: telephony/asterisk13-codec-lpc10_13.2.0-4_ramips_24kec.ipk
Size: 22971
MD5Sum: dacf4a7874dee57da582a5d45056f58c
SHA256sum: 5ff355644d9096b81a6c195abaf2d101d73b59be693a2c19b9b196d3de86e63e
Description: This package provides support translate between signed linear and LPC10 in Asterisk.
Package: asterisk13-codec-resample
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10308
Filename: telephony/asterisk13-codec-resample_13.2.0-4_ramips_24kec.ipk
Size: 11095
MD5Sum: 937eb6173e5c6476ab61e0ff402d9615
SHA256sum: 7dc69fecd2e33366fd00ede229f51488f2be760a2fbc7994563fe5d5f3bf0c0f
Description: This package provides support resample sLinear audio in Asterisk.
Package: asterisk13-codec-ulaw
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2570
Filename: telephony/asterisk13-codec-ulaw_13.2.0-4_ramips_24kec.ipk
Size: 3383
MD5Sum: 38b601e21fda56b91c81345f759e044a
SHA256sum: 00beaa437a6e0268ee550bf03ac26eeaa8c511485b1fd02d89e576c859df8297
Description: This package provides support translation between signed linear and ulaw codecs in Asterisk.
Package: asterisk13-curl
Version: 13.2.0-4
Depends: libc, asterisk13, libcurl
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8648
Filename: telephony/asterisk13-curl_13.2.0-4_ramips_24kec.ipk
Size: 9444
MD5Sum: 275d544932dd9fb5fd03fcc1b2a42d31
SHA256sum: 26f8bbec1370a4c95e37a20128b4a35694beb4fba1659692f3e7242bd014aed2
Description: This package provides support CURL support in Asterisk.
Package: asterisk13-format-g726
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2975
Filename: telephony/asterisk13-format-g726_13.2.0-4_ramips_24kec.ipk
Size: 3761
MD5Sum: 09f24b3145641ba8d100d52a6b593b22
SHA256sum: 68b17aa97e9a091283f9a4ba70cbb69b8f24305b32abdf3a6dce2ab24dd03cba
Description: This package provides support support for headerless G.726 16/24/32/40kbps data format in Asterisk.
Package: asterisk13-format-g729
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2915
Filename: telephony/asterisk13-format-g729_13.2.0-4_ramips_24kec.ipk
Size: 3724
MD5Sum: 71b653b65b22d49434e280145824567a
SHA256sum: ab9cb31f7fe4fcd3435a6d67296409825d835e04c02691b92df71b3afcb80262
Description: This package provides support support for raw headerless G729 data in Asterisk.
Package: asterisk13-format-gsm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5874
Filename: telephony/asterisk13-format-gsm_13.2.0-4_ramips_24kec.ipk
Size: 6627
MD5Sum: 2134816f93475d263922e36b4044b0a6
SHA256sum: cea224e10648406a82588018e756ee327ed50692b5e7254cccf1429f3ce66dd2
Description: This package provides support support for GSM format in Asterisk.
Package: asterisk13-format-h263
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2816
Filename: telephony/asterisk13-format-h263_13.2.0-4_ramips_24kec.ipk
Size: 3619
MD5Sum: c5732f53e40371187cba235f3d1e5c03
SHA256sum: dcda9955d45b76158e1d21737dc0227e0c8c970d47eba1c9b6df203f335ea58c
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk13-format-h264
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2897
Filename: telephony/asterisk13-format-h264_13.2.0-4_ramips_24kec.ipk
Size: 3700
MD5Sum: 5f964a6454d95c01d00de424db9ffb13
SHA256sum: 74c93a4198e4ce3e72734672e30f505739459df64733ca027423cdaa9b60c59d
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk13-format-ilbc
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2910
Filename: telephony/asterisk13-format-ilbc_13.2.0-4_ramips_24kec.ipk
Size: 3715
MD5Sum: f4bc82b0e9c48ac7f260e334ebf2e847
SHA256sum: 629d5d39cdfdeb18f25f1b5676fcfb8dabf6686405e9fda4189f84934c3c6f8b
Description: This package provides support support for ILBC format in Asterisk.
Package: asterisk13-format-pcm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4590
Filename: telephony/asterisk13-format-pcm_13.2.0-4_ramips_24kec.ipk
Size: 5361
MD5Sum: 8c4ed491aa7382e9c1e52f08293bba12
SHA256sum: c8436b2626577cb2154684449b3fa39133da1c2f64960a01afece20ffb8e6f36
Description: This package provides support support for PCM format in Asterisk.
Package: asterisk13-format-sln
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3486
Filename: telephony/asterisk13-format-sln_13.2.0-4_ramips_24kec.ipk
Size: 4265
MD5Sum: 429b25f466852e49c607e8c4c7935cd9
SHA256sum: 907673b6f187112d3736d31a5c5251da8481524e0c2cbdde75f91c12c0841705
Description: This package provides support support for raw slinear format in Asterisk.
Package: asterisk13-format-vox
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2842
Filename: telephony/asterisk13-format-vox_13.2.0-4_ramips_24kec.ipk
Size: 3647
MD5Sum: 74a324856da216cf276a3264c163b816
SHA256sum: f5d394e16ed9fa276329bb7511915377e99b2412b0331587306f72adfc9495f0
Description: This package provides support support for ADPCM vox format in Asterisk.
Package: asterisk13-format-wav-gsm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9804
Filename: telephony/asterisk13-format-wav-gsm_13.2.0-4_ramips_24kec.ipk
Size: 10614
MD5Sum: 8bc1c4deb21913a9354ae016b860ce34
SHA256sum: 3796af9a5148fc3d118558556249064963b713fe617b7d76d535f1ce80f88747
Description: This package provides support support for proprietary Microsoft WAV format (Proprietary GSM) in Asterisk.
Package: asterisk13-format-wav
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5010
Filename: telephony/asterisk13-format-wav_13.2.0-4_ramips_24kec.ipk
Size: 5812
MD5Sum: f09d228fb9ab3aca366fca8570387593
SHA256sum: 3d09c911ac292d03b2a157fad68c75b8e65f4b7f20deab126f9b6764e14e8c55
Description: This package provides support support for proprietary Microsoft WAV format (8000hz Signed Linear) in Asterisk.
Package: asterisk13-func-base64
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2723
Filename: telephony/asterisk13-func-base64_13.2.0-4_ramips_24kec.ipk
Size: 3518
MD5Sum: 13a2f11df3a845c3bffc0f7e8ecf3aad
SHA256sum: a4b88db990792c8299315ae05b870006fe8b83de194aed6d385d722d7dc17971
Description: This package provides support support of base64 function in Asterisk.
Package: asterisk13-func-blacklist
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2655
Filename: telephony/asterisk13-func-blacklist_13.2.0-4_ramips_24kec.ipk
Size: 3481
MD5Sum: b31678459cf3b458efce14273cc8cdb1
SHA256sum: f9810ba464777232e3f71113d66a6fb41da095ab8a1ab835071145985748ff78
Description: This package provides support looking up the callerid number and see if it is blacklisted in Asterisk.
Package: asterisk13-func-channel
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8326
Filename: telephony/asterisk13-func-channel_13.2.0-4_ramips_24kec.ipk
Size: 9131
MD5Sum: 133b6ce7c9cf88fd84d8db2949c58e03
SHA256sum: b409eac5187fff25f55a7d9f324d92808e10915a625ff5221d500b1299a15073
Description: This package provides support Channel info dialplan function in Asterisk.
Package: asterisk13-func-cut
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4172
Filename: telephony/asterisk13-func-cut_13.2.0-4_ramips_24kec.ipk
Size: 4925
MD5Sum: 26dfc98645e8e2826493253bf31ec95d
SHA256sum: c990823bd4203173279f294568057c0d1e4e9a615077e2bbe558f972ede1ba7f
Description: This package provides support CUT function in Asterisk.
Package: asterisk13-func-db
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5060
Filename: telephony/asterisk13-func-db_13.2.0-4_ramips_24kec.ipk
Size: 5853
MD5Sum: df0423100d2c227954d0f0432ca2a420
SHA256sum: ebda47a4638b95c22814b9a965e782ea7ef4cb3152fc1bfdd04c5406eb0b9817
Description: This package provides support functions for interaction with the database in Asterisk.
Package: asterisk13-func-devstate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4016
Filename: telephony/asterisk13-func-devstate_13.2.0-4_ramips_24kec.ipk
Size: 4804
MD5Sum: d1fa512f6e08b26034a6ca6f8268cfa2
SHA256sum: 27a0a682afd50d7f209c931b32688ec587ef1f57f6354842c0a25e67c4b291f1
Description: This package provides support functions for manually controlled blinky lights in Asterisk.
Package: asterisk13-func-enum
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5246
Filename: telephony/asterisk13-func-enum_13.2.0-4_ramips_24kec.ipk
Size: 6053
MD5Sum: 807a731f6545256f33e263cc6b8eee88
SHA256sum: 86c3acde95b6a36ecf302835604d89b619d04e7f8c46d598862016ce02e02409
Description: This package provides support ENUM in Asterisk.
Package: asterisk13-func-env
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11031
Filename: telephony/asterisk13-func-env_13.2.0-4_ramips_24kec.ipk
Size: 11859
MD5Sum: 3a654176ae705eab899e1c348a4e444f
SHA256sum: b507768c410a4a0c0132185536822abd36baf36d18a49fcfe7cf3bbcaa22ed5d
Description: This package provides support Environment dialplan functions in Asterisk.
Package: asterisk13-func-extstate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2296
Filename: telephony/asterisk13-func-extstate_13.2.0-4_ramips_24kec.ipk
Size: 3111
MD5Sum: 0bdf31d6e621c3f290a735feeb642e40
SHA256sum: ce0afdb5f3ab19979c849420e0470fbeccc06a2e4a8cbd52f49412293d0f740f
Description: This package provides support retrieving the state of a hinted extension for dialplan control in Asterisk.
Package: asterisk13-func-global
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4152
Filename: telephony/asterisk13-func-global_13.2.0-4_ramips_24kec.ipk
Size: 4929
MD5Sum: 286c4a2dede0ee4bf2f08c6d955d4ef9
SHA256sum: 7cac032664f5a6a59af1a306f35d2d8febc89b7b529fd18ca9ee04a13b92450d
Description: This package provides support global variable dialplan functions in Asterisk.
Package: asterisk13-func-groupcount
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3582
Filename: telephony/asterisk13-func-groupcount_13.2.0-4_ramips_24kec.ipk
Size: 4357
MD5Sum: 0d1506edcacfd05feced6cb230c9146a
SHA256sum: 416a77d974267dbd55084290cbe793dda04ec5778b44dc379ed54ad8d371ce4b
Description: This package provides support for counting number of channels in the specified group in Asterisk.
Package: asterisk13-func-math
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4478
Filename: telephony/asterisk13-func-math_13.2.0-4_ramips_24kec.ipk
Size: 5224
MD5Sum: e117c4d985fd0dc81e8f6bec7788ad8e
SHA256sum: 11904bd6e900b9e37a5b5503e591a20afc8a61cd357c19b06c5158b50a5230c6
Description: This package provides support Math functions in Asterisk.
Package: asterisk13-func-module
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1936
Filename: telephony/asterisk13-func-module_13.2.0-4_ramips_24kec.ipk
Size: 2735
MD5Sum: 7b9b0019cf347d426f0a4f3008bcb29c
SHA256sum: 8e26a6949a1a1376e7f945bd1230831786275b8e903f64c36b52eb59cafdb828
Description: This package provides support Simple module check function in Asterisk.
Package: asterisk13-func-shell
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2317
Filename: telephony/asterisk13-func-shell_13.2.0-4_ramips_24kec.ipk
Size: 3117
MD5Sum: cc016ac11c6e8500d8f4dce4d557b12b
SHA256sum: 701035ec37c68b31928a89bf606539a9418f169075ed094954c955280be462a1
Description: This package provides support support for shell execution in Asterisk.
Package: asterisk13-func-uri
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2053
Filename: telephony/asterisk13-func-uri_13.2.0-4_ramips_24kec.ipk
Size: 2866
MD5Sum: d485e561ef2733e94f6e8d528d68a442
SHA256sum: 087c7d4f89bfd9d9d2d6fd81d33fd74054b5a28c6347326dfb6c4c63ccff7dc5
Description: This package provides support Encodes and decodes URI-safe strings in Asterisk.
Package: asterisk13-func-vmcount
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2087
Filename: telephony/asterisk13-func-vmcount_13.2.0-4_ramips_24kec.ipk
Size: 2894
MD5Sum: 8870f2e408e114040c43bd733a2d2c3d
SHA256sum: 14ba7b7cc2cf6b732fb7d8fbfc2378866f0c97eeb315a78e2f18e7bb4f1b70d2
Description: This package provides support a vmcount dialplan function in Asterisk.
Package: asterisk13-odbc
Version: 13.2.0-4
Depends: libc, asterisk13, libpthread, libc, unixodbc
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69065
Filename: telephony/asterisk13-odbc_13.2.0-4_ramips_24kec.ipk
Size: 70002
MD5Sum: 3d360bdd320d0172aedd2560056870c7
SHA256sum: 65f9207802a2b096d4dafa5341353f3f175ae9f233c42d5c26dbac64edb8db33
Description: This package provides support ODBC support in Asterisk.
Package: asterisk13-pbx-ael
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8939
Filename: telephony/asterisk13-pbx-ael_13.2.0-4_ramips_24kec.ipk
Size: 9794
MD5Sum: ed93dc3a42c1e138628cb33b2bd5d645
SHA256sum: 0edd00befe188a11e052748fa00648903cfdfe2801e818bf711dd110dd469d76
Description: This package provides support support for symbolic Asterisk Extension Logic in Asterisk.
Package: asterisk13-pbx-dundi
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53410
Filename: telephony/asterisk13-pbx-dundi_13.2.0-4_ramips_24kec.ipk
Size: 54237
MD5Sum: 1040ede463d505d33a5b8c8e27a0ddac
SHA256sum: 089967883db3e26297fda615f28b337bf7e2888a95e2e4cb3094fe53d0fd37d2
Description: This package provides support provides Dundi Lookup service for Asterisk in Asterisk.
Package: asterisk13-pbx-spool
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8991
Filename: telephony/asterisk13-pbx-spool_13.2.0-4_ramips_24kec.ipk
Size: 9791
MD5Sum: ff7133dc14f5b35973a0751599f8536f
SHA256sum: 6608ccb3d80e685838269ee3ce9200667c75ca208e6d7ec3b4cf9e9667e08eb4
Description: This package provides support outgoing call spool support in Asterisk.
Package: asterisk13-pgsql
Version: 13.2.0-4
Depends: libc, asterisk13, libpq
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37399
Filename: telephony/asterisk13-pgsql_13.2.0-4_ramips_24kec.ipk
Size: 38369
MD5Sum: 12113340e2564cd147c1ee2c4a843fcd
SHA256sum: 369437abbcd1c012cc742386ce0c425b501a73f8588cc044336a51a5f03b49b1
Description: This package provides support PostgreSQL support in Asterisk.
Package: asterisk13-pjsip
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-sorcery, libpjsip, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsua, libpjsua2
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 269893
Filename: telephony/asterisk13-pjsip_13.2.0-4_ramips_24kec.ipk
Size: 270398
MD5Sum: 342d6d8d1736153db6b60c82aceca073
SHA256sum: 613ce365cf42cc9b762fc381e71f3cb4603d203c3db7d20b265819024557907a
Description: This package provides support the channel pjsip in Asterisk.
Package: asterisk13-res-ael-share
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41877
Filename: telephony/asterisk13-res-ael-share_13.2.0-4_ramips_24kec.ipk
Size: 42736
MD5Sum: 3a565fc15f83fb8b74b8abdd84952882
SHA256sum: e28dc7c952eeaad5e54b6e244882690d8822646af0f7b93f1f68b2754432924e
Description: This package provides support support for shareable AEL code mainly between internal and external modules in Asterisk.
Package: asterisk13-res-agi
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28599
Filename: telephony/asterisk13-res-agi_13.2.0-4_ramips_24kec.ipk
Size: 29362
MD5Sum: 827584b31fe2ce776032fb2713138c33
SHA256sum: 9699665f802e5290bc614d37e50497501ca94ae30e7b4ed9912fcfd01a9c7cc2
Description: This package provides support Support for the Asterisk Gateway Interface extension in Asterisk.
Package: asterisk13-res-clioriginate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3809
Filename: telephony/asterisk13-res-clioriginate_13.2.0-4_ramips_24kec.ipk
Size: 4580
MD5Sum: bf6403863ae1a8d32c127e2ab34ccb2a
SHA256sum: f7d4e525ed496ca6fbc55d8a76a95948ad70df16ac4856c595af883fed068632
Description: This package provides support Originate calls via the CLI in Asterisk.
Package: asterisk13-res-fax
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-timing-pthread
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33181
Filename: telephony/asterisk13-res-fax_13.2.0-4_ramips_24kec.ipk
Size: 34126
MD5Sum: 4999ec13afca95a4d4811c9a7a3885a8
SHA256sum: f63d8867b30284eb9e7349634fbfdf020baf70ddabc552394f8d89540891574e
Description: This package provides support Generic FAX resource for FAX technology resource modules in Asterisk.
Package: asterisk13-res-http-websocket
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11844
Filename: telephony/asterisk13-res-http-websocket_13.2.0-4_ramips_24kec.ipk
Size: 12575
MD5Sum: ca6b9cca8c60f5825c5e0fdbb6c8fd65
SHA256sum: 15211e70cca3e10215e5a05f1301cae63a93080f7c59ded642bca5867ca1ee42
Description: This package provides support in Asterisk.
Package: asterisk13-res-monitor
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8695
Filename: telephony/asterisk13-res-monitor_13.2.0-4_ramips_24kec.ipk
Size: 9511
MD5Sum: 3436f0186321cfee662c30ace3389726
SHA256sum: 98970f22dafeb6b5314a2cc52ca6b11d9bb279a031d848ccfd5e8c83f9900f4c
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk13-res-musiconhold
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17846
Filename: telephony/asterisk13-res-musiconhold_13.2.0-4_ramips_24kec.ipk
Size: 18672
MD5Sum: 3373a597d4b1906c466fabaafdb6f167
SHA256sum: 32e03d06cbf279b84e0a66ae568a68bc93683666007d1b7deffda3a755a46eb0
Description: This package provides support Music On Hold support in Asterisk.
Package: asterisk13-res-phoneprov
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16932
Filename: telephony/asterisk13-res-phoneprov_13.2.0-4_ramips_24kec.ipk
Size: 17822
MD5Sum: 44ce19755e34674df74b189ae11987fe
SHA256sum: 99aefc74b3dd7ae7ecaf2503d4542905fa668ca3c7a860df0cdc2153e38a9f40
Description: This package provides support Phone provisioning application for the asterisk internal http server in Asterisk.
Package: asterisk13-res-rtp-asterisk
Version: 13.2.0-4
Depends: libc, asterisk13, libpjsip, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsua, libpjsua2
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39984
Filename: telephony/asterisk13-res-rtp-asterisk_13.2.0-4_ramips_24kec.ipk
Size: 40720
MD5Sum: f4b44c2836f0fb1a686345cb5a472ab7
SHA256sum: 300803ae328a632ce57b0d286fb960c24c75fd9614a2092d3292c8d568552f59
Description: This package provides support in Asterisk.
Package: asterisk13-res-rtp-multicast
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3849
Filename: telephony/asterisk13-res-rtp-multicast_13.2.0-4_ramips_24kec.ipk
Size: 4612
MD5Sum: c90897e3d25600d95134250780d5e568
SHA256sum: a50d3f1341de7ea66037c311194a57d341e5fbafaaa633b4a00c5ad930576290
Description: This package provides support in Asterisk.
Package: asterisk13-res-smdi
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14345
Filename: telephony/asterisk13-res-smdi_13.2.0-4_ramips_24kec.ipk
Size: 15153
MD5Sum: a867071b6ba3c754835ff2d080c25d39
SHA256sum: 7e6dd8ed58ea36dff94124223d6df7a9bcd2ea0770c6a425cac5f75ed3c268cc
Description: This package provides support Simple Message Desk Interface capability in Asterisk.
Package: asterisk13-res-sorcery
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11842
Filename: telephony/asterisk13-res-sorcery_13.2.0-4_ramips_24kec.ipk
Size: 12583
MD5Sum: d154263434dc1da684fa6b8626df5b0c
SHA256sum: e164a3db6571e0c596d6c16230f5cc0a9cdc52c5c32f3b277171ecc31859663f
Description: This package provides support in Asterisk.
Package: asterisk13-res-timing-pthread
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4734
Filename: telephony/asterisk13-res-timing-pthread_13.2.0-4_ramips_24kec.ipk
Size: 5490
MD5Sum: 11c6d6cb529934738cf815606baa7e10
SHA256sum: a009e5842886b4ad261f23ac8a26e10b8a7719216cb6779aed7795068659d7b3
Description: This package provides support in Asterisk.
Package: asterisk13-res-timing-timerfd
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3482
Filename: telephony/asterisk13-res-timing-timerfd_13.2.0-4_ramips_24kec.ipk
Size: 4241
MD5Sum: e93d80df8b5bc95ce7d4bcf46c32e3b0
SHA256sum: db191f268fb21c2aec33926a7eaf2e168c0350b21c35921c59f88c092026d2b5
Description: This package provides support in Asterisk.
Package: asterisk13-voicemail
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 612696
Filename: telephony/asterisk13-voicemail_13.2.0-4_ramips_24kec.ipk
Size: 613592
MD5Sum: 9ede147fdb06cb0026ec08d5969da2a9
SHA256sum: daa3f355cf38222d63d034000ae9321b40cf680d1202305834c84b6a05614084
Description: This package provides support voicemail related modules in Asterisk.
Package: asterisk13
Version: 13.2.0-4
Depends: libc, jansson, libncurses, libopenssl, libpopt, libsqlite3, libstdcpp, libuuid, libxml2, libxslt, zlib
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 906906
Filename: telephony/asterisk13_13.2.0-4_ramips_24kec.ipk
Size: 905645
MD5Sum: 63022e84938dd749675d5102b7912fdb
SHA256sum: f7f7bcb382e7299dcc9fa6eb2d2fc14e11b32dddc97a53ad4d08f9138f11ec22
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
Package: asterisk18-app-alarmreceiver
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6886
Filename: telephony/asterisk18-app-alarmreceiver_1.8.32.2-3_ramips_24kec.ipk
Size: 7748
MD5Sum: b0bc6b1e164a7c6e22590b2310024827
SHA256sum: 091bd168c9ba09a4d6b13634fbccc8f6ca35ad199cea1e3e2ac2a1dd6c768568
Description: This package provides support Central Station Alarm receiver for Ademco Contact ID in Asterisk.
Package: asterisk18-app-authenticate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3315
Filename: telephony/asterisk18-app-authenticate_1.8.32.2-3_ramips_24kec.ipk
Size: 4106
MD5Sum: 866a0653ea2a98472b23f06de7ed1c17
SHA256sum: aed8d25cba015cdc320029ffd7071fbff18683eec9e5164de614d653a604ce80
Description: This package provides support Execute arbitrary authenticate commands in Asterisk.
Package: asterisk18-app-chanisavail
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2863
Filename: telephony/asterisk18-app-chanisavail_1.8.32.2-3_ramips_24kec.ipk
Size: 3682
MD5Sum: 1a5ebddfb030f0226b29cb4a7f5344c1
SHA256sum: d3ed33ca1ba154e221f82893991aa92aa8762e0777848f63039d7526a60e8664
Description: This package provides support support for checking if a channel is available in Asterisk.
Package: asterisk18-app-chanspy
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9276
Filename: telephony/asterisk18-app-chanspy_1.8.32.2-3_ramips_24kec.ipk
Size: 10066
MD5Sum: ec6da22079758d219b75c7dea86df94d
SHA256sum: 849f20f6b3c1296c3022b61db9b10f06905b1f7d7bd54d834b0de5abc71fd4f8
Description: This package provides support support for listening in on any channel in Asterisk.
Package: asterisk18-app-directed_pickup
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3950
Filename: telephony/asterisk18-app-directed_pickup_1.8.32.2-3_ramips_24kec.ipk
Size: 4724
MD5Sum: 48fa6838f947f306e4d416fa93d9f02b
SHA256sum: 481b291bc72578a123fb911c699083b6f1fecc11646459414555420ea45da307
Description: This package provides support support for directed call pickup in Asterisk.
Package: asterisk18-app-disa
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4891
Filename: telephony/asterisk18-app-disa_1.8.32.2-3_ramips_24kec.ipk
Size: 5679
MD5Sum: 729000682e4c3d586043f3d26d4d234c
SHA256sum: 35715c2044db1963979e5a26bd2ae65009e6cd8cb5ea22b0803ca6bcb0f696a1
Description: This package provides support Direct Inward System Access in Asterisk.
Package: asterisk18-app-exec
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3239
Filename: telephony/asterisk18-app-exec_1.8.32.2-3_ramips_24kec.ipk
Size: 3998
MD5Sum: 8de19faf7afc8ea1a4825cd059b0b7c0
SHA256sum: d92822e74248ef5bfa866cde2a6cb9bd9b03f189a9662b721b95a2ae56023882
Description: This package provides support support for application execution in Asterisk.
Package: asterisk18-app-minivm
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32731
Filename: telephony/asterisk18-app-minivm_1.8.32.2-3_ramips_24kec.ipk
Size: 33667
MD5Sum: 8753845b7c0b059c2f7280d302ba920e
SHA256sum: fde8b5b5adf255e25f927172895433e0ae6de721c23e1369a8bc60870e3d7282
Description: This package provides support a voicemail system in small building blocks working together based on the Comedian Mail voicemail in Asterisk.
Package: asterisk18-app-mixmonitor
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7330
Filename: telephony/asterisk18-app-mixmonitor_1.8.32.2-3_ramips_24kec.ipk
Size: 8155
MD5Sum: 1971f32d6f9dbc6c2e2e53717e5ac2e6
SHA256sum: 285107df4c0f9fc5cbd3b79e6565dd636bf2ccd2263820028dcc5d302de26baa
Description: This package provides support record a call and mix the audio during the recording in Asterisk.
Package: asterisk18-app-originate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3129
Filename: telephony/asterisk18-app-originate_1.8.32.2-3_ramips_24kec.ipk
Size: 3970
MD5Sum: d748617e1ea9b5695e1c6618f7f10ada
SHA256sum: d6676589566e73cc7f4340d33b9347944666b368c6075ced5d714519ec0f41be
Description: This package provides support originating an outbound call and connecting it to a specified extension or application in Asterisk.
Package: asterisk18-app-playtones
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2095
Filename: telephony/asterisk18-app-playtones_1.8.32.2-3_ramips_24kec.ipk
Size: 2900
MD5Sum: 51212454b260c3c42135aa737b89f95c
SHA256sum: d21eb797d565f7379eda863eb7151c9b93d0df2475082454c5f33e679027a61b
Description: This package provides support play a tone list in Asterisk.
Package: asterisk18-app-read
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3672
Filename: telephony/asterisk18-app-read_1.8.32.2-3_ramips_24kec.ipk
Size: 4447
MD5Sum: 320c6b1bd8d99995064261a6fdbff4bc
SHA256sum: 43b24b7107f59e89425e808f9ffdafbd846a6ac3feee01b7aba6ba6c22466bf0
Description: This package provides support a trivial application to read a variable in Asterisk.
Package: asterisk18-app-readexten
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4127
Filename: telephony/asterisk18-app-readexten_1.8.32.2-3_ramips_24kec.ipk
Size: 4925
MD5Sum: f329709e8cce10f31bca9f4fcff639e8
SHA256sum: d575282cf3930a4873e83b0659c23f3c1585ecbe261fabd54fd5139b551de49c
Description: This package provides support a trivial application to read an extension into a variable in Asterisk.
Package: asterisk18-app-record
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4569
Filename: telephony/asterisk18-app-record_1.8.32.2-3_ramips_24kec.ipk
Size: 5344
MD5Sum: 26a07b4e1cbb916b9e774fee572cd45b
SHA256sum: cfd522e65c0480cbbb9ffd22db8f694198dfeb819c6611e145c13f71d1dd57d3
Description: This package provides support to record a sound file in Asterisk.
Package: asterisk18-app-sayunixtime
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2204
Filename: telephony/asterisk18-app-sayunixtime_1.8.32.2-3_ramips_24kec.ipk
Size: 3011
MD5Sum: 1fac89155ed9adbd0215e7e9f1d773f7
SHA256sum: 08f7f315038ec86e319da46d8ddea120dfe1a7931d627d74bfb0ade0ea76aa55
Description: This package provides support an application to say Unix time in Asterisk.
Package: asterisk18-app-senddtmf
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2760
Filename: telephony/asterisk18-app-senddtmf_1.8.32.2-3_ramips_24kec.ipk
Size: 3579
MD5Sum: 78275820eba74888757da80c6a05f753
SHA256sum: e98d91b7c62f9009e881e945778f4c14e5058e14d3553534a7d3c3b3c8f73810
Description: This package provides support Sends arbitrary DTMF digits in Asterisk.
Package: asterisk18-app-setcallerid
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2092
Filename: telephony/asterisk18-app-setcallerid_1.8.32.2-3_ramips_24kec.ipk
Size: 2898
MD5Sum: edbc997b6077ec5e5f98189694a9f3d6
SHA256sum: a3de9d9f268496137c25a1cd527dd1e88cabc419083ccf618ac383c3b3565be9
Description: This package provides support Support for setting callerid in Asterisk.
Package: asterisk18-app-sms
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpopt, libstdcpp
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24780
Filename: telephony/asterisk18-app-sms_1.8.32.2-3_ramips_24kec.ipk
Size: 25560
MD5Sum: 09d0019889f7e56a43790c9cbaf7a151
SHA256sum: 7f9e5a82a3bd30ce6fd6f0888f0729999c00bf7b0a2316c5411369d5ff5d5740
Description: This package provides support SMS support (ETSI ES 201 912 protocol 1) in Asterisk.
Package: asterisk18-app-stack
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-agi
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10900
Filename: telephony/asterisk18-app-stack_1.8.32.2-3_ramips_24kec.ipk
Size: 11736
MD5Sum: d3ca49faddbb225be27f68e80603f19e
SHA256sum: 5cefeda5264d7caf9c827507be2c62d420c6205a7416ff1856d321140c2c8d4c
Description: This package provides support stack applications Gosub Return etc. in Asterisk.
Package: asterisk18-app-system
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2598
Filename: telephony/asterisk18-app-system_1.8.32.2-3_ramips_24kec.ipk
Size: 3402
MD5Sum: a5331af28aeec8c90b5b777a327ab6ce
SHA256sum: 15ff05967f4b8bf006e5eaa96a002f832e6d4f5ac6f3caada66ccb1aafa8ef5c
Description: This package provides support support for executing system commands in Asterisk.
Package: asterisk18-app-talkdetect
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3980
Filename: telephony/asterisk18-app-talkdetect_1.8.32.2-3_ramips_24kec.ipk
Size: 4749
MD5Sum: f6ecf95c400e1c5b30053ec4082c28da
SHA256sum: de16480a5578560bdcd4d7934e69a2d30f17491b15394f95dd629e4c8e86e47f
Description: This package provides support for file playback with audio detect in Asterisk.
Package: asterisk18-app-verbose
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2680
Filename: telephony/asterisk18-app-verbose_1.8.32.2-3_ramips_24kec.ipk
Size: 3498
MD5Sum: b010fac399fd661464e45a468c732267
SHA256sum: d0a64d93045d955f2d056ba41f817613fdaa737b65cec2fe699089c878cc26c7
Description: This package provides support Verbose logging application in Asterisk.
Package: asterisk18-app-waituntil
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2353
Filename: telephony/asterisk18-app-waituntil_1.8.32.2-3_ramips_24kec.ipk
Size: 3176
MD5Sum: 16582515790f716f51cbfb83552492fa
SHA256sum: a124512b22c5c870b5c9d3f1ce00222dbc0a49cb802d14f2580c45e696a6c4da
Description: This package provides support support sleeping until the given epoch in Asterisk.
Package: asterisk18-app-while
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4149
Filename: telephony/asterisk18-app-while_1.8.32.2-3_ramips_24kec.ipk
Size: 4920
MD5Sum: 606660a78105410971286f658f84ae60
SHA256sum: 94583f18136bad1699c05d21c071954e0c8560254a8169fd5d7c1aa97c0d7e44
Description: This package provides support a while loop implementation in Asterisk.
Package: asterisk18-cdr-csv
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4352
Filename: telephony/asterisk18-cdr-csv_1.8.32.2-3_ramips_24kec.ipk
Size: 5137
MD5Sum: 9399c28846a3a28e216ffe699618a0e2
SHA256sum: 351e0b7dd0d412a231936a9c8f559e47ec2b9cfbe39feba8c2bfcfb3884dd6e3
Description: This package provides support Call Detail Record with CSV support in Asterisk.
Package: asterisk18-cdr
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20680
Filename: telephony/asterisk18-cdr_1.8.32.2-3_ramips_24kec.ipk
Size: 21510
MD5Sum: 1fa7a666df6ca534f18a8be5eeed8b7f
SHA256sum: 23d83f86e357ca0c7748989b69a9268c4805e66741cb8e26b9ee171ea5c393c4
Description: This package provides support Call Detail Record in Asterisk.
Package: asterisk18-chan-agent
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21850
Filename: telephony/asterisk18-chan-agent_1.8.32.2-3_ramips_24kec.ipk
Size: 22608
MD5Sum: a7e918f571f5b29285076384c40071f6
SHA256sum: 2831d1201e11c9335d139e736c24f7abf83978eafd704922e7659a131b4c9c0a
Description: This package provides support An implementation of agents proxy channel in Asterisk.
Package: asterisk18-chan-gtalk
Version: 1.8.32.2-3
Depends: libc, asterisk18, libiksemel
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58885
Filename: telephony/asterisk18-chan-gtalk_1.8.32.2-3_ramips_24kec.ipk
Size: 59768
MD5Sum: fa83c70b49c2447017ef236b6ae9e4ed
SHA256sum: 60969669a6a97514169c72bd1360d92ee0e15b9e7b9523b2e2ce11b852a1a4d0
Description: This package provides support An implementation of chan_gtalk and res_jabber for GTalk support in Asterisk.
Package: asterisk18-chan-iax2
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-timing-timerfd
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 133631
Filename: telephony/asterisk18-chan-iax2_1.8.32.2-3_ramips_24kec.ipk
Size: 133954
MD5Sum: 47ca8c5ea9ccb24357f4cc745ffe9ad6
SHA256sum: 4197d8d8ba1a94e26f01df395513852e196a7585585b8a8f0a94b8825deae51e
Description: This package provides support An implementation of IAX2 channel in Asterisk.
Package: asterisk18-chan-local
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11312
Filename: telephony/asterisk18-chan-local_1.8.32.2-3_ramips_24kec.ipk
Size: 12128
MD5Sum: a293b83293518f5bafdca1851118f01e
SHA256sum: e148422f7ec8d5ac6751e76884ba5c50bd33991741706174b20a30c6781f4fd8
Description: This package provides support An implementation of local proxy channel in Asterisk.
Package: asterisk18-chan-mgcp
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41917
Filename: telephony/asterisk18-chan-mgcp_1.8.32.2-3_ramips_24kec.ipk
Size: 42769
MD5Sum: ea59fe6a840ab857a19173067f6edd70
SHA256sum: 7e2e6aa1fcd711be7872f49c723b59746d3457ad2b2a673a4b5a53369a462bfc
Description: This package provides support the channel chan_mgcp in Asterisk.
Package: asterisk18-chan-ooh323
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 273107
Filename: telephony/asterisk18-chan-ooh323_1.8.32.2-3_ramips_24kec.ipk
Size: 273054
MD5Sum: 1cec052ccc21ef04cfc73eb32bd0b032
SHA256sum: cf5bfb3707b14774290729c7835818ad52f4e9bd448d177072ec4ca4a2a8fb81
Description: This package provides support the channel chan_ooh323 in Asterisk.
Package: asterisk18-chan-sccp-b
Version: v4.2-r5845-1
Depends: libc, libltdl, asterisk18
Source: feeds/telephony/net/chan-sccp-b
License: GPL-1.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 345383
Filename: telephony/asterisk18-chan-sccp-b_v4.2-r5845-1_ramips_24kec.ipk
Size: 341628
MD5Sum: 56eb9e25544584b81fe5fb25564b65d3
SHA256sum: 301eab847a86eb7b8021b181b32235b336f92dfa01e5e6ede92175b99e84923c
Description: SCCP channel provider for asterisk. It delivers extended functionality for SCCP phones over chan_skinny delivered
by asterisk by default.
Package: asterisk18-chan-skinny
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49488
Filename: telephony/asterisk18-chan-skinny_1.8.32.2-3_ramips_24kec.ipk
Size: 50364
MD5Sum: 54235f9a2e591a53c891d422a7c80dd7
SHA256sum: aaa08f7693afac19549f73ac97e50704cd3ec9f999b98ba0d9d97c9987673fc7
Description: This package provides support the channel chan_skinny in Asterisk.
Package: asterisk18-codec-a-mu
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2217
Filename: telephony/asterisk18-codec-a-mu_1.8.32.2-3_ramips_24kec.ipk
Size: 3041
MD5Sum: a467c3f0aae6edc04d321b064f1044cb
SHA256sum: 250fa77f4f6c155289f0a9ae32e94b68b511d8fd3253965ba448303f952bd0dc
Description: This package provides support translation between alaw and ulaw codecs in Asterisk.
Package: asterisk18-codec-alaw
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2340
Filename: telephony/asterisk18-codec-alaw_1.8.32.2-3_ramips_24kec.ipk
Size: 3165
MD5Sum: 1e43a79639bbc9ecc63abde3051ac7c0
SHA256sum: d89ce88bf023dc1728b84d01f45772c018b932718217aa37887d29c81c875e96
Description: This package provides support translation between signed linear and alaw codecs in Asterisk.
Package: asterisk18-codec-g722
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5672
Filename: telephony/asterisk18-codec-g722_1.8.32.2-3_ramips_24kec.ipk
Size: 6478
MD5Sum: 223f9ffc9fcb9d8b64962a2e8fea11d8
SHA256sum: df329a56e970929c74f65792ccd05c9adaf384e5d3062f7397e7b1ceb105de13
Description: This package provides support a high bit rate 48/56/64Kbps ITU standard codec in Asterisk.
Package: asterisk18-codec-g726
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4266
Filename: telephony/asterisk18-codec-g726_1.8.32.2-3_ramips_24kec.ipk
Size: 5064
MD5Sum: cd27e6c24bb92ac79bb5838cd70d47c4
SHA256sum: ed5b7291f03f26590dc250c558ef0e837c617cead067cf134bbade3b843ab4f4
Description: This package provides support translation between signed linear and ITU G.726-32kbps codecs in Asterisk.
Package: asterisk18-codec-g729
Version: 1.3-1
Depends: libc, bcg729, asterisk18
Source: feeds/telephony/net/asterisk-g72x
License: GPL-3.0
LicenseFiles: README.md
Section: net
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: telephony/asterisk18-codec-g729_1.3-1_ramips_24kec.ipk
Size: 4926
MD5Sum: a53e81c82830d71e5d9f72c0a4d9ef46
SHA256sum: 307575a7904d08dca113788841dbdba37f54ff4f007b19216dd3f89f992a10de
Description: Asterisk G.729 codec based on bcg729 implementation.
Package: asterisk18-curl
Version: 1.8.32.2-3
Depends: libc, asterisk18, libcurl
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8076
Filename: telephony/asterisk18-curl_1.8.32.2-3_ramips_24kec.ipk
Size: 8871
MD5Sum: de12a8776ad8b4e7e4a74b62ea6e708a
SHA256sum: 125faf38b433db61ae7739bd4a16d8a3d9436a3a17c275edeb7b3f82b8b85058
Description: This package provides support CURL support in Asterisk.
Package: asterisk18-format-g726
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3026
Filename: telephony/asterisk18-format-g726_1.8.32.2-3_ramips_24kec.ipk
Size: 3817
MD5Sum: 3f17e520e7911b6e3c02c188d8111c60
SHA256sum: 05caa04115d5335a311c118ab3dde2c5fe1ec1c3c5590535de38d46d8b161f1a
Description: This package provides support support for headerless G.726 16/24/32/40kbps data format in Asterisk.
Package: asterisk18-format-g729
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2945
Filename: telephony/asterisk18-format-g729_1.8.32.2-3_ramips_24kec.ipk
Size: 3762
MD5Sum: 0b7912d3513dd7fc5d85d3724e9dd817
SHA256sum: c6b9a9aa2e5510199a0050deb605a2a4e5d4363d3784f4b4e11fa2f044ef9019
Description: This package provides support support for raw headerless G729 data in Asterisk.
Package: asterisk18-format-sln16
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2896
Filename: telephony/asterisk18-format-sln16_1.8.32.2-3_ramips_24kec.ipk
Size: 3708
MD5Sum: 7ea67016bfa076964fcc1a2f4702400f
SHA256sum: bee7d17b17cb7f90ce9922851b9cabae9c46bba42ae234eb7b3432a5e8416e47
Description: This package provides support support for raw slinear 16 format in Asterisk.
Package: asterisk18-format-sln
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2882
Filename: telephony/asterisk18-format-sln_1.8.32.2-3_ramips_24kec.ipk
Size: 3690
MD5Sum: 2354d117cbb68d51446ce8dfba5bb611
SHA256sum: a2e8fbc3f79347b2b4a9992050efeb2e815eb3719266772dbd360a6c96ba3b22
Description: This package provides support support for raw slinear format in Asterisk.
Package: asterisk18-func-base64
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2442
Filename: telephony/asterisk18-func-base64_1.8.32.2-3_ramips_24kec.ipk
Size: 3242
MD5Sum: ed15df878265cef2a0eaba73e6af7481
SHA256sum: 622f2625bd5148dbf599bad3b247a4b074cca3102dc6edbdda6ac66b55354a98
Description: This package provides support support of base64 function in Asterisk.
Package: asterisk18-func-blacklist
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2343
Filename: telephony/asterisk18-func-blacklist_1.8.32.2-3_ramips_24kec.ipk
Size: 3171
MD5Sum: c98618e3f35c394344a65f55fdbc5828
SHA256sum: 519f7e63a8335c945426e803a458c2c8d8f67079c6ccfefa6ae097635e0bec82
Description: This package provides support looking up the callerid number and see if it is blacklisted in Asterisk.
Package: asterisk18-func-channel
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6634
Filename: telephony/asterisk18-func-channel_1.8.32.2-3_ramips_24kec.ipk
Size: 7444
MD5Sum: 4c34580a415b7d3c13861199dd71d1c6
SHA256sum: 7c07cad36cdcdf27eb746b5817cfeaf78388a98286330bde07c964d4576fb872
Description: This package provides support Channel info dialplan function in Asterisk.
Package: asterisk18-func-cut
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3877
Filename: telephony/asterisk18-func-cut_1.8.32.2-3_ramips_24kec.ipk
Size: 4637
MD5Sum: 00afb0ae889a6be7c00c6f72064c151a
SHA256sum: 7f33f7182282c39d7b7af93d35c7505c165d7e8ac0c0671b8a889a90cced43cc
Description: This package provides support CUT function in Asterisk.
Package: asterisk18-func-db
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4522
Filename: telephony/asterisk18-func-db_1.8.32.2-3_ramips_24kec.ipk
Size: 5320
MD5Sum: cf1ca9f7073da5f0b6e39768f0e68617
SHA256sum: 2e0fee86fbfc0bc465c4bbf73429ced7eacb4aa091c67e559cc05dbc4e825ba9
Description: This package provides support functions for interaction with the database in Asterisk.
Package: asterisk18-func-devstate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3918
Filename: telephony/asterisk18-func-devstate_1.8.32.2-3_ramips_24kec.ipk
Size: 4715
MD5Sum: 82ea1c2a3491c0d662a4fabb75327b2f
SHA256sum: fdc0deac68c6217a4349dd4df75ebed075527e3252ebb88f554a0ad96c863159
Description: This package provides support functions for manually controlled blinky lights in Asterisk.
Package: asterisk18-func-enum
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4904
Filename: telephony/asterisk18-func-enum_1.8.32.2-3_ramips_24kec.ipk
Size: 5710
MD5Sum: ceb4ac107793bf7c793ea475131a585f
SHA256sum: f8ecd6ac20c808690c5f335282f02f695aa55600768b0cd55834f38fede427ef
Description: This package provides support ENUM in Asterisk.
Package: asterisk18-func-env
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10910
Filename: telephony/asterisk18-func-env_1.8.32.2-3_ramips_24kec.ipk
Size: 11736
MD5Sum: 05ee3db8daf016ac2cfa27073e932c91
SHA256sum: fc065d2ac71464c6330f44023f0de533e6e5cce469161d893b1b2f6ca09b481f
Description: This package provides support Environment dialplan functions in Asterisk.
Package: asterisk18-func-extstate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2223
Filename: telephony/asterisk18-func-extstate_1.8.32.2-3_ramips_24kec.ipk
Size: 3061
MD5Sum: 7e1afab917774054930074360e22b09a
SHA256sum: f5eb61c340c2e29d3e57afee672567fae4c758b1cd51341af87ac67ef841fd5a
Description: This package provides support retrieving the state of a hinted extension for dialplan control in Asterisk.
Package: asterisk18-func-global
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3885
Filename: telephony/asterisk18-func-global_1.8.32.2-3_ramips_24kec.ipk
Size: 4669
MD5Sum: 864eb7310117ed66e646ccb82127e257
SHA256sum: 54023983e9e84018ab5c0b142e712efc5f26d1a138e253fdaa9bbd0b503b6d55
Description: This package provides support global variable dialplan functions in Asterisk.
Package: asterisk18-func-groupcount
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3360
Filename: telephony/asterisk18-func-groupcount_1.8.32.2-3_ramips_24kec.ipk
Size: 4156
MD5Sum: fac5cb61641205f8e57e8a310a66e573
SHA256sum: 23fc3195023a24d05b77b7ff26ad6a5e5f4b53809a9197e096fac790c5164acd
Description: This package provides support for counting number of channels in the specified group in Asterisk.
Package: asterisk18-func-math
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4311
Filename: telephony/asterisk18-func-math_1.8.32.2-3_ramips_24kec.ipk
Size: 5076
MD5Sum: f0b51f9df0d07a56dc54268d4387de51
SHA256sum: 5dce0770733c2d4e4e7e727294df86e223b72d2ce398f76324243a55cece6be7
Description: This package provides support Math functions in Asterisk.
Package: asterisk18-func-module
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1829
Filename: telephony/asterisk18-func-module_1.8.32.2-3_ramips_24kec.ipk
Size: 2633
MD5Sum: 96f837a726a28f1ba3a051adc5e61bd6
SHA256sum: bc31e3119d4be499c2803c928198373c5f4fb93d24233beb9d9ea7780b59f3ee
Description: This package provides support Simple module check function in Asterisk.
Package: asterisk18-func-shell
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2233
Filename: telephony/asterisk18-func-shell_1.8.32.2-3_ramips_24kec.ipk
Size: 3038
MD5Sum: d845dbf7f52659dfbc316afacd251c09
SHA256sum: dd3df1f53a541577a720246e4281bfe5362f2be5139fa77c4a3fe3b6fe364e35
Description: This package provides support support for shell execution in Asterisk.
Package: asterisk18-func-uri
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1938
Filename: telephony/asterisk18-func-uri_1.8.32.2-3_ramips_24kec.ipk
Size: 2758
MD5Sum: 6beb2d09e133a1ce2d98c4bed6a28d2d
SHA256sum: 2380e85f966f70b551223149c047b6cbaf9aff823cfeb94f28de2e67e8a27004
Description: This package provides support Encodes and decodes URI-safe strings in Asterisk.
Package: asterisk18-func-vmcount
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2088
Filename: telephony/asterisk18-func-vmcount_1.8.32.2-3_ramips_24kec.ipk
Size: 2894
MD5Sum: 30358fa06afd9711b5425e08166bb792
SHA256sum: 8da2de9abcb93e73971994f0193f9fd816fcc4f6d43c79f40d9bf9eb950ed340
Description: This package provides support a vmcount dialplan function in Asterisk.
Package: asterisk18-mysql
Version: 1.8.32.2-3
Depends: libc, asterisk18, libmysqlclient
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20034
Filename: telephony/asterisk18-mysql_1.8.32.2-3_ramips_24kec.ipk
Size: 20854
MD5Sum: da36197c9be6c1419cccdbcd042cb6e4
SHA256sum: db29814620b9782043513ab960b48204f2fcc1c39b6adffc4d04322fea5028a3
Description: This package provides support MySQL support in Asterisk.
Package: asterisk18-odbc
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpthread, libc, unixodbc
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 65686
Filename: telephony/asterisk18-odbc_1.8.32.2-3_ramips_24kec.ipk
Size: 66504
MD5Sum: f8d6a008295e35196465e732e552c23c
SHA256sum: 1e02cd45068c8f2b3ac2ffb06e0aa85cee90dcac1408703b1739bf66fe1cfd49
Description: This package provides support ODBC support in Asterisk.
Package: asterisk18-pbx-ael
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8758
Filename: telephony/asterisk18-pbx-ael_1.8.32.2-3_ramips_24kec.ipk
Size: 9579
MD5Sum: e6727e7d0d65c221da7ca5fd44205c86
SHA256sum: f9ecfd02eb423bcc35369ae75ad0d8933919e3d38611cb09ec8df440430623e5
Description: This package provides support support for symbolic Asterisk Extension Logic in Asterisk.
Package: asterisk18-pbx-dundi
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49891
Filename: telephony/asterisk18-pbx-dundi_1.8.32.2-3_ramips_24kec.ipk
Size: 50745
MD5Sum: 2885eff8dab34837787ea1e165cf5378
SHA256sum: 0fc216e58e970465def36c72e9432efb21c7e46d717772d6f2fdbd3712ac9973
Description: This package provides support provides Dundi Lookup service for Asterisk in Asterisk.
Package: asterisk18-pbx-lua
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpthread, libc, liblua
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11955
Filename: telephony/asterisk18-pbx-lua_1.8.32.2-3_ramips_24kec.ipk
Size: 12793
MD5Sum: f585fe9fc8816b0a822110f1773144e5
SHA256sum: 2773b17e6fa6b0d8a1dac09f466eb8e2161107454e7cf8e907f6558949934182
Description: This package provides support provides Lua resources for Asterisk in Asterisk.
Package: asterisk18-pbx-spool
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8673
Filename: telephony/asterisk18-pbx-spool_1.8.32.2-3_ramips_24kec.ipk
Size: 9469
MD5Sum: 686ca70e6571f0756a0cf13b175d61f3
SHA256sum: 719211ea30986c4176519867977b2012efb97bb1a6b2e6c5ce5a695292bb0ac6
Description: This package provides support Outgoing call spool support in Asterisk.
Package: asterisk18-pgsql
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpq
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32854
Filename: telephony/asterisk18-pgsql_1.8.32.2-3_ramips_24kec.ipk
Size: 33753
MD5Sum: 873c02b5ca2b06739dfadeca73f0d06f
SHA256sum: 533ea9e80cb43b238717aac1e909710a00ba070b3256e09c72f963f44a26f5e4
Description: This package provides support PostgreSQL support in Asterisk.
Package: asterisk18-res-ael-share
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41548
Filename: telephony/asterisk18-res-ael-share_1.8.32.2-3_ramips_24kec.ipk
Size: 42448
MD5Sum: 728836511995198dadf2fc83955aeaf8
SHA256sum: b84fbb9fe35353f5a4e95f07e2520c0dd85819b6830476cd008ad3c331856447
Description: This package provides support support for shareable AEL code mainly between internal and external modules in Asterisk.
Package: asterisk18-res-agi
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25813
Filename: telephony/asterisk18-res-agi_1.8.32.2-3_ramips_24kec.ipk
Size: 26531
MD5Sum: f1a26bd9db7af27bd4ee031f2829559e
SHA256sum: 7b8c3abb384c7fad2a4c3da6bedcb7f7a492f64b7ae556aded6b72e1dbd02eb0
Description: This package provides support support for the Asterisk Gateway Interface extension in Asterisk.
Package: asterisk18-res-clioriginate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3615
Filename: telephony/asterisk18-res-clioriginate_1.8.32.2-3_ramips_24kec.ipk
Size: 4388
MD5Sum: 1fc13871f99edcff8db4ddeb013ce8ba
SHA256sum: 8d2ccfe07ea5ba5d2dec42ca62d891d59cd47ceb986ca76b2bb6a662835a678b
Description: This package provides support Originate calls via the CLI in Asterisk.
Package: asterisk18-res-crypto
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6966
Filename: telephony/asterisk18-res-crypto_1.8.32.2-3_ramips_24kec.ipk
Size: 7805
MD5Sum: b158c1fdd088b84690436e2a8fce79ba
SHA256sum: ff1dcf479b37894939e7d5b14c15ac0d151a187a4fcf3990c1933782dcb234e2
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk18-res-fax-spandsp
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-fax, libspandsp, libtiff
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7587
Filename: telephony/asterisk18-res-fax-spandsp_1.8.32.2-3_ramips_24kec.ipk
Size: 8403
MD5Sum: 6398fbc1c6168c07a7ec27af2133f7a2
SHA256sum: 0c1ac89b18cd21fb6ac1df87d47deea6c8282eebdc2b53b910ac42a477af9a31
Description: This package provides support Spandsp T.38 and G.711 FAX Resource in Asterisk.
Package: asterisk18-res-fax
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-timing-pthread
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24284
Filename: telephony/asterisk18-res-fax_1.8.32.2-3_ramips_24kec.ipk
Size: 25105
MD5Sum: 6ccca05f534d1299c342bea5e45a62e3
SHA256sum: e580cac9e770685f186cd7250de842cdb6bef2326c77fa61825431ed82d4ed92
Description: This package provides support Generic FAX resource for FAX technology resource modules in Asterisk.
Package: asterisk18-res-monitor
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7545
Filename: telephony/asterisk18-res-monitor_1.8.32.2-3_ramips_24kec.ipk
Size: 8346
MD5Sum: 7a3c4df9b60b9fe586c138f0a2c3cb28
SHA256sum: dd52012419cc6f2a3b159f991300900c9bda747436c5951c160cebc6bbde303b
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk18-res-musiconhold
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17291
Filename: telephony/asterisk18-res-musiconhold_1.8.32.2-3_ramips_24kec.ipk
Size: 18091
MD5Sum: d11adcf1a13812e9f7d77f02f03bef29
SHA256sum: 6b5f5f8368e0bdde22e77dac487c4df72d2de2b07e0e308ca4151f4a64868c40
Description: This package provides support Music On Hold support in Asterisk.
Package: asterisk18-res-phoneprov
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12897
Filename: telephony/asterisk18-res-phoneprov_1.8.32.2-3_ramips_24kec.ipk
Size: 13772
MD5Sum: f6ea0dea90f4b2dd53805651c4e28ec7
SHA256sum: f0c97f87820b57a04bffa423e6e0a724f08fed98ba9a8e74d71c0c7f3f68b813
Description: This package provides support Phone provisioning application for the asterisk internal http server in Asterisk.
Package: asterisk18-res-pktccops
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14400
Filename: telephony/asterisk18-res-pktccops_1.8.32.2-3_ramips_24kec.ipk
Size: 15268
MD5Sum: cef4cee569b7bb19e2c3a9584ecd417b
SHA256sum: 2ec2b0530811ff51495508ec592cf046bafdaefcb0e347ad942465260cbf46ac
Description: This package provides support simple client/server model for supporting policy control over QoS signaling protocols in Asterisk.
Package: asterisk18-res-smdi
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16572
Filename: telephony/asterisk18-res-smdi_1.8.32.2-3_ramips_24kec.ipk
Size: 17458
MD5Sum: f731e2924901a8f9e9863eb5c58f593e
SHA256sum: af6ca1fad6be6ca196c0d0e95039516db68433e20e076df97c8f24ebf63e8a5b
Description: This package provides support Simple Message Desk Interface capability in Asterisk.
Package: asterisk18-res-srtp
Version: 1.8.32.2-3
Depends: libc, asterisk18, libsrtp
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5605
Filename: telephony/asterisk18-res-srtp_1.8.32.2-3_ramips_24kec.ipk
Size: 6390
MD5Sum: 9bad92e8d6ef577dbedec59e2a1cd97b
SHA256sum: 6ca7ce6df67c065530ceb84b24636307559f2734382a218be490a8af02ae5773
Description: This package provides support Secure RTP in Asterisk.
Package: asterisk18-res-timing-pthread
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4743
Filename: telephony/asterisk18-res-timing-pthread_1.8.32.2-3_ramips_24kec.ipk
Size: 5501
MD5Sum: f57eedc552b275cfb1b105ef8eccd5df
SHA256sum: 2fe19e042456a4fca41ad85ecb1513edf476f226648cd7cd51586475616ad5c0
Description: This package provides support in Asterisk.
Package: asterisk18-res-timing-timerfd
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4043
Filename: telephony/asterisk18-res-timing-timerfd_1.8.32.2-3_ramips_24kec.ipk
Size: 4808
MD5Sum: e14e25d3051e3b0e204030a377398b8e
SHA256sum: 2a633765d978c265b809d45a1493f100f11c56bbb914a3fb8104e08eb606dc6f
Description: This package provides support in Asterisk.
Package: asterisk18-sounds
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1392553
Filename: telephony/asterisk18-sounds_1.8.32.2-3_ramips_24kec.ipk
Size: 1393833
MD5Sum: be105fee38c84ccbeecf353cdbe5b929
SHA256sum: 676e3a1ac4f56c5490591cbccf1727a84201aa8a350d36a56441e1d1a383230f
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
This package provides sounds for Asterisk.
Package: asterisk18-voicemail
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 601921
Filename: telephony/asterisk18-voicemail_1.8.32.2-3_ramips_24kec.ipk
Size: 602809
MD5Sum: 2b8d8f5fdfad67f6a6b23dde1da65e2e
SHA256sum: 78ea1cdab84f2439b4d00d95b14e60dc4b65fa597da8041f7815043e3529b31b
Description: This package provides support voicemail related modules in Asterisk.
Package: asterisk18
Version: 1.8.32.2-3
Depends: libc, libopenssl, libncurses, libpopt, libpthread, zlib
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1041211
Filename: telephony/asterisk18_1.8.32.2-3_ramips_24kec.ipk
Size: 1040832
MD5Sum: cc3de3917ac1789c3ff1aa92a693448f
SHA256sum: b9e2b45232030b70573c9561cf2656d7ff4c079afad2b1c70dc3836a9bf33cc8
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
Package: baresip-mod-alsa
Version: 0.4.12-2
Depends: libc, baresip, alsa-lib
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3376
Filename: telephony/baresip-mod-alsa_0.4.12-2_ramips_24kec.ipk
Size: 4130
MD5Sum: 249c93db1ae5b780e767909af9301d5e
SHA256sum: f23b80661b27beac2996775a27283c66cc5274c26fc8d8b8e637129ace544b33
Description: baresip ALSA audio driver module
Package: baresip-mod-avcodec
Version: 0.4.12-2
Depends: libc, baresip, libffmpeg-full
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7365
Filename: telephony/baresip-mod-avcodec_0.4.12-2_ramips_24kec.ipk
Size: 8186
MD5Sum: 142367e8f38d4a4fbf28eb1e6ae92ba9
SHA256sum: 080cb670479b23aaa4a091a1ffc1c2a630a5fadfdd98f82f7ba0be8fcadf7c5e
Description: baresip FFmpeg video codecs module
Package: baresip-mod-avformat
Version: 0.4.12-2
Depends: libc, baresip, libffmpeg-full
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3209
Filename: telephony/baresip-mod-avformat_0.4.12-2_ramips_24kec.ipk
Size: 3965
MD5Sum: 34ad683b19f2edd5f354f18cce4ce9ca
SHA256sum: 671fd4dd82214b2542c6c622fee76902161962133d028a88f688256118dcb4ba
Description: baresip FFmpeg video source module
Package: baresip-mod-cons
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2515
Filename: telephony/baresip-mod-cons_0.4.12-2_ramips_24kec.ipk
Size: 3278
MD5Sum: 909f666cfc0cd45a4f8b7b17a0101bd1
SHA256sum: de7587b27f5551b4a922cf096f0c35eed6b8e4559a098fa09652dc3ccf5d4ef0
Description: baresip console UI module
Package: baresip-mod-evdev
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6853
Filename: telephony/baresip-mod-evdev_0.4.12-2_ramips_24kec.ipk
Size: 7596
MD5Sum: 13dfa3488e5fd9a148ed653430a121bd
SHA256sum: 16981248467de04029b8695add5edfd70d79df69c521aa0f42fe3063fd119197
Description: baresip input event device UI module
Package: baresip-mod-g711
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1695
Filename: telephony/baresip-mod-g711_0.4.12-2_ramips_24kec.ipk
Size: 2466
MD5Sum: 08c3d61a9dd5c10dbc445f2af3865d14
SHA256sum: 649fdf6f0d710dae64d70855239cbbe752d5af746b68262925b16cc3c4d0fc4c
Description: baresip G.711 audio codec module
Package: baresip-mod-g722
Version: 0.4.12-2
Depends: libc, baresip, libspandsp
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1690
Filename: telephony/baresip-mod-g722_0.4.12-2_ramips_24kec.ipk
Size: 2472
MD5Sum: eb906480c8efc2e50ab4f02f0dc61bfa
SHA256sum: a26f1d7b8ca1c4f17889ee9c4cff62e3c106f7d51118ce2440495c2840ea7f09
Description: baresip G.722 audio codec module
Package: baresip-mod-oss
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2713
Filename: telephony/baresip-mod-oss_0.4.12-2_ramips_24kec.ipk
Size: 3490
MD5Sum: 7dda0c8e2e01b64c57c9ba0d47008825
SHA256sum: 9b73751220a6d63658b24160e635b36d77502003ba01af696ccd798223c04a41
Description: baresip OSS audio driver module
Package: baresip-mod-speex
Version: 0.4.12-2
Depends: libc, baresip, libspeex
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3993
Filename: telephony/baresip-mod-speex_0.4.12-2_ramips_24kec.ipk
Size: 4712
MD5Sum: 71733de3d8b431809ee2afee6f8f9b0d
SHA256sum: 5e42956d24f9f2c2041008904fbde9ab4f7d7ef98c8a30b88f7928a598a74507
Description: baresip Speex audio codec module
Package: baresip-mod-stdio
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2112
Filename: telephony/baresip-mod-stdio_0.4.12-2_ramips_24kec.ipk
Size: 2889
MD5Sum: 7dcf837a67bc600642af0273fb3936ca
SHA256sum: 36a3c0692a0151adc1bd56826c912d9f1643e82274aa3f6f09e20f026980685b
Description: baresip standard I/O UI module
Package: baresip-mod-uuid
Version: 0.4.12-2
Depends: libc, baresip, libuuid
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1929
Filename: telephony/baresip-mod-uuid_0.4.12-2_ramips_24kec.ipk
Size: 2707
MD5Sum: 102fa180a4a14baa7a1aae75c7628c51
SHA256sum: 91499bf0472cafcd89ac2f776cb4ffb2be3295c7fbf4f105cd4a6ee2456f828f
Description: baresip UUID module
Package: baresip-mod-v4l2
Version: 0.4.12-2
Depends: libc, baresip, libv4l
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3773
Filename: telephony/baresip-mod-v4l2_0.4.12-2_ramips_24kec.ipk
Size: 4519
MD5Sum: 9105ea0b1e7d173da39a74a1cef503d0
SHA256sum: cd49cc7e46eb91d48fc42e4b51286190398a457406b1e5cd22dcf50710ac1fa5
Description: baresip Video4Linux2 video source module
Package: baresip-mod-v4l
Version: 0.4.12-2
Depends: libc, baresip, libv4l
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2532
Filename: telephony/baresip-mod-v4l_0.4.12-2_ramips_24kec.ipk
Size: 3312
MD5Sum: 7c6027785f4e447bfa0fba6259925b52
SHA256sum: 3274a9ee3356c387c96d904b786a38a6abcc1c92c55e26ba88927779ffb87ccb
Description: baresip Video4Linux video source module
Package: baresip
Version: 0.4.12-2
Depends: libc, libre, librem, libpthread
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 209006
Filename: telephony/baresip_0.4.12-2_ramips_24kec.ipk
Size: 209726
MD5Sum: 8482dff89d8eeb20062cec52aece3d7b
SHA256sum: ebdd3fc570b7a7147c11bb729502235d3f0c8a79a8b138980b4c3797438a06b6
Description: Portable and modular SIP User-Agent with A/V support
Package: bcg729
Version: 1.0.0-1
Depends: libc
Source: feeds/telephony/libs/bcg729
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23192
Filename: telephony/bcg729_1.0.0-1_ramips_24kec.ipk
Size: 24097
MD5Sum: eac61feb3a12fb249ce0c37ce237f8d9
SHA256sum: 85e28de092c9770aa4745a539761b8625b10cc44f3ce6fbe77f2fc4667c7b473
Description: Bcg729 is a software G729A encoder and decoder library written in C, developed
by Belledonne Communications, the company supporting the Linphone project.
It was written from scratch and is NOT a derivative work of ITU reference
source code in any kind.
Package: dahdi-cfg
Version: 2.10.0.1-1
Depends: libc, kmod-dahdi, libpthread
Source: feeds/telephony/libs/dahdi-tools
License: GPL-2.0
LicenseFiles: LICENSE
Section: utils
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34742
Filename: telephony/dahdi-cfg_2.10.0.1-1_ramips_24kec.ipk
Size: 35403
MD5Sum: 6dcb6e8af76cf490eb875d958678940e
SHA256sum: 5a06da4e51b2e922e008fc26a40f8772f9ccc636c1b6f3311bc66c55762e3371
Description: DAHDI tools dahdi_cfg, dahdi_scan and fxotune
Package: dahdi-monitor
Version: 2.10.0.1-1
Depends: libc, kmod-dahdi
Source: feeds/telephony/libs/dahdi-tools
License: GPL-2.0
LicenseFiles: LICENSE
Section: utils
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10310
Filename: telephony/dahdi-monitor_2.10.0.1-1_ramips_24kec.ipk
Size: 11110
MD5Sum: 4b94b46b75ccdccc7b513e08cf7ac201
SHA256sum: 6392d1a9542b78d830790179f7d6a28fd6e47cc50c2cda880c87a9a030eb7d8a
Description: DAHDI tools dahdi_monitor, dahdi_speed and dahdi_test
Package: dahdi-tools-libtonezone
Version: 2.10.0.1-1
Depends: libc, kmod-dahdi
Source: feeds/telephony/libs/dahdi-tools
License: GPL-2.0
LicenseFiles: LICENSE
Section: libs
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9838
Filename: telephony/dahdi-tools-libtonezone_2.10.0.1-1_ramips_24kec.ipk
Size: 10500
MD5Sum: c54dde64e98592a79fc7b16594fb5818
SHA256sum: 1c2dea19457bd51c7c8b2c34a444bfd83d846e2dedfa266e6d059cf05704fce9
Description: DAHDI tonezone library
Package: kamailio3-mod-acc
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20388
Filename: telephony/kamailio3-mod-acc_3.3.7-9_ramips_24kec.ipk
Size: 21173
MD5Sum: 88daf926a765ac60c6c33f905bcce85e
SHA256sum: 0115e1c3e317cd9b6736c47c3778dbe978a0431c278250ae220de5950cda798c
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-alias-db
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-db-sqlite
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4866
Filename: telephony/kamailio3-mod-alias-db_3.3.7-9_ramips_24kec.ipk
Size: 5638
MD5Sum: c36c00cd6d2987bbd2bf022bf89f6ad3
SHA256sum: 4f91e0909c5f124713611069974dfee95ab2819d325b2e4c56d009a5f3fa995f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-auth-db
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-auth, kamailio3-mod-db-sqlite
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8514
Filename: telephony/kamailio3-mod-auth-db_3.3.7-9_ramips_24kec.ipk
Size: 9315
MD5Sum: c154e8835f0cac58368a39ad3c5235ae
SHA256sum: c7a3a57f7920b71a026beffd93485d8fd5b7237abe7c517caab19e8437664728
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-auth-diameter
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17687
Filename: telephony/kamailio3-mod-auth-diameter_3.3.7-9_ramips_24kec.ipk
Size: 18502
MD5Sum: b0b0d3c37fdb51f3caa86ee6753b3f9b
SHA256sum: c7b9e6d71e896e48e81d69db8b0d3a0fd09f052f3514e0bd00fd9716b3275e4f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-auth
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18777
Filename: telephony/kamailio3-mod-auth_3.3.7-9_ramips_24kec.ipk
Size: 19583
MD5Sum: 2aef4321dc259f306c3955ec9b4b4658
SHA256sum: c8ebc64337c2fc871643e1fd5fc686f79c30c6684a9a7a65dc9079da7929bc85
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-avpops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29261
Filename: telephony/kamailio3-mod-avpops_3.3.7-9_ramips_24kec.ipk
Size: 30002
MD5Sum: cfe4668251f2d32cb4801bd4df739f87
SHA256sum: 1dea6c6414b9fb3615bb8397f4a0ab3ecb821c919b531f48b33bd651fd56f635
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-benchmark
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6350
Filename: telephony/kamailio3-mod-benchmark_3.3.7-9_ramips_24kec.ipk
Size: 7158
MD5Sum: 6bcb0daf270839dc7516b54629d9f689
SHA256sum: 21160ebe99af1339dcc4b8fc0e5ea10af89562146d82f29aba10fe9d1e1bfe8d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-cfg-db
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-db-sqlite
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6649
Filename: telephony/kamailio3-mod-cfg-db_3.3.7-9_ramips_24kec.ipk
Size: 7452
MD5Sum: 75edd1d340c37b7c3a3667a3f62ea4ed
SHA256sum: fe2bdc47b2e2d4c5d06d5d84db3a9f2cdfc5e962301bebfdf262f2fe19ba83e9
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-cfg-rpc
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4707
Filename: telephony/kamailio3-mod-cfg-rpc_3.3.7-9_ramips_24kec.ipk
Size: 5478
MD5Sum: 84ef833a8bf498fcd257ad0356fe8fae
SHA256sum: 67574585e996757e2f9482da48d5f9cfc6746b54d1f22f367102bf41afabf008
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-cfgutils
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9438
Filename: telephony/kamailio3-mod-cfgutils_3.3.7-9_ramips_24kec.ipk
Size: 10229
MD5Sum: 6027d1fc8364a5d1a0da81edfb89dc2a
SHA256sum: 2ae06241b6a6fe2f03dad54231b1fc417aede0debd5a6f094628408621a39972
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ctl
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37455
Filename: telephony/kamailio3-mod-ctl_3.3.7-9_ramips_24kec.ipk
Size: 38284
MD5Sum: 5c795d6a8db4395398b3af9fc9fd6a79
SHA256sum: 3d4d281ebc8ce8d1ccf285136a86c5b67e0b54d857c318511fe88bfa49f1e89f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-flatstore
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12119
Filename: telephony/kamailio3-mod-db-flatstore_3.3.7-9_ramips_24kec.ipk
Size: 12921
MD5Sum: a3efd415b0de8883f8b85e48a817805e
SHA256sum: c2c249d404d306e36eac2d58b51a96f71ad46da8ad599964d8f766ee36602cf9
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-mysql
Version: 3.3.7-9
Depends: libc, kamailio3, libmysqlclient
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27460
Filename: telephony/kamailio3-mod-db-mysql_3.3.7-9_ramips_24kec.ipk
Size: 28275
MD5Sum: e6338ece3caac0f923918319f1cd9c9d
SHA256sum: e5dc77286d63c39f75e743d53be2e33b95e7ad855d3c1f625805c0246f599a05
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-postgres
Version: 3.3.7-9
Depends: libc, kamailio3, libpq
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34468
Filename: telephony/kamailio3-mod-db-postgres_3.3.7-9_ramips_24kec.ipk
Size: 35346
MD5Sum: 16e50aceafaeabbe40b5bebd4d43a940
SHA256sum: f613fe89d03a9c5aded6979f410e39167f47d963db9f28fe00000683130e8911
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-sqlite
Version: 3.3.7-9
Depends: libc, kamailio3, libsqlite3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11883
Filename: telephony/kamailio3-mod-db-sqlite_3.3.7-9_ramips_24kec.ipk
Size: 12650
MD5Sum: 87c193e9a89cc1fba595b88462d713a4
SHA256sum: a73edd8230eb75a56370075061db6cdbff38ea5c16d59ae52b9ee81f41b1fedb
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-text
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26335
Filename: telephony/kamailio3-mod-db-text_3.3.7-9_ramips_24kec.ipk
Size: 27033
MD5Sum: b080d8f3b08102afae9acefced1da93a
SHA256sum: 6e0561bed44551e23d5727d62c45e1631aa53bccb539f9d84a4c33ee0e4869c3
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-unixodbc
Version: 3.3.7-9
Depends: libc, kamailio3, unixodbc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13470
Filename: telephony/kamailio3-mod-db-unixodbc_3.3.7-9_ramips_24kec.ipk
Size: 14247
MD5Sum: 2ed7e9db0d03083a981cb7487868aac0
SHA256sum: c7774642b024eeb2f810bd95077caa13d3543503e7a4c2b729182d59436699e7
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-dialog
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-rr, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62869
Filename: telephony/kamailio3-mod-dialog_3.3.7-9_ramips_24kec.ipk
Size: 63677
MD5Sum: f7e1c5ae97343741d1d7f2c2af10a6c0
SHA256sum: f7a162347d8adb57295c4e275556f12453f56f0c5afe30c4e7f0d7284578ef6b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-dialplan
Version: 3.3.7-9
Depends: libc, kamailio3, libpcre
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18705
Filename: telephony/kamailio3-mod-dialplan_3.3.7-9_ramips_24kec.ipk
Size: 19473
MD5Sum: 53755534d702c6ad7bf0a0dc88b9af9f
SHA256sum: 537272063589939c4bd179025369ce6126f18c9fc0e6b4f9a6cb32648ae33f96
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-dispatcher
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10571
Filename: telephony/kamailio3-mod-dispatcher_3.3.7-9_ramips_24kec.ipk
Size: 11337
MD5Sum: 0984c34fc652b5edea57f83e329f5de8
SHA256sum: 0fa454c5e2208ee59030fd2e2f3e566c7f2e658ecedfcf94b5a8c4551a09a3e1
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-diversion
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2728
Filename: telephony/kamailio3-mod-diversion_3.3.7-9_ramips_24kec.ipk
Size: 3512
MD5Sum: c6f21444082054c9bb71640536109566
SHA256sum: f54e75ccdb9d1befded59f02b446f52ece9849672ffb336392ca8b1d87d24005
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-domain
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11819
Filename: telephony/kamailio3-mod-domain_3.3.7-9_ramips_24kec.ipk
Size: 12582
MD5Sum: b15d7e316cce2562e6a3e09facdea4da
SHA256sum: a2ebc5ac22d9bf98a324b60b0686f106f01b8504d535de9df21838b6bcf91641
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-domainpolicy
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13970
Filename: telephony/kamailio3-mod-domainpolicy_3.3.7-9_ramips_24kec.ipk
Size: 14764
MD5Sum: 6a7c74a76bdd656c0ccb8bb451822a7f
SHA256sum: a58f2172aca6bec0773bbb9dc9385e06ea5d796f53ea810cf9481c9c2aab69fa
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-drouting
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28053
Filename: telephony/kamailio3-mod-drouting_3.3.7-9_ramips_24kec.ipk
Size: 28835
MD5Sum: f1c1663484eed4ce979a1a649547c828
SHA256sum: 74aef8f5bb099650ad5af9c6ca4f4f4beac6894c34d19f3df4bbb83f2639a67a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-enum
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11260
Filename: telephony/kamailio3-mod-enum_3.3.7-9_ramips_24kec.ipk
Size: 11966
MD5Sum: a9a99244c1f547facb1ceee2af75d53f
SHA256sum: 7e8e3f9ac03295bfbccfdad0939e74fa0da6cd6122bbe37f4652c7eaf9074cc1
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-exec
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12073
Filename: telephony/kamailio3-mod-exec_3.3.7-9_ramips_24kec.ipk
Size: 12867
MD5Sum: 4cfa8f8a98e0d99b15047c4739995105
SHA256sum: 96e14043c3b44e3c11d6f72b54b1db4510b06c95689edad5b8c5fb2877acb667
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-group
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7725
Filename: telephony/kamailio3-mod-group_3.3.7-9_ramips_24kec.ipk
Size: 8517
MD5Sum: f367123a886ae4db63dbf56ddba554ca
SHA256sum: c24d597ecd397344140b280163d58284a5741d340f2deea3732f0817c8abd3fc
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-h350
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-ldap, libopenldap
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7327
Filename: telephony/kamailio3-mod-h350_3.3.7-9_ramips_24kec.ipk
Size: 8133
MD5Sum: dcd56c7125735cad27f59b7620b7101e
SHA256sum: 1e2352e0bdbe12c90c75369ab5f2240289479325f79f9b3c9b7ca908e4ac0798
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-htable
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21321
Filename: telephony/kamailio3-mod-htable_3.3.7-9_ramips_24kec.ipk
Size: 22061
MD5Sum: 3db6384de0db2733273f40626c3185d9
SHA256sum: 125818115a24b5ef964b5429684663a641deb7dcf7546ad361b1983d51d70193
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-imc
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-db-mysql, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22277
Filename: telephony/kamailio3-mod-imc_3.3.7-9_ramips_24kec.ipk
Size: 23023
MD5Sum: 56da95b6f66c54fead99555fbda03f53
SHA256sum: 23dc00e3c81031ec417af8eb86ce8ead23e9931853879c4c3958542811e892c3
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ipops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12864
Filename: telephony/kamailio3-mod-ipops_3.3.7-9_ramips_24kec.ipk
Size: 13609
MD5Sum: 948bc11ac9e6656b918cf22cf11c5ec4
SHA256sum: 617302bc00c730404cf360c8541ebbe35283cda19375990d05f3a6f58d8d55ae
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-kex
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12747
Filename: telephony/kamailio3-mod-kex_3.3.7-9_ramips_24kec.ipk
Size: 13538
MD5Sum: 5910da2ca87fc70105f2c740dbc378c0
SHA256sum: 1928b04578d589a2030e8e10b99cb1cf9c6df53d54d252e73b4388b775109dff
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-lcr
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm, libpcre
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29425
Filename: telephony/kamailio3-mod-lcr_3.3.7-9_ramips_24kec.ipk
Size: 30175
MD5Sum: 1aa09307c565b4b3e58a845eeb1afaae
SHA256sum: f6c5949c3e2dc022c88571a6273714117d2ec836640b340712b0964ff998bd89
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ldap
Version: 3.3.7-9
Depends: libc, kamailio3, libopenldap
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16461
Filename: telephony/kamailio3-mod-ldap_3.3.7-9_ramips_24kec.ipk
Size: 17284
MD5Sum: 56d44506d6f3be26b31f0744e8212c06
SHA256sum: 8f32500fda0387cb5509c5397ab86df0c5520bb258bd3dffd0e7ec1caeec9032
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-maxfwd
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4789
Filename: telephony/kamailio3-mod-maxfwd_3.3.7-9_ramips_24kec.ipk
Size: 5539
MD5Sum: c3f6647f6d2a088b5b8a987704a8467c
SHA256sum: c7669f030464c89655af8b4ae2bc4596927b1731b6815c0b76590d0833cfe047
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mediaproxy
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18804
Filename: telephony/kamailio3-mod-mediaproxy_3.3.7-9_ramips_24kec.ipk
Size: 19565
MD5Sum: 50eb63528a5cb98d1a13dab81ecd0f45
SHA256sum: ef705f331aade8c1b937d8ff7e93ae4aed5fa32bd98424d7369be72d75b54711
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mi-datagram
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17805
Filename: telephony/kamailio3-mod-mi-datagram_3.3.7-9_ramips_24kec.ipk
Size: 18614
MD5Sum: 3a27b85477c7f861d44775d7b1d4be24
SHA256sum: eb42e7b15805aeb4859ac121277ba1e3c28f1889ea048839b484d78c0aaaea1a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mi-fifo
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14304
Filename: telephony/kamailio3-mod-mi-fifo_3.3.7-9_ramips_24kec.ipk
Size: 15046
MD5Sum: 40d608ae3a3b70db3e45ae465641c4be
SHA256sum: e999213cc86f5780049de297ec8ec6bdaa545161b44ff8a4cb22c7a1a829de9d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mi-rpc
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6244
Filename: telephony/kamailio3-mod-mi-rpc_3.3.7-9_ramips_24kec.ipk
Size: 7050
MD5Sum: 9b28568b4b97de3eb81bad9009a17b83
SHA256sum: 3745ff5a57d49eeb4b5c50cabd2ca298304432657819c00e3f165208f6c98191
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-msilo
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21136
Filename: telephony/kamailio3-mod-msilo_3.3.7-9_ramips_24kec.ipk
Size: 21904
MD5Sum: 5e980b1154620db2ebe0a206a368b95c
SHA256sum: 9cbf3ab3d5f77e45831eb25b0789bd6a249fb501ff8c11feb371eafb4c9b16ad
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-nat-traversal
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog, kamailio3-mod-sl, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17323
Filename: telephony/kamailio3-mod-nat-traversal_3.3.7-9_ramips_24kec.ipk
Size: 18080
MD5Sum: c9e4b831eab405f4eb9b0430ede4d283
SHA256sum: 343dc5d845354a025a3e44dc18288c7cb73e49793ae44527b430c99862762bcc
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-nathelper
Version: 3.3.7-9
Depends: libc, kamailio3, rtpproxy
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21421
Filename: telephony/kamailio3-mod-nathelper_3.3.7-9_ramips_24kec.ipk
Size: 22165
MD5Sum: 2a0a14d844fc77a5ea35589d0919f652
SHA256sum: 73068bf850a61a74bfb83d032c8761c4d53593f444403afff12272f74ffa6ea7
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-path
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-rr
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5015
Filename: telephony/kamailio3-mod-path_3.3.7-9_ramips_24kec.ipk
Size: 5779
MD5Sum: 772ec88ccce56fa07a3ba263865288a0
SHA256sum: 0abebbaaff9c75e686018aad7317b165e1eec3b04e7efa4acc15c0b519d78c97
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pdt
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13213
Filename: telephony/kamailio3-mod-pdt_3.3.7-9_ramips_24kec.ipk
Size: 13972
MD5Sum: 124ba0d904236bf944f06338a85a8918
SHA256sum: 9a57df4ddd4bb01b4cec614bdf9acdda53f32593520ce9329ccd112f2f640859
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-permissions
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27924
Filename: telephony/kamailio3-mod-permissions_3.3.7-9_ramips_24kec.ipk
Size: 28666
MD5Sum: dc4eb72773462ca03e79263a868b45f4
SHA256sum: f373c2bee7251a8a6a86f752be2cf29e66e3c9d97a309f20355af49381c36d1c
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pike
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10525
Filename: telephony/kamailio3-mod-pike_3.3.7-9_ramips_24kec.ipk
Size: 11286
MD5Sum: ec8d5fdbbb9ee8e865b6bb426e5a36db
SHA256sum: e44964c98e6a2907aa4e31b3d6ba389ac8f08b0889698e39cef39aadae875316
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence-dialoginfo
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6955
Filename: telephony/kamailio3-mod-presence-dialoginfo_3.3.7-9_ramips_24kec.ipk
Size: 7748
MD5Sum: df693b5b7eb9fb4f347047fa671cab34
SHA256sum: 30431754ad6e9f9d2644bde5132622dec79bcf4f6976ecab91815e9d66aff6d3
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence-mwi
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3329
Filename: telephony/kamailio3-mod-presence-mwi_3.3.7-9_ramips_24kec.ipk
Size: 4080
MD5Sum: fe591385cff5ffef414c2635df531fa7
SHA256sum: c0f2057ea8467ae9b43cbe56c71f0402466d266bbd1a9b257036fa20bef955e8
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence-xml
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-xcap-client
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21270
Filename: telephony/kamailio3-mod-presence-xml_3.3.7-9_ramips_24kec.ipk
Size: 22096
MD5Sum: 881877c3cbdd8fc106a3b7546b67bcda
SHA256sum: e87f8fccd08cfa232c519a85a1c381025b803360d3d108c8f4da823ea6a50b6b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl, kamailio3-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84692
Filename: telephony/kamailio3-mod-presence_3.3.7-9_ramips_24kec.ipk
Size: 85428
MD5Sum: a2687136bf579f0fddef5c6fdc6ac5bb
SHA256sum: 81681c346be18758a9e0b8f2d6b2b1d93fff2bb05b4d18fc5789bbbbe2d6ca43
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-bla
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-pua, kamailio3-mod-usrloc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7086
Filename: telephony/kamailio3-mod-pua-bla_3.3.7-9_ramips_24kec.ipk
Size: 7888
MD5Sum: e30ffc933e6add1534ffced4894f060f
SHA256sum: 8d19080fa15843d1c53fb352d3f464dfae032a4644c3d8aea30aa6cbb2b08eef
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-dialoginfo
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog, kamailio3-mod-pua
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10057
Filename: telephony/kamailio3-mod-pua-dialoginfo_3.3.7-9_ramips_24kec.ipk
Size: 10825
MD5Sum: 14c8a3a274c6ac5c1066d9f17587af19
SHA256sum: 443689542b6b680c5728fb4bd40f89d5a829a9741427e7688b4d58996e1819d8
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-mi
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-pua
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6492
Filename: telephony/kamailio3-mod-pua-mi_3.3.7-9_ramips_24kec.ipk
Size: 7289
MD5Sum: 2e6a5fb135527af943e9f19277c8bb18
SHA256sum: 54aa010e65e96dac51c60f62aa5fe0d5236d904e7e818785afac8ad7b80dbbfc
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-usrloc
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-pua, kamailio3-mod-usrloc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6791
Filename: telephony/kamailio3-mod-pua-usrloc_3.3.7-9_ramips_24kec.ipk
Size: 7582
MD5Sum: 9b42597f8f9155ed1f695ac2dbcacfac
SHA256sum: b2e50aed9439518b0e593434e91e775bcddd1c507c04e5159fcc1b936adc921d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-xmpp
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-pua, kamailio3-mod-xmpp
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17786
Filename: telephony/kamailio3-mod-pua-xmpp_3.3.7-9_ramips_24kec.ipk
Size: 18567
MD5Sum: eefd566eb16921b5a6c6fe234669cfb0
SHA256sum: a49fb585f2a144d0feba4383f5b236e4e7c98e7a631efb37eceaaf546512dbef
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45862
Filename: telephony/kamailio3-mod-pua_3.3.7-9_ramips_24kec.ipk
Size: 46691
MD5Sum: c9a4e2f902b4c399ca211aa654572af1
SHA256sum: 3ad42b080f195a2a37ce4a454d91fedc5197c812b8a21243d177b8b0cbdc8b55
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pv
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51411
Filename: telephony/kamailio3-mod-pv_3.3.7-9_ramips_24kec.ipk
Size: 52186
MD5Sum: 32454ffe4d9faa33f317a150bd401543
SHA256sum: c4ff4422e32ea047f98463d6bbbf29a69a61b1f14dc0b0a3988ceef33b1368b2
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-qos
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14682
Filename: telephony/kamailio3-mod-qos_3.3.7-9_ramips_24kec.ipk
Size: 15456
MD5Sum: 43b78af7fa506c3a967fced18e1a266a
SHA256sum: eae6cd5030a283fb53514c6426d45bb1393be6bb98c0661e8955540265bf3817
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ratelimit
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14072
Filename: telephony/kamailio3-mod-ratelimit_3.3.7-9_ramips_24kec.ipk
Size: 14824
MD5Sum: b2081b7b170eae61ab3e386ea66d0423
SHA256sum: a73d203c961c66ca3a607b4ad2dc3d359558e86ef0e002c8d607e864b24826e2
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-regex
Version: 3.3.7-9
Depends: libc, kamailio3, libpcre
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8288
Filename: telephony/kamailio3-mod-regex_3.3.7-9_ramips_24kec.ipk
Size: 9096
MD5Sum: 5636bc92cfd7a6c520c0adaac8b162d0
SHA256sum: a49c0403f8bc06de7e71fce999605255834fe456ea0fe5c88ba9ab525fb02d3f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-registrar
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-usrloc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28166
Filename: telephony/kamailio3-mod-registrar_3.3.7-9_ramips_24kec.ipk
Size: 28947
MD5Sum: 467d505715f94540d084ad0bc0cc6007
SHA256sum: 98035503b0d9374b8c1f6cb10d1af70ace759f80708b01d52e2ff71782ec7b3f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rls
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-pua, kamailio3-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53753
Filename: telephony/kamailio3-mod-rls_3.3.7-9_ramips_24kec.ipk
Size: 54550
MD5Sum: a261474bbe816f1148bb516ff4d75a8e
SHA256sum: aa21811d3d6b2905869e9a5a237d05b7edb72b46e6cd96a7cd2350c8fdf2f55a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rr
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15829
Filename: telephony/kamailio3-mod-rr_3.3.7-9_ramips_24kec.ipk
Size: 16575
MD5Sum: 267011fea0de17568a25d55ba1883845
SHA256sum: 5bdf8433edef7663d02b3bbb582484bb4b9ff0fd69e2e6f39b54a539c8e66af6
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rtimer
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4174
Filename: telephony/kamailio3-mod-rtimer_3.3.7-9_ramips_24kec.ipk
Size: 4931
MD5Sum: 629919dbc41f3dc2a370c3491bdf999c
SHA256sum: 18f2a42d422399926f479ee057c0a6528c51e444f859fdc7890288a2ac978d6a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rtpproxy
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24286
Filename: telephony/kamailio3-mod-rtpproxy_3.3.7-9_ramips_24kec.ipk
Size: 25066
MD5Sum: b50af62b95f24d27e3795454a9e64d30
SHA256sum: a464e1f6a62bc74dc77f136106eefd2647861e62d0e950255dcc7fd914fd7673
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sanity
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10911
Filename: telephony/kamailio3-mod-sanity_3.3.7-9_ramips_24kec.ipk
Size: 11707
MD5Sum: 508a0895e628a54efeb45b0c2f0a536a
SHA256sum: b225a44587f81f6a0b5033b6b9b54ba3bc4a66498fd8cb6f1b0402b691b44bae
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sipcapture
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17841
Filename: telephony/kamailio3-mod-sipcapture_3.3.7-9_ramips_24kec.ipk
Size: 18654
MD5Sum: 5650452bdf248eb7c1ca0ce71e9d2cc2
SHA256sum: f8df5d8dc8d9654d91861854adbb7c4fe083786351796cb5ed23b74f6b5e8604
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-siptrace
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18465
Filename: telephony/kamailio3-mod-siptrace_3.3.7-9_ramips_24kec.ipk
Size: 19253
MD5Sum: fbd5e5508ab25f274ac74dd60fd0f9ec
SHA256sum: 46f6f298fefbc081b6f667046d2b5ef8292085d082d5535cf1b8045fe15c70c5
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-siputils
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20827
Filename: telephony/kamailio3-mod-siputils_3.3.7-9_ramips_24kec.ipk
Size: 21617
MD5Sum: c94f648f4f98fb0598d2b53424b364fa
SHA256sum: 110520ea33f52b947e248f91c993755152a73eec69714b0e579e259efe52e90b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sl
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12012
Filename: telephony/kamailio3-mod-sl_3.3.7-9_ramips_24kec.ipk
Size: 12789
MD5Sum: 81c3d20aa2b1fd3e27043fcbb39da058
SHA256sum: 26671538210635ab6d908590413d324e6d1855b469245fddb64fcb0fb6648eba
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sms
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28078
Filename: telephony/kamailio3-mod-sms_3.3.7-9_ramips_24kec.ipk
Size: 28877
MD5Sum: 36376f30f0ecb1a149344e62096ba3bb
SHA256sum: 208b76ba0f72594744d8f45ab7b2482e8006e66a6645f659fb79a23424c942ee
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-speeddial
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4940
Filename: telephony/kamailio3-mod-speeddial_3.3.7-9_ramips_24kec.ipk
Size: 5700
MD5Sum: 39961d2cf730f6e644de63e15b281181
SHA256sum: 5c1e2bade9a6aa283860200d30e0df170d3d8dce77163dafa1af5c8b4e314487
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sqlops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13947
Filename: telephony/kamailio3-mod-sqlops_3.3.7-9_ramips_24kec.ipk
Size: 14703
MD5Sum: be37b9055b6371747f487b07ee104c9f
SHA256sum: 96a8f9217f86a018d7215045ef235fa25e365cd6af63a7a1bb70592dcdd5b809
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sst
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9750
Filename: telephony/kamailio3-mod-sst_3.3.7-9_ramips_24kec.ipk
Size: 10521
MD5Sum: 56583f91a2d02aa89b0a2f111d652e1a
SHA256sum: b94f40042e448cfc834a6a49211e2cbfcbef06342e39effb99462d6a81a37c58
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-statistics
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4121
Filename: telephony/kamailio3-mod-statistics_3.3.7-9_ramips_24kec.ipk
Size: 4880
MD5Sum: ca651a8cf2452ccf7e8c71b107ddefb7
SHA256sum: 60c2b5561addd12c0a39ba073070697b5e4efcf2518c19ec535a23f2b8e21fcf
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-textops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21356
Filename: telephony/kamailio3-mod-textops_3.3.7-9_ramips_24kec.ipk
Size: 22128
MD5Sum: 78eaa8d3c6c79df5d43f6f7398a69f9a
SHA256sum: 621e6722ccd1acea8200389d47cb80795689700365e5e6b7919e80812f3670fd
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-tls
Version: 3.3.7-9
Depends: libc, kamailio3, libopenssl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54641
Filename: telephony/kamailio3-mod-tls_3.3.7-9_ramips_24kec.ipk
Size: 55357
MD5Sum: 8910ceef25240269ebeaba1a487b8b4c
SHA256sum: cff18df5b4ee07bb50429516d68734042607e469790cc21efcdd1459122e626f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-tm
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128793
Filename: telephony/kamailio3-mod-tm_3.3.7-9_ramips_24kec.ipk
Size: 129482
MD5Sum: 10cb77c49b36e8817e2bfb41f3327e9a
SHA256sum: 9b261ec78fec40c66853797eea11e8a1c9f0ba3d2e68d02eb508a8327128c185
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-tmx
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14658
Filename: telephony/kamailio3-mod-tmx_3.3.7-9_ramips_24kec.ipk
Size: 15387
MD5Sum: 901c424e22e93e88ad082c708c71cb11
SHA256sum: 317fd0f44c310325a33ed087a0044d6349239f409e45f47e54ddc57466da167f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-uac-redirect
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7716
Filename: telephony/kamailio3-mod-uac-redirect_3.3.7-9_ramips_24kec.ipk
Size: 8509
MD5Sum: 3c33b1028bd41601c1042896af33bf4d
SHA256sum: 8dc6f3544dbc5b66b41ddd0377ab6529888d5965b5843fa90522a3e3376eef3b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-uac
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31731
Filename: telephony/kamailio3-mod-uac_3.3.7-9_ramips_24kec.ipk
Size: 32490
MD5Sum: 1880b914cad3e73f3233d506cf6994d4
SHA256sum: a887559cb8d4fb70eca70caadccdeeb762d15895bec9072d3b433494caf2df20
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-uri-db
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5581
Filename: telephony/kamailio3-mod-uri-db_3.3.7-9_ramips_24kec.ipk
Size: 6300
MD5Sum: 729740c01d172520b1aede23d3817b7b
SHA256sum: 63cdddeac1ea3fc5571f41bdb06108aa9fb875d9cec64e3cc4a35ef4186b1333
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-userblacklist
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9412
Filename: telephony/kamailio3-mod-userblacklist_3.3.7-9_ramips_24kec.ipk
Size: 10190
MD5Sum: f8dd90c858087b24d8d5665ddb57c094
SHA256sum: 6e758599e4babe25c981eddd3f8a442bb68a22916b62f77ce20b104351fd092d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-usrloc
Version: 3.3.7-9
Depends: libc, kamailio3, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89471
Filename: telephony/kamailio3-mod-usrloc_3.3.7-9_ramips_24kec.ipk
Size: 90242
MD5Sum: 5942b48f5aabf733b3de21679c276d7c
SHA256sum: 76ebb5eb9b197c18b5f6a9677878b27de6dfa1526692b93c9c3c7196780d18e0
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-utils
Version: 3.3.7-9
Depends: libc, kamailio3, libcurl, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16987
Filename: telephony/kamailio3-mod-utils_3.3.7-9_ramips_24kec.ipk
Size: 17779
MD5Sum: 78907416fc4e74669eeb5e81161deecb
SHA256sum: 7ee86d531beea2c5d51bac5160548be8632b6588df941278291806800f48842f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xcap-client
Version: 3.3.7-9
Depends: libc, kamailio3, libcurl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10426
Filename: telephony/kamailio3-mod-xcap-client_3.3.7-9_ramips_24kec.ipk
Size: 11181
MD5Sum: 81bf3aee99cdc150b5feedf86ce7580d
SHA256sum: dc12fbfe74e2de8832e126f53530140e78fe768c81af2952a08b5586b598d1fe
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xlog
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7225
Filename: telephony/kamailio3-mod-xlog_3.3.7-9_ramips_24kec.ipk
Size: 8019
MD5Sum: 51662c95e045635a56e82304e52caa9a
SHA256sum: c4400877fe8a9a91a55d91e19423370c48a87dbd8bf267d696db43fccd4979a0
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xmlrpc
Version: 3.3.7-9
Depends: libc, kamailio3, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17784
Filename: telephony/kamailio3-mod-xmlrpc_3.3.7-9_ramips_24kec.ipk
Size: 18589
MD5Sum: 0e3dd5e421a5a6fdafc7b8c0b958da9e
SHA256sum: 7d3dbc6c6318f1a245b3623f56ce8c516288901a5512d1f381a0b4a358c49e4c
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xmpp
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm, libexpat, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45798
Filename: telephony/kamailio3-mod-xmpp_3.3.7-9_ramips_24kec.ipk
Size: 46624
MD5Sum: b3834ec01462c8ba3e73abc7078155e1
SHA256sum: f2c930b20aae7e7e302fa108e54953e94b6d4feea031f4543037a474345fc097
Description: This package provides support for in Kamailio.
Package: kamailio3
Version: 3.3.7-9
Depends: libc, libncurses, libpthread, libreadline
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 832706
Filename: telephony/kamailio3_3.3.7-9_ramips_24kec.ipk
Size: 833128
MD5Sum: 6c2fef650f8376eaec09fb61972df531
SHA256sum: 06ece740e622f7c4f709d9c215a2005c357c3adab5c91035e13b9985077822ab
Description: Mature and flexible open source SIP server, v3.3.7
Package: kamailio4-mod-acc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32480
Filename: telephony/kamailio4-mod-acc_4.2.3-2_ramips_24kec.ipk
Size: 33277
MD5Sum: 266a0d6f2dc1e3e6179003e33910bb0e
SHA256sum: 7f8fbaf1fd785c313c3e8a5f2651af1142190ba5725dc835028b8024413ddda7
Description: kamailio4 Accounting module
Package: kamailio4-mod-alias-db
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-db-sqlite
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6049
Filename: telephony/kamailio4-mod-alias-db_4.2.3-2_ramips_24kec.ipk
Size: 6811
MD5Sum: dc045c1a10d528a5da1cfd3b946ce6c4
SHA256sum: 3f374af5d845aeb87c3e95b2670520929451dc5d39d18e24ea66f1eee9f00b45
Description: kamailio4 Database-backend aliases module
Package: kamailio4-mod-auth-db
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-auth, kamailio4-mod-db-sqlite
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14139
Filename: telephony/kamailio4-mod-auth-db_4.2.3-2_ramips_24kec.ipk
Size: 14868
MD5Sum: 4fbe805b9a501b8bf520ec9cf768d9ef
SHA256sum: 1046c780bc873eb28b222fa92346edb86a2650b9705307b946ef4e31a3845e98
Description: kamailio4 Database-backend authentication module
Package: kamailio4-mod-auth-diameter
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24242
Filename: telephony/kamailio4-mod-auth-diameter_4.2.3-2_ramips_24kec.ipk
Size: 24942
MD5Sum: 20911bb0183dca12ba2486b03f497fd0
SHA256sum: cb649416f0de27c16878e5204342f55ceb5312cc007167862dc42392739c8a14
Description: kamailio4 Diameter-backend authentication module
Package: kamailio4-mod-auth
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27126
Filename: telephony/kamailio4-mod-auth_4.2.3-2_ramips_24kec.ipk
Size: 27871
MD5Sum: f87a833b269fa36a727ffdf5828e1412
SHA256sum: e8b3aa3a7c8d025dcef7142afd655fc0eab08daa9b25cd6b279bc63899028b5b
Description: kamailio4 Authentication Framework module
Package: kamailio4-mod-avpops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43544
Filename: telephony/kamailio4-mod-avpops_4.2.3-2_ramips_24kec.ipk
Size: 44329
MD5Sum: 353d66d7c32b4a91de53c54a89a4dc24
SHA256sum: 18f82618c813cc2c109ad01405d2c848100c635280b25194c41a9b792e1b556f
Description: kamailio4 AVP operation module
Package: kamailio4-mod-benchmark
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7810
Filename: telephony/kamailio4-mod-benchmark_4.2.3-2_ramips_24kec.ipk
Size: 8572
MD5Sum: 2745f753807c6ca726d42ab85e67c777
SHA256sum: 851e8322e2771086fde60d0d49382a5524f4f92e7dd584bd88868b4a25c580b3
Description: kamailio4 Config benchmark module
Package: kamailio4-mod-cfg-db
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-db-sqlite
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9164
Filename: telephony/kamailio4-mod-cfg-db_4.2.3-2_ramips_24kec.ipk
Size: 9977
MD5Sum: 9e29d8b0f8a21c5a0152104ef2af1e15
SHA256sum: a9633a9ad6d538c55df081153ff28af264d52e75784b8ab63acdec8f2b8cf7ed
Description: kamailio4 Load core and module parameters from database module
Package: kamailio4-mod-cfg-rpc
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4982
Filename: telephony/kamailio4-mod-cfg-rpc_4.2.3-2_ramips_24kec.ipk
Size: 5774
MD5Sum: 4f25901875e4fdb2970a18d36080f627
SHA256sum: bc57c503950ae453c0af5a8b406b150e57f784c8683fb8e34e45744ea28f316d
Description: kamailio4 Update core and module parameters at runtime via RPC interface module
Package: kamailio4-mod-cfgutils
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12546
Filename: telephony/kamailio4-mod-cfgutils_4.2.3-2_ramips_24kec.ipk
Size: 13296
MD5Sum: 401d7cfb7735d31cfa511047f06a36c6
SHA256sum: 2c23021951ff8f55d0dd45d4cfaa5525dd09df75d83c1de035f7526f91b2b4a5
Description: kamailio4 Config utilities module
Package: kamailio4-mod-cnxcc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35666
Filename: telephony/kamailio4-mod-cnxcc_4.2.3-2_ramips_24kec.ipk
Size: 36456
MD5Sum: 852c49080b0829d05ac842bff11ef869
SHA256sum: bae295b2095db601b1676b05584719220aaed2b67ec861bcc9f0f809976d75fe
Description: kamailio4 Limit call duration module
Package: kamailio4-mod-corex
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12680
Filename: telephony/kamailio4-mod-corex_4.2.3-2_ramips_24kec.ipk
Size: 13402
MD5Sum: 820476859ac80046038fd976fea752bb
SHA256sum: 4fba5dbe2ace7536054c5e910c4ef07745481e894a7325df5a9323a6e3ae4585
Description: kamailio4 Legacy functions module
Package: kamailio4-mod-ctl
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52200
Filename: telephony/kamailio4-mod-ctl_4.2.3-2_ramips_24kec.ipk
Size: 52983
MD5Sum: af75d741e1075b7dd6e0a10a83aede81
SHA256sum: 437b7e1b0f499408a895a20713c647a20a97a9211a126d27478ed8a446533586
Description: kamailio4 BINRPC transport interface module
Package: kamailio4-mod-db-flatstore
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16612
Filename: telephony/kamailio4-mod-db-flatstore_4.2.3-2_ramips_24kec.ipk
Size: 17427
MD5Sum: 9f9fa95850c2e75948bedd9b97037cfb
SHA256sum: 6a27f9584d5902e80f7d7db014b00787d257e07427259c09af085dcfc2ff4747
Description: kamailio4 Fast writing-only text database-backed module
Package: kamailio4-mod-db-mysql
Version: 4.2.3-2
Depends: libc, kamailio4, libmysqlclient
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41737
Filename: telephony/kamailio4-mod-db-mysql_4.2.3-2_ramips_24kec.ipk
Size: 42606
MD5Sum: 32d5e65bf24174d123e94e6022fa490d
SHA256sum: e1e2867cc3807da78fc713091e436ce91d8dfadbdce1c727bc0f320f150089f6
Description: kamailio4 MySQL database-backend module
Package: kamailio4-mod-db-postgres
Version: 4.2.3-2
Depends: libc, kamailio4, libpq
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50928
Filename: telephony/kamailio4-mod-db-postgres_4.2.3-2_ramips_24kec.ipk
Size: 51799
MD5Sum: 06c68a5a8e652cc57328de2314889bbf
SHA256sum: 4a037bc61976e38af3c6af285e193435db31ca587a1e226d191410c7a47a5d01
Description: kamailio4 PostgreSQL Database-backend module
Package: kamailio4-mod-db-sqlite
Version: 4.2.3-2
Depends: libc, kamailio4, libsqlite3
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14823
Filename: telephony/kamailio4-mod-db-sqlite_4.2.3-2_ramips_24kec.ipk
Size: 15539
MD5Sum: a82aa68658122d886294b7cf8cf1865e
SHA256sum: 52a0d9f0cb6225a350752cf647036cac84fe1b42b28cc31793fec57e7b81aa71
Description: kamailio4 Sqlite DB support module
Package: kamailio4-mod-db-text
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34538
Filename: telephony/kamailio4-mod-db-text_4.2.3-2_ramips_24kec.ipk
Size: 35319
MD5Sum: 4c88db38b9a2def293d5648dfea9226a
SHA256sum: 161f0283b46a02f6acdbc7169f9b769bdf598a671269f2e47b6782259381f1e6
Description: kamailio4 Text database-backend module
Package: kamailio4-mod-db-unixodbc
Version: 4.2.3-2
Depends: libc, kamailio4, unixodbc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20857
Filename: telephony/kamailio4-mod-db-unixodbc_4.2.3-2_ramips_24kec.ipk
Size: 21643
MD5Sum: e9b7b44d78f5b6d87ed6ff06aba31095
SHA256sum: 17bf5ff87c5e9686a93bba7290eae277cc4ea1e3fef1ec8e87fabca55ecbaf97
Description: kamailio4 UnixODBC Database-backend module
Package: kamailio4-mod-debugger
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22614
Filename: telephony/kamailio4-mod-debugger_4.2.3-2_ramips_24kec.ipk
Size: 23382
MD5Sum: 1d77c6369273399c0fce454253c7abc1
SHA256sum: c2accd33190e01d55dc1de6c39c425f48df8ec8f8e45d7769924edb153832a6a
Description: kamailio4 Interactive config file debugger module
Package: kamailio4-mod-dialog-ng
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93097
Filename: telephony/kamailio4-mod-dialog-ng_4.2.3-2_ramips_24kec.ipk
Size: 93820
MD5Sum: df504de71657ea9ae82a6750eb2ec6ce
SHA256sum: 5170dfe868a340d06fc25695b087d30a2e021e3a75dada64fd69a0635d09bdd5
Description: kamailio4 Dialog support module
Package: kamailio4-mod-dialog
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 102293
Filename: telephony/kamailio4-mod-dialog_4.2.3-2_ramips_24kec.ipk
Size: 103110
MD5Sum: 2ce301b38e84499219c6bb89dae9a275
SHA256sum: e4a302792a5c7e7e484fced402729a30aac3b813a1f7ee01dbe7435048d33c8b
Description: kamailio4 Dialog support module
Package: kamailio4-mod-dialplan
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28583
Filename: telephony/kamailio4-mod-dialplan_4.2.3-2_ramips_24kec.ipk
Size: 29334
MD5Sum: 4293375b7c10361058cc2a51731e358a
SHA256sum: b72447dbedf7a14270684e680115c0f17b091261ec3d56aa927d7bd70239e533
Description: kamailio4 Dialplan management module
Package: kamailio4-mod-dispatcher
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46251
Filename: telephony/kamailio4-mod-dispatcher_4.2.3-2_ramips_24kec.ipk
Size: 47042
MD5Sum: d3862d1327f91d392da310a21f40c012
SHA256sum: 338c70a54c87632b832a9872d1eaf606d1e80baaf980c07119a01a20cefe85e1
Description: kamailio4 Dispatcher module
Package: kamailio4-mod-diversion
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3523
Filename: telephony/kamailio4-mod-diversion_4.2.3-2_ramips_24kec.ipk
Size: 4261
MD5Sum: e00b24c3ac9bc73b8c2411b0efa0ec88
SHA256sum: 61614a1cf3172d233339d4abe607466cad716760424df19a01813435c1e9326c
Description: kamailio4 Diversion header insertion module
Package: kamailio4-mod-domain
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15917
Filename: telephony/kamailio4-mod-domain_4.2.3-2_ramips_24kec.ipk
Size: 16652
MD5Sum: 5090cceb86381c430753516dd35007aa
SHA256sum: 6787368f043fbaa3ca5db9b9b362df8a1c5e9f592979fd3dcf9658590f1401b0
Description: kamailio4 Multi-domain support module
Package: kamailio4-mod-domainpolicy
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20353
Filename: telephony/kamailio4-mod-domainpolicy_4.2.3-2_ramips_24kec.ipk
Size: 21106
MD5Sum: 41a5f681c9bec87bde4e2d36e3b07211
SHA256sum: a00779d012b03b8c418063c1aef7863385b40b83792db11cf205868c38912ef9
Description: kamailio4 Domain policy module
Package: kamailio4-mod-drouting
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39103
Filename: telephony/kamailio4-mod-drouting_4.2.3-2_ramips_24kec.ipk
Size: 39914
MD5Sum: 42fdbd85186f15623202a04b26b10151
SHA256sum: 6d2f78fc7120ca6be55da45ae58a6e905596d74c2fd14421b531f63a12b2b93f
Description: kamailio4 Dynamic routing module module
Package: kamailio4-mod-enum
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14671
Filename: telephony/kamailio4-mod-enum_4.2.3-2_ramips_24kec.ipk
Size: 15413
MD5Sum: fdcedff8779e9a0721d12e823c999fa8
SHA256sum: d52981e09ffe97dbbf37bbda1445d86711d8975458d826c389121e30d12fc4f8
Description: kamailio4 ENUM lookup module
Package: kamailio4-mod-exec
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16935
Filename: telephony/kamailio4-mod-exec_4.2.3-2_ramips_24kec.ipk
Size: 17710
MD5Sum: 4fd89131019af56fe1e8c3385b789086
SHA256sum: cdf9d2f53f4ae3ae665f5f45d053267dc80c8f926043e30e1ddaec137d60d415
Description: kamailio4 External exec module
Package: kamailio4-mod-group
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10384
Filename: telephony/kamailio4-mod-group_4.2.3-2_ramips_24kec.ipk
Size: 11161
MD5Sum: 6b06f5868be067bf247a0300009a22e0
SHA256sum: bb3e8eee9edca39709f9f08f5e807934eff73d4fd16f676e3052ee33c612bf11
Description: kamailio4 Database-backend user-groups module
Package: kamailio4-mod-h350
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-ldap, libopenldap
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9860
Filename: telephony/kamailio4-mod-h350_4.2.3-2_ramips_24kec.ipk
Size: 10637
MD5Sum: fae62b30bd6d1493160cb33a73e6a47a
SHA256sum: e90287a423ac92fdca90b2eb17f8fc0428ee96abc83a341349803a8f19e96dbb
Description: kamailio4 H.350 module
Package: kamailio4-mod-htable
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43768
Filename: telephony/kamailio4-mod-htable_4.2.3-2_ramips_24kec.ipk
Size: 44547
MD5Sum: b72f2faed08b1d60a17024024e1ad3fb
SHA256sum: ceabdce7b00d9d47538cea994e3ba7a68c8f3d1616c00e6010ac1a58f4fc88e2
Description: kamailio4 Hash Table module
Package: kamailio4-mod-imc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-db-mysql, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32379
Filename: telephony/kamailio4-mod-imc_4.2.3-2_ramips_24kec.ipk
Size: 33069
MD5Sum: bff7c3acc84369bdf7b7fc6da4ac3f07
SHA256sum: 1bcb52be70d95580bff66c80025fce4e1ec244238e8bce4586cbd69de3a3ce29
Description: kamailio4 IM conferencing module
Package: kamailio4-mod-ipops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25421
Filename: telephony/kamailio4-mod-ipops_4.2.3-2_ramips_24kec.ipk
Size: 26123
MD5Sum: aaa3668db8f3a91dfb752166ceaa4212
SHA256sum: bcb5d0b5b186608639a0e35647eeb0d02968fad2911621b7aac918445a82db16
Description: kamailio4 IP and IPv6 operations module
Package: kamailio4-mod-json
Version: 4.2.3-2
Depends: libc, kamailio4, libjson-c
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3521
Filename: telephony/kamailio4-mod-json_4.2.3-2_ramips_24kec.ipk
Size: 4279
MD5Sum: b5747bed8723fe381efc75f38ad9a41e
SHA256sum: d57e0ab4c61c5b96a0c692f2ecd5559798f4137606d189f56fafc363750adbd8
Description: kamailio4 Access to JSON document attributes module
Package: kamailio4-mod-kex
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15454
Filename: telephony/kamailio4-mod-kex_4.2.3-2_ramips_24kec.ipk
Size: 16143
MD5Sum: 17b4105e4cf8c90760edcc14003d99ef
SHA256sum: 7083a900af8710b189407ef6e08305942e736018bfc3696cc9b5f7f2fb627603
Description: kamailio4 Core extensions module
Package: kamailio4-mod-lcr
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm, libpcre
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43007
Filename: telephony/kamailio4-mod-lcr_4.2.3-2_ramips_24kec.ipk
Size: 43807
MD5Sum: 55682678e78ebd9fb2af5c49cba6c1bb
SHA256sum: 531dbd4c9f345c1b867557f6c9eca985b563366f2b359efcb2de9e2c0ecdf626
Description: kamailio4 Least Cost Routing module
Package: kamailio4-mod-ldap
Version: 4.2.3-2
Depends: libc, kamailio4, libopenldap
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21503
Filename: telephony/kamailio4-mod-ldap_4.2.3-2_ramips_24kec.ipk
Size: 22216
MD5Sum: 9d36a2b6d89dacdc6352085355d13d0f
SHA256sum: b28588534e9af163c2f34055a47d1c32c4357f5710e05b0de05d48617ee86267
Description: kamailio4 LDAP connector module
Package: kamailio4-mod-maxfwd
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5900
Filename: telephony/kamailio4-mod-maxfwd_4.2.3-2_ramips_24kec.ipk
Size: 6658
MD5Sum: f6460c42ee318b502ca22d7a3a4e5ac4
SHA256sum: e9b85712f147b0486a53f09ccf756132658cb26fa1793ca52f1dae5b01215fe9
Description: kamailio4 Max-Forward processor module
Package: kamailio4-mod-mediaproxy
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24192
Filename: telephony/kamailio4-mod-mediaproxy_4.2.3-2_ramips_24kec.ipk
Size: 24914
MD5Sum: 669542eb817d34975370abe610a3c3e6
SHA256sum: d1a7f5f8160026b32d4222a3e1af3cbe1594ab85bcb4ea67fe30325a163d6a02
Description: kamailio4 Automatic NAT traversal module
Package: kamailio4-mod-mi-datagram
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27772
Filename: telephony/kamailio4-mod-mi-datagram_4.2.3-2_ramips_24kec.ipk
Size: 28543
MD5Sum: d0a6a0afb0b9c2d9951e5d9c6b213f27
SHA256sum: b7873d9716c5c489506a37121b52f902a54a1231c1ed60f5ccf96e868d818322
Description: kamailio4 Datagram support for Management Interface module
Package: kamailio4-mod-mi-fifo
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21275
Filename: telephony/kamailio4-mod-mi-fifo_4.2.3-2_ramips_24kec.ipk
Size: 22028
MD5Sum: 738a0c9100964e45263afbb009a72ac7
SHA256sum: 0e7532b0e54d77e4c22033d684f60ae5eea21c78f8b4a2b16c6d180ba406d460
Description: kamailio4 FIFO support for Management Interface module
Package: kamailio4-mod-mi-rpc
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7743
Filename: telephony/kamailio4-mod-mi-rpc_4.2.3-2_ramips_24kec.ipk
Size: 8523
MD5Sum: d362f791b1a0d2b812525823e43de4e1
SHA256sum: d9dd5f41200112662e7d082cc44cb2e16adc0fd0132b5e220a82b73c3551d04c
Description: kamailio4 RPC support for Management Interface module
Package: kamailio4-mod-msilo
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29168
Filename: telephony/kamailio4-mod-msilo_4.2.3-2_ramips_24kec.ipk
Size: 29943
MD5Sum: c955b9008fd0cde27d9a9c40bee2f8e6
SHA256sum: 357a4217bf6e450130c8196ae962e7ad1cb2815d04e9c98c8f4506e728831012
Description: kamailio4 SIP message silo module
Package: kamailio4-mod-msrp
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tls
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32154
Filename: telephony/kamailio4-mod-msrp_4.2.3-2_ramips_24kec.ipk
Size: 32918
MD5Sum: dbbd90fb92fe976376f9da4b1e34cc8a
SHA256sum: 1c065c18685accd0dd3748c6dc2cc7fbdaf30464bc9c11de6e8cd4163a1084ef
Description: kamailio4 MSRP routing engine module
Package: kamailio4-mod-nat-traversal
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog, kamailio4-mod-sl, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22050
Filename: telephony/kamailio4-mod-nat-traversal_4.2.3-2_ramips_24kec.ipk
Size: 22819
MD5Sum: 5139d6e4399a9e393c4a1b9aaa1c53db
SHA256sum: 7238facda4f746dccf13fda94903d4aaaa54f6de9d7c97574bb8ec2b0830b5e1
Description: kamailio4 NAT traversal module
Package: kamailio4-mod-nathelper
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35764
Filename: telephony/kamailio4-mod-nathelper_4.2.3-2_ramips_24kec.ipk
Size: 36587
MD5Sum: e360442deb0486769ae6a7d522ca4546
SHA256sum: d227a1d3c2015f1027135cfa57afbb88807d8fc4d51fcab41591ef5099031c79
Description: kamailio4 NAT helper module
Package: kamailio4-mod-path
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7026
Filename: telephony/kamailio4-mod-path_4.2.3-2_ramips_24kec.ipk
Size: 7789
MD5Sum: f6cdf510ec9d4d3e31a1f959734a32c4
SHA256sum: 7c6a93b47b5b814cbc2186bf63dabae983dc308d7fd948edfdc8d568deb57ecb
Description: kamailio4 SIP path insertion module
Package: kamailio4-mod-pdt
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19165
Filename: telephony/kamailio4-mod-pdt_4.2.3-2_ramips_24kec.ipk
Size: 19928
MD5Sum: d1a6851884362d7aa4e86cc3c3fa7eb1
SHA256sum: e8c1b5cf10ab71fb46f635089af500ef415aec8efbf74b14ed9e9d5cdbd3decd
Description: kamailio4 Prefix-to-Domain translator module
Package: kamailio4-mod-permissions
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43087
Filename: telephony/kamailio4-mod-permissions_4.2.3-2_ramips_24kec.ipk
Size: 43877
MD5Sum: ea434468038037b6ce7bf903082c24c2
SHA256sum: 308f5ac43c79cfc3befdf94f24b141f989e1132a2d8619a65dc1f394944538cc
Description: kamailio4 Permissions control module
Package: kamailio4-mod-pike
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19858
Filename: telephony/kamailio4-mod-pike_4.2.3-2_ramips_24kec.ipk
Size: 20628
MD5Sum: 31253dbb46b2d9e7fe2b29214db5522d
SHA256sum: 8e1515df37b5eca97bb9747a474062a51e40edb752b4a8ee6db677f5fa14723e
Description: kamailio4 Flood detector module
Package: kamailio4-mod-presence-dialoginfo
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11983
Filename: telephony/kamailio4-mod-presence-dialoginfo_4.2.3-2_ramips_24kec.ipk
Size: 12737
MD5Sum: ec9dd5ef9e11ce0f72d11907f4868614
SHA256sum: 587c0e38602a7d0d5600e2e1f3f2e1df5e4bcf2a80c13b0f61e541b7b960ac79
Description: kamailio4 Dialog Event presence module
Package: kamailio4-mod-presence-mwi
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3930
Filename: telephony/kamailio4-mod-presence-mwi_4.2.3-2_ramips_24kec.ipk
Size: 4678
MD5Sum: 04f68b3942b537106cdab944e1fdd75c
SHA256sum: dcdd630cd6689870ea53c7de72be34ced4d2207ca0c184e5dfbeb34d0795c98b
Description: kamailio4 Message Waiting Indication presence module
Package: kamailio4-mod-presence-xml
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-xcap-client
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30053
Filename: telephony/kamailio4-mod-presence-xml_4.2.3-2_ramips_24kec.ipk
Size: 30786
MD5Sum: db0434302dd1214511a24c7f4a25736d
SHA256sum: 612fab9be0873c58fe12eb43ca9942ff4363dca7f1af532fced9f26fc25b633b
Description: kamailio4 XCAP presence module
Package: kamailio4-mod-presence
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl, kamailio4-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123686
Filename: telephony/kamailio4-mod-presence_4.2.3-2_ramips_24kec.ipk
Size: 124358
MD5Sum: e35be283e453446fd43c380207c14f05
SHA256sum: 3f3d75698ec9573c721e973df1813900e7e5864a33574a663eb66b37003ea741
Description: kamailio4 Presence server module
Package: kamailio4-mod-pua-bla
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-pua, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9467
Filename: telephony/kamailio4-mod-pua-bla_4.2.3-2_ramips_24kec.ipk
Size: 10259
MD5Sum: e3fb2ddd928e612a66ca135a0d1e75a4
SHA256sum: 07f9ef6a0cf401ad05422216e3da3a61bf796d0f1a20a686627367ee754b5072
Description: kamailio4 Bridged Line Appearence PUA module
Package: kamailio4-mod-pua-dialoginfo
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog, kamailio4-mod-pua
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13569
Filename: telephony/kamailio4-mod-pua-dialoginfo_4.2.3-2_ramips_24kec.ipk
Size: 14329
MD5Sum: 4ba8eeee9cc936b0e83fcd19db56aafe
SHA256sum: c15b5f94bc64545da69b6966862365d86b342da3d3f849a4b762a557ebf3a1d9
Description: kamailio4 Dialog Event PUA module
Package: kamailio4-mod-pua-mi
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-pua
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8804
Filename: telephony/kamailio4-mod-pua-mi_4.2.3-2_ramips_24kec.ipk
Size: 9592
MD5Sum: cbbd1431b5ad1317e3d8a730a6a8518e
SHA256sum: ab4d4d7718c9ff7d1fbc716d9d7959f4cee6b9f32a4684737edbea5240b64b38
Description: kamailio4 PUA Management Interface module
Package: kamailio4-mod-pua-usrloc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-pua, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9029
Filename: telephony/kamailio4-mod-pua-usrloc_4.2.3-2_ramips_24kec.ipk
Size: 9789
MD5Sum: 959b98e163a9410fbcf457701ccc6472
SHA256sum: bfb80e29084ea70283755c92f43dc074c4ab501e56ec7a1608d6008dc9c94b15
Description: kamailio4 PUA User Location module
Package: kamailio4-mod-pua-xmpp
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-pua, kamailio4-mod-xmpp
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25904
Filename: telephony/kamailio4-mod-pua-xmpp_4.2.3-2_ramips_24kec.ipk
Size: 26643
MD5Sum: 58511733dffe2905e73e7e206648d01d
SHA256sum: be7e9675191d7e552ad1f13aaa9f8026dd1cc3d155d5c7f4dfc478423cfdb9a9
Description: kamailio4 PUA XMPP module
Package: kamailio4-mod-pua
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67477
Filename: telephony/kamailio4-mod-pua_4.2.3-2_ramips_24kec.ipk
Size: 68176
MD5Sum: eb718dc5ea032bf4b6fa30abce0d8455
SHA256sum: 635bae8a6cbda6d546565bacb5067af131ab79df305443063ad4ed9f204c3e64
Description: kamailio4 Presence User Agent module
Package: kamailio4-mod-pv
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78995
Filename: telephony/kamailio4-mod-pv_4.2.3-2_ramips_24kec.ipk
Size: 79708
MD5Sum: 3efa50feade66388084eccb3844e3216
SHA256sum: c7335fddba00495d976cf764dacf0514f7136d93afc84990638a6d60197e83a5
Description: kamailio4 Pseudo-Variables module
Package: kamailio4-mod-qos
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22049
Filename: telephony/kamailio4-mod-qos_4.2.3-2_ramips_24kec.ipk
Size: 22805
MD5Sum: 5644a52efe0b6b0dc55a83b34d22c6a1
SHA256sum: ed0ce09e3b0287c2eec9318308b437c3b8a27349181578a206232985103035d0
Description: kamailio4 QoS control module
Package: kamailio4-mod-ratelimit
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19017
Filename: telephony/kamailio4-mod-ratelimit_4.2.3-2_ramips_24kec.ipk
Size: 19787
MD5Sum: 71db88d73cc41985a70743a5a66dcc72
SHA256sum: 5368711d5a9e40ba31c7bdd8cac0116b7353404595107eb03274ed75b5d065ef
Description: kamailio4 Traffic shapping module
Package: kamailio4-mod-regex
Version: 4.2.3-2
Depends: libc, kamailio4, libpcre
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12150
Filename: telephony/kamailio4-mod-regex_4.2.3-2_ramips_24kec.ipk
Size: 12880
MD5Sum: d7264da8afd709e3e765dfea2dd33beb
SHA256sum: 4bd0a8b234b9366142cd6319364a22104108bdd15da28994920ca75b9c8654ad
Description: kamailio4 Regular Expression module
Package: kamailio4-mod-registrar
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45177
Filename: telephony/kamailio4-mod-registrar_4.2.3-2_ramips_24kec.ipk
Size: 45978
MD5Sum: 13da9d6141771382bc1b0385dc8b2224
SHA256sum: 38d06d93f6be5c735abe8cf32c43ce3fd5cbf0615b7e75abba5d11d95f9c0fa7
Description: kamailio4 SIP Registrar module
Package: kamailio4-mod-rls
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-pua, kamailio4-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80071
Filename: telephony/kamailio4-mod-rls_4.2.3-2_ramips_24kec.ipk
Size: 80811
MD5Sum: 73b4fd8d90d72129ef19fc5eaa2ed215
SHA256sum: 80762d417888e9f85b4e0e4ae74a1eeeb42420105b04d6885a7c900ad43e2515
Description: kamailio4 Resource List Server module
Package: kamailio4-mod-rr
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27709
Filename: telephony/kamailio4-mod-rr_4.2.3-2_ramips_24kec.ipk
Size: 28471
MD5Sum: 111621ec1e22097b42f76968362ebd02
SHA256sum: d77931d18a028851f75cb2f10324e2b02a334ba7ea2aa1c8b34a85b23e34b8b7
Description: kamailio4 Record-Route and Route module
Package: kamailio4-mod-rtimer
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5088
Filename: telephony/kamailio4-mod-rtimer_4.2.3-2_ramips_24kec.ipk
Size: 5823
MD5Sum: 9033f9bc24acbda786aa243c56f551f6
SHA256sum: 2f96f39b99427938b5ebd6bd93a7a608594128a5a96da3b50f76fa8d6f33fb66
Description: kamailio4 Routing Timer module
Package: kamailio4-mod-rtpengine
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34855
Filename: telephony/kamailio4-mod-rtpengine_4.2.3-2_ramips_24kec.ipk
Size: 35661
MD5Sum: 4fc78a2b7be405679139d0ce021e3f62
SHA256sum: 8cfeb23bc2c5526741392e3e666ccd11ae15c424241f8633ef1a6af051e72635
Description: kamailio4 RTP engine module
Package: kamailio4-mod-rtpproxy
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39270
Filename: telephony/kamailio4-mod-rtpproxy_4.2.3-2_ramips_24kec.ipk
Size: 40117
MD5Sum: 146cedf27b4377cdd21f8ad6fdaabbbd
SHA256sum: ac7cde6ad00f4d9a483354b85238760670c73952ffab03068e7afe39e7b70ea8
Description: kamailio4 RTP proxy module
Package: kamailio4-mod-sanity
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14800
Filename: telephony/kamailio4-mod-sanity_4.2.3-2_ramips_24kec.ipk
Size: 15527
MD5Sum: 5fa285d72cae98a989480892698dbc67
SHA256sum: 9c91b198f656ac11ef88d0aba46c07c82d0145dee0abf9999b67909eed3a3e5f
Description: kamailio4 SIP sanity checks module
Package: kamailio4-mod-sipcapture
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37119
Filename: telephony/kamailio4-mod-sipcapture_4.2.3-2_ramips_24kec.ipk
Size: 37962
MD5Sum: 0eb031d8b6db4fea85d0892d7e35d487
SHA256sum: 67d00a1d5623aef1515f271460e239cf8060ae88fce7bf4ba4477251783fd559
Description: kamailio4 SIP capture module
Package: kamailio4-mod-siptrace
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27016
Filename: telephony/kamailio4-mod-siptrace_4.2.3-2_ramips_24kec.ipk
Size: 27766
MD5Sum: 7d9061395bf977f33574a2de96296cfb
SHA256sum: c88a62f2da94cc5f2172a88b1d352db37cb92fb549db82e8308eb7fd1d5c35db
Description: kamailio4 SIP trace module
Package: kamailio4-mod-siputils
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30172
Filename: telephony/kamailio4-mod-siputils_4.2.3-2_ramips_24kec.ipk
Size: 30896
MD5Sum: 744070980bf0802dad12e0b6b1ec18f6
SHA256sum: dfaa1e2c971b6cae5155e2a8285ec28aa6f11e550cb1e465401360c9be361c10
Description: kamailio4 SIP utilities module
Package: kamailio4-mod-sl
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18232
Filename: telephony/kamailio4-mod-sl_4.2.3-2_ramips_24kec.ipk
Size: 18954
MD5Sum: f3c8bdf2d2e184e60d4ddc2236e1ab99
SHA256sum: fb22b44ef585f4d665d0b8a05e0af1ac1b76b597b4958156f772088085455914
Description: kamailio4 Stateless replier module
Package: kamailio4-mod-sms
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37436
Filename: telephony/kamailio4-mod-sms_4.2.3-2_ramips_24kec.ipk
Size: 38278
MD5Sum: f0ea7a96b0d34e5c61ab41f3562fe0fe
SHA256sum: 9b15c5ddb17306a5e61f9791b0f856611013807aaa870c4173908de8cc4c97f4
Description: kamailio4 SIP-to-SMS IM gateway module
Package: kamailio4-mod-speeddial
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6069
Filename: telephony/kamailio4-mod-speeddial_4.2.3-2_ramips_24kec.ipk
Size: 6821
MD5Sum: 5781da1480c1af6ef09ad5f78ad29d6f
SHA256sum: ddb9bde24ed3baa7651f85d99320aac148cf8b004544e3fb8302cb7db097457a
Description: kamailio4 Per-user speed-dial controller module
Package: kamailio4-mod-sqlops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18940
Filename: telephony/kamailio4-mod-sqlops_4.2.3-2_ramips_24kec.ipk
Size: 19729
MD5Sum: 0ec7664c28236aef82fccb0e7dff12e9
SHA256sum: 6a9a47aee70d7609eaf7e42c5a11388eaebd83848204a559194b4f215a8f07c2
Description: kamailio4 SQL operations module
Package: kamailio4-mod-sst
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13679
Filename: telephony/kamailio4-mod-sst_4.2.3-2_ramips_24kec.ipk
Size: 14437
MD5Sum: 9ba5571789d6840e95a566c40f0331b0
SHA256sum: b9d5fb49eec636df1a270ee57c7e9b23bffbba28e8b9068617a04eebb545836a
Description: kamailio4 SIP Session Timer module
Package: kamailio4-mod-statistics
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5608
Filename: telephony/kamailio4-mod-statistics_4.2.3-2_ramips_24kec.ipk
Size: 6364
MD5Sum: ccbae5977ec691805018d4d8e9ad50c9
SHA256sum: 022627d93f06b7d308de9e1f7d414d9eccf89c6b6f827eab4128dac8eb605ba5
Description: kamailio4 Script statistics module
Package: kamailio4-mod-stun
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8738
Filename: telephony/kamailio4-mod-stun_4.2.3-2_ramips_24kec.ipk
Size: 9509
MD5Sum: c23d1b75304046f0120ee76e2797237b
SHA256sum: af44298c10aa67c9cd33e9069bf1fd4e65608488ee28b42a6f8cb8de1ef3949f
Description: kamailio4 STUN server support module
Package: kamailio4-mod-textops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37305
Filename: telephony/kamailio4-mod-textops_4.2.3-2_ramips_24kec.ipk
Size: 38141
MD5Sum: bfa0438e9f4760c5981216be29963f7c
SHA256sum: 2c86b95a1ae03a8cd842fc4b498a42caa7da30e15557fdd4ea9f258915ca4a30
Description: kamailio4 Text operations module
Package: kamailio4-mod-tls
Version: 4.2.3-2
Depends: libc, kamailio4, libopenssl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78713
Filename: telephony/kamailio4-mod-tls_4.2.3-2_ramips_24kec.ipk
Size: 79378
MD5Sum: 251b1e18f771d665a5274162e5a0892d
SHA256sum: 4cdcb8afc69024cf8bbade8de01a383769ab84d7b451b625f6f7f72b190574ce
Description: kamailio4 TLS operations module
Package: kamailio4-mod-tm
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197208
Filename: telephony/kamailio4-mod-tm_4.2.3-2_ramips_24kec.ipk
Size: 197737
MD5Sum: 24eff0986ee676f90e0eeeb7850eec38
SHA256sum: 869d0fae8b1827fffcb4eee157949db336f3f813198fb97d7f5b9dc3b649022f
Description: kamailio4 Transaction module
Package: kamailio4-mod-tmx
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24956
Filename: telephony/kamailio4-mod-tmx_4.2.3-2_ramips_24kec.ipk
Size: 25692
MD5Sum: 24824e3cb3d0c7da31bc1df4a59e7d13
SHA256sum: 71b8a71bf602a1b233ee2229a5142102a3375088b46433a4b1a0da2a01c4da2e
Description: kamailio4 Transaction module extensions module
Package: kamailio4-mod-topoh
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21619
Filename: telephony/kamailio4-mod-topoh_4.2.3-2_ramips_24kec.ipk
Size: 22334
MD5Sum: 5b217a34c3918acf502b514d6cf5ae69
SHA256sum: dcbfd98f71a7a5745058747c6b29dacd479a6c755ce1ba8f87348948658490b7
Description: kamailio4 Topology hiding module
Package: kamailio4-mod-uac-redirect
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10798
Filename: telephony/kamailio4-mod-uac-redirect_4.2.3-2_ramips_24kec.ipk
Size: 11583
MD5Sum: 0be83694e3ee2c4b6543a71da384732a
SHA256sum: 79f8ef6dbb8542443343e4bc1119edb1a4df1530a8d5e7e39e66fa5fcaf146a3
Description: kamailio4 User Agent Client redirection module
Package: kamailio4-mod-uac
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54868
Filename: telephony/kamailio4-mod-uac_4.2.3-2_ramips_24kec.ipk
Size: 55628
MD5Sum: e0f72f2bfe183bbe9245be7a0f76b588
SHA256sum: dc1cb7e24e18a0f8c7a425ba908b77aa5e1b1ab86cf03afd147d04f5708f6baf
Description: kamailio4 User Agent Client module
Package: kamailio4-mod-uri-db
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6992
Filename: telephony/kamailio4-mod-uri-db_4.2.3-2_ramips_24kec.ipk
Size: 7773
MD5Sum: d81fb93ec5593f8407ee8c0ec16eeefc
SHA256sum: a1291c02bc79a941915014a030b3bd5eca05b0f26d4fc36c17b3654eb4877003
Description: kamailio4 Database-backend SIP URI checking module
Package: kamailio4-mod-userblacklist
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12917
Filename: telephony/kamailio4-mod-userblacklist_4.2.3-2_ramips_24kec.ipk
Size: 13649
MD5Sum: b5cd809fca2ce45baa0e57b2ecf269fe
SHA256sum: b228277b8f82735119c9c5467e4463f7475091f25cf4e5d5bd94fa2c836cd834
Description: kamailio4 User blacklists module
Package: kamailio4-mod-usrloc
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58519
Filename: telephony/kamailio4-mod-usrloc_4.2.3-2_ramips_24kec.ipk
Size: 59303
MD5Sum: f65e9eafbdd641b98b588db41750cd54
SHA256sum: b5adef9206c5697c5af0372759a9d3445749998773d6e199bf19f1f50db4ec3f
Description: kamailio4 User location module
Package: kamailio4-mod-utils
Version: 4.2.3-2
Depends: libc, kamailio4, libcurl, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24404
Filename: telephony/kamailio4-mod-utils_4.2.3-2_ramips_24kec.ipk
Size: 25099
MD5Sum: 2b071f51670c31d410293c5ea2a274c5
SHA256sum: c35325af0fe353f0aeed627c466f73ef2680538b6849c929f02733e8579b2cd6
Description: kamailio4 Misc utilities module
Package: kamailio4-mod-xcap-client
Version: 4.2.3-2
Depends: libc, kamailio4, libcurl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13779
Filename: telephony/kamailio4-mod-xcap-client_4.2.3-2_ramips_24kec.ipk
Size: 14500
MD5Sum: b11edba5eccfd833b9cb0efab8cb590d
SHA256sum: 94f0d9da4e7ad3bfc728be867534278ca9e7d74e0e28ba8060b801481c3f188f
Description: kamailio4 XCAP Client module
Package: kamailio4-mod-xlog
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8500
Filename: telephony/kamailio4-mod-xlog_4.2.3-2_ramips_24kec.ipk
Size: 9256
MD5Sum: 56c67290d040b6205644ffcc73d8dc69
SHA256sum: c7c480926c5813b68aa572b78b96e17b3da06ebb400c29d511f3e54ea647a850
Description: kamailio4 Advanced logger module
Package: kamailio4-mod-xmlrpc
Version: 4.2.3-2
Depends: libc, kamailio4, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22630
Filename: telephony/kamailio4-mod-xmlrpc_4.2.3-2_ramips_24kec.ipk
Size: 23354
MD5Sum: 9db9e6800649cd2bb644cb8b7b366252
SHA256sum: 7ac71af20e4086f47ccba3276245c3275a82f83f49b14ad96854cbd5fee2fc84
Description: kamailio4 XML RPC module module
Package: kamailio4-mod-xmpp
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm, libexpat
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34674
Filename: telephony/kamailio4-mod-xmpp_4.2.3-2_ramips_24kec.ipk
Size: 35524
MD5Sum: 28d4fbff6ad410d0da75536f1978e64c
SHA256sum: 5fac543de6f938ef46ea24dfb3246a7ef2a5eb9aa44e80aff910cb1362cd715e
Description: kamailio4 SIP-to-XMPP Gateway module
Package: kamailio4
Version: 4.2.3-2
Depends: libc, libncurses, libpthread, libreadline, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1091475
Filename: telephony/kamailio4_4.2.3-2_ramips_24kec.ipk
Size: 1091625
MD5Sum: b5a849f9803ce25fe2b9a33dc7636dba
SHA256sum: b6210ff7b17c76e8a7dedfceaf21d69c94e4cb78d096ace359c84ba1fddbc43d
Description: Mature and flexible open source SIP server, v4.2.3
Package: kmod-dahdi-echocan-oslec
Version: 3.18.9+2.10.0.1-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-dahdi
Source: feeds/telephony/libs/dahdi-linux
License: GPL-2.0
LicenseFiles: LICENSE
Section: kernel
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3681
Filename: telephony/kmod-dahdi-echocan-oslec_3.18.9+2.10.0.1-1_ramips_24kec.ipk
Size: 4498
MD5Sum: cec2e3ec1f5d2aca91f121cc65d511ce
SHA256sum: 5d0bdddeda471b70a0ea28617baa3ee0b4e42a11695ec146f316014cf3b23bce
Description: This package contains DAHDI OSLEC echo canceller support.
Package: kmod-dahdi
Version: 3.18.9+2.10.0.1-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-ccitt
Source: feeds/telephony/libs/dahdi-linux
License: GPL-2.0
LicenseFiles: LICENSE
Section: kernel
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56208
Filename: telephony/kmod-dahdi_3.18.9+2.10.0.1-1_ramips_24kec.ipk
Size: 56809
MD5Sum: f2504b1354aac3afbfab8cec9e8cb5dc
SHA256sum: 52245b97804634a8c30c0275e864cdbc22de54077f1013ad97ae6e6d26f57e68
Description: This package contains DAHDI basic infrastructure.
Package: libiksemel
Version: 1.4-1
Depends: libc, libgnutls, libtasn1, libgcrypt, libgpg-error
Source: feeds/telephony/libs/iksemel
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19313
Filename: telephony/libiksemel_1.4-1_ramips_24kec.ipk
Size: 20244
MD5Sum: cefcee38c9b7939a8b5ef025b986376e
SHA256sum: 75f7f2effa22d254c491ea677b7f95fa0c4b9af8652ed7b4f3a020b85b9f3d3a
Description: Iksemel is an XML parser library mainly designed for Jabber applications.
It provides SAX, DOM, and special Jabber stream APIs. Library is coded
in ANSI C except the network code (which is POSIX compatible), thus
highly portable.
Package: libortp
Version: 0.23.0-1
Depends: libc, libpthread, librt
Source: feeds/telephony/libs/ortp
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49329
Filename: telephony/libortp_0.23.0-1_ramips_24kec.ipk
Size: 50152
MD5Sum: 9b537848cdd90e7074e680a0e7a7e645
SHA256sum: afe80cd264e0fe4d5a2726361acac6d83c727dba2ff1d8f38c178f0227eb0240
Description: Real-time Transport Protocol (RTP) library
Package: libosip2
Version: 4.1.0-1
Depends: libc, librt
Source: feeds/telephony/libs/libosip2
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 59247
Filename: telephony/libosip2_4.1.0-1_ramips_24kec.ipk
Size: 60068
MD5Sum: 4016456c9a48559a22b5b11c8b5f9db2
SHA256sum: 24285c32424e728eebcb6a122bdaab73834f81d9a8d2e2bb6c0578c72280d906
Description: GNU oSIP library, a Session Initiation Protocol (SIP) implementation.
Package: libpj
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, librt
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93904
Filename: telephony/libpj_2.3-1_ramips_24kec.ipk
Size: 94678
MD5Sum: c75be6d9175e2cdfe7fdf51c369f2dad
SHA256sum: 7ca182ba4b29dab9ee0aec1ff803db7f00770f15c4a72c7e5b82c4d4ea2089eb
Description: libpj library
Package: libpjlib-util
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, librt
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 125152
Filename: telephony/libpjlib-util_2.3-1_ramips_24kec.ipk
Size: 125736
MD5Sum: 9e29d829fde1e9e9218f7cb7f7b86ef0
SHA256sum: 810d9f51228bdf64c406bcb1be003d4f1038849b20983a008161e197654d432e
Description: libpjlib-util library
Package: libpjmedia
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjnath, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 229690
Filename: telephony/libpjmedia_2.3-1_ramips_24kec.ipk
Size: 229998
MD5Sum: c8004548587011d260cdbe4bcd4494e2
SHA256sum: 3b29b48b4e07edb8cd1d08ea21dfe1033a55e302a792eddaba30ead6fd779bea
Description: libpjmedia library
Package: libpjnath
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, librt
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 114320
Filename: telephony/libpjnath_2.3-1_ramips_24kec.ipk
Size: 114771
MD5Sum: fa8b6c52fa090c656bf76a92e79ed291
SHA256sum: 8d5c701d03befc75e98c00a459d3a4d6ddade574c803f7f3f18c5e023c924992
Description: libpjnath library
Package: libpjsip-simple
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjsip, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51279
Filename: telephony/libpjsip-simple_2.3-1_ramips_24kec.ipk
Size: 51343
MD5Sum: 1b142e027d4c906ac18f9304a41fc863
SHA256sum: e2af434c59a834dadd040833d6d2b979a0e0643f356919757d08fd3e48828386
Description: libpjsip-simple library
Package: libpjsip-ua
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjmedia, libpjsip-simple, libpjsip, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 72388
Filename: telephony/libpjsip-ua_2.3-1_ramips_24kec.ipk
Size: 73215
MD5Sum: 7ea4155b97889a7dd088bcd787d46820
SHA256sum: ceee518b18b9cd5303aa283e464d3855c11016277f8093c10f5ba331658ef122
Description: libpjsip-ua library
Package: libpjsip
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 187870
Filename: telephony/libpjsip_2.3-1_ramips_24kec.ipk
Size: 188335
MD5Sum: d2a323cdc4759a5253705af01fc8e025
SHA256sum: 193298f970b530e45ca214ef19c25b9951a4225738ab4fa4474e566e287b5e6a
Description: libpjsip library
Package: libpjsua2
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsip, libresample, librt, libspeex, libsrtp, libpjsua
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 182309
Filename: telephony/libpjsua2_2.3-1_ramips_24kec.ipk
Size: 182952
MD5Sum: d9e73139c9240c5405ec1045ec8050ed
SHA256sum: a707eb407fd8be0e1eaa6c390c8751e3f6994d4f4db2a8045607eced696b0170
Description: libpjsua2 library
Package: libpjsua
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsip, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 178672
Filename: telephony/libpjsua_2.3-1_ramips_24kec.ipk
Size: 179125
MD5Sum: 1a6d13f796ad0ce9abea157dc921ff68
SHA256sum: 3f310595eb3d24e8dac38cc6662908ccd8c3e75fe0411a3b29b8bdb57a1040ed
Description: libpjsua library
Package: libre
Version: 0.4.11-1
Depends: libc, libopenssl, libpthread
Source: feeds/telephony/libs/re
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 148319
Filename: telephony/libre_0.4.11-1_ramips_24kec.ipk
Size: 148997
MD5Sum: f10e506c72db46aea20593d84330b1cd
SHA256sum: 3e03654a03f09f45127b09eb1360046a349dca532b48503304baac8f58907b76
Description: Generic library for real-time communications with async IO support
Package: librem
Version: 0.4.6-1
Depends: libc, libre, libpthread
Source: feeds/telephony/libs/rem
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17845
Filename: telephony/librem_0.4.6-1_ramips_24kec.ipk
Size: 18634
MD5Sum: b1872fd4f354fb5d500714832079eeb6
SHA256sum: 3e6fec385b55837bcae45f84d189eb597eefa345a711085adeed36e22ee3dc03
Description: Audio and video processing media library
Package: libresample
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34982
Filename: telephony/libresample_2.3-1_ramips_24kec.ipk
Size: 35837
MD5Sum: e0415ec2a488e2a24b66177ac4c5f3bb
SHA256sum: b67600cf6772285954340c6c90b24ea8b78db3bc606690c9e517ae89a0d9e9ec
Description: libresample library
Package: libspandsp
Version: 0.0.6-2
Depends: libc, libtiff
Source: feeds/telephony/libs/spandsp
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 273751
Filename: telephony/libspandsp_0.0.6-2_ramips_24kec.ipk
Size: 273260
MD5Sum: 87a45cc05bb2641141d4ff3cb475b2ed
SHA256sum: 5c9d665ab24f136ae424663df8169fca8f1b79d6ddfea6d74ef63f3fe48b10e9
Description: spandsp library
Package: libsrtp
Version: 1.4.4-1
Depends: libc
Source: feeds/telephony/libs/libsrtp
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31459
Filename: telephony/libsrtp_1.4.4-1_ramips_24kec.ipk
Size: 31425
MD5Sum: 078393ebab194cd18cd8c05bcbd32a10
SHA256sum: 7b09c8f99f7b1d8167f821e79e6a831193328727573a5c132825c50aea999034
Description: Open-source implementation of the Secure Real-time Transport
Protocol (SRTP) originally authored by Cisco Systems, Inc.
It is available under a BSD-style license.
Package: miax
Version: 1.4-2
Depends: libc, libpthread
Source: feeds/telephony/net/miax
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 32863
Filename: telephony/miax_1.4-2_ramips_24kec.ipk
Size: 33652
MD5Sum: e41455012ff1e64f45b7dbe765314edc
SHA256sum: 51be74161fa5d10f147ec63de48d8a8a666e51d60ebb2442a9bc5d3b112e891f
Description: miax is a console iax (asterisk) client, it can work with
a soundcard as a normal voip phone, taking input/output from
keyboard or analog/gsm/isdn modem.
Package: pcapsipdump
Version: 0.2-1
Depends: libc, libpcap, uclibcxx
Source: feeds/telephony/net/pcapsipdump
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 6916
Filename: telephony/pcapsipdump_0.2-1_ramips_24kec.ipk
Size: 7796
MD5Sum: c6748ec666a80e12a511ae758d04262b
SHA256sum: 3c11aa755b87bc9c4e32b30202c5027b7e98214692ea524c574c0d8d71eea961
Description: pcapsipdump is a tool for dumping SIP sessions (+RTP traffic, if available) to disk in a
fashion similar to "tcpdump -w" (format is exactly the same), but one file per sip session
(even if there is thousands of concurrect SIP sessions).
Package: restund-mod-mysql
Version: 0.4.11-1
Depends: libc, restund, libmysqlclient
Source: feeds/telephony/net/restund
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2648
Filename: telephony/restund-mod-mysql_0.4.11-1_ramips_24kec.ipk
Size: 3443
MD5Sum: 36c6a08d7833d0c3e8da38b62527232f
SHA256sum: 8e6f4d4284d35a9d3729acab68155a6d4763e9ee77315fba3e7a5b4a789fb4bc
Description: restund MySQL database backend module
Package: restund
Version: 0.4.11-1
Depends: libc, libre, libpthread
Source: feeds/telephony/net/restund
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27167
Filename: telephony/restund_0.4.11-1_ramips_24kec.ipk
Size: 27951
MD5Sum: 41f8a047c58025cd770f32b69953b85f
SHA256sum: e54f5815c40f9723db5e56b4f0f4bf297667d1bea0a42d869f924b8ae6f8125f
Description: Modular STUN/TURN server
Package: rtpproxy
Version: 1.2.1-2
Depends: libc, libpthread
Source: feeds/telephony/net/rtpproxy
License: BSD-2-Clause
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 25596
Filename: telephony/rtpproxy_1.2.1-2_ramips_24kec.ipk
Size: 26289
MD5Sum: d3578fc7e79dff5eab38334a2315d308
SHA256sum: 4ff5f5853eb9dbd94d21fe1b3184f42946242d94cdfd0c61ec47abd8137b735e
Description: RTP (Realtime Transport Protocol) proxy
Package: sipp
Version: 3.3.990-1
Depends: libc, libncurses, libpthread, uclibcxx
Source: feeds/telephony/net/sipp
License: GPL-2.0+ BSD-3-Clause Zlib
LicenseFiles: LICENSE.txt
Section: net
Architecture: ramips_24kec
Installed-Size: 144239
Filename: telephony/sipp_3.3.990-1_ramips_24kec.ipk
Size: 144970
MD5Sum: 0154c5428c10df10ea9bec70453bf3ca
SHA256sum: ff78c006f01d00927bc579cc1d829fa313f31fe717d6e8bc8a0d75575e07f436
Description: SIPp is a free Open Source test tool / traffic generator for the SIP
protocol. It includes a few basic SipStone user agent scenarios (UAC and
UAS) and establishes and releases multiple calls with the INVITE and BYE
methods.
Package: siproxd-mod-defaulttarget
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2302
Filename: telephony/siproxd-mod-defaulttarget_0.8.1-4_ramips_24kec.ipk
Size: 3038
MD5Sum: 9320fcf95efa7273c8fe2d6e5aa0b5b1
SHA256sum: 680c59d6849cf7b4d646cfb10b0fa5afe8d28a378136ed53fb2b4a655e51caca
Description: siproxd defaulttarget plugin
Package: siproxd-mod-demo
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 1668
Filename: telephony/siproxd-mod-demo_0.8.1-4_ramips_24kec.ipk
Size: 2387
MD5Sum: 9c779585fc30943ed6bdc7efae61fd15
SHA256sum: 97b52f06b9c1880838ba7d2a551aea72e467d63d90445cbd3c016362056dadfb
Description: siproxd demo plugin
Package: siproxd-mod-fix_bogus_via
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2308
Filename: telephony/siproxd-mod-fix_bogus_via_0.8.1-4_ramips_24kec.ipk
Size: 3042
MD5Sum: af8446144e8316bd241c68d0fb442ba0
SHA256sum: 2ae7f4f55d3e0184ce7f1a97b0423e3ae8031a6f8eb0a5b2e3cb4dd0f2277854
Description: siproxd fix_bogus_via plugin
Package: siproxd-mod-logcall
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 1852
Filename: telephony/siproxd-mod-logcall_0.8.1-4_ramips_24kec.ipk
Size: 2576
MD5Sum: b4a6ad1484dba7094b8e6f14ea6238d4
SHA256sum: 454956f356a774fc4a05a6b2350a9c1718db5728ce8e1de47761bcf5008571e1
Description: siproxd logcall plugin
Package: siproxd-mod-prefix
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2869
Filename: telephony/siproxd-mod-prefix_0.8.1-4_ramips_24kec.ipk
Size: 3607
MD5Sum: a849ae9f59753f51158f56ef2849caa0
SHA256sum: f57bcad652a6975b5c664c51cc6d31afc807c044c408c9ce86c1bed8afa97396
Description: siproxd prefix plugin
Package: siproxd-mod-regex
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 4153
Filename: telephony/siproxd-mod-regex_0.8.1-4_ramips_24kec.ipk
Size: 4839
MD5Sum: f2cbf3648c40d608c44550a0a5ed2375
SHA256sum: 65d9305ca95002b860daacbfbfe44f9c17486a7b57f67d6022f50ec99db9342c
Description: siproxd regex plugin
Package: siproxd-mod-shortdial
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2770
Filename: telephony/siproxd-mod-shortdial_0.8.1-4_ramips_24kec.ipk
Size: 3507
MD5Sum: 2777f6a048ab35f3ae47bdc6a59e2b84
SHA256sum: 4924d2958f5a24010fc7938a217130ea06c60a88c6b35c2b6d6467aed0a148dc
Description: siproxd shortdial plugin
Package: siproxd-mod-stun
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 3402
Filename: telephony/siproxd-mod-stun_0.8.1-4_ramips_24kec.ipk
Size: 4125
MD5Sum: 2c24dc03aa99217fb740e9f237295b54
SHA256sum: e56d58a458e88b947100118a39fe69ee5460524bb19f7cdbb7b5bd85fcd2f103
Description: siproxd stun plugin
Package: siproxd
Version: 0.8.1-4
Depends: libc, libltdl, libpthread, libosip2
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 49852
Filename: telephony/siproxd_0.8.1-4_ramips_24kec.ipk
Size: 50465
MD5Sum: 9eb5416051a0742edf1c331c3e7043ad
SHA256sum: 795b80785311fb54a487a82c48acb753b71173616c5ff645896e29deca9acac6
Description: Siproxd is a proxy/masquerading daemon for the SIP protocol.
Package: sipsak
Version: 0.9.6-1-4
Depends: libc, libopenssl
Source: feeds/telephony/net/sipsak
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 25970
Filename: telephony/sipsak_0.9.6-1-4_ramips_24kec.ipk
Size: 26644
MD5Sum: 0f8cea61eebb885667123118a9f12a4e
SHA256sum: 72f8372586bead45e95a12a346c8c5914b87128f82447b8f89294e11e691fb10
Description: SIP (Session Initiation Protocol) stress and diagnostics utility
Package: yate-mod-accfile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7688
Filename: telephony/yate-mod-accfile_5.4.2-1-4_ramips_24kec.ipk
Size: 8479
MD5Sum: 867a3f2a4e08b535c658457de45c4889
SHA256sum: 36ca8e7fa4c9b0b88a83090ec72701143d76cb0256ce462678c403515ed1cc38
Description: SIP or H.323 client (from file) module for yate
Package: yate-mod-alsachan
Version: 5.4.2-1-4
Depends: libc, yate, alsa-lib
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12136
Filename: telephony/yate-mod-alsachan_5.4.2-1-4_ramips_24kec.ipk
Size: 12903
MD5Sum: 1ce83dd01968f0f1f9bd60a8a597923e
SHA256sum: 48a18743837809a47fb435155fc58b5a040eb9efd171abef639c17172301085b
Description: ALSA Sound Channel module for yate
Package: yate-mod-analog
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32687
Filename: telephony/yate-mod-analog_5.4.2-1-4_ramips_24kec.ipk
Size: 33501
MD5Sum: 197ec878862c5804b7358717ac31d76d
SHA256sum: 36665d6047a8c7f024ad285ad04e35bcb870b7cefbf151700ddadd76b430b323
Description: Analog (e.g. POTS) Channel module for yate
Package: yate-mod-analogdetect
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18550
Filename: telephony/yate-mod-analogdetect_5.4.2-1-4_ramips_24kec.ipk
Size: 19293
MD5Sum: bce624c200ea47c5c444a3b888276b35
SHA256sum: 4a1dc6133abf3ee3699658107b54a38b99fa310d8a3debc6712b78696b4154d7
Description: Analog Data Detector module for yate
Package: yate-mod-analyzer
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12909
Filename: telephony/yate-mod-analyzer_5.4.2-1-4_ramips_24kec.ipk
Size: 13668
MD5Sum: b63a0166715fbd1de1c1e55f213f52f7
SHA256sum: adf89841cfbf22d1d5f585f474269fb6f91f97f4fe880b1b1977a8adb1276bab
Description: Test Call Generator and AQ Analyzer module for yate
Package: yate-mod-cache
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22150
Filename: telephony/yate-mod-cache_5.4.2-1-4_ramips_24kec.ipk
Size: 22922
MD5Sum: 99e680449e8b9c88c096f847a6dc19ca
SHA256sum: b62b8683eeddb71ff27e3664e6a06b8fc97bf3e9a7eaafa96ef741ccf683e3aa
Description: CNAM and LNP memory caches module for yate
Package: yate-mod-callcounters
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6267
Filename: telephony/yate-mod-callcounters_5.4.2-1-4_ramips_24kec.ipk
Size: 7067
MD5Sum: 926e7b246e91917c7741e75e9fdf83b9
SHA256sum: 1a36c8fe2c743ea9fa24de9900ad756a2c2dfab055a3730195db28311c7180d9
Description: Count Active Call Legs module for yate
Package: yate-mod-callfork
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14208
Filename: telephony/yate-mod-callfork_5.4.2-1-4_ramips_24kec.ipk
Size: 14942
MD5Sum: 2c1b2ba013055fa3a697fbbd5a9cbcb4
SHA256sum: 2ba4d976f71142baea79e15604bbb39065938e595435d1abfb0d699f2cc5af4d
Description: Call Forker module for yate
Package: yate-mod-callgen
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12916
Filename: telephony/yate-mod-callgen_5.4.2-1-4_ramips_24kec.ipk
Size: 13661
MD5Sum: d32631babaa6546ac928e887bf7b3021
SHA256sum: 45d0cd0e79ba67d374d66d48351a30c6e7d1471f64313605f9b90e2f8c6b664a
Description: Call Generator module for yate
Package: yate-mod-ccongestion
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5821
Filename: telephony/yate-mod-ccongestion_5.4.2-1-4_ramips_24kec.ipk
Size: 6589
MD5Sum: ef485dac7d9f0034c64127cfb1d17f4d
SHA256sum: cfa73d0a14a35288f2037ac2ade92b606982e5261af6abc75e2a16a46ef299cd
Description: Accept Status from Installed Engine Monitors module for yate
Package: yate-mod-cdrbuild
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15461
Filename: telephony/yate-mod-cdrbuild_5.4.2-1-4_ramips_24kec.ipk
Size: 16166
MD5Sum: eace3ed5eebf74c2c39db5cf441eb466
SHA256sum: 196f7a9788e23de23887c8c990fa3527efb12dfe984d4e93ce07c0781f9ac6c2
Description: Call Detail Record Builder module for yate
Package: yate-mod-cdrcombine
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6562
Filename: telephony/yate-mod-cdrcombine_5.4.2-1-4_ramips_24kec.ipk
Size: 7370
MD5Sum: d600a1ad1f2ef9ba260ecf1b12821da0
SHA256sum: 48c31eb8ad034b0911867151672561fac8ad46bee4ac9f203a4a0a4dcc5f354d
Description: Call Detail Records per call instead of per call leg module for yate
Package: yate-mod-cdrfile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5307
Filename: telephony/yate-mod-cdrfile_5.4.2-1-4_ramips_24kec.ipk
Size: 6063
MD5Sum: 58c76fc30a1e39e638b26ac034800153
SHA256sum: 52ad0da9623c6f0115f0d797f7456d6df382f8812bbc73a725210f389ae243bd
Description: Call Detail Record to File module for yate
Package: yate-mod-ciscosm
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21551
Filename: telephony/yate-mod-ciscosm_5.4.2-1-4_ramips_24kec.ipk
Size: 22262
MD5Sum: f1299d0a331692f5cf34842cc4b21274
SHA256sum: d6357efd445b9d2b5636129c35f5b726e89cf076f6104a1ebc7c01040e8ff06d
Description: SS7 Support module for yate
Package: yate-mod-clustering
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7128
Filename: telephony/yate-mod-clustering_5.4.2-1-4_ramips_24kec.ipk
Size: 7901
MD5Sum: ee31e93e532aa17f7d3741f0f6792990
SHA256sum: 0e3adecab72d8f6a3d283d2973430a5758c940deb07dc86d40d3e456476eb792
Description: Clustering Server Support module for yate
Package: yate-mod-conference
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18860
Filename: telephony/yate-mod-conference_5.4.2-1-4_ramips_24kec.ipk
Size: 19640
MD5Sum: 4075d5685a586146a94959eff1f00596
SHA256sum: 42d55bdd47a5532eaf48697c94d999fb177cf5573907ca339517ab0721af0c9a
Description: Conference Room Mixer module for yate
Package: yate-mod-cpuload
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11927
Filename: telephony/yate-mod-cpuload_5.4.2-1-4_ramips_24kec.ipk
Size: 12716
MD5Sum: b9aeb5f580ca105f5ad9294c7bfa671f
SHA256sum: e68e193666483df6d939127a23b3c0c936686f0a24fb1770284ad765125d7a99
Description: Monitor CPU load and Inform Yate module for yate
Package: yate-mod-dbpbx
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9532
Filename: telephony/yate-mod-dbpbx_5.4.2-1-4_ramips_24kec.ipk
Size: 10335
MD5Sum: 7fe084ccd0ad132ee76b3c6f3f810d36
SHA256sum: 4705db19a430bdb940962692c5f407829ba17d0e89de5a212b157ac074a3eaab
Description: PBX IVR and Multi-routing from Database module for yate
Package: yate-mod-dbwave
Version: 5.4.2-1-4
Depends: libc, yate, yate-mod-wavefile
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5896
Filename: telephony/yate-mod-dbwave_5.4.2-1-4_ramips_24kec.ipk
Size: 6663
MD5Sum: b4298dbbf503f2a335a1061c0ff14333
SHA256sum: 5e57013c93fff41a9f9756212f3021879e33a88e49c3b1b27c100f657d63924d
Description: Wav Media for DB Storage module for yate
Package: yate-mod-dumbchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5807
Filename: telephony/yate-mod-dumbchan_5.4.2-1-4_ramips_24kec.ipk
Size: 6556
MD5Sum: c71e09ae39e7f41dfe20adf8b7ca148f
SHA256sum: 3602c51c3a1cbdd25bd97f6dc7eeb286fbb620e8990e317f5573bcdacb12efc4
Description: Dummy Channel module for yate
Package: yate-mod-enumroute
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7918
Filename: telephony/yate-mod-enumroute_5.4.2-1-4_ramips_24kec.ipk
Size: 8697
MD5Sum: b4a87d1523b09438d8c090b3aab61b47
SHA256sum: 7ec227a443f0d64e917fc5e88ae5d775a5bb7c5601cbd3f37427ef8840174c98
Description: ENUM Routing module for yate
Package: yate-mod-eventlogs
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5675
Filename: telephony/yate-mod-eventlogs_5.4.2-1-4_ramips_24kec.ipk
Size: 6438
MD5Sum: f478425d94d33ea692b3f7e418af2b0d
SHA256sum: b5a16189830a5e6d4d65932f3c5b880821f319842f0b27ccce64c4334fd256b5
Description: Write events and alarms to log files module for yate
Package: yate-mod-extmodule
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25363
Filename: telephony/yate-mod-extmodule_5.4.2-1-4_ramips_24kec.ipk
Size: 26096
MD5Sum: a47fd837118c39e8bf180f76633f3cc9
SHA256sum: 3ac4d436d5dfc1e0c2d3e3e9ecc67477ebfab795feb490ff79449fc5cc4da0c4
Description: External Module Handler module for yate
Package: yate-mod-faxchan
Version: 5.4.2-1-4
Depends: libc, yate, libspandsp
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14881
Filename: telephony/yate-mod-faxchan_5.4.2-1-4_ramips_24kec.ipk
Size: 15638
MD5Sum: cfec9e83edb24139ee653e708c201b05
SHA256sum: 57ad914fe31712fd364bd4e6c5c72470e5ca5229ab56786a1d533ee2863d8ce5
Description: Spandsp Fax Channel module for yate
Package: yate-mod-filetransfer
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19910
Filename: telephony/yate-mod-filetransfer_5.4.2-1-4_ramips_24kec.ipk
Size: 20643
MD5Sum: e145f046c26a8c4e4d6398ce5d5a8d96
SHA256sum: be9a8d48ce615cd3fb8c0e37b5dd0594b8b026f4cbec1ae4053671f81792bb59
Description: File Transfer Driver module for yate
Package: yate-mod-gvoice
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6808
Filename: telephony/yate-mod-gvoice_5.4.2-1-4_ramips_24kec.ipk
Size: 7579
MD5Sum: eca4492d78b2dbb7137213ad7d8c835b
SHA256sum: 2d28cc8017d5d7f65d24d1994e3e2cc21bfd92db8336c6383c963a965d765327
Description: Google Voice support module for yate
Package: yate-mod-heartbeat
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8041
Filename: telephony/yate-mod-heartbeat_5.4.2-1-4_ramips_24kec.ipk
Size: 8827
MD5Sum: 17d4cc6660de075db7315d3bd8fff175
SHA256sum: 190ac4814df02a7a57822ef8edcc8d88a2137b8aa6bb3cd381e62ce9ce15fe3d
Description: Linux-HA compatible heartbeat module for yate
Package: yate-mod-ilbccodec
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56642
Filename: telephony/yate-mod-ilbccodec_5.4.2-1-4_ramips_24kec.ipk
Size: 57403
MD5Sum: e942a0fcb92394e05ea41361776c91f3
SHA256sum: 5b2ed11af37ab11142f79ae6ba521116e8d8956f6ca5cae0d9dbd65256412122
Description: iLBC Codec module for yate
Package: yate-mod-ilbcwebrtc
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39830
Filename: telephony/yate-mod-ilbcwebrtc_5.4.2-1-4_ramips_24kec.ipk
Size: 40660
MD5Sum: 8fc33d16b54302ac58684e1b48b4d198
SHA256sum: 06a7fa7b5028476273a106c854530532dc783f4f4607be4cecc03811aade5709
Description: iLBC Codec from the WebRTC project module for yate
Package: yate-mod-isaccodec
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 131200
Filename: telephony/yate-mod-isaccodec_5.4.2-1-4_ramips_24kec.ipk
Size: 131926
MD5Sum: 7da5d0e54a50206777b8263df8cffe8f
SHA256sum: bccf730efc5b1ec4c9c348edf5e564ebf637de5b381a1ce5001d3922db8f9874
Description: internet Speech Audio Codec module for yate
Package: yate-mod-isupmangler
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12365
Filename: telephony/yate-mod-isupmangler_5.4.2-1-4_ramips_24kec.ipk
Size: 13160
MD5Sum: b8a7b12562472e2a688f59dd528297ed
SHA256sum: 8e14f6c11d49e802ab7e229044684b5fec85574a0bd4dee2d1f7287754870a11
Description: ISUP parameter mangling in a STP module for yate
Package: yate-mod-jabberclient
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42414
Filename: telephony/yate-mod-jabberclient_5.4.2-1-4_ramips_24kec.ipk
Size: 43231
MD5Sum: 4f7abec1f0dd1cdbebc0d35dc8bf9ea6
SHA256sum: d8df82e0a59ab4726de06775d704082b17b2f0e87a49848e79af6a6fa282d839
Description: Jabber Client module for yate
Package: yate-mod-jabberserver
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52822
Filename: telephony/yate-mod-jabberserver_5.4.2-1-4_ramips_24kec.ipk
Size: 53617
MD5Sum: 2bc36c45cd2b5c1b7172301d1c65a082
SHA256sum: 61e233914e1ee0c2d4b2fe6b6a77868c9d7f8b5cdab1d95212d57b783839ec54
Description: Jabber Server module for yate
Package: yate-mod-javascript
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53890
Filename: telephony/yate-mod-javascript_5.4.2-1-4_ramips_24kec.ipk
Size: 54609
MD5Sum: e626e2714395f63be1f6750f82019da0
SHA256sum: d4c54b736c2df97fdc126ccef573259c8baf19caca378d4f644eaf50cbf76a21
Description: Routing using the embedded Javascript language module for yate
Package: yate-mod-jbfeatures
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15311
Filename: telephony/yate-mod-jbfeatures_5.4.2-1-4_ramips_24kec.ipk
Size: 16065
MD5Sum: 0db74fcfc9e64480cd2345324d3e3921
SHA256sum: 1968b70f144abdca1bd3fc81849fe78ffd53050fb4d33734eba3989d7627f3b4
Description: Jabber Server Features module for yate
Package: yate-mod-lateroute
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5919
Filename: telephony/yate-mod-lateroute_5.4.2-1-4_ramips_24kec.ipk
Size: 6671
MD5Sum: 780210c86d348ec3e1492d94c64ed6a8
SHA256sum: b7a22ab5078206690aebf1d3251ad6bb5523768f58dad6249f83fa82ca0347bd
Description: Last Chance Routing module for yate
Package: yate-mod-mgcpca
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49925
Filename: telephony/yate-mod-mgcpca_5.4.2-1-4_ramips_24kec.ipk
Size: 50757
MD5Sum: e8654a04d37bd0ea431d7f14e4637548
SHA256sum: e12377b2aed982b9eb9a6bf761b328802a6ee10b020f607ca7126312fd4ff523
Description: Media Gateway Control Protocol Agent module for yate
Package: yate-mod-mgcpgw
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33957
Filename: telephony/yate-mod-mgcpgw_5.4.2-1-4_ramips_24kec.ipk
Size: 34810
MD5Sum: 794dce7e6072c223537dda2e4378927e
SHA256sum: 1c9a57781f414a9803c89b15e206930f0a593988d4af343f3cf0da3e8e986719
Description: Media Gateway Control Protocol Gateway module for yate
Package: yate-mod-moh
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10374
Filename: telephony/yate-mod-moh_5.4.2-1-4_ramips_24kec.ipk
Size: 11127
MD5Sum: dd98fd3639be993f28ffd6bd7aea4c53
SHA256sum: f44d48dae56b2f3f38bd2ee2acc33bca85a0cfa07924f6b1e4084f835e4278e8
Description: On Hold (music) Generator module for yate
Package: yate-mod-monitoring
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32010
Filename: telephony/yate-mod-monitoring_5.4.2-1-4_ramips_24kec.ipk
Size: 32568
MD5Sum: 16722c7f5049a45d07a78daeef5725c2
SHA256sum: ea44a90a2ef3b63fac05b07bceb743f1fee6ca4bd717eb643cf93eef63b98dba
Description: Monitoring/gathering Information module for yate
Package: yate-mod-mrcpspeech
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8495
Filename: telephony/yate-mod-mrcpspeech_5.4.2-1-4_ramips_24kec.ipk
Size: 9311
MD5Sum: ba47c143644e5f9c2adb54b8ea4fdd65
SHA256sum: 9f27260e77e2dfe5fec45bf9a20c86696ef11e020588fb18b511605d98007972
Description: MRCP v2 Voice/Tone Detector and Synthesizer module for yate
Package: yate-mod-msgsniff
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6690
Filename: telephony/yate-mod-msgsniff_5.4.2-1-4_ramips_24kec.ipk
Size: 7477
MD5Sum: 841f7d74b0dcd817f8b7576b0f49119e
SHA256sum: 1e06923b838b92f34ddea4e05421f80e8a006ad387a6fe0e9fc9434dc09a6db3
Description: Sample Message Sniffer module for yate
Package: yate-mod-mux
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12689
Filename: telephony/yate-mod-mux_5.4.2-1-4_ramips_24kec.ipk
Size: 13460
MD5Sum: e1859fadbf7426cdc6056ebb4bf2542c
SHA256sum: 8b9ce92bb9561c4092c31cd0f893c79f90d2c0b756df9f6a10d9e3986fc7140b
Description: Data Multiplexor module for yate
Package: yate-mod-mysqldb
Version: 5.4.2-1-4
Depends: libc, yate, libmysqlclient-r
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12151
Filename: telephony/yate-mod-mysqldb_5.4.2-1-4_ramips_24kec.ipk
Size: 12939
MD5Sum: 34370d4228da5d6a992adf8c2fa74ac7
SHA256sum: ca16b484d17b1d1dc8b8771aa77b21004d706ba3ef37e13b14f8ae6c823df3df
Description: MySQL Backend DB module for yate
Package: yate-mod-openssl
Version: 5.4.2-1-4
Depends: libc, yate, libopenssl
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12552
Filename: telephony/yate-mod-openssl_5.4.2-1-4_ramips_24kec.ipk
Size: 13322
MD5Sum: d5149c6804ba98e6a4fbd1920297dfc8
SHA256sum: 2035b2801dbb03e818b21c6ada8bc6e82ab6b50a4a4ea5324e41df231e624468
Description: Encrypted transport (OpenSSL) module for yate
Package: yate-mod-osschan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10876
Filename: telephony/yate-mod-osschan_5.4.2-1-4_ramips_24kec.ipk
Size: 11632
MD5Sum: 6fb98c5159a2f210698cd36329b6fbd3
SHA256sum: fca5f974d74e24eba31ba17e2633519220d4e3845f3dd3d94d3242ad56738be3
Description: OSS Sound Channel module for yate
Package: yate-mod-park
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6275
Filename: telephony/yate-mod-park_5.4.2-1-4_ramips_24kec.ipk
Size: 7013
MD5Sum: a90e5d5cfba90cb40b4c38661b7f4b48
SHA256sum: bb42040815aba87cdf762806ff156721360bbb2c807ad4fd4561568baf1e98df
Description: Call Parking module for yate
Package: yate-mod-pbx
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7162
Filename: telephony/yate-mod-pbx_5.4.2-1-4_ramips_24kec.ipk
Size: 7951
MD5Sum: a9b687f4b46bdf9e77a627cf16c07663
SHA256sum: 8ffd967853b6314ebd39bab0313dca912734191060072038e9c0585298995e93
Description: PBX Message Handlers module for yate
Package: yate-mod-pbxassist
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21702
Filename: telephony/yate-mod-pbxassist_5.4.2-1-4_ramips_24kec.ipk
Size: 22487
MD5Sum: abb7581ad9bce84967ad3333b5486fcf
SHA256sum: 1bb9ce404a7a107a3943a3d9ebfc6032d165821a0338a9504371868f9eb29931
Description: Full featured PBX and IVR module for yate
Package: yate-mod-pgsqldb
Version: 5.4.2-1-4
Depends: libc, yate, libpq
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11425
Filename: telephony/yate-mod-pgsqldb_5.4.2-1-4_ramips_24kec.ipk
Size: 12203
MD5Sum: 8618b770c14a0ca96acb152f65f6220f
SHA256sum: 83e656d640f7dde0b1287831eeebba62ebec3575d8d53961fd8b099b8f029a8a
Description: PostgrestSQL Backend DB module for yate
Package: yate-mod-presence
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11409
Filename: telephony/yate-mod-presence_5.4.2-1-4_ramips_24kec.ipk
Size: 12169
MD5Sum: 362d56ec78a31791d75e3bb106ed7e1f
SHA256sum: 849038a1dcee5dbbc52107d2caa5ccb4fb613d4946fa9836b472a8fc84e7ff45
Description: Presence module for yate
Package: yate-mod-queues
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12286
Filename: telephony/yate-mod-queues_5.4.2-1-4_ramips_24kec.ipk
Size: 13074
MD5Sum: 0c3ed733655b95c28b2e5b6692bc0448
SHA256sum: 8a07bdc71cfb0bb2916b8d1505276bd04fb10e50f961e2b519cb7360293efccf
Description: Call Distribution and Queues from Database module for yate
Package: yate-mod-queuesnotify
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11585
Filename: telephony/yate-mod-queuesnotify_5.4.2-1-4_ramips_24kec.ipk
Size: 12378
MD5Sum: dbd7c23e0a4bf46d2d1b046eb3545276
SHA256sum: 3249fd0dffb0911b6bb7cfd464dde2a3ad330e3281f426dee0132f8d16f9b8b9
Description: Notify when queued call status changes module for yate
Package: yate-mod-regexroute
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19365
Filename: telephony/yate-mod-regexroute_5.4.2-1-4_ramips_24kec.ipk
Size: 20175
MD5Sum: 3e3e1efba49c76ebc29ebd8416c9e35c
SHA256sum: 78b836725cfa70ec9bb15ac028428730b14277d59b0cff1518a11ff5e0347c70
Description: Regular Expression Based Routing module for yate
Package: yate-mod-regfile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10224
Filename: telephony/yate-mod-regfile_5.4.2-1-4_ramips_24kec.ipk
Size: 10979
MD5Sum: 73d39aced536750fefd5204b8f27739f
SHA256sum: 918b0da23f5b80f25323683fe320065d40fd1389faee38970ddcdfa0e581f52a
Description: Registration based on users in file module for yate
Package: yate-mod-register
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18452
Filename: telephony/yate-mod-register_5.4.2-1-4_ramips_24kec.ipk
Size: 19255
MD5Sum: f311c4259fd6be540185977510229596
SHA256sum: 0525fff5287ed34854d2a64cc7297f9e419092973d88a4a3cb7267079ca4f9b7
Description: Call Detail Record to a database module for yate
Package: yate-mod-rmanager
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22656
Filename: telephony/yate-mod-rmanager_5.4.2-1-4_ramips_24kec.ipk
Size: 23384
MD5Sum: 7d7ebcb0c46e0f571130552211d85bca
SHA256sum: 56fb02eb52e9bc3bd1b8152e139c7bc2c77473a7d45e5c5512ecd11af5187635
Description: Yate Remote Management module for yate
Package: yate-mod-sigtransport
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20714
Filename: telephony/yate-mod-sigtransport_5.4.2-1-4_ramips_24kec.ipk
Size: 21459
MD5Sum: ed829ab27d91a62d4d674d5a99acc6fd
SHA256sum: 165e2d0c855a61c4c98fcc39574d840e769b0798c2335321f76b72f49d377204
Description: SIGTRAN (SS7 over IP) connection provider module for yate
Package: yate-mod-sip_cnam_lnp
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9854
Filename: telephony/yate-mod-sip_cnam_lnp_5.4.2-1-4_ramips_24kec.ipk
Size: 10608
MD5Sum: aca0e1dcc12a1fff5aa4e5e0b5432214
SHA256sum: a4df9c4575478214842bdcfc97b6fdc6e0b71ab16225ae8386f08b080cff7c95
Description: Query CNAM and LNP databases using SIP INVITE module for yate
Package: yate-mod-sipfeatures
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10488
Filename: telephony/yate-mod-sipfeatures_5.4.2-1-4_ramips_24kec.ipk
Size: 11274
MD5Sum: 2123a717daae2ee5fd2dd1766e83fd22
SHA256sum: a106031669ff71e571907cadd1e42b6dacf0ab0bfc23c9d6870ab2d87595a0d7
Description: SIP Features (SUBSCRIBE/NOTIFY) module for yate
Package: yate-mod-speexcodec
Version: 5.4.2-1-4
Depends: libc, yate, libspeex
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5931
Filename: telephony/yate-mod-speexcodec_5.4.2-1-4_ramips_24kec.ipk
Size: 6672
MD5Sum: a5e2a83fd4e8195f8902a3c715ae7c0f
SHA256sum: 70ecf3babd748a37711bb2722153ddb0ad4292de2289d1a6a1bf5fa0e7c5f03a
Description: Speex Codec module for yate
Package: yate-mod-subscription
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26417
Filename: telephony/yate-mod-subscription_5.4.2-1-4_ramips_24kec.ipk
Size: 27190
MD5Sum: eb547998579227a7189cadd1788d16ec
SHA256sum: 8cfbb6654f501207693c381ff34193b2c16cda0e4dd2f6d8fbc36a6807b70ad7
Description: Subcription handler and presence notifier module for yate
Package: yate-mod-tonedetect
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10416
Filename: telephony/yate-mod-tonedetect_5.4.2-1-4_ramips_24kec.ipk
Size: 11169
MD5Sum: 73e8964f42417d5eb13e8795e3204669
SHA256sum: 9ca7febc40ee44346fff42e07a10728359442350463fb6c04fa7e48f317e3542
Description: Detectors for Various Tones module for yate
Package: yate-mod-tonegen
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21185
Filename: telephony/yate-mod-tonegen_5.4.2-1-4_ramips_24kec.ipk
Size: 21926
MD5Sum: 83efe6b1d6e9271aec3f0fc72cee824a
SHA256sum: b26e538a3d3550032bf8215ab06b99548fb17bded138c9e2fa16db75ad191eb0
Description: Tones Generator module for yate
Package: yate-mod-users
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8616
Filename: telephony/yate-mod-users_5.4.2-1-4_ramips_24kec.ipk
Size: 9390
MD5Sum: f3c35c46cbc16bd78d04a366d961d47d
SHA256sum: 3d6ecd9f478ef1ad298944e3fd7ebd1f9e57c8bd8f7fe2f6e4e9aac6104cefce
Description: Users module for yate
Package: yate-mod-wavefile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18406
Filename: telephony/yate-mod-wavefile_5.4.2-1-4_ramips_24kec.ipk
Size: 19185
MD5Sum: 528e36c2f6113de6592676f0e554d5e1
SHA256sum: 190a7b5dca1795815fcb33f426180da45e6915b9d55eba67a73f7d43649a96a4
Description: Wav file Record and Playback module for yate
Package: yate-mod-yiaxchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78929
Filename: telephony/yate-mod-yiaxchan_5.4.2-1-4_ramips_24kec.ipk
Size: 79646
MD5Sum: 2f5a6f9e268b43a889b421762edb5a89
SHA256sum: ac6c0d1a8ccf8c5c37c2f50af87d771f8f0d257de069e2223c5895f3fb7aee25
Description: IAX Channel module for yate
Package: yate-mod-yjinglechan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51475
Filename: telephony/yate-mod-yjinglechan_5.4.2-1-4_ramips_24kec.ipk
Size: 52305
MD5Sum: f96e1dae7b4445f6063aab8f88c64452
SHA256sum: b26e436dc1605887f1c4a3add3b1849628367836fa772bc7ab8a409803ae0856
Description: Jingle Channel module for yate
Package: yate-mod-yradius
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21076
Filename: telephony/yate-mod-yradius_5.4.2-1-4_ramips_24kec.ipk
Size: 21726
MD5Sum: 5cefd19dcf11125b3ee26dc5687f0a3d
SHA256sum: 5a8cb3e7475b0e2bda578bb931d2978b8a888f77137391e43c8a9a2ab2e280ae
Description: RADIUS Client module for yate
Package: yate-mod-yrtpchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47724
Filename: telephony/yate-mod-yrtpchan_5.4.2-1-4_ramips_24kec.ipk
Size: 48600
MD5Sum: fd17bb0f839bd1b76ea76474b96b7841
SHA256sum: f2206989b4f155c7a70fa5b637adfed0982f96dfab5b28777f67ced22fd7301a
Description: RTP Channel and Other Data Helper module for yate
Package: yate-mod-ysigchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61751
Filename: telephony/yate-mod-ysigchan_5.4.2-1-4_ramips_24kec.ipk
Size: 62377
MD5Sum: 4989ee70e3dcd2e8f41943d161e498ed
SHA256sum: 4212337dc3dca1a3b3cbe3196f5e4f4c1f3fad6ff299b15d2b2fb875c1f97f3a
Description: SS7/ISDN Protocols - Yate Signalling Library module for yate
Package: yate-mod-ysipchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 134509
Filename: telephony/yate-mod-ysipchan_5.4.2-1-4_ramips_24kec.ipk
Size: 135175
MD5Sum: 0676e4ae6da98d44dac245c0ad1c4f72
SHA256sum: 12f624bb3bd149e3e861bb08bbc19de59fcd68bdeceee651f1708a9a466e4714
Description: SIP Channel module for yate
Package: yate-mod-ysnmpagent
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71372
Filename: telephony/yate-mod-ysnmpagent_5.4.2-1-4_ramips_24kec.ipk
Size: 72067
MD5Sum: 92383a5b70fbd896027568ef2083dea0
SHA256sum: f3dc654ff71c96151074cb4ff9abb059a4becf43ef4bcbdb3a813bc85e95919c
Description: SNMP Protocol Agent module for yate
Package: yate-mod-ysockschan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29631
Filename: telephony/yate-mod-ysockschan_5.4.2-1-4_ramips_24kec.ipk
Size: 30350
MD5Sum: 0e5b823324e176a2ced47b3c526175d9
SHA256sum: 82affb89d03de0c295b49a7a6bd97a141f400dea76d19c15b3b48eef890070e1
Description: SOCKS Channel module for yate
Package: yate-mod-ystunchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10992
Filename: telephony/yate-mod-ystunchan_5.4.2-1-4_ramips_24kec.ipk
Size: 11746
MD5Sum: 0566fae3f63ea7f0ca053a1fffaccb56
SHA256sum: d2e8e957fc3b93ec25589eaa8e4f2667f39772d4cf65170fb62162f59fe2fec5
Description: STUN Support module for yate
Package: yate-mod-zlibcompress
Version: 5.4.2-1-4
Depends: libc, yate, zlib
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7482
Filename: telephony/yate-mod-zlibcompress_5.4.2-1-4_ramips_24kec.ipk
Size: 8266
MD5Sum: b1e3974c40e4a394185cbeca2182dac5
SHA256sum: 66cf61ac48668fb824117275983f1da898f4786f20ae06d721e84d88fc9027ae
Description: Zlib Compression module for yate
Package: yate-scripts-perl
Version: 5.4.2-1-4
Depends: libc, yate, yate-mod-extmodule, perl
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8594
Filename: telephony/yate-scripts-perl_5.4.2-1-4_ramips_24kec.ipk
Size: 9381
MD5Sum: 8ae4998e53ad3f3dd9e88e500772418b
SHA256sum: 79fe60a8b93f0e48e7e78ba925edeb3c250138099d09cb614f019d3df2b2519c
Description: Perl module for Yate
Package: yate-sounds
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141109
Filename: telephony/yate-sounds_5.4.2-1-4_ramips_24kec.ipk
Size: 140044
MD5Sum: 15e2175c22f3555d05139043ebeb2ab3
SHA256sum: 62b0f62a445d99541bb7c3ae30cb85e4e3b503a7d4d9257a119585f9f0506796
Description: Sounds for Yate
Package: yate
Version: 5.4.2-1-4
Depends: libc, libpthread, uclibcxx
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 962417
Filename: telephony/yate_5.4.2-1-4_ramips_24kec.ipk
Size: 960267
MD5Sum: 0f95b2bcea340bcf0891b99ca204c753
SHA256sum: 0077cafe3e405d92d0d11c9dc06f88e4df5e48186d830ed2b9e19119765551ea
Description: Yet Another Telephony Engine
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: community-profiles
Version: 2
Depends: libc, freifunk-common
Source: feeds/luci/contrib/package/community-profiles
Section: luci
Architecture: ramips_24kec
Installed-Size: 5488
Filename: community-profiles_2_ramips_24kec.ipk
Size: 6198
MD5Sum: afd6139b45eae46b39f8a126fff8c87f
SHA256sum: 1adcee7d28024cbd30dccd7bc8bf92643e8fc6ced79217980e6ba3b2b5274f19
Description: These community profiles set defaults for various free network/freifunk communities and are used by wizards like ffwizard and meshwizard.
Package: freifunk-common
Version: 1
Depends: libc
Source: feeds/luci/contrib/package/freifunk-common
Section: luci
Architecture: ramips_24kec
Installed-Size: 2961
Filename: freifunk-common_1_ramips_24kec.ipk
Size: 3689
MD5Sum: ba36f775a8d623e1c260e25f6a6c9d56
SHA256sum: 0c41d5e01e7e0773acc429fea5adb7a010df34b1e0a466b1c26aef46047674ab
Description: Common files and scripts that are needed to run free wireless mesh networks.
Package: freifunk-firewall
Version: 3
Depends: libc, firewall
Source: feeds/luci/contrib/package/freifunk-firewall
Section: luci
Architecture: ramips_24kec
Installed-Size: 1149
Filename: freifunk-firewall_3_ramips_24kec.ipk
Size: 2014
MD5Sum: 4c33c603728af43b320ecaff7979130a
SHA256sum: e955987fdb708667b95de79ee0df4948c702feeec469eaa12614c12b2422f8a3
Description: Various firewall extensions for Freifunk. Includes NAT fixes and advanced settings.
Package: freifunk-gwcheck
Version: 4
Depends: libc, firewall, ip, iptables-mod-ipopt, olsrd-mod-dyn-gw-plain
Source: feeds/luci/contrib/package/freifunk-gwcheck
Section: luci
Architecture: ramips_24kec
Installed-Size: 2039
Filename: freifunk-gwcheck_4_ramips_24kec.ipk
Size: 2884
MD5Sum: 8e27e2906caa699bbe490a827ef83605
SHA256sum: 9c42298f33761b90b8c6134de3417c70de9d062d9514f5b6ebf7743aa2b395f8
Description: This script periodically checks if internet is available via your own gateway. If it detects that it is broken, then the defaultroute is removed from the main table and temporarilly placed in table gw-check until your internet works again. Config file is /etc/config/freifunk-gwcheck.
Package: freifunk-mapupdate
Version: 1
Depends: libc, olsrd-mod-nameservice
Source: feeds/luci/contrib/package/freifunk-mapupdate
Section: luci
Architecture: ramips_24kec
Installed-Size: 1288
Filename: freifunk-mapupdate_1_ramips_24kec.ipk
Size: 2076
MD5Sum: 37cb6e38921dad28f815019057c3f749
SHA256sum: 09538db777890e7e3c1a5572671a2e44c20a5cd519db469196280c94e268fb91
Description: This script updates the freifunkmap (also known as the global map, see http://map.berlin.freifunk.net) every hour. Config file is /etc/config/freifunk-mapupdate.
Package: freifunk-p2pblock
Version: 3
Depends: libc, iptables-mod-filter, iptables-mod-ipp2p, l7-protocols, iptables-mod-conntrack-extra
Source: feeds/luci/contrib/package/freifunk-p2pblock
Section: luci
Architecture: ramips_24kec
Installed-Size: 1316
Filename: freifunk-p2pblock_3_ramips_24kec.ipk
Size: 2097
MD5Sum: ab4704fcb457f9c508a0428dbba1fb6b
SHA256sum: 75d28bd83e28fb7fb98f1b4909e25539882d8752cafafb26c8e9f66511a4199a
Description: Simple Addon for Freifunk which use iptables layer7-, ipp2p- and recent-modules
to block p2p/filesharing traffic
Package: freifunk-policyrouting
Version: 6
Depends: libc, ip
Source: feeds/luci/contrib/package/freifunk-policyrouting
Section: luci
Architecture: ramips_24kec
Installed-Size: 2273
Filename: freifunk-policyrouting_6_ramips_24kec.ipk
Size: 3090
MD5Sum: 71bab1f3f10c1034f076edf24ea23c0b
SHA256sum: c99c2de1f56819a8bd288155946a583e2995c73d67147e034eb4dccb3a86f709
Description: Allows you to send your own traffic via your own default gateway while sending traffic received from the mesh to a gateway in the mesh.
Package: freifunk-watchdog
Version: 8
Depends: libc, libuci
Source: feeds/luci/contrib/package/freifunk-watchdog
Section: luci
Architecture: ramips_24kec
Installed-Size: 5638
Filename: freifunk-watchdog_8_ramips_24kec.ipk
Size: 6409
MD5Sum: 51f5e24235ce5be7f3547c7136ad0ae9
SHA256sum: 480976ccdaadf3ab5adc1091d3598f7841e5437845e02b3ab406749c1d6ae290
Description: A watchdog daemon that monitors wireless interfaces to ensure the correct bssid and channel.
The process will initiate a wireless restart as soon as it detects a bssid or channel mismatch.
Package: luci-app-ahcp
Version: git-15.079.29361-3e37216-1
Depends: libc, ahcpd
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 2973
Filename: luci-app-ahcp_git-15.079.29361-3e37216-1_all.ipk
Size: 3760
MD5Sum: 227c58e2991010a03c463733b107c454
SHA256sum: abcb7a0fae4c9075e0c8d2768ae2fc1044c0b6e8d006e9569bf54e5c22743bdc
Description: LuCI Support for AHCPd
Package: luci-app-asterisk
Version: git-15.079.29361-3e37216-1
Depends: libc, ahcpd
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 27753
Filename: luci-app-asterisk_git-15.079.29361-3e37216-1_all.ipk
Size: 28538
MD5Sum: b2c9602b5fbff4097c9c994541caad35
SHA256sum: bf85bede5ada9307042272535cf2d4ed2c773ef77bbcd88fd1f04eb63b49ea96
Description: LuCI Support for Asterisk
Package: luci-app-commands
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 4198
Filename: luci-app-commands_git-15.079.29361-3e37216-1_all.ipk
Size: 4912
MD5Sum: 4890f351573310751336aa3450b0239d
SHA256sum: 1d85465521ad14e20de4cedfc351036b6808748a2faab913f997cb45b515b723
Description: LuCI Shell Command Module
Package: luci-app-ddns
Version: 2.2.2-1
Depends: libc, luci-mod-admin-full, ddns-scripts
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 23755
Filename: luci-app-ddns_2.2.2-1_all.ipk
Size: 24574
MD5Sum: dc4a9279ee789725e4ee447686956d56
SHA256sum: babc93733dc7dbc695cb4a06c52ac6b2e6d036869998408057404add27b218af
Description: LuCI Support for Dynamic DNS Client (ddns-scripts)
Package: luci-app-diag-core
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 790
Filename: luci-app-diag-core_git-15.079.29361-3e37216-1_all.ipk
Size: 1499
MD5Sum: ac8398aa992e11d7c23edca252325b54
SHA256sum: 2e1eee255df4c9a52e2edc1fa9241a0ded4cf8d84b74ffdddb709a7127ac99eb
Description: LuCI Diagnostics Tools (Core)
Package: luci-app-diag-devinfo
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core, smap, netdiscover, mac-to-devinfo, httping, smap-to-devinfo, netdiscover-to-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 5824
Filename: luci-app-diag-devinfo_git-15.079.29361-3e37216-1_all.ipk
Size: 6579
MD5Sum: fc68ba523556788ad09fed27e2be99dc
SHA256sum: 7ff358bd89916a32a40a8d7ec8ae96888c6771fb1961949db3e07af8b1857308
Description: LuCI Diagnostics Tools (Device Info)
Package: luci-app-dump1090
Version: git-15.079.29361-3e37216-1
Depends: libc, dump1090
Source: feeds/luci/applications/luci-app-dump1090
Section: luci
Architecture: all
Installed-Size: 2124
Filename: luci-app-dump1090_git-15.079.29361-3e37216-1_all.ipk
Size: 2901
MD5Sum: de3f040cc059816e8575cbc6e6ca07fa
SHA256sum: 5eb8b07ea1646f0802aed9c258deff46ae83751fed96a295cfcea7875d97644d
Description: LuCI Support for dump1090
Package: luci-app-firewall
Version: git-15.079.29361-3e37216-1
Depends: libc, firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 10456
Filename: luci-app-firewall_git-15.079.29361-3e37216-1_all.ipk
Size: 11169
MD5Sum: bad4df937b3b55dd1b82c89ab6974912
SHA256sum: 61876ba6915fd57f1f5e701d720f551e0878940b5fa09699bef372faca502581
Description: Firewall and Portforwarding application
Package: luci-app-freifunk-diagnostics
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-freifunk-diagnostics
Section: luci
Architecture: all
Installed-Size: 2288
Filename: luci-app-freifunk-diagnostics_git-15.079.29361-3e37216-1_all.ipk
Size: 3082
MD5Sum: b3fc611d068e4e47fcd57f681715a3d6
SHA256sum: 14eb47ae6cfbc34778d325c5b3c8b1097f807469fefc8c2a8d179cba9e1e41a3
Description: Tools for network diagnosis like traceroute and ping
Package: luci-app-freifunk-policyrouting
Version: git-15.079.29361-3e37216-1
Depends: libc, freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1203
Filename: luci-app-freifunk-policyrouting_git-15.079.29361-3e37216-1_all.ipk
Size: 1936
MD5Sum: 8299cb122d33a263a90b4858b169b488
SHA256sum: 7cadbf5aa2e8062e84aafcc6876d0e9b7da2d6c5b02bb0326bd609d8c852e3b9
Description: Policy routing for mesh traffic
Package: luci-app-freifunk-widgets
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/applications/luci-app-freifunk-widgets
Section: luci
Architecture: all
Installed-Size: 4505
Filename: luci-app-freifunk-widgets_git-15.079.29361-3e37216-1_all.ipk
Size: 5211
MD5Sum: 792159693af711f2976a996769d13f00
SHA256sum: f597cfcc3d9d156a60b9760937269cdeffc6078737d5f8d9515d780699f5fb96
Description: Widgets for the Freifunk index page
Package: luci-app-hd-idle
Version: git-15.079.29361-3e37216-1
Depends: libc, hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 1060
Filename: luci-app-hd-idle_git-15.079.29361-3e37216-1_all.ipk
Size: 1856
MD5Sum: 8d7862222ca38b3657d75788cc0d7320
SHA256sum: a2ca549509a4d6f87da28cdbf02a5339709fe0465957f874487a6225bcda36d2
Description: Hard Disk Idle Spin-Down module
Package: luci-app-meshwizard
Version: git-15.079.29361-3e37216-1
Depends: libc, meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 2916
Filename: luci-app-meshwizard_git-15.079.29361-3e37216-1_all.ipk
Size: 3709
MD5Sum: ed41546178c16a3f5641e4397a52caf0
SHA256sum: f9ce1ac0e24b1688081667f660d33bb05f5de10dcd0704ba8972389426eb8b00
Description: Shellscript based wizard to setup mesh networks
Package: luci-app-minidlna
Version: git-15.079.29361-3e37216-1
Depends: libc, minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 3276
Filename: luci-app-minidlna_git-15.079.29361-3e37216-1_all.ipk
Size: 4060
MD5Sum: b3113668b03540e5573ae2de5ffc2e69
SHA256sum: b0b7aa2480c053e55f2f3b617007cffb9ff3f15ab41150f0e94033452cac3455
Description: LuCI Support for miniDLNA
Package: luci-app-mjpg-streamer
Version: git-15.079.29361-3e37216-1
Depends: libc, mjpg-streamer
Source: feeds/luci/applications/luci-app-mjpg-streamer
Section: luci
Architecture: all
Installed-Size: 3057
Filename: luci-app-mjpg-streamer_git-15.079.29361-3e37216-1_all.ipk
Size: 3849
MD5Sum: 260c2f8464692b2d1e1f0eec822819bd
SHA256sum: b2e9a7232ab3cfc33e748a9550172bc7e551809a1b14b96208f06c6301cdf5d6
Description: MJPG-Streamer service configuration module
Package: luci-app-mmc-over-gpio
Version: git-15.079.29361-3e37216-1
Depends: libc, kmod-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 940
Filename: luci-app-mmc-over-gpio_git-15.079.29361-3e37216-1_all.ipk
Size: 1739
MD5Sum: e5cd16caadb0dc24ae84cee37976f93c
SHA256sum: 3d11f905c6404336b96a5e4f211dac61885857ae2d37f520515aa397386efef4
Description: MMC-over-GPIO configuration module
Package: luci-app-multiwan
Version: git-15.079.29361-3e37216-1
Depends: libc, multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 3154
Filename: luci-app-multiwan_git-15.079.29361-3e37216-1_all.ipk
Size: 3854
MD5Sum: 503e3adc8ff8e312a017c45c4066be73
SHA256sum: 499d9990bdba1332c86551c3e2c8a97c3d604f953784702a0a5a12309022b477
Description: LuCI Support for the OpenWrt MultiWAN agent
Package: luci-app-ntpc
Version: git-15.079.29361-3e37216-1
Depends: libc, ntpclient
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 1108
Filename: luci-app-ntpc_git-15.079.29361-3e37216-1_all.ipk
Size: 1824
MD5Sum: 67cf8db57b7ae09949cba57d83701c20
SHA256sum: 1f516878a259ecf0d26e0d9526d92e748e85dd8b71a428b2cff3fd9fd72a146a
Description: NTP time synchronisation configuration module
Package: luci-app-ocserv
Version: git-15.079.29361-3e37216-1
Depends: libc, ocserv, certtool
Source: feeds/luci/applications/luci-app-ocserv
Section: luci
Architecture: all
Installed-Size: 4493
Filename: luci-app-ocserv_git-15.079.29361-3e37216-1_all.ipk
Size: 5217
MD5Sum: 114faaa8b228e2e841d5321e304fa48f
SHA256sum: a7536851939415c8df50add746c259e8ab7cd5c1c49bc23581475414ef2d7991
Description: LuCI Support for OpenConnect VPN
Package: luci-app-olsr-services
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr, olsrd, olsrd-mod-nameservice
Source: feeds/luci/applications/luci-app-olsr-services
Section: luci
Architecture: all
Installed-Size: 2165
Filename: luci-app-olsr-services_git-15.079.29361-3e37216-1_all.ipk
Size: 2886
MD5Sum: dcd1d13a78549bc7ad5768b620949d3a
SHA256sum: 309e7903a15c968b5eae07859a6d07109cc27afa1008d4ea7c9027677c6daebc
Description: Show services announced with the nameservice plugin
Package: luci-app-olsr-viz
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr, olsrd, olsrd-mod-txtinfo
Source: feeds/luci/applications/luci-app-olsr-viz
Section: luci
Architecture: all
Installed-Size: 11355
Filename: luci-app-olsr-viz_git-15.079.29361-3e37216-1_all.ipk
Size: 12088
MD5Sum: 8cce80d8ddd685b74c6c78eb20d5e2a6
SHA256sum: 0c6dc864f9c21f421348b94f13bdce2dd1f0c75fc85b9bdf692e23be782e3897
Description: OLSR Visualisation
Package: luci-app-olsr
Version: git-15.079.29361-3e37216-1
Depends: libc, olsrd, olsrd-mod-jsoninfo, luci-lib-luaneightbl
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 21141
Filename: luci-app-olsr_git-15.079.29361-3e37216-1_all.ipk
Size: 21927
MD5Sum: c25c54cfd64402a296582e180a50e5a0
SHA256sum: 20b76b7ba24855e579a30059207d99b3ac803091000f683b5aca7dcf140a8130
Description: OLSR configuration and status module
Package: luci-app-openvpn
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 8663
Filename: luci-app-openvpn_git-15.079.29361-3e37216-1_all.ipk
Size: 9383
MD5Sum: 0b22651b10fd78adbcd02adc728958be
SHA256sum: add457d345990b03b7d173aa7e1857969e827007283d8687b103ecec2edd30bf
Description: LuCI Support for OpenVPN
Package: luci-app-p2pblock
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall, freifunk-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 1520
Filename: luci-app-p2pblock_git-15.079.29361-3e37216-1_all.ipk
Size: 2305
MD5Sum: d5b16746db2913bdccc4c37b8d359cf6
SHA256sum: a658660f9fa68ca0631e9264e1bc195cabb653991ea12a2084a3313cc838f7ef
Description: LuCI Support for the Freifunk P2P-Block addon
Package: luci-app-p910nd
Version: git-15.079.29361-3e37216-1
Depends: libc, p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 1270
Filename: luci-app-p910nd_git-15.079.29361-3e37216-1_all.ipk
Size: 2057
MD5Sum: 66fa5f6ef9d80f2a1a137b1a254cf853
SHA256sum: 6585423f375453efb49690c81dc518022555f16fe603df8f091cecbb37e13529
Description: p910nd - Printer server module
Package: luci-app-pbx-voicemail
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx, asterisk18, msmtp, coreutils-base64
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 4507
Filename: luci-app-pbx-voicemail_git-15.079.29361-3e37216-1_all.ipk
Size: 5245
MD5Sum: 63b2fad2baa4354afde8ddc6e3ac58e5
SHA256sum: 736f8149d63100bc6ea4f49492905bda0f785029285cc1c2e0710009daa4f980
Description: LuCI PBX Administration Voicemail Support
Package: luci-app-pbx
Version: git-15.079.29361-3e37216-1
Depends: libc, asterisk18, asterisk18-app-authenticate, asterisk18-app-disa, asterisk18-app-setcallerid, asterisk18-app-system, asterisk18-chan-gtalk, asterisk18-codec-a-mu, asterisk18-codec-alaw, asterisk18-func-cut, asterisk18-res-clioriginate, asterisk18-func-channel, asterisk18-chan-local, asterisk18-app-record, asterisk18-app-senddtmf, asterisk18-res-crypto
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 63166
Filename: luci-app-pbx_git-15.079.29361-3e37216-1_all.ipk
Size: 64083
MD5Sum: fa1ac150a1e48db9f44f97e03a3693e6
SHA256sum: f28f51ae8e5db7630b3e33239aac317d57dc5eb4a690b8399001735d8930aa46
Description: LuCI PBX Administration
Package: luci-app-polipo
Version: git-15.079.29361-3e37216-1
Depends: libc, polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 3074
Filename: luci-app-polipo_git-15.079.29361-3e37216-1_all.ipk
Size: 3869
MD5Sum: 4a1c0b43f11e143a0c57731c7e98114f
SHA256sum: 92383888cdaa91b0cafb80b49eb1d0f3694d5903bb3cf0eaea09fbe6e5e7208b
Description: LuCI Support for the Polipo Proxy
Package: luci-app-privoxy
Version: 1.0.3-1
Depends: libc, luci-mod-admin-full, privoxy
Source: feeds/luci/applications/luci-app-privoxy
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 11887
Filename: luci-app-privoxy_1.0.3-1_all.ipk
Size: 12745
MD5Sum: f9d0ad9b097a1c2357796c0325abaf8e
SHA256sum: 78a1c074c50fd8d55e893c6739dacb2ea647bd21e6766f4be4e68d414a771b89
Description: LuCI Support for Privoxy WEB proxy
Package: luci-app-qos
Version: git-15.079.29361-3e37216-1
Depends: libc, qos-scripts
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1426
Filename: luci-app-qos_git-15.079.29361-3e37216-1_all.ipk
Size: 2156
MD5Sum: c538512c501f3062f8e82dabe7ad8577
SHA256sum: 50e6c0e699bbf94d521c6efc9bc4fefc32cc888c121ba7e412b5863f3d627185
Description: Quality of Service configuration module
Package: luci-app-radvd
Version: git-15.079.29361-3e37216-1
Depends: libc, radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 4621
Filename: luci-app-radvd_git-15.079.29361-3e37216-1_all.ipk
Size: 5405
MD5Sum: ae46c8c18ab6238749b7338b74231f24
SHA256sum: 5e3a3d91739f5cfb890682800c3baf032c288e3aecdce5aa13d131bd6145a819
Description: LuCI Support for Radvd
Package: luci-app-samba
Version: git-15.079.29361-3e37216-1
Depends: libc, samba36-server
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1361
Filename: luci-app-samba_git-15.079.29361-3e37216-1_all.ipk
Size: 2099
MD5Sum: 1d52c4e42571b6c20853c8b47f735e5f
SHA256sum: 30b64286dc6fe0600b22a92aba85e22935eb782c777473b7588e016dfbc5597f
Description: Network Shares - Samba SMB/CIFS module
Package: luci-app-shairplay
Version: git-15.079.29361-3e37216-1
Depends: libc, shairplay
Source: feeds/luci/applications/luci-app-shairplay
Section: luci
Architecture: all
Installed-Size: 1398
Filename: luci-app-shairplay_git-15.079.29361-3e37216-1_all.ipk
Size: 2155
MD5Sum: 355e367f091e4ecaae6c1ed19aa18222
SHA256sum: edf6fd7badfbeea96cb7581ffcff3b48a1f20c9120eac618c1d0e213a8f621c6
Description: LuCI Support for Shairplay
Package: luci-app-shairport
Version: git-15.079.29361-3e37216-1
Depends: libc, shairport
Source: feeds/luci/applications/luci-app-shairport
Section: luci
Architecture: all
Installed-Size: 1951
Filename: luci-app-shairport_git-15.079.29361-3e37216-1_all.ipk
Size: 2722
MD5Sum: 3fa2001bf0dc8f0b68f1e1c8b4d5a94c
SHA256sum: 5748f71ab48c9180908e8cde22789d8e10a42b38fe96ff2d085224899ba1c522
Description: LuCI Support for Shairport
Package: luci-app-siitwizard
Version: git-15.079.29361-3e37216-1
Depends: libc, kmod-siit
Source: feeds/luci/applications/luci-app-siitwizard
Section: luci
Architecture: all
Installed-Size: 3780
Filename: luci-app-siitwizard_git-15.079.29361-3e37216-1_all.ipk
Size: 4500
MD5Sum: 65b52c6cc393d70f79711b620a55e51b
SHA256sum: 7c917f2425821786dfcc61fbc9bbf25a44ba39599f29f81776c7e7ea8f78d38a
Description: SIIT IPv4-over-IPv6 configuration wizard
Package: luci-app-splash
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-lib-nixio, tc, kmod-sched, iptables-mod-nat-extra, iptables-mod-ipopt
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 16527
Filename: luci-app-splash_git-15.079.29361-3e37216-1_all.ipk
Size: 17238
MD5Sum: ec4ea5ef86c35473cdf1caff3443961f
SHA256sum: 267e2af08d4253e45ff748c145ab28bd399ff7688b1481269cc19452be0a65b1
Description: Freifunk DHCP-Splash application
Package: luci-app-statistics
Version: git-15.079.29361-3e37216-1
Depends: libc, collectd, rrdtool1, collectd-mod-rrdtool, collectd-mod-iwinfo, collectd-mod-interface, collectd-mod-load, collectd-mod-network
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 25338
Filename: luci-app-statistics_git-15.079.29361-3e37216-1_all.ipk
Size: 26135
MD5Sum: 398615e190f248ad46a9a3b3ed48bb2e
SHA256sum: f3fdfddfb1981e93cea8ce2fd24fdbb6ee2d6cd5d63ae24af525e1ce7639b44e
Description: LuCI Statistics Application
Package: luci-app-tinyproxy
Version: git-15.079.29361-3e37216-1
Depends: libc, tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 3162
Filename: luci-app-tinyproxy_git-15.079.29361-3e37216-1_all.ipk
Size: 3879
MD5Sum: 7a36194dadf34ce796b10d80deb78570
SHA256sum: cf1d768dfdbd95d93807ea177d28c4547eb12d96417a87cf7d92dbb37c26ab9c
Description: Tinyproxy - HTTP(S)-Proxy configuration
Package: luci-app-transmission
Version: git-15.079.29361-3e37216-1
Depends: libc, transmission-daemon
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 3413
Filename: luci-app-transmission_git-15.079.29361-3e37216-1_all.ipk
Size: 4178
MD5Sum: 0141ba7384dbf0bebe61d8f9ea6ee625
SHA256sum: e12d587dd6134d07dd6e2800abf71643d324f2077446ba0258d980f368d13cc1
Description: LuCI Support for Transmission
Package: luci-app-udpxy
Version: git-15.079.29361-3e37216-1
Depends: libc, udpxy
Source: feeds/luci/applications/luci-app-udpxy
Section: luci
Architecture: all
Installed-Size: 1433
Filename: luci-app-udpxy_git-15.079.29361-3e37216-1_all.ipk
Size: 2185
MD5Sum: e7c38ea53672b7fb04cf5d83203a6b04
SHA256sum: 13b2cb4dffb5b4c7e2a0b6ead0c492c0e4606b8bad4ef75c64a13cb3bbb8c105
Description: LuCI Support for udpxy
Package: luci-app-upnp
Version: git-15.079.29361-3e37216-1
Depends: libc, miniupnpd
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 3354
Filename: luci-app-upnp_git-15.079.29361-3e37216-1_all.ipk
Size: 4160
MD5Sum: 41cf99a55ce5e657c71e33d166ecd498
SHA256sum: 1643b3f7a979432da4f2ad412a520dc1922dfe0e86cca68800c0fde93966fe73
Description: Universal Plug & Play configuration module
Package: luci-app-vnstat
Version: git-15.079.29361-3e37216-1
Depends: libc, vnstat, vnstati
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 2287
Filename: luci-app-vnstat_git-15.079.29361-3e37216-1_all.ipk
Size: 3064
MD5Sum: e6ab150ae4d4179f21e77a9d93e1c70a
SHA256sum: f2077e4f557fd0d482eb36e2e5bb3feeaec2656db0245b50e6d1878f78941690
Description: LuCI Support for VnStat
Package: luci-app-voice-core
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 929
Filename: luci-app-voice-core_git-15.079.29361-3e37216-1_all.ipk
Size: 1637
MD5Sum: a387bfcf3dd068eccf70ae49baf22a2f
SHA256sum: d96a728f1e89f875cd9fca9b23614b240b2e0d7107d07a08b7f20b1285f437a9
Description: LuCI Voice Software (Core)
Package: luci-app-voice-diag
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 731
Filename: luci-app-voice-diag_git-15.079.29361-3e37216-1_all.ipk
Size: 1448
MD5Sum: 637975d365aa857c4bf29c68023ebbd3
SHA256sum: c9abbd5238f40046a32bd2fbd16862275c154f819c16f4beb7008dec93b8d378
Description: LuCI Voice Software (Diagnostics)
Package: luci-app-watchcat
Version: git-15.079.29361-3e37216-1
Depends: libc, watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1434
Filename: luci-app-watchcat_git-15.079.29361-3e37216-1_all.ipk
Size: 2192
MD5Sum: 0d55a871d09c52376c648a4238394eb7
SHA256sum: 724b941ca86bb673556d14df26c27b8e7729f5ead1e08601c8406dbbc9c45246
Description: LuCI Support for Watchcat
Package: luci-app-wol
Version: git-15.079.29361-3e37216-1
Depends: libc, etherwake
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 1440
Filename: luci-app-wol_git-15.079.29361-3e37216-1_all.ipk
Size: 2161
MD5Sum: 3f021f3c5ce6e1f1129aaa665b4df035
SHA256sum: 7eba7cb908ea396d7115bb6c53da383dae3b36ba549362062edc6df68643b52e
Description: LuCI Support for Wake-on-LAN
Package: luci-app-wshaper
Version: git-15.079.29361-3e37216-1
Depends: libc, wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 1224
Filename: luci-app-wshaper_git-15.079.29361-3e37216-1_all.ipk
Size: 1985
MD5Sum: 60940fd1e8ca41c7d2f70ed36521fa95
SHA256sum: 412ad761c6cc4bee2af49bcef42b9399d5591ef5d45490108070ca01574837be
Description: LuCI Support for wshaper
Package: luci-base
Version: git-15.079.29361-3e37216-1
Depends: libc, lua, libuci-lua, luci-lib-nixio, luci-lib-ip, rpcd
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: ramips_24kec
Installed-Size: 123184
Filename: luci-base_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 124046
MD5Sum: 7d1e47e3010fe7c49b496b642ff78457
SHA256sum: 46e5378b8b46170cb89c5dbf6c68496ca94f9974015bc5c27cafc31473515623
Description: LuCI core libraries
Package: luci-i18n-ahcp-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1336
Filename: luci-i18n-ahcp-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2146
MD5Sum: 66551deaf880e1d7534591cb7e7769a3
SHA256sum: 4d351b9bd6621502547a8ee68cf8fcdffaef0032773e7c57fcdb68c5cd33a739
Description: Translation for luci-app-ahcp - Català (Catalan)
Package: luci-i18n-ahcp-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1397
Filename: luci-i18n-ahcp-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2210
MD5Sum: bf3a089ae1810e55dec3179a96c0045d
SHA256sum: 93fdb9687b69e98291c6a6be880fe36ca542dd54d8a7fea140a858e6d169d27a
Description: Translation for luci-app-ahcp - Čeština (Czech)
Package: luci-i18n-ahcp-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1228
Filename: luci-i18n-ahcp-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2036
MD5Sum: 1ced6365fe33930888da231e3ddadc66
SHA256sum: 1105158ac73686f8d9c24fea49bd82901b21477c343ad397fb7112954eb0d8ce
Description: Translation for luci-app-ahcp - Deutsch (German)
Package: luci-i18n-ahcp-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1131
Filename: luci-i18n-ahcp-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1949
MD5Sum: 93ffddfd9229d9a4bde775aefb4e2931
SHA256sum: 54825275f6d886d0424bb507a404c16cec6fd5815fc96409c5d1131cbc2d1dfd
Description: Translation for luci-app-ahcp - Ελληνικά (Greek)
Package: luci-i18n-ahcp-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 551
Filename: luci-i18n-ahcp-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1340
MD5Sum: a730e61402509fa2b8afc05bd4222d90
SHA256sum: 712826d91dcbc078002496286df35447dd764d9434dbcea12c4dd42d3e8fdb99
Description: Translation for luci-app-ahcp - English
Package: luci-i18n-ahcp-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1343
Filename: luci-i18n-ahcp-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2163
MD5Sum: f40d468989c98fe5af5bf0d395532ecf
SHA256sum: 8d03cbbaff9e574c6b36a4f5a22703400e2b6f6a86b6980009a60640e928f22f
Description: Translation for luci-app-ahcp - Español (Spanish)
Package: luci-i18n-ahcp-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1339
Filename: luci-i18n-ahcp-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2154
MD5Sum: 02ec698bfe983f27800d3e3d7105fd8f
SHA256sum: bc9b5d02295559666b26050436b8db273301988c80a6f86197dc10341e8ea9e1
Description: Translation for luci-app-ahcp - Français (French)
Package: luci-i18n-ahcp-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1269
Filename: luci-i18n-ahcp-he_git-15.079.29361-3e37216-1_all.ipk
Size: 2100
MD5Sum: 03de46bacc3a031df94b1856800a3577
SHA256sum: d28db7e54f3dd2fd697c0c9c00e81abb385be31e79e03ff5f9a726d3b353d6be
Description: Translation for luci-app-ahcp - עִבְרִית (Hebrew)
Package: luci-i18n-ahcp-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1373
Filename: luci-i18n-ahcp-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2186
MD5Sum: 3be54d4c6ba6fc663fb49eb813546106
SHA256sum: 39eafd01acf9c882adab84d7d046723cf7119e13904a1d9d2642b8216fc86f02
Description: Translation for luci-app-ahcp - Magyar (Hungarian)
Package: luci-i18n-ahcp-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1328
Filename: luci-i18n-ahcp-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2134
MD5Sum: dbe3b62524d08a270f6f2b3c5b55db60
SHA256sum: b4515510f49e6bd0aa018187b580b8e8344484cfb2e507092cf7bf1daed4fe17
Description: Translation for luci-app-ahcp - Italiano (Italian)
Package: luci-i18n-ahcp-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1438
Filename: luci-i18n-ahcp-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2260
MD5Sum: 2f4043e5fe069775cd6ea96747bd0213
SHA256sum: fbd2918ef09e0aebafd48e05e58af21ee3a04c9f59b00e95706e030e2beb5b90
Description: Translation for luci-app-ahcp - 日本語 (Japanese)
Package: luci-i18n-ahcp-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-ahcp-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1106
MD5Sum: bdf4c3f28e5efd7c5779ea68e28ee549
SHA256sum: 04c4cf0ab30c85b175bae762c49bdeeb37d95165dd9b5bf675e0fd9e541e98fc
Description: Translation for luci-app-ahcp - Bahasa Melayu (Malay)
Package: luci-i18n-ahcp-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1171
Filename: luci-i18n-ahcp-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1965
MD5Sum: ea0f5689a9fc8ee15ff9c84c5fbaa848
SHA256sum: 7766b9449e5970d366a74b364f2af1ce50a01d0a79a432ed6c079caa17a812dc
Description: Translation for luci-app-ahcp - Norsk (Norwegian)
Package: luci-i18n-ahcp-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1339
Filename: luci-i18n-ahcp-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2149
MD5Sum: bc208b280fc5c392e1ea45fd4505738e
SHA256sum: 4b1aa59ea0c9d4d3c38e09541d477595d9d9f9dda5948d4a108e3b385ef470b6
Description: Translation for luci-app-ahcp - Polski (Polish)
Package: luci-i18n-ahcp-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1363
Filename: luci-i18n-ahcp-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2196
MD5Sum: 2693d272ea55218ae0b8555c8859db6f
SHA256sum: a8b7aac2db8ce805e926c6814ff26c85ba9a01a004962d2a506f5ddb96ffc253
Description: Translation for luci-app-ahcp - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-ahcp-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1366
Filename: luci-i18n-ahcp-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 2186
MD5Sum: 38b05cf4a0af97de9df219159f97a388
SHA256sum: df27de678ebf767750e66a4d35a6574474c120b97fb3933ccc7ebdaee76b5f68
Description: Translation for luci-app-ahcp - Português (Portuguese)
Package: luci-i18n-ahcp-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1227
Filename: luci-i18n-ahcp-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2044
MD5Sum: 80c7b317ae0ae825a9513c30bfe0b4fd
SHA256sum: e2b85ddad1e48304587d59e50429b7281884a86306474614695e599efb0fb56c
Description: Translation for luci-app-ahcp - Română (Romanian)
Package: luci-i18n-ahcp-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1515
Filename: luci-i18n-ahcp-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2344
MD5Sum: 368ab27702d2924d9692100adb5f725e
SHA256sum: c738c70be3a03f112402c795cc7b1e674f44ab0221823d4e51ce96429ca9b144
Description: Translation for luci-app-ahcp - Русский (Russian)
Package: luci-i18n-ahcp-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-ahcp-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 15c6256564b3e72e66d9eec05ba474ff
SHA256sum: 00bba4cc633b412f747157e8d63dec8b3c3f02f55dc71c05214e8590494fe4ef
Description: Translation for luci-app-ahcp - Slovenčina (Slovene)
Package: luci-i18n-ahcp-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 840
Filename: luci-i18n-ahcp-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1643
MD5Sum: e1ef3d9219f77b4e7414df0cdfded0a7
SHA256sum: 9b9b94b18a9b8bf2cf2021894dfd4b85ba59232e560984ad4a5ca221c41799a6
Description: Translation for luci-app-ahcp - Svenska (Swedish)
Package: luci-i18n-ahcp-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1055
Filename: luci-i18n-ahcp-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1858
MD5Sum: ed4d0200b4e05f4c663baedfb4f830c9
SHA256sum: c30c8c9a868d29a563935b420afb23fb0d3e2bc5603fb9167c5ab5b8fc493c4d
Description: Translation for luci-app-ahcp - Türkçe (Turkish)
Package: luci-i18n-ahcp-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1438
Filename: luci-i18n-ahcp-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2277
MD5Sum: b93cabada81b7cee6cbf6532d1872e7c
SHA256sum: cdab11ac247ba058fb0f195a7dcc404166f202afc3db256a1557a68e0e5f2250
Description: Translation for luci-app-ahcp - украї́нська (Ukrainian)
Package: luci-i18n-ahcp-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1399
Filename: luci-i18n-ahcp-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2234
MD5Sum: e1cb80603ab1faf73d3c83d3702596f3
SHA256sum: a23845473dcda8008d930fb76cc2c492e50b9e35678684f0392f11310c0bffa2
Description: Translation for luci-app-ahcp - Tiếng Việt (Vietnamese)
Package: luci-i18n-ahcp-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1313
Filename: luci-i18n-ahcp-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2143
MD5Sum: 544bc9ce16bc8052be2751f102b7b448
SHA256sum: 23e76b08f382d0979b94c43ac3fa2d04a93ef81e0b4d9be039ce9dfd3af870af
Description: Translation for luci-app-ahcp - 普通话 (Chinese)
Package: luci-i18n-ahcp-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ahcp
Source: feeds/luci/applications/luci-app-ahcp
Section: luci
Architecture: all
Installed-Size: 1113
Filename: luci-i18n-ahcp-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1944
MD5Sum: cbc581f83d3cafa01182f24b1090bb38
SHA256sum: cb56ed3a0b8dd00ce3397d9fc2589f898eb9f3a1b8c9d1586183db929c784b07
Description: Translation for luci-app-ahcp - 臺灣華語 (Taiwanese)
Package: luci-i18n-asterisk-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-asterisk-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1106
MD5Sum: 4b120c6aaf92cf9af265393a6bea4734
SHA256sum: 2df3f7a0f2c20e87b6382b029426196ef8f255f2d7c6cb271e1a964d11380821
Description: Translation for luci-app-asterisk - Català (Catalan)
Package: luci-i18n-asterisk-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-asterisk-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: ef67d5e73cddf987377d1bef74b52064
SHA256sum: 65c9c1b9604b4134456240a6114ebdb7c32b29fd3b332093565b095b8059746f
Description: Translation for luci-app-asterisk - Čeština (Czech)
Package: luci-i18n-asterisk-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-asterisk-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 617f0820f186dedf2b135fd7cf8656fd
SHA256sum: ecf3b031b9d36394ce83d9374dfdf464be6966a55e6e876850e64cf2f9c8bad4
Description: Translation for luci-app-asterisk - Deutsch (German)
Package: luci-i18n-asterisk-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-asterisk-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: e4503f337eabf53b8d12103696ee42d8
SHA256sum: 8c6125c6ab394dbd7e6d327eace4f0dc4479b398720d19e403d2d40eaad7c6ed
Description: Translation for luci-app-asterisk - Ελληνικά (Greek)
Package: luci-i18n-asterisk-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci-i18n-asterisk-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 51fc71eb6250f2502844b0bf5c5c69c6
SHA256sum: 4db31ef483eac66878a097dfa90b3ed00ddff47e55cf4c2b6b6bbc2b6de026e3
Description: Translation for luci-app-asterisk - English
Package: luci-i18n-asterisk-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-asterisk-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: c0a59b67c28c3e3f39071fec8e605b3b
SHA256sum: c83401e05b373b7d13b3f980cb5ae5ef11b8d6d548def394fb598f361a91da29
Description: Translation for luci-app-asterisk - Español (Spanish)
Package: luci-i18n-asterisk-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-asterisk-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 959c6e9df995d1cbf9037e60e6e2e715
SHA256sum: fe6f711edbe5e8572cefbc1a17fc527fb77383ed2e96b912b97c17fa29180d32
Description: Translation for luci-app-asterisk - Français (French)
Package: luci-i18n-asterisk-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-asterisk-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: af75074acecfe3f7fb033b2886fce3b1
SHA256sum: 9a09620031a4d428bd6cc1763bc99621e7a9017869128f4ee73b0de6cf9c2aed
Description: Translation for luci-app-asterisk - עִבְרִית (Hebrew)
Package: luci-i18n-asterisk-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-asterisk-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 882c76c3f01925a0e8f3df65f510a071
SHA256sum: f74478d4490238ed3ccde613eab791514653b290996f6b265e99870cde966219
Description: Translation for luci-app-asterisk - Magyar (Hungarian)
Package: luci-i18n-asterisk-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 311
Filename: luci-i18n-asterisk-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: d2100eb485316d0bbb5d888efc23d4e5
SHA256sum: 9e2200d0641ffa9e5ecba71def0f75bd2dcf75b3ea089656866822d5caa8748f
Description: Translation for luci-app-asterisk - Italiano (Italian)
Package: luci-i18n-asterisk-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci-i18n-asterisk-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: 27c19e1e3429a5f25b6c6c5723146a7e
SHA256sum: 71b8d6d5a2cc9803b7a3240513aa0d9d7d1321f08545aaa3213f438f68a6a6f7
Description: Translation for luci-app-asterisk - 日本語 (Japanese)
Package: luci-i18n-asterisk-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-asterisk-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 8fdf71f180637213d03173dbc8fea345
SHA256sum: 03238b68a7d8a4d92f36ba6b7014e206f0ecbbfcc4a263c2c00327b0b61c1506
Description: Translation for luci-app-asterisk - Bahasa Melayu (Malay)
Package: luci-i18n-asterisk-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-asterisk-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 4fd61fddeb9944801c735ef60fb74005
SHA256sum: 5d11e960b18c5c359ee293edcd6228743b1e854baab635b0a6bffdfaa1c7be22
Description: Translation for luci-app-asterisk - Norsk (Norwegian)
Package: luci-i18n-asterisk-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 313
Filename: luci-i18n-asterisk-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: d8d400aa6c79dfe7ceae3b175ffb0e55
SHA256sum: a91f9ff94f8cbe45c4de6b1a5d390bdcd67dd35094e65c7b493b73979715badb
Description: Translation for luci-app-asterisk - Polski (Polish)
Package: luci-i18n-asterisk-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 344
Filename: luci-i18n-asterisk-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1161
MD5Sum: bad1d172a12169e85e1b12c7d195e426
SHA256sum: 64ac388d1176ceb18d40c9172fdc19e208ceab5a266126c0e18b8f5939f09a5a
Description: Translation for luci-app-asterisk - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-asterisk-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-asterisk-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: f06a9bcdd682a706f80f9fab50871c0e
SHA256sum: b5d62f243ab6ab445a71768cf910ef39772a198b80da4d4ad5a0876b110e96e2
Description: Translation for luci-app-asterisk - Português (Portuguese)
Package: luci-i18n-asterisk-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-asterisk-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: 123e835e7667799413b555f11fc6e59c
SHA256sum: ddf548244aa1c286cbef35708f78afe2d46f5d91467ad65f1089644af3376f21
Description: Translation for luci-app-asterisk - Română (Romanian)
Package: luci-i18n-asterisk-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci-i18n-asterisk-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: b28bc9ecda9c6549e336fecdb59d6f77
SHA256sum: e1926a7dc2a8570ec9c43f7a8e4c3b70bb7d29aa59638736eaa39990773504e3
Description: Translation for luci-app-asterisk - Русский (Russian)
Package: luci-i18n-asterisk-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-asterisk-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 79d37e531b2d9735fe71cb10dc2fc1e0
SHA256sum: 04e8b3f858a240aac597f628e4e5c74a8a7af11615e982c0cdbdf20378910738
Description: Translation for luci-app-asterisk - Slovenčina (Slovene)
Package: luci-i18n-asterisk-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-asterisk-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 0e0c573647b64e877d0d0cf86a4c3b41
SHA256sum: c496b9df9fe9a93696ef41e559263f484ee3454a37897cf663f3f3be659acf76
Description: Translation for luci-app-asterisk - Svenska (Swedish)
Package: luci-i18n-asterisk-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-asterisk-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 988ff8c7dca017b9a52050da9a5992cd
SHA256sum: f94f7b1077440115a958b870a1a8f7e5c2b1ed20b973ca539c174e7b51a14928
Description: Translation for luci-app-asterisk - Türkçe (Turkish)
Package: luci-i18n-asterisk-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci-i18n-asterisk-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1174
MD5Sum: a8482ea20d7e01ab275c3559c02813cc
SHA256sum: c68becd5f4e8d7c5eb3f6cf61fedcc0de06ebe8763c01f45e2284e470ba0d035
Description: Translation for luci-app-asterisk - украї́нська (Ukrainian)
Package: luci-i18n-asterisk-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-asterisk-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1147
MD5Sum: cb2bf463a13fb7d047d879655374c2a0
SHA256sum: 3a3871e91d42a30b47c97ed16036757cd9abcd9f1d5d43d7bd015cb7f585e088
Description: Translation for luci-app-asterisk - Tiếng Việt (Vietnamese)
Package: luci-i18n-asterisk-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-asterisk-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: b189a01ae82efdb4609a6b92f1519e48
SHA256sum: 96a55a9cef57607476e87d545ad36df106b88a9696fa09b8989384c00a67b4c0
Description: Translation for luci-app-asterisk - 普通话 (Chinese)
Package: luci-i18n-asterisk-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-asterisk
Source: feeds/luci/applications/luci-app-asterisk
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci-i18n-asterisk-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1171
MD5Sum: 697d4c099c29d2ef34e61bacc5ac0f59
SHA256sum: f159a62c92c1b63380dcd083b6de7264924f9c0d72a6f571503995be8c75c4ee
Description: Translation for luci-app-asterisk - 臺灣華語 (Taiwanese)
Package: luci-i18n-base-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 16379
Filename: luci-i18n-base-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 17160
MD5Sum: 70b8e428e706642621a5d6a7ef657e28
SHA256sum: 7615483552c6a5bc5cefda4da49121613a27277be112756f62b808c6d55b3e34
Description: Translation for luci-base - Català (Catalan)
Package: luci-i18n-base-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20729
Filename: luci-i18n-base-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 21546
MD5Sum: c815df42254e9a038342512eb1d867f0
SHA256sum: 64f3332c47658334c7a60917cbb491bf0c87134f9b26ae3e1a826e7f646afae3
Description: Translation for luci-base - Čeština (Czech)
Package: luci-i18n-base-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20353
Filename: luci-i18n-base-de_git-15.079.29361-3e37216-1_all.ipk
Size: 21161
MD5Sum: caa8251d5b825a4661c0995368edf92d
SHA256sum: 3ad35f8b12bf70364613e355bb3855b9b09306b8da15c17b1a60902f54e199a2
Description: Translation for luci-base - Deutsch (German)
Package: luci-i18n-base-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 17336
Filename: luci-i18n-base-el_git-15.079.29361-3e37216-1_all.ipk
Size: 18194
MD5Sum: 16c8c73deb66d46d63abc83d2e3c7b4a
SHA256sum: 4d3421ae46b9a90b4923ba690bf063ea93d8bf78587d8f9f167e42e6c05399fb
Description: Translation for luci-base - Ελληνικά (Greek)
Package: luci-i18n-base-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 725
Filename: luci-i18n-base-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1518
MD5Sum: 985eb39f0c5137f1e48ae4d9e912fbce
SHA256sum: 52baa6211cb29dce0c15fdfb7b6f2e0ffd6e6eff5f1bcd58dee284b198a361a3
Description: Translation for luci-base - English
Package: luci-i18n-base-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20918
Filename: luci-i18n-base-es_git-15.079.29361-3e37216-1_all.ipk
Size: 21741
MD5Sum: 8456ad623bc840af49a2c31ce943c4a4
SHA256sum: ef9d72a9eae3ea0b68dc27d40edd4ca0c766213e06b4bf2c92f851290601ea89
Description: Translation for luci-base - Español (Spanish)
Package: luci-i18n-base-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21091
Filename: luci-i18n-base-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 21919
MD5Sum: 2669d5be8d490626f6fa79effa384a38
SHA256sum: 436f843f0d1c0b56e1f4fe808cbb3f90bcdee1a9f365bf87c55d46b46f789cb2
Description: Translation for luci-base - Français (French)
Package: luci-i18n-base-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 6909
Filename: luci-i18n-base-he_git-15.079.29361-3e37216-1_all.ipk
Size: 7761
MD5Sum: 9a899059ec133dfa5e9c24a5eaa387bb
SHA256sum: 81b84a8d9320224bf1adf8e4a1a030436a25e72a718aeb97484c46d721dd3d2b
Description: Translation for luci-base - עִבְרִית (Hebrew)
Package: luci-i18n-base-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21761
Filename: luci-i18n-base-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 22588
MD5Sum: 266a302403f783c552a16c0b1032971f
SHA256sum: 0414a8c2248899b7cc58e2888bd145656fbea3f0ed2345d0aec2d76aee8e1caa
Description: Translation for luci-base - Magyar (Hungarian)
Package: luci-i18n-base-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 16757
Filename: luci-i18n-base-it_git-15.079.29361-3e37216-1_all.ipk
Size: 17576
MD5Sum: ad2836c162784f2f99fb36540a417244
SHA256sum: 76855bc246860c72918803bc60918469b979e4d1771c0f0b6e15271b1151ee71
Description: Translation for luci-base - Italiano (Italian)
Package: luci-i18n-base-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20419
Filename: luci-i18n-base-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 21218
MD5Sum: 8e621ddbb4cf4c062d222db7ea710b61
SHA256sum: 80d9955c009534b12a39e657b212fc60a156581136af5f338e772a047efb45bc
Description: Translation for luci-base - 日本語 (Japanese)
Package: luci-i18n-base-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 7431
Filename: luci-i18n-base-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 8249
MD5Sum: 7961d246ef28d5f6dddfccf08a7b1672
SHA256sum: c3fc6fb09ecb267fa2aa3c3906b871fd16a1f1e159e7f52bebf4342f6e58aaa4
Description: Translation for luci-base - Bahasa Melayu (Malay)
Package: luci-i18n-base-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 20142
Filename: luci-i18n-base-no_git-15.079.29361-3e37216-1_all.ipk
Size: 20951
MD5Sum: 8639051d749f7c30ccbc3cb95f5fc2e0
SHA256sum: aa9f4c4d28ecb55c8ebfb9c41d05bab1d5fc92af4399a4048d905358bce70fb7
Description: Translation for luci-base - Norsk (Norwegian)
Package: luci-i18n-base-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21572
Filename: luci-i18n-base-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 22383
MD5Sum: 7875c549b8d8f2c2d5b3757dd2eaed13
SHA256sum: c2aa42550f401f6d0271a028169cbd7368c086b6d03e88ad12a3db3cef64d628
Description: Translation for luci-base - Polski (Polish)
Package: luci-i18n-base-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21607
Filename: luci-i18n-base-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 22454
MD5Sum: 4950d132535e9ef8e8775bcc3354dd65
SHA256sum: c3b0aaefe6c81d8767c71a3f296c96b1a218825e8bc7024bda217a9b87ab0a6b
Description: Translation for luci-base - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-base-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 18739
Filename: luci-i18n-base-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 19522
MD5Sum: 165c8b63b3d2401ced640f19ae85ff16
SHA256sum: c04efdc3ca288e5eb0df6de405c1ecd1f01e3411708c2eaaf760ebaccd6cafab
Description: Translation for luci-base - Português (Portuguese)
Package: luci-i18n-base-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 10443
Filename: luci-i18n-base-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 11234
MD5Sum: 0a68f746f6700bb75a383a4a9d66dbb5
SHA256sum: 952a2cd43a3bb927b0118b8f225bc964cd5fb5bf01d2c9a1836bd099f90e5bcf
Description: Translation for luci-base - Română (Romanian)
Package: luci-i18n-base-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 24316
Filename: luci-i18n-base-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 25139
MD5Sum: d067913efef3c83476964c6310672322
SHA256sum: a1572b0aacccad21740ab02a13a1d14b5de4de675335003719ad4aed20e15a73
Description: Translation for luci-base - Русский (Russian)
Package: luci-i18n-base-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-base-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 59ccfef1573b76f8e2baac14d0a7cb74
SHA256sum: ac59d727b0455f0cac5addbd17f409e3fae3728e40c764359f81979b1efa634b
Description: Translation for luci-base - Slovenčina (Slovene)
Package: luci-i18n-base-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 829
Filename: luci-i18n-base-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1626
MD5Sum: c72402f55f9ee5c7b046f5ac94cf18fb
SHA256sum: 35afc34a1762788ba7294692381fa971284e68220dbaa3399aa35849a2216fc6
Description: Translation for luci-base - Svenska (Swedish)
Package: luci-i18n-base-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 2795
Filename: luci-i18n-base-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 3575
MD5Sum: 1c6bbacaa75f54e9ab81c5e7ddf6116f
SHA256sum: faf755a0aaff23792f5c693b43ccf1cfba2e8679431036e29da8476cfe86dc91
Description: Translation for luci-base - Türkçe (Turkish)
Package: luci-i18n-base-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 24791
Filename: luci-i18n-base-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 25627
MD5Sum: fcc7d7b73600eba88558ab75aa5a587f
SHA256sum: ae4a2f7c69e955e81608ad1d01f701362fc8ed179fa38485a0594cea1383f46b
Description: Translation for luci-base - украї́нська (Ukrainian)
Package: luci-i18n-base-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 6498
Filename: luci-i18n-base-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 7345
MD5Sum: 7c4221773c777e6cbe4158c1561362d7
SHA256sum: 936c357be29a684d5b4af84b6e5a027b85673a801d26d2637e7670464f27f608
Description: Translation for luci-base - Tiếng Việt (Vietnamese)
Package: luci-i18n-base-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 19468
Filename: luci-i18n-base-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 20312
MD5Sum: 8ecd6e2ccb0ec17dd665a75ecfb0dffe
SHA256sum: 509e37cf37e037d025846c75c99a16f828fefe46eb03c271a3dfc6122f6387c2
Description: Translation for luci-base - 普通话 (Chinese)
Package: luci-i18n-base-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-base
Section: luci
Architecture: all
Installed-Size: 21357
Filename: luci-i18n-base-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 22160
MD5Sum: 8bb6424f6edb737f5c5bfeca8e277154
SHA256sum: 0a00e0aa52507764bc3e3e9189e6e95c75842fa025cc79026bd710f0dff6f080
Description: Translation for luci-base - 臺灣華語 (Taiwanese)
Package: luci-i18n-commands-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1165
Filename: luci-i18n-commands-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1970
MD5Sum: 1567d05b02d73ad9841e029404b59a5b
SHA256sum: 5922036c1bc2a46f324a148b2ca37076f1dbefc2856a26d2676d7db07d196238
Description: Translation for luci-app-commands - Català (Catalan)
Package: luci-i18n-commands-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1163
Filename: luci-i18n-commands-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1979
MD5Sum: a17c5c4c8afd41177782a5c3620cd030
SHA256sum: 897b99d5a40e984d8a40651cdeadb94eb9827c4c6bbc5b1fa622cf7ba5551b6d
Description: Translation for luci-app-commands - Čeština (Czech)
Package: luci-i18n-commands-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1186
Filename: luci-i18n-commands-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1982
MD5Sum: 39905ee86bbfaba5ea1aa86854a8a69a
SHA256sum: be35708e842b8ff310c92d79b98fb3df1586601df81357ed1f428b6bd14df44a
Description: Translation for luci-app-commands - Deutsch (German)
Package: luci-i18n-commands-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-commands-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: e8a1fc2e36dd125de346d3cb16a57c87
SHA256sum: c88361c3266b13ce1e04cc4338476eba876c5350b515329f4dd58256509df020
Description: Translation for luci-app-commands - Ελληνικά (Greek)
Package: luci-i18n-commands-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci-i18n-commands-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1089
MD5Sum: 419ac4319d9f0918195c7d0187e30d62
SHA256sum: 071e71ae9930e91c857379f17959440e9604362b140ad868adf56202e21c30e4
Description: Translation for luci-app-commands - English
Package: luci-i18n-commands-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1112
Filename: luci-i18n-commands-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1923
MD5Sum: c0087caa783ab2189f2101cdb965d96c
SHA256sum: 8bd4fe9cef0b84e9c1b582db46a72e77d237490a53f1a0aa9d20cda12c7762af
Description: Translation for luci-app-commands - Español (Spanish)
Package: luci-i18n-commands-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1162
Filename: luci-i18n-commands-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1972
MD5Sum: 0f44d0e6e5eca59375f5b64b40adb180
SHA256sum: dd275f721dc36e7f849d13573844b2cef41287c53f1a4a31bdcdfed46835e1a5
Description: Translation for luci-app-commands - Français (French)
Package: luci-i18n-commands-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-commands-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: 01a3b28a3cbd904d1e13948c94ffbb4d
SHA256sum: 78ac1d736594f1f54ccae2041f02621ee09109b9011617625c03cef30cb08a78
Description: Translation for luci-app-commands - עִבְרִית (Hebrew)
Package: luci-i18n-commands-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1168
Filename: luci-i18n-commands-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1978
MD5Sum: 3d0f126968bfe10711d5911e3370dc99
SHA256sum: dc30386a42e5008d881272dfc6d084ee103b2bb2bc405003128ae2dc0adcd168
Description: Translation for luci-app-commands - Magyar (Hungarian)
Package: luci-i18n-commands-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1138
Filename: luci-i18n-commands-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1936
MD5Sum: 6cc860b42a244bdc963d2396d0989682
SHA256sum: 2c8851cbb53d5a794bf47c256c10384ba6a2265364001efbd45e491ec944403e
Description: Translation for luci-app-commands - Italiano (Italian)
Package: luci-i18n-commands-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1133
Filename: luci-i18n-commands-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1952
MD5Sum: 70d70c4e8904ec90fb7cd59251c44974
SHA256sum: 03c8f05b76342880e55f1bc74137b651655ee7342706f8d511b1fde2de34c785
Description: Translation for luci-app-commands - 日本語 (Japanese)
Package: luci-i18n-commands-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-commands-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 946d6ed5b013f7a11ee69675ba9932f8
SHA256sum: b7a7df9827fcd7964491590addaf552cb931c3ecc5eec1cfdfe02711c8f160b3
Description: Translation for luci-app-commands - Bahasa Melayu (Malay)
Package: luci-i18n-commands-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1101
Filename: luci-i18n-commands-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1912
MD5Sum: 66a8c92cb0e90100ee0f2519817b8d41
SHA256sum: e0db5d1a5b48b8052941cd83addf9b9e8fca338998e86764a8fb711efad089b4
Description: Translation for luci-app-commands - Norsk (Norwegian)
Package: luci-i18n-commands-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1130
Filename: luci-i18n-commands-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1933
MD5Sum: 3af1a6c0a83fb2b4f2f786db520f742d
SHA256sum: 81ee0bd5e35b17a833e19030898a726ca0f62ee74f3b0da137970262e482472c
Description: Translation for luci-app-commands - Polski (Polish)
Package: luci-i18n-commands-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1194
Filename: luci-i18n-commands-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2022
MD5Sum: 22933f124ea3cfe8e2c449c234e0c5e2
SHA256sum: ca0380017ff707469d64641a32905bb00100b762625e48fc01b46b89565fc100
Description: Translation for luci-app-commands - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-commands-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1149
Filename: luci-i18n-commands-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1958
MD5Sum: bcd63913382c999e55a1bb8b6a5df858
SHA256sum: 53c78d8756e3494b52a95ff315232787be45b9a8ef0ec2ebf5e37920d0e12782
Description: Translation for luci-app-commands - Português (Portuguese)
Package: luci-i18n-commands-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1116
Filename: luci-i18n-commands-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1929
MD5Sum: 01a98bf20756ad34fd284c1b37571c82
SHA256sum: 1239835b2d19a5fe17b82b580ab452d58069fd5dbb774403fdc0effae1e998c7
Description: Translation for luci-app-commands - Română (Romanian)
Package: luci-i18n-commands-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1342
Filename: luci-i18n-commands-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2175
MD5Sum: fa91e5471cef7e1320f700fee2dd3a3e
SHA256sum: 1ce8151c8d2e703798ff4ed70da7ecbec452d2a641907decbceb5f18fc6a57d6
Description: Translation for luci-app-commands - Русский (Russian)
Package: luci-i18n-commands-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-commands-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: 3ec8e229a939271eb57887d51d7f7ef7
SHA256sum: 4b193d545b1c0827f98e10bf9703d0781a822a3ac7010c63624eba5ddaa52a45
Description: Translation for luci-app-commands - Slovenčina (Slovene)
Package: luci-i18n-commands-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-commands-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: d84983ee33ea3a34ab96133644a5b605
SHA256sum: f9c039eacc9da2418c9e53438d1f6249a034757724f7b29ba3f5a3c52138be43
Description: Translation for luci-app-commands - Svenska (Swedish)
Package: luci-i18n-commands-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-commands-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: f4781483fd0d307782582420b10f6571
SHA256sum: 7029c6e5ac21ce60a4f1435341616ef6174d65857633f5aba97f246b34274cfa
Description: Translation for luci-app-commands - Türkçe (Turkish)
Package: luci-i18n-commands-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 975
Filename: luci-i18n-commands-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1813
MD5Sum: f324e159cf5b1fe05f82bca18dc3ccd8
SHA256sum: cc49e02d258a883e0004570b4bff1b8001982933f0492b6d39add20f7eaf1080
Description: Translation for luci-app-commands - украї́нська (Ukrainian)
Package: luci-i18n-commands-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-commands-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1143
MD5Sum: e0348a50d16082b1c74bcffa821e4a28
SHA256sum: 80694f630945edc150c86e195c50e79d3b7852272bfd2db421ef7be231011936
Description: Translation for luci-app-commands - Tiếng Việt (Vietnamese)
Package: luci-i18n-commands-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1136
Filename: luci-i18n-commands-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1957
MD5Sum: 0ded6925469c35357df14fb0a826b580
SHA256sum: 58eefbbd54c332d8cec0df728f4523c1de8bafe155b32544870041feb653f20a
Description: Translation for luci-app-commands - 普通话 (Chinese)
Package: luci-i18n-commands-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-commands
Source: feeds/luci/applications/luci-app-commands
Section: luci
Architecture: all
Installed-Size: 1124
Filename: luci-i18n-commands-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1952
MD5Sum: a6ae0c4f27ae2d8a536ddaa7c9871311
SHA256sum: 88f3d2529dc0cc77949a0f801e5fa7ed0c241687c493694907a0e1143fd5e79b
Description: Translation for luci-app-commands - 臺灣華語 (Taiwanese)
Package: luci-i18n-ddns-ca
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 871
Filename: luci-i18n-ddns-ca_2.2.2-1_all.ipk
Size: 1722
MD5Sum: 1f49bd1f4bdc31ca9c177a797654c64c
SHA256sum: b74e2192b6bed473be93a30af73fe353fa2e0a54bf89f9f834ab62a833d548d1
Description: Translation for luci-app-ddns - Català (Catalan)
Package: luci-i18n-ddns-cs
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 891
Filename: luci-i18n-ddns-cs_2.2.2-1_all.ipk
Size: 1750
MD5Sum: 9d070000d1fc8a31e44a38010e38d258
SHA256sum: 1a3deb3bb3c7773ec18c7557a198dd53dbc916d5cf4109e5f62640aeea6dfa97
Description: Translation for luci-app-ddns - Čeština (Czech)
Package: luci-i18n-ddns-de
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 6312
Filename: luci-i18n-ddns-de_2.2.2-1_all.ipk
Size: 7186
MD5Sum: f0a5c9f0579aa456e133b2076894df1c
SHA256sum: 11872f1cea76c6204e7571c99a4453aa3e215e506ec037bff0f7b3e2648be22c
Description: Translation for luci-app-ddns - Deutsch (German)
Package: luci-i18n-ddns-el
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 1093
Filename: luci-i18n-ddns-el_2.2.2-1_all.ipk
Size: 1960
MD5Sum: 26d150d65b1373336e742d84137f81b2
SHA256sum: 8eab899b8ca14a2f6030d14f5ceaedff8e0a2db347f3b870ff46c9dd15bf1090
Description: Translation for luci-app-ddns - Ελληνικά (Greek)
Package: luci-i18n-ddns-en
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 303
Filename: luci-i18n-ddns-en_2.2.2-1_all.ipk
Size: 1129
MD5Sum: f69136ef51b36532b7a3d8d70b78088f
SHA256sum: b1dbe28f2d83eab414806d6fe0718bab27b3ba765649209ada31aef1a5192ca5
Description: Translation for luci-app-ddns - English
Package: luci-i18n-ddns-es
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 863
Filename: luci-i18n-ddns-es_2.2.2-1_all.ipk
Size: 1718
MD5Sum: 8f893ab329d2b47083a6c47a08da396d
SHA256sum: 32e6f9de31a2e470ef5b061856f97953386e6585a214e890d7bd26b85c87ff25
Description: Translation for luci-app-ddns - Español (Spanish)
Package: luci-i18n-ddns-fr
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 840
Filename: luci-i18n-ddns-fr_2.2.2-1_all.ipk
Size: 1693
MD5Sum: a27f486fc247faa315670b33993c525b
SHA256sum: abf4a287addec3be45af6fc897aabe7998b51f1d9de03dff10e59b685ffef686
Description: Translation for luci-app-ddns - Français (French)
Package: luci-i18n-ddns-he
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 919
Filename: luci-i18n-ddns-he_2.2.2-1_all.ipk
Size: 1780
MD5Sum: 1b611dc27eff26ee6debe0d4f9f4d51d
SHA256sum: 1639d7acb0cf07dc36c8fe903c7bdc7105f13cba7c20beab20a4ac637e5aeab2
Description: Translation for luci-app-ddns - עִבְרִית (Hebrew)
Package: luci-i18n-ddns-hu
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 944
Filename: luci-i18n-ddns-hu_2.2.2-1_all.ipk
Size: 1791
MD5Sum: 2ba9289f17c7b80a081bffe65ca95838
SHA256sum: bcdbd2b48788990db29583b100369e24682616e12c80e7995e1377bb04c60dd5
Description: Translation for luci-app-ddns - Magyar (Hungarian)
Package: luci-i18n-ddns-it
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 853
Filename: luci-i18n-ddns-it_2.2.2-1_all.ipk
Size: 1694
MD5Sum: 0c4fe232cfa40425fe8344e75416e70a
SHA256sum: 86d388715a5c7fdb7bbb38fc6667512897a96b0d40b27f0a38ad94d35c515da2
Description: Translation for luci-app-ddns - Italiano (Italian)
Package: luci-i18n-ddns-ja
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 995
Filename: luci-i18n-ddns-ja_2.2.2-1_all.ipk
Size: 1854
MD5Sum: 44951268bfa80972de14320799093055
SHA256sum: bafd25cb74243c7004603a1dff1ba2029ce66c1afed60057bf7c8b6fa7594b80
Description: Translation for luci-app-ddns - 日本語 (Japanese)
Package: luci-i18n-ddns-ms
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 317
Filename: luci-i18n-ddns-ms_2.2.2-1_all.ipk
Size: 1151
MD5Sum: 475ad19a2caae31ede16acfd187e421b
SHA256sum: ffef8c9120b7cbe6bbf9c35e246ad5d061a988f911ea8be1ff04da6fbc468e23
Description: Translation for luci-app-ddns - Bahasa Melayu (Malay)
Package: luci-i18n-ddns-no
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 891
Filename: luci-i18n-ddns-no_2.2.2-1_all.ipk
Size: 1731
MD5Sum: ac69b51e3e91f8c0d287c09428e190ed
SHA256sum: b8719d6cb3cf7077837202fb8dc8385a7b4400df3ac3125de99dc535fcac1783
Description: Translation for luci-app-ddns - Norsk (Norwegian)
Package: luci-i18n-ddns-pl
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 918
Filename: luci-i18n-ddns-pl_2.2.2-1_all.ipk
Size: 1761
MD5Sum: fe500086d9559367c3612b8183cecb29
SHA256sum: 374183fa9ade7ed8c6cea19fe2d3e9b5cbc61f1bb4ece096aeb31b0961afe444
Description: Translation for luci-app-ddns - Polski (Polish)
Package: luci-i18n-ddns-pt-br
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 895
Filename: luci-i18n-ddns-pt-br_2.2.2-1_all.ipk
Size: 1771
MD5Sum: cc0f9d5bbe5c8cf1c4de006c94eae697
SHA256sum: 4fd6433956f7b5e23e049a24d6a09fc94b2eaa1c271eaf29d50c187adda7888d
Description: Translation for luci-app-ddns - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-ddns-pt
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 850
Filename: luci-i18n-ddns-pt_2.2.2-1_all.ipk
Size: 1707
MD5Sum: b9575cec993ed5871c9505dc525d45ce
SHA256sum: 627101baa55ded5baae9f5d2173cb140dc7a60cb006566377b74b6480dbaca07
Description: Translation for luci-app-ddns - Português (Portuguese)
Package: luci-i18n-ddns-ro
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 912
Filename: luci-i18n-ddns-ro_2.2.2-1_all.ipk
Size: 1759
MD5Sum: c966db01842d8004e165a8eaa19adbb4
SHA256sum: 073ddfd099d939adfd137ef30803e5eaa6e16d8735cced6bdac4a52154f2d745
Description: Translation for luci-app-ddns - Română (Romanian)
Package: luci-i18n-ddns-ru
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 1015
Filename: luci-i18n-ddns-ru_2.2.2-1_all.ipk
Size: 1872
MD5Sum: 610f76026cdb44cc40f11e5d19777936
SHA256sum: 785c1d3092ae184a2c7d376f8d73209a3d94652323e7156d455e80f7a6d9d973
Description: Translation for luci-app-ddns - Русский (Russian)
Package: luci-i18n-ddns-sk
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 320
Filename: luci-i18n-ddns-sk_2.2.2-1_all.ipk
Size: 1158
MD5Sum: 84261b62975f544b398826463c5d1607
SHA256sum: 82d3126e097de8c310887c9cf22e7e8531ec05816a5057653fa29ed586a1cc1f
Description: Translation for luci-app-ddns - Slovenčina (Slovene)
Package: luci-i18n-ddns-sv
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 314
Filename: luci-i18n-ddns-sv_2.2.2-1_all.ipk
Size: 1146
MD5Sum: ee24937110de5f9037f3f28a6c5227ef
SHA256sum: a3cd5bcb7f8a3d7768d206f9c545471ea7123425357aad1740b8bb8d24cf4035
Description: Translation for luci-app-ddns - Svenska (Swedish)
Package: luci-i18n-ddns-tr
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 557
Filename: luci-i18n-ddns-tr_2.2.2-1_all.ipk
Size: 1403
MD5Sum: c46486b2ce4a617ab3fac2fff46c4006
SHA256sum: de34a09195ca58928adc6c8b69731f96fa380cc2417c32ab37966ed7b3b897f8
Description: Translation for luci-app-ddns - Türkçe (Turkish)
Package: luci-i18n-ddns-uk
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 1047
Filename: luci-i18n-ddns-uk_2.2.2-1_all.ipk
Size: 1921
MD5Sum: a67f027e2059ac8540a4695b7bc94c9b
SHA256sum: 2d0cc9466154e86d3da899b7561d7a5358c7c8fdd89ac201dd2bbfc8e662acdd
Description: Translation for luci-app-ddns - украї́нська (Ukrainian)
Package: luci-i18n-ddns-vi
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 722
Filename: luci-i18n-ddns-vi_2.2.2-1_all.ipk
Size: 1577
MD5Sum: 657d89c7d45505723ac42f5c62831b4f
SHA256sum: 6cc25ae5b7959f527ebde40d3867a611b673fd4a3c23badfeec9c00fa2f0a150
Description: Translation for luci-app-ddns - Tiếng Việt (Vietnamese)
Package: luci-i18n-ddns-zh-cn
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 922
Filename: luci-i18n-ddns-zh-cn_2.2.2-1_all.ipk
Size: 1787
MD5Sum: a7a406611c6d0c57be6196af247bc61e
SHA256sum: b066c52533c27c166a1076e4e6d13dd87c2edd0411e7583e22bce093d600cbe5
Description: Translation for luci-app-ddns - 普通话 (Chinese)
Package: luci-i18n-ddns-zh-tw
Version: 2.2.2-1
Depends: libc, luci-app-ddns
Source: feeds/luci/applications/luci-app-ddns
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 931
Filename: luci-i18n-ddns-zh-tw_2.2.2-1_all.ipk
Size: 1794
MD5Sum: 1e558ac98cc8021eeafa9188ff720554
SHA256sum: 4c689e7cb3612dec84dd65f793d0c6295da53955fa7ec5a8cafa97c03553d856
Description: Translation for luci-app-ddns - 臺灣華語 (Taiwanese)
Package: luci-i18n-diag-core-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 421
Filename: luci-i18n-diag-core-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1220
MD5Sum: b6288fca5a78e22264d1802711b11f06
SHA256sum: 15185c89df6f5510cc6652e0de63ac77a2f6eef457ee9a3608754e8282b165e2
Description: Translation for luci-app-diag-core - Català (Catalan)
Package: luci-i18n-diag-core-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 708
Filename: luci-i18n-diag-core-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1512
MD5Sum: f6da99ce43b52d2ed0543b014c04a5cf
SHA256sum: 5ae9a7ef879e8f797952aedaa76573f9cda6159c766bc78a309d180ce3151771
Description: Translation for luci-app-diag-core - Čeština (Czech)
Package: luci-i18n-diag-core-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 650
Filename: luci-i18n-diag-core-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1451
MD5Sum: ae485d838b0749fb2d4db2faa17ffa83
SHA256sum: bfec81e83b29ff80d1c1c9dc0dd8b5d171aecd0e7881de83517613cb4930bd67
Description: Translation for luci-app-diag-core - Deutsch (German)
Package: luci-i18n-diag-core-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 705
Filename: luci-i18n-diag-core-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1525
MD5Sum: 85575fabdcd0cf8da6e5caeb225d70ad
SHA256sum: 441dd528b2649566c34914c4007710448ded06fefd3b39af6d0f05358050221e
Description: Translation for luci-app-diag-core - Ελληνικά (Greek)
Package: luci-i18n-diag-core-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci-i18n-diag-core-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: f83a6abaa16258485d397f9765e22bec
SHA256sum: b48ab118d81f61cc48c7273f124c202670098ef5478166b64063e9522b1bb0ef
Description: Translation for luci-app-diag-core - English
Package: luci-i18n-diag-core-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 649
Filename: luci-i18n-diag-core-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1451
MD5Sum: a0bd139b4df1caf6b67e9681020905ec
SHA256sum: 732d973259c435f6392c5992144efd3ab63cc6ebcf5f6238bc6d64fa387b425f
Description: Translation for luci-app-diag-core - Español (Spanish)
Package: luci-i18n-diag-core-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 661
Filename: luci-i18n-diag-core-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1465
MD5Sum: ce12babe903c6f8934e91d2f4be3b0e4
SHA256sum: a90685e79305a9e610f3c83f8708a09868544213f9cfd281820b53e5416d1de6
Description: Translation for luci-app-diag-core - Français (French)
Package: luci-i18n-diag-core-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci-i18n-diag-core-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1156
MD5Sum: e69a98a207f6ea7a01e4d49d1071161b
SHA256sum: e16a87e5ca2b41a5692045bf2c0c63023da5639294c11eb9d57d5f7b85174ff7
Description: Translation for luci-app-diag-core - עִבְרִית (Hebrew)
Package: luci-i18n-diag-core-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 707
Filename: luci-i18n-diag-core-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1509
MD5Sum: 7041a7d0bb42de33789fa385b6544d0b
SHA256sum: 5a4aca83adfc5d87f012c481915fea7498c84f071f63c1f1a50ed3a43c84feda
Description: Translation for luci-app-diag-core - Magyar (Hungarian)
Package: luci-i18n-diag-core-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 664
Filename: luci-i18n-diag-core-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1459
MD5Sum: 2fa1cbe026719235c1865133bedcea70
SHA256sum: 978b352d0324823a3e83715ae287d7548ff756bae7232136999b73f6b62ad120
Description: Translation for luci-app-diag-core - Italiano (Italian)
Package: luci-i18n-diag-core-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 413
Filename: luci-i18n-diag-core-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1223
MD5Sum: 437eb4c78dd6e04940fe86165ce90d9f
SHA256sum: d4067b1157fc7281b618516fcedefb4d65ccd94729a7f4e0b0b65758c04dec2e
Description: Translation for luci-app-diag-core - 日本語 (Japanese)
Package: luci-i18n-diag-core-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-diag-core-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 8a05b86b9e518b263790e4f783e8cfef
SHA256sum: fd8182826291de8ecf193fc0da0590cac51e20f26aaa320db15da26096a40773
Description: Translation for luci-app-diag-core - Bahasa Melayu (Malay)
Package: luci-i18n-diag-core-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 656
Filename: luci-i18n-diag-core-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1458
MD5Sum: 9ca533bb6bf97dd7e4014caa11aadc98
SHA256sum: 99faa9dcd8ce26244a82ce4c215c5138a7fbf36eaf484e4002e9f77eb5a26d95
Description: Translation for luci-app-diag-core - Norsk (Norwegian)
Package: luci-i18n-diag-core-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 673
Filename: luci-i18n-diag-core-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1472
MD5Sum: 4d83cf600d5a6eb6487e6c7487f3b762
SHA256sum: ed9edd394adca61bb22813ca3ec69659555a700ab5d84308d40e8a8a4c8f8995
Description: Translation for luci-app-diag-core - Polski (Polish)
Package: luci-i18n-diag-core-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 691
Filename: luci-i18n-diag-core-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1508
MD5Sum: e9571758ac5d19b35dcc33abae013b2e
SHA256sum: 78d8fd0fab403988d8e27a5e1feabccdd0ffc74552cdbadbdb846b7ed8160248
Description: Translation for luci-app-diag-core - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-diag-core-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 657
Filename: luci-i18n-diag-core-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1465
MD5Sum: f96f10a517c9c43ae2658aaeb28b2c33
SHA256sum: f8861ea11feb4e907cd7cba9900a3da8d2b73af4b79485f2aca909e05636aeb4
Description: Translation for luci-app-diag-core - Português (Portuguese)
Package: luci-i18n-diag-core-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 676
Filename: luci-i18n-diag-core-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1478
MD5Sum: 3eb6f51beb6ad423722f093d7cb2881b
SHA256sum: bcd9adc7a24215850336a14ab2664e5fd400ca9594f049f8ddb7b6b079460857
Description: Translation for luci-app-diag-core - Română (Romanian)
Package: luci-i18n-diag-core-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 775
Filename: luci-i18n-diag-core-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1589
MD5Sum: d6cb04255251d83c6ee2a070a989dbf7
SHA256sum: 3a53490aea98217c589ad51b48900a1c4a4690a33c9f4cdeb608f57417c7bec8
Description: Translation for luci-app-diag-core - Русский (Russian)
Package: luci-i18n-diag-core-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-diag-core-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: adc6a939aa67ae4d2d06e68dfd73a226
SHA256sum: 97376cf29ad65f1f1e63b6d90f29697337ceaf96ca8d46d89a7cf9a5cc3851ed
Description: Translation for luci-app-diag-core - Slovenčina (Slovene)
Package: luci-i18n-diag-core-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-diag-core-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: fb3924b9623da106ae9864f24ef870f3
SHA256sum: b2127506b4cc7b01e1eef223dc7d0c80af7560b4b36ba1c168c7e1e2a14cb73f
Description: Translation for luci-app-diag-core - Svenska (Swedish)
Package: luci-i18n-diag-core-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-diag-core-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: 85bf7308805409511f4728a97417d3e1
SHA256sum: e2b31f656033914ba130d664f196f720bff8ba0c7c8d6d7359813c4536aa6cb3
Description: Translation for luci-app-diag-core - Türkçe (Turkish)
Package: luci-i18n-diag-core-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 818
Filename: luci-i18n-diag-core-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1649
MD5Sum: cdceeeeab12e20348b3386ffd0e65636
SHA256sum: 8e62971982e6fbfec1abc0016633a3036a3a3921a4ba0c46f68be344b7f40c91
Description: Translation for luci-app-diag-core - украї́нська (Ukrainian)
Package: luci-i18n-diag-core-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci-i18n-diag-core-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1146
MD5Sum: e7cd03e81636a11f007b2bc8cb506c82
SHA256sum: bd0a1682ace1157910cfbf41700822c4ae26ee913e5cf8f828a3c3dce69253a1
Description: Translation for luci-app-diag-core - Tiếng Việt (Vietnamese)
Package: luci-i18n-diag-core-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 670
Filename: luci-i18n-diag-core-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1481
MD5Sum: 7e46eb5df6d4896ba2565519513ec659
SHA256sum: 1350274023dfa045d824982a3eee3ddf66679d58392c7cafcd1fb010c21a52c9
Description: Translation for luci-app-diag-core - 普通话 (Chinese)
Package: luci-i18n-diag-core-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-core
Source: feeds/luci/applications/luci-app-diag-core
Section: luci
Architecture: all
Installed-Size: 702
Filename: luci-i18n-diag-core-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1525
MD5Sum: 6d03a8b676496a602ced08fd92480f29
SHA256sum: 50b3dfbc26ef5ca74cd2f5168f8fd152b0e367a1505fcc4868626e034c0fecca
Description: Translation for luci-app-diag-core - 臺灣華語 (Taiwanese)
Package: luci-i18n-diag-devinfo-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 791
Filename: luci-i18n-diag-devinfo-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1598
MD5Sum: bd73577f6293f1b0e463ff3fd76123da
SHA256sum: cf772d6e4d690c1c42ce0e0eccda52e5b24d3976e4d38a4503d607a411befa39
Description: Translation for luci-app-diag-devinfo - Català (Catalan)
Package: luci-i18n-diag-devinfo-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1610
Filename: luci-i18n-diag-devinfo-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2435
MD5Sum: 75eefc614f0534959b75ee039daaaac8
SHA256sum: 01c0ae96f9ad2509800d208e54e0659f7662e933b9a1d645d86aac21813f1743
Description: Translation for luci-app-diag-devinfo - Čeština (Czech)
Package: luci-i18n-diag-devinfo-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2118
Filename: luci-i18n-diag-devinfo-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2930
MD5Sum: 75a23c398ff0c473a196e896e72f1433
SHA256sum: 3461c11587c960e4e6a06a03ce13d597ac398afe844610049f1e28755c369520
Description: Translation for luci-app-diag-devinfo - Deutsch (German)
Package: luci-i18n-diag-devinfo-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1303
Filename: luci-i18n-diag-devinfo-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2128
MD5Sum: d411f253c203cf25dd32f59bfe862a00
SHA256sum: 8ea5077bbe877ca89e431c8e4a33702d6259c1eccc36ffd530ceb4066febf5ac
Description: Translation for luci-app-diag-devinfo - Ελληνικά (Greek)
Package: luci-i18n-diag-devinfo-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci-i18n-diag-devinfo-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 45cad27ef6d95eae45ffdb5579727f16
SHA256sum: b945269f4efddc1c4c800353e4e70806a9d9f82e05e120fc7bb4c38f0ff73f1e
Description: Translation for luci-app-diag-devinfo - English
Package: luci-i18n-diag-devinfo-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2098
Filename: luci-i18n-diag-devinfo-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2921
MD5Sum: dd21a4b914032a56c207c428ffbbf98f
SHA256sum: 8c626466c5e6cc3385f43e18e5d9bb9331a2a025443a8fbb57ad6e4723bd7723
Description: Translation for luci-app-diag-devinfo - Español (Spanish)
Package: luci-i18n-diag-devinfo-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2100
Filename: luci-i18n-diag-devinfo-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2913
MD5Sum: 47e7d4116ba892dccfe12990cc8a994e
SHA256sum: c0dbbc3cb83ca9de0899a88a3488d9a8bca84e1cc99cca6aa0ce8794145fb55f
Description: Translation for luci-app-diag-devinfo - Français (French)
Package: luci-i18n-diag-devinfo-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci-i18n-diag-devinfo-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1159
MD5Sum: c779c3ee26580d151ca00dc421e8d074
SHA256sum: e13cb934d9d70b6d30cfcff4497d6e540976d08ff489fb461a1d17439e317b5e
Description: Translation for luci-app-diag-devinfo - עִבְרִית (Hebrew)
Package: luci-i18n-diag-devinfo-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2190
Filename: luci-i18n-diag-devinfo-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 3002
MD5Sum: ed6733534e61479439d50d11235efc94
SHA256sum: 34f210a17acd7d8f4ff14307abaa0a62c069953856ea8c3da3564bb3ecaa2af5
Description: Translation for luci-app-diag-devinfo - Magyar (Hungarian)
Package: luci-i18n-diag-devinfo-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2102
Filename: luci-i18n-diag-devinfo-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2909
MD5Sum: c2012c8080e93df5fd3bc55d701c75af
SHA256sum: d3e6d33d26907db0f2eb5b0b48bbdd89215bd01c68910c05d05f654e2f967578
Description: Translation for luci-app-diag-devinfo - Italiano (Italian)
Package: luci-i18n-diag-devinfo-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1076
Filename: luci-i18n-diag-devinfo-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1902
MD5Sum: d6e06576ad60b92058d09cd956287714
SHA256sum: 405f417c9612ea984d20eb37a815e416df933a4490c37a70b76d6aaba646399a
Description: Translation for luci-app-diag-devinfo - 日本語 (Japanese)
Package: luci-i18n-diag-devinfo-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-diag-devinfo-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: b4b5c36e283f8d0d823b12b99c0f19a7
SHA256sum: f7f9ba862e2633acb3a9701000b222cbed150c2cc726b745efa2424b933505c2
Description: Translation for luci-app-diag-devinfo - Bahasa Melayu (Malay)
Package: luci-i18n-diag-devinfo-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2067
Filename: luci-i18n-diag-devinfo-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2883
MD5Sum: c0a3d35e3d8220ca3e24f2de4ecc2262
SHA256sum: dc4a5adb8cbfbcafed2839a33e0a9da18ffa0f21a2d5a266e252a18b86444f7b
Description: Translation for luci-app-diag-devinfo - Norsk (Norwegian)
Package: luci-i18n-diag-devinfo-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2100
Filename: luci-i18n-diag-devinfo-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2913
MD5Sum: 31c63029bbe06aaec28cf105b2e5e84a
SHA256sum: 672b346743d32a7e9efdb381b5b6df65960877d276d8b4d70a48fb2258d8c7c0
Description: Translation for luci-app-diag-devinfo - Polski (Polish)
Package: luci-i18n-diag-devinfo-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2136
Filename: luci-i18n-diag-devinfo-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2975
MD5Sum: 39379a8f100e8a9c33650d59103ba5ff
SHA256sum: 6f49c15c4285ca885d10ce69344c9ed9d367d450bbc3155c7838bcf78896deb4
Description: Translation for luci-app-diag-devinfo - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-diag-devinfo-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 960
Filename: luci-i18n-diag-devinfo-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1775
MD5Sum: 76784de20296ad323ef474d1b6a5e706
SHA256sum: 9fac496400bf3ff0eba1c1ffbc95d2aefee264e4b3034515330485139f6eb2d4
Description: Translation for luci-app-diag-devinfo - Português (Portuguese)
Package: luci-i18n-diag-devinfo-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1183
Filename: luci-i18n-diag-devinfo-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1997
MD5Sum: 0bf416a3fa3272918ebf7c547ea8a952
SHA256sum: 7e03bf96d7e3e4561ae9bc364fd8162733202dc42ea9fcce240fa2ae50de1649
Description: Translation for luci-app-diag-devinfo - Română (Romanian)
Package: luci-i18n-diag-devinfo-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2408
Filename: luci-i18n-diag-devinfo-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3221
MD5Sum: c54b1e342421a0a1cfec1fef7ffd91e7
SHA256sum: 644c3a4de1b8db00f7bec4c73683c50af997d7acd163f341f76b252229a3499b
Description: Translation for luci-app-diag-devinfo - Русский (Russian)
Package: luci-i18n-diag-devinfo-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-diag-devinfo-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1125
MD5Sum: 346baf4c5e0960853924db3173bc91a6
SHA256sum: fcc02cb43c01ce0e10190e3c9c50f274241bf2acb0ec7bf8c88001d9fcd0d596
Description: Translation for luci-app-diag-devinfo - Slovenčina (Slovene)
Package: luci-i18n-diag-devinfo-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-diag-devinfo-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: d5756d30ddc91f88dba1a20da4336f15
SHA256sum: 0da8c8ca6fa484c4761811f24209c17ad11d4fcef996bb58df10fbac86e9c05f
Description: Translation for luci-app-diag-devinfo - Svenska (Swedish)
Package: luci-i18n-diag-devinfo-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-diag-devinfo-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 1b9e45b723d89ec2388bd41442adb8ae
SHA256sum: fdbe1f1737aaa628f8998b90e9411b9fa9d4f92c897862262f34cc38fc88ecf2
Description: Translation for luci-app-diag-devinfo - Türkçe (Turkish)
Package: luci-i18n-diag-devinfo-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 1330
Filename: luci-i18n-diag-devinfo-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2177
MD5Sum: 266a1419d9a8a57985a9f009d1818afa
SHA256sum: ed19a2de151271e59e6ffc71ebeded0a789cfa7eb562be7e89a7d5945970eb71
Description: Translation for luci-app-diag-devinfo - украї́нська (Ukrainian)
Package: luci-i18n-diag-devinfo-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci-i18n-diag-devinfo-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: 2e7aad846d267554bdf1a84542413065
SHA256sum: b19ba12aabd3fb86a200859f4245311030c7da29dd7ea604cf424c7e341b69ef
Description: Translation for luci-app-diag-devinfo - Tiếng Việt (Vietnamese)
Package: luci-i18n-diag-devinfo-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2044
Filename: luci-i18n-diag-devinfo-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2879
MD5Sum: 68072a03d46e0e640ae0bd6bd30fcd60
SHA256sum: fbf4a7515034774feb608ddc97dd83a6bb2c4fa67a17341d10d97e0d2c580a25
Description: Translation for luci-app-diag-devinfo - 普通话 (Chinese)
Package: luci-i18n-diag-devinfo-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-diag-devinfo
Source: feeds/luci/applications/luci-app-diag-devinfo
Section: luci
Architecture: all
Installed-Size: 2076
Filename: luci-i18n-diag-devinfo-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2918
MD5Sum: eab1d6bae49e88810b72887e292b8a6b
SHA256sum: 86b41c71767d83af29f2e6e51a1f585fd870c7d9cc59b85337eac6d3690e4989
Description: Translation for luci-app-diag-devinfo - 臺灣華語 (Taiwanese)
Package: luci-i18n-firewall-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4060
Filename: luci-i18n-firewall-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 4842
MD5Sum: ef5e9a4ae08d53edb45586948b1888fc
SHA256sum: 8efbb18d4b4ea8dc25176a505b73af0ca66b6905f47026af0607e6ecfc5a824b
Description: Translation for luci-app-firewall - Català (Catalan)
Package: luci-i18n-firewall-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4206
Filename: luci-i18n-firewall-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 4993
MD5Sum: 550d9d179138481a706491968f1a573b
SHA256sum: 7c6d8b5243a5b41bcc47e8f6d4b9a9d23140a2ec95fec65ef5395ee0396220b4
Description: Translation for luci-app-firewall - Čeština (Czech)
Package: luci-i18n-firewall-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4128
Filename: luci-i18n-firewall-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4905
MD5Sum: d1c8fe54692969f92351fb966df8eb1b
SHA256sum: cd824a24d626b8a4beb113fe3491d2028a262d578e6dc39c8e8a50550ff5fcc7
Description: Translation for luci-app-firewall - Deutsch (German)
Package: luci-i18n-firewall-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 1812
Filename: luci-i18n-firewall-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2643
MD5Sum: ae1b995c543282801f35b0db06ba1198
SHA256sum: 5eb0c902c76d6a2a1cdc77378677e63782ab821c7ad80e8e395c4ff5c89f4d33
Description: Translation for luci-app-firewall - Ελληνικά (Greek)
Package: luci-i18n-firewall-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 306
Filename: luci-i18n-firewall-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: 7a7a69a9bfd08a94f11569e8e795a90f
SHA256sum: 415521f56e6a6ef82e07b3f5841a55cd366608c3d83323de1990f545bfc6ec3a
Description: Translation for luci-app-firewall - English
Package: luci-i18n-firewall-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4060
Filename: luci-i18n-firewall-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4851
MD5Sum: 529a90e04b9e89375d90e1f5511aeacd
SHA256sum: 4587ae899fb54c524d634a8a39a3d5e8bf655cdbe36aa26b1bea5eba341b1b2d
Description: Translation for luci-app-firewall - Español (Spanish)
Package: luci-i18n-firewall-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 2823
Filename: luci-i18n-firewall-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 3608
MD5Sum: 431d4cb344cb1e06b9f619d6f40efe40
SHA256sum: edadd014e952cda1af6d26ded004cf6a0cd3d651d6360d856e4b396c69a073d1
Description: Translation for luci-app-firewall - Français (French)
Package: luci-i18n-firewall-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci-i18n-firewall-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1150
MD5Sum: 77ab7a8cb3596e7fb045f8103fddc93e
SHA256sum: 503d14c7b1a585572fd34a9881af51fada13ae9d95b3016db94f4ab79f4322c5
Description: Translation for luci-app-firewall - עִבְרִית (Hebrew)
Package: luci-i18n-firewall-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4395
Filename: luci-i18n-firewall-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 5171
MD5Sum: dea8aed4fb841bdc294c9ab3112268df
SHA256sum: 5e013cc258e607e902ab5f9b5f6319fd354d20f2fa131d6060dd67d6b3e710d7
Description: Translation for luci-app-firewall - Magyar (Hungarian)
Package: luci-i18n-firewall-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 1317
Filename: luci-i18n-firewall-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2122
MD5Sum: 32592363c370a70093c18a3d169c378d
SHA256sum: b02da6910d37c5a57830de66721fc91acaca821970881c2d9bce63497bfff345
Description: Translation for luci-app-firewall - Italiano (Italian)
Package: luci-i18n-firewall-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4151
Filename: luci-i18n-firewall-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 4949
MD5Sum: 456621ce126caa9b8cf685cf8686732f
SHA256sum: 3f9b61b439af00bc0a0f5cf4213f0125626a38bdb5a0271c34d75b15d6f81308
Description: Translation for luci-app-firewall - 日本語 (Japanese)
Package: luci-i18n-firewall-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-firewall-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: b8e632cea62dc8a9704bc5b2a330d534
SHA256sum: b818d4cea6cf3251f6d8ecf24ad7abae1349f0eb9c4a09241031fb6c5d258ab7
Description: Translation for luci-app-firewall - Bahasa Melayu (Malay)
Package: luci-i18n-firewall-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4029
Filename: luci-i18n-firewall-no_git-15.079.29361-3e37216-1_all.ipk
Size: 4809
MD5Sum: 85198716484a961a4d199c71f66ec33a
SHA256sum: 8cb299227612dd6b8cd4222f2ff8af7dbb936f75766d5020fd17315aaf22d0a5
Description: Translation for luci-app-firewall - Norsk (Norwegian)
Package: luci-i18n-firewall-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4251
Filename: luci-i18n-firewall-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 5028
MD5Sum: bf0967b4915ba5508b7663310ff64f47
SHA256sum: 5a91979df2d7afb0b1e60a2b2173b42ee46073d0c30d658e5462360f8a16bd6e
Description: Translation for luci-app-firewall - Polski (Polish)
Package: luci-i18n-firewall-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4109
Filename: luci-i18n-firewall-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4910
MD5Sum: e50a6558c16aaf8dc15ec70eac727a77
SHA256sum: 241ae2a0a771fad074b856d39c6664df5c5cc55573ffb0199d9d525670afc0d0
Description: Translation for luci-app-firewall - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-firewall-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 3477
Filename: luci-i18n-firewall-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 4261
MD5Sum: 792459315dc8dbd84d928f8b46490122
SHA256sum: afefe73589429083b2834eb345e22a464d84189d7790e281984eff0eef0148bc
Description: Translation for luci-app-firewall - Português (Portuguese)
Package: luci-i18n-firewall-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 1779
Filename: luci-i18n-firewall-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2593
MD5Sum: 8851ae29f160cea2292e147cb1d2aff3
SHA256sum: 0defed61768432847280ab728c65ada8b45d5ceb8cdaeeb853d9bc3bf955f826
Description: Translation for luci-app-firewall - Română (Romanian)
Package: luci-i18n-firewall-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4652
Filename: luci-i18n-firewall-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 5465
MD5Sum: 3e6be61650f1cf1c22a8716be4ef46a8
SHA256sum: bbc8357af0bd57aac2c52716a245ee5c6821c2bcba45c9214738dc0cdf02c56b
Description: Translation for luci-app-firewall - Русский (Russian)
Package: luci-i18n-firewall-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-firewall-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: 965741d7ae81f209b23e7e3fb242ea71
SHA256sum: 4c2b9a4a1a74dae45e482f405f7c1d2006a71086294f45744805c4b17f02011d
Description: Translation for luci-app-firewall - Slovenčina (Slovene)
Package: luci-i18n-firewall-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-firewall-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: f72f8e81ac0771b5b7e023e323962485
SHA256sum: a8542228cc97d78daef4d84350dcf13a145b3899e55fa030638547fdf168154a
Description: Translation for luci-app-firewall - Svenska (Swedish)
Package: luci-i18n-firewall-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-firewall-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 7b7afaf820fe6584fa39800aba7b9ac8
SHA256sum: 5555cc7af4f9186d11dd8f84bb4f0c2fce15985b10904a69f8a12c0f8895ba6c
Description: Translation for luci-app-firewall - Türkçe (Turkish)
Package: luci-i18n-firewall-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4660
Filename: luci-i18n-firewall-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 5483
MD5Sum: 31ddcb30f930139bd29990f834f6185d
SHA256sum: 0b124e73a3e95938f9ad9c05f0062793ec663beb8ceff824a4046814225e8a0b
Description: Translation for luci-app-firewall - украї́нська (Ukrainian)
Package: luci-i18n-firewall-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 842
Filename: luci-i18n-firewall-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1671
MD5Sum: 44bdfda4af34fe586cc40c77dba588aa
SHA256sum: 33e0bb67dc65ac11efd68139fcd150616b667d171bec9feeb2a28a87df8d2c24
Description: Translation for luci-app-firewall - Tiếng Việt (Vietnamese)
Package: luci-i18n-firewall-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 3915
Filename: luci-i18n-firewall-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 4710
MD5Sum: 61907a41a68e47be35af858d926c38d5
SHA256sum: 88f954a86864e285a6928c0abf22a3449774f211875009d225a9e7635a161c90
Description: Translation for luci-app-firewall - 普通话 (Chinese)
Package: luci-i18n-firewall-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-firewall
Source: feeds/luci/applications/luci-app-firewall
Section: luci
Architecture: all
Installed-Size: 4047
Filename: luci-i18n-firewall-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 4848
MD5Sum: 520965cb23fbc605f975438c4255c625
SHA256sum: 4a7847994aa8ec83c08496e4ccf2390d79134052ecfed4c33aec6049f0eabe36
Description: Translation for luci-app-firewall - 臺灣華語 (Taiwanese)
Package: luci-i18n-freifunk-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3044
Filename: luci-i18n-freifunk-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3819
MD5Sum: 036ff065a3546d761aeb3490d456e172
SHA256sum: 0077767a8cebd5b42684faffa18fdad84ce92ceb68c4144a28aac641c2015b81
Description: Translation for luci-mod-freifunk - Català (Catalan)
Package: luci-i18n-freifunk-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 2592
Filename: luci-i18n-freifunk-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 3405
MD5Sum: 65e7913c458d90c17d684a1c8af9f98e
SHA256sum: 3c11dd22461a223aaf46506ada70eac8a327e502bf179c24a4d7ba8de74ee18e
Description: Translation for luci-mod-freifunk - Čeština (Czech)
Package: luci-i18n-freifunk-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3547
Filename: luci-i18n-freifunk-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4322
MD5Sum: 3e77530e562d131f582359d7f5a94489
SHA256sum: 35ac10b9c94e00b146c383756b27c399e3e1298f850e3e9d58de9c6e8e62fc35
Description: Translation for luci-mod-freifunk - Deutsch (German)
Package: luci-i18n-freifunk-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1698
Filename: luci-i18n-freifunk-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2530
MD5Sum: 510b22498def558df23c03d839594eca
SHA256sum: fec769947a0c6e8645873073cd44211a40970e31995eccfd47d7eb80161bcc09
Description: Translation for luci-mod-freifunk - Ελληνικά (Greek)
Package: luci-i18n-freifunk-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 305
Filename: luci-i18n-freifunk-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1086
MD5Sum: 3c920c7015c2e21e6bcabf2cc4b2057c
SHA256sum: 884477a0eb67ce77a36d01c8187853cf34d84b8b263938dfbc74a532486e00a5
Description: Translation for luci-mod-freifunk - English
Package: luci-i18n-freifunk-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3553
Filename: luci-i18n-freifunk-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4331
MD5Sum: 7cf08df374281d4163d4ee19644c7520
SHA256sum: 6379992fd18ab3532460298cd5636f437206c6dc0bc552387460512b155962d2
Description: Translation for luci-mod-freifunk - Español (Spanish)
Package: luci-i18n-freifunk-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-freifunk-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: b3d99bf3f3b4b4c673b842defc61f7e7
SHA256sum: 2157e020bbe5ef2f5a6a9307b4390406183b4b30cc34d92076983ab6fcf7e82a
Description: Translation for luci-mod-freifunk - Français (French)
Package: luci-i18n-freifunk-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1944
Filename: luci-i18n-freifunk-he_git-15.079.29361-3e37216-1_all.ipk
Size: 2777
MD5Sum: b37f18a34d50cc5b03cb8f083ab905d1
SHA256sum: 2ad821e8918152273f773c36824a58555812fca802e83f276e3c73c71b8d8027
Description: Translation for luci-mod-freifunk - עִבְרִית (Hebrew)
Package: luci-i18n-freifunk-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-freifunk-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: acc9b2c61e996341407c1cfccc949436
SHA256sum: 379ea25fb56390d513b444adb6586b749d49f91ee2656b53e0ddd0b11b277d1c
Description: Translation for luci-mod-freifunk - Magyar (Hungarian)
Package: luci-i18n-freifunk-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3597
Filename: luci-i18n-freifunk-it_git-15.079.29361-3e37216-1_all.ipk
Size: 4377
MD5Sum: 7a3cdbd311ba89376282e5b3d4b7f758
SHA256sum: b0765b3cdf030106c107b216bf586a99f95653ed8efa513888537b8e3d64e13e
Description: Translation for luci-mod-freifunk - Italiano (Italian)
Package: luci-i18n-freifunk-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-freifunk-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: fbaee548614a6ddeee368aa90b466b9e
SHA256sum: 256b15d2ca085afe3c063a5da3a11c2332b16786704d0ea2ba8c14c0c5610751
Description: Translation for luci-mod-freifunk - 日本語 (Japanese)
Package: luci-i18n-freifunk-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-freifunk-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 8bc2e71c608f57adaff75b8a1f4f92d5
SHA256sum: 044f30bf04311aeb8589b5c18541a9be0fe73fb3e4b88a785077da9582346819
Description: Translation for luci-mod-freifunk - Bahasa Melayu (Malay)
Package: luci-i18n-freifunk-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3119
Filename: luci-i18n-freifunk-no_git-15.079.29361-3e37216-1_all.ipk
Size: 3893
MD5Sum: f83f82053b89d128e6456ed23e335749
SHA256sum: 7e6042290474448fe287bc33dc31ef540d1ead084d2e7cd37484e2fb883d56a8
Description: Translation for luci-mod-freifunk - Norsk (Norwegian)
Package: luci-i18n-freifunk-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3736
Filename: luci-i18n-freifunk-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 4505
MD5Sum: 929b243b33eb4be8d51c1079f7c0cc77
SHA256sum: 99742acd17b0114203cb33c8e36549591b8a7d194a51f69ea9609409b517ba16
Description: Translation for luci-mod-freifunk - Polski (Polish)
Package: luci-i18n-freifunk-policyrouting-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 832
Filename: luci-i18n-freifunk-policyrouting-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1636
MD5Sum: 15e9deb52d19c55cc19724d4d323a6b6
SHA256sum: 6e33d080dc9e9a5e6899e127e6bb054c08802caab368869a0ec724a66097e7fc
Description: Translation for luci-app-freifunk-policyrouting - Català (Catalan)
Package: luci-i18n-freifunk-policyrouting-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 533
Filename: luci-i18n-freifunk-policyrouting-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1356
MD5Sum: 31e5e8012e6c650f3a5f4ea631c4dde6
SHA256sum: e3d24ff6b5ccf5aa77bceea9b82d2daf86c5227b1b87c61fe523f7b580416966
Description: Translation for luci-app-freifunk-policyrouting - Čeština (Czech)
Package: luci-i18n-freifunk-policyrouting-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 986
Filename: luci-i18n-freifunk-policyrouting-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1798
MD5Sum: 6133c30b89f1fbdd86b673968deaef81
SHA256sum: eaeeaad73cb08a28db1b3a14f02a97780a81abcc9fc90f27d2f99555755815fd
Description: Translation for luci-app-freifunk-policyrouting - Deutsch (German)
Package: luci-i18n-freifunk-policyrouting-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci-i18n-freifunk-policyrouting-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1167
MD5Sum: 1ab274da8ec192e8ee0df1947c7b1db7
SHA256sum: 3185096ffb037dcf6d55fa8762eb9da73db9057027c87836943d468e26506396
Description: Translation for luci-app-freifunk-policyrouting - Ελληνικά (Greek)
Package: luci-i18n-freifunk-policyrouting-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-freifunk-policyrouting-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 275d560a4378a5110d36efa1efa6d861
SHA256sum: 46cf0580dcea5e336f1e8f6ad0ddd4124e35d089c4705eada46a045c066eaca2
Description: Translation for luci-app-freifunk-policyrouting - English
Package: luci-i18n-freifunk-policyrouting-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 942
Filename: luci-i18n-freifunk-policyrouting-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1756
MD5Sum: b89b25e992e75a8e2b73dca5dc3528e7
SHA256sum: a43c3e043c3b928d0f9cca6c16f38d389b0d8eed0d90bab9d65005166ec9b0db
Description: Translation for luci-app-freifunk-policyrouting - Español (Spanish)
Package: luci-i18n-freifunk-policyrouting-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci-i18n-freifunk-policyrouting-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1141
MD5Sum: ae7fc6172e64ee5ad6223c3a1fa13ac9
SHA256sum: 7c1ec06491f8a26e0e5dedd395ad70347f086f053b3a25f9fc30a8459f953654
Description: Translation for luci-app-freifunk-policyrouting - Français (French)
Package: luci-i18n-freifunk-policyrouting-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 348
Filename: luci-i18n-freifunk-policyrouting-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1173
MD5Sum: d1d0f2bf75a172d3134b3ff5f0273708
SHA256sum: 976d777d50b54d57cb7d28ff7905914fd07ecb514420a37c9a99a2d6d2295ab5
Description: Translation for luci-app-freifunk-policyrouting - עִבְרִית (Hebrew)
Package: luci-i18n-freifunk-policyrouting-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci-i18n-freifunk-policyrouting-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1141
MD5Sum: 118304153b48e4c7558af4fa02576be3
SHA256sum: f989c59a38d97e4ee9afbead745e00623afaf76181c52c933a09b9dbe42f1ea9
Description: Translation for luci-app-freifunk-policyrouting - Magyar (Hungarian)
Package: luci-i18n-freifunk-policyrouting-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1076
Filename: luci-i18n-freifunk-policyrouting-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1892
MD5Sum: e3bb1d095e2dfd7697e144ea47c49164
SHA256sum: eb8da67e59396289734a8c93cc7745a6d88235e9665cc833bb549cd669c59fc7
Description: Translation for luci-app-freifunk-policyrouting - Italiano (Italian)
Package: luci-i18n-freifunk-policyrouting-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci-i18n-freifunk-policyrouting-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1165
MD5Sum: 29e64551a6a03c8e58ec6bc0b3c041b1
SHA256sum: 91a3e4ee5abd6439b606e59521a2a2a8a7c0b4c8359d6f9c5f55d14e88ad8a9d
Description: Translation for luci-app-freifunk-policyrouting - 日本語 (Japanese)
Package: luci-i18n-freifunk-policyrouting-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-freifunk-policyrouting-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1139
MD5Sum: 87a90c2863e5e9b55939f0d2c1eb116d
SHA256sum: 390bc770ea7e5feee57581020687af4db543fcc4a77b7136659d80fa5f47ae2c
Description: Translation for luci-app-freifunk-policyrouting - Bahasa Melayu (Malay)
Package: luci-i18n-freifunk-policyrouting-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci-i18n-freifunk-policyrouting-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1134
MD5Sum: c5fc609768c50e0256b1bf3c9f594820
SHA256sum: 5b3b9247dff220e5bb45678166bce91be153376ff4d32cd453f30c5d8a42130b
Description: Translation for luci-app-freifunk-policyrouting - Norsk (Norwegian)
Package: luci-i18n-freifunk-policyrouting-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1038
Filename: luci-i18n-freifunk-policyrouting-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1848
MD5Sum: 5aae84db6288245e46d78085f503ccba
SHA256sum: e0916fb5e8df544a7ba74ba67b5162299a606668b10355ee103e0bd799dd4557
Description: Translation for luci-app-freifunk-policyrouting - Polski (Polish)
Package: luci-i18n-freifunk-policyrouting-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1086
Filename: luci-i18n-freifunk-policyrouting-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1922
MD5Sum: ccaa69e4ecc4e8ebfefcdd015515370d
SHA256sum: a898db7d861c90e332760f3b0e1dfd798838054c9c85dbbab0131ce904b2a36d
Description: Translation for luci-app-freifunk-policyrouting - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-freifunk-policyrouting-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 588
Filename: luci-i18n-freifunk-policyrouting-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1402
MD5Sum: 3ee23f3a522f3ee7d4ca63c7d6643cab
SHA256sum: e4cf1932dc25b4374536216972103bdd51935ecf2932099375e91e3179b7e1bb
Description: Translation for luci-app-freifunk-policyrouting - Português (Portuguese)
Package: luci-i18n-freifunk-policyrouting-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 394
Filename: luci-i18n-freifunk-policyrouting-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1204
MD5Sum: b8e56ffc2e4eda795d71a6a8e0fb1912
SHA256sum: ce48a2baad826b7e0e8e2bad262cb16816372e408c29696b5927217ab1f80b66
Description: Translation for luci-app-freifunk-policyrouting - Română (Romanian)
Package: luci-i18n-freifunk-policyrouting-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1150
Filename: luci-i18n-freifunk-policyrouting-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1991
MD5Sum: dfc6afe8b0f0bcfc21d4a6f2139fa1ec
SHA256sum: 1d96bdca81e52efd958d3bb2a0f85374243c2e48a3deb9be250c02acb3a41679
Description: Translation for luci-app-freifunk-policyrouting - Русский (Russian)
Package: luci-i18n-freifunk-policyrouting-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-freifunk-policyrouting-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1140
MD5Sum: 0537d17a0c2a93ecc0ccb58ed04eb1bf
SHA256sum: 933a797b00b29b2f9c3b03a8c9e7ad1541d241770d5207b9fd5821695957e0fd
Description: Translation for luci-app-freifunk-policyrouting - Slovenčina (Slovene)
Package: luci-i18n-freifunk-policyrouting-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci-i18n-freifunk-policyrouting-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1135
MD5Sum: 75927367f03010740fda512f55fceee3
SHA256sum: 28f7c6fd44e29e0d3c2ea448811da784e1c6f10bf1a24c1838d9d4dc5a50ac12
Description: Translation for luci-app-freifunk-policyrouting - Svenska (Swedish)
Package: luci-i18n-freifunk-policyrouting-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci-i18n-freifunk-policyrouting-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1147
MD5Sum: 7e897ffe6d6e7800041d282b2005751b
SHA256sum: 8dcebc221d3d3463bcffba9e4802eb9697bb5280dc6825ee6ab4524e621578f2
Description: Translation for luci-app-freifunk-policyrouting - Türkçe (Turkish)
Package: luci-i18n-freifunk-policyrouting-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1247
Filename: luci-i18n-freifunk-policyrouting-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2110
MD5Sum: e5c96c5b689ab2a4e8d5dd708b46b84d
SHA256sum: 99ac68028da826aa7c8911bb9f8cf745a19982b557d924a6fb549b21364f22a0
Description: Translation for luci-app-freifunk-policyrouting - украї́нська (Ukrainian)
Package: luci-i18n-freifunk-policyrouting-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci-i18n-freifunk-policyrouting-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1173
MD5Sum: 0252dca120060398eabaac8c4ad77bc4
SHA256sum: df8b855a529854250c6661ec8c0b9fd3c6633583297eddb446f257241f918a1c
Description: Translation for luci-app-freifunk-policyrouting - Tiếng Việt (Vietnamese)
Package: luci-i18n-freifunk-policyrouting-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 1045
Filename: luci-i18n-freifunk-policyrouting-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1870
MD5Sum: 8bfbd4a8319c1be4f381796de933be3f
SHA256sum: 9055b2571bc38ff6fdb67c6667a767608b25585160effbaaaea9989602297120
Description: Translation for luci-app-freifunk-policyrouting - 普通话 (Chinese)
Package: luci-i18n-freifunk-policyrouting-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-freifunk-policyrouting
Source: feeds/luci/applications/luci-app-freifunk-policyrouting
Section: luci
Architecture: all
Installed-Size: 357
Filename: luci-i18n-freifunk-policyrouting-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1191
MD5Sum: 608c0390a8bfe7dec2f4d540e10362e6
SHA256sum: 57d7637eab92517e10d1d517d9d225fdb1ddae9f489b3cbd8b45de94bf794ff4
Description: Translation for luci-app-freifunk-policyrouting - 臺灣華語 (Taiwanese)
Package: luci-i18n-freifunk-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3698
Filename: luci-i18n-freifunk-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4497
MD5Sum: 815a2098a2c1b7e5f9cd6d368184d843
SHA256sum: 6500139b7d18c2200982d815d7005cbf3b8cbabfe4eaff176446707c53bdc1d9
Description: Translation for luci-mod-freifunk - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-freifunk-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 944
Filename: luci-i18n-freifunk-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1754
MD5Sum: 7ce46c57650fd463ad5589c22916f0cc
SHA256sum: 34005e81eb17d524bbf774b366d0726e4866bc4cd4e70aba1436acd7b66b0075
Description: Translation for luci-mod-freifunk - Português (Portuguese)
Package: luci-i18n-freifunk-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1317
Filename: luci-i18n-freifunk-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2133
MD5Sum: a2d187af023d366db9ae65fb280deb71
SHA256sum: f6690ef0f52afbffca7dfa9b120bc1b02f6866fd604741ce299ae5df8bae1666
Description: Translation for luci-mod-freifunk - Română (Romanian)
Package: luci-i18n-freifunk-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 4067
Filename: luci-i18n-freifunk-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4870
MD5Sum: f3f114378f4e8ea365bb1f20011375d4
SHA256sum: 918522f3c759ecaa303c2e2879d02429692167d37575d40059ef2af167032018
Description: Translation for luci-mod-freifunk - Русский (Russian)
Package: luci-i18n-freifunk-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-freifunk-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 5827008d66a42ef8c28afb8edf78a651
SHA256sum: eeb6e162b4fe86743d27017ae64d453052e4ac9f7afff1d0b03386154d99cdbf
Description: Translation for luci-mod-freifunk - Slovenčina (Slovene)
Package: luci-i18n-freifunk-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-freifunk-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 52a6634fa8661c58e49e99f0ccf79ba6
SHA256sum: 8476bc7c4a92d398c86fe8bea8ce83894dab22cd761931c46e6615fdca9848e0
Description: Translation for luci-mod-freifunk - Svenska (Swedish)
Package: luci-i18n-freifunk-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-freifunk-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 8fefd73b5fe68f0c9f02d96cdaf273fd
SHA256sum: 28d8d600b35a2068199392eac30cc350028ba7ce3d8ce928bce748cb8a72e72e
Description: Translation for luci-mod-freifunk - Türkçe (Turkish)
Package: luci-i18n-freifunk-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci-i18n-freifunk-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1168
MD5Sum: ab35e914099c58cf4b466785a3c89b8b
SHA256sum: b461a825e0a4b45d22e0481afcfb42eb85e84af574505afbc7bacb9ae593d2e7
Description: Translation for luci-mod-freifunk - украї́нська (Ukrainian)
Package: luci-i18n-freifunk-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 1253
Filename: luci-i18n-freifunk-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2089
MD5Sum: aa4bcb3f4d578607ed8c82ab284c8b83
SHA256sum: d49e660b62e65bce7c87cf4b3098b6e64c7226297a9269ef6909b4db3082018b
Description: Translation for luci-mod-freifunk - Tiếng Việt (Vietnamese)
Package: luci-i18n-freifunk-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 3589
Filename: luci-i18n-freifunk-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 4370
MD5Sum: 548fe9f7b7aec4e966879b68862743e5
SHA256sum: cb7dff2310a8e097674114b6f2afc122f7022043e46a7769a1a25ec5cda7da56
Description: Translation for luci-mod-freifunk - 普通话 (Chinese)
Package: luci-i18n-freifunk-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-freifunk
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci-i18n-freifunk-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1166
MD5Sum: 72adf4c7c3eb99a37dfbb9ab3257b667
SHA256sum: 577a3dc26651dadb4f156aaf966689fa63b24f976d1139cdee9f57e792c50761
Description: Translation for luci-mod-freifunk - 臺灣華語 (Taiwanese)
Package: luci-i18n-hd-idle-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 602
Filename: luci-i18n-hd-idle-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1406
MD5Sum: 21131849c87b41198f5e9319e272a87d
SHA256sum: 2014b84ae93a3b386c5831d30e15bca0f0fcbf31a6a9a85e2de157881fad569a
Description: Translation for luci-app-hd-idle - Català (Catalan)
Package: luci-i18n-hd-idle-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 579
Filename: luci-i18n-hd-idle-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1387
MD5Sum: 990130a6b2ff1379e7701dc741aee6a3
SHA256sum: e4767b8e0c4715a28e931e773ee09f07bf86cd0dfe6c737608e7129a00ce4efa
Description: Translation for luci-app-hd-idle - Čeština (Czech)
Package: luci-i18n-hd-idle-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 643
Filename: luci-i18n-hd-idle-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1437
MD5Sum: 2f43a9e36ae2e06b699067181011640b
SHA256sum: 1ec4655b0d70cfe84ff246df88eb363a4365937bd082f1c82792ec9debfc4eb2
Description: Translation for luci-app-hd-idle - Deutsch (German)
Package: luci-i18n-hd-idle-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 560
Filename: luci-i18n-hd-idle-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1376
MD5Sum: 370f2255545f16d90efaf4f204663e10
SHA256sum: 998f07b6eb3a9f9554be6c81c1c83c35c172adb7e7a8b9cab3823f27aeeb754f
Description: Translation for luci-app-hd-idle - Ελληνικά (Greek)
Package: luci-i18n-hd-idle-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 304
Filename: luci-i18n-hd-idle-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1089
MD5Sum: 57812c6ac6147cf7597e394e3e81f0c9
SHA256sum: 75944c5cd2e7747ff15a34a15f4a120afe34bb2fda38e320b8c30b4264e5ffe6
Description: Translation for luci-app-hd-idle - English
Package: luci-i18n-hd-idle-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 610
Filename: luci-i18n-hd-idle-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1413
MD5Sum: 0a2dd4e4880485207b12fb8ea4a747e0
SHA256sum: a32ce08bdeeaed86f9569191296b9225730a6df0eac8bf217d7b975f332a6f9f
Description: Translation for luci-app-hd-idle - Español (Spanish)
Package: luci-i18n-hd-idle-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 609
Filename: luci-i18n-hd-idle-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1417
MD5Sum: f35cf0d64459b76f108539b6058e9fff
SHA256sum: e87e0c03488e51973ef7d07d97190ecc0460d97ee06d359967c7f3f913ca2e91
Description: Translation for luci-app-hd-idle - Français (French)
Package: luci-i18n-hd-idle-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 695
Filename: luci-i18n-hd-idle-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1517
MD5Sum: 78e5be22bd9a2c608a26c3def4367efb
SHA256sum: 19c1f112acf285ba74a6f4751d8cff64cde71f938001797ca5fcd273d72e7b32
Description: Translation for luci-app-hd-idle - עִבְרִית (Hebrew)
Package: luci-i18n-hd-idle-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 658
Filename: luci-i18n-hd-idle-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1459
MD5Sum: 9ec86a6f9caf6e25bcab36bac7ab05cf
SHA256sum: d03ce3196ba7b32a694f433e1bda152ca6d9e4e1d6e6c19e9aae5dd9881c768d
Description: Translation for luci-app-hd-idle - Magyar (Hungarian)
Package: luci-i18n-hd-idle-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 616
Filename: luci-i18n-hd-idle-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1411
MD5Sum: d19db2ddfdf166258c738485e5e4bf09
SHA256sum: 9b6a030512ee1b40cbc280aa71c0ab66eb8c013e66116dcebc0b06cfc77a9917
Description: Translation for luci-app-hd-idle - Italiano (Italian)
Package: luci-i18n-hd-idle-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 693
Filename: luci-i18n-hd-idle-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1515
MD5Sum: b61ac514404f4f1d0c909327d55b26b0
SHA256sum: a1f2174f9874a75331c3c88f374008e0ef1b316a5e85713bcc327ecfb3ee465e
Description: Translation for luci-app-hd-idle - 日本語 (Japanese)
Package: luci-i18n-hd-idle-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-hd-idle-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: ed1ddaba1f2406ea7f5b6133d45571ce
SHA256sum: ff6c93cb73ac281e5e28812bb9a830bb4dd3712bcba6a338c622fdc459e6da85
Description: Translation for luci-app-hd-idle - Bahasa Melayu (Malay)
Package: luci-i18n-hd-idle-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 634
Filename: luci-i18n-hd-idle-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1433
MD5Sum: 39b012397c2062d6ec454189cac48ebc
SHA256sum: 311e4d8efc8735250f2ad931642137eb7af608ec204ae8f057ed07a6eb68796f
Description: Translation for luci-app-hd-idle - Norsk (Norwegian)
Package: luci-i18n-hd-idle-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 640
Filename: luci-i18n-hd-idle-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1434
MD5Sum: 153bc7b501455fadba0b7578f91cc7af
SHA256sum: 5b022fc4e828b01f4dd1b6e8eaf278949e13c79e69a60dfc4911aba233a4f936
Description: Translation for luci-app-hd-idle - Polski (Polish)
Package: luci-i18n-hd-idle-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 725
Filename: luci-i18n-hd-idle-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1550
MD5Sum: 47a2ddd598f8ffddd320646738e906ed
SHA256sum: 52adb119d4e4e843ec6ff6a4b79f4d2c40e99c6a5cb7f22b8f9356ca12856420
Description: Translation for luci-app-hd-idle - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-hd-idle-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 631
Filename: luci-i18n-hd-idle-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1435
MD5Sum: 532d063c9c98028559829b3f8f3b4304
SHA256sum: c8008cc5a91a50248f4af72c93d48435d5ff175a968b1bd94239e58a3e4ed14d
Description: Translation for luci-app-hd-idle - Português (Portuguese)
Package: luci-i18n-hd-idle-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 677
Filename: luci-i18n-hd-idle-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1489
MD5Sum: 2b18f105a0e81bacc8b06e7867e78669
SHA256sum: 80e5df2ed576d23e7aa68035da6daaac444a3b21a883467aa0ec18d414a8f3c4
Description: Translation for luci-app-hd-idle - Română (Romanian)
Package: luci-i18n-hd-idle-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 712
Filename: luci-i18n-hd-idle-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1532
MD5Sum: ae0c38d3344bc588d0505b2d7b270287
SHA256sum: 33f4495c9bfdae15d4bb2e54b9c79279384424ee65879da8f8d9492f45d3b7e3
Description: Translation for luci-app-hd-idle - Русский (Russian)
Package: luci-i18n-hd-idle-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-hd-idle-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 1848a66952881039f4e164527f338140
SHA256sum: 65e5e4e5ccc49154cf20f28bb0e5bc87657919c0b886bf9cd89d7b2c9d02053b
Description: Translation for luci-app-hd-idle - Slovenčina (Slovene)
Package: luci-i18n-hd-idle-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-hd-idle-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 2fd1a80f0a6974ff1e0273abc01aeabd
SHA256sum: 4f38abdfa1495289867fbfa39e01470d9faf12e7682208521bec2a045aab0c10
Description: Translation for luci-app-hd-idle - Svenska (Swedish)
Package: luci-i18n-hd-idle-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 634
Filename: luci-i18n-hd-idle-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1439
MD5Sum: 0fbe69ff73ccbc9e80304615ad644461
SHA256sum: 0884c639dcf21ef4a5d3e78f13cd8c13fe0bbf8a53d3e64a95aed67a194180ff
Description: Translation for luci-app-hd-idle - Türkçe (Turkish)
Package: luci-i18n-hd-idle-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 604
Filename: luci-i18n-hd-idle-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1439
MD5Sum: 7da4f3baaee4684239b5aa2b03a93dc7
SHA256sum: 41dcb12f55dcf3fceff7d960fe3188d8e20237769952f4546eba0ec8b328732c
Description: Translation for luci-app-hd-idle - украї́нська (Ukrainian)
Package: luci-i18n-hd-idle-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 633
Filename: luci-i18n-hd-idle-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1452
MD5Sum: d9c384d0ef9414d74b5629f7004d40b9
SHA256sum: 9a84522cb4823a19c63241fc0f20821f6242e0ae5290fca46df67a35820be047
Description: Translation for luci-app-hd-idle - Tiếng Việt (Vietnamese)
Package: luci-i18n-hd-idle-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 653
Filename: luci-i18n-hd-idle-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1460
MD5Sum: 601f7577a9013cbfb6756b3f9b54e4b9
SHA256sum: f1da5d9bcdeaa05403192c2c42383127b6ee4406e00ad2c33b8473c7eb6ca629
Description: Translation for luci-app-hd-idle - 普通话 (Chinese)
Package: luci-i18n-hd-idle-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-hd-idle
Source: feeds/luci/applications/luci-app-hd-idle
Section: luci
Architecture: all
Installed-Size: 678
Filename: luci-i18n-hd-idle-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1498
MD5Sum: 81395f9121623ffa50f968d1bc66ce3f
SHA256sum: 2fe896df1a6588cc40638e9d273b2a61fc645e3b93b51bd4e0c239749614f41a
Description: Translation for luci-app-hd-idle - 臺灣華語 (Taiwanese)
Package: luci-i18n-meshwizard-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1632
Filename: luci-i18n-meshwizard-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2449
MD5Sum: 7bfa7757dad324303a8df7347189e6a9
SHA256sum: 8f313ef7bba6e603326953486207d4be77c9bcbef45146eeda4289b80cf52c2c
Description: Translation for luci-app-meshwizard - Català (Catalan)
Package: luci-i18n-meshwizard-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 792
Filename: luci-i18n-meshwizard-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1608
MD5Sum: 79013f2e8e0670f88bb9e1d97bf9b243
SHA256sum: e132a23ed5bac70c93b5ba7a0b5e4364b4ffbf5c9015f455bbdfe50b11210395
Description: Translation for luci-app-meshwizard - Čeština (Czech)
Package: luci-i18n-meshwizard-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1725
Filename: luci-i18n-meshwizard-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2537
MD5Sum: c65cf00d7c58c7a8d0e1624b627e84bf
SHA256sum: a9b9647327c39b040ddfe8becbeb61514e33c824ff6491f74689a20ebd88095c
Description: Translation for luci-app-meshwizard - Deutsch (German)
Package: luci-i18n-meshwizard-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 560
Filename: luci-i18n-meshwizard-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1378
MD5Sum: 2bb2c495ae6cdd70c5c4665b9c3154d1
SHA256sum: b88b18ae4f0e5cf9ecf45eb33f9f948bd3264b9c05298faaf41dd62ce8cca4cf
Description: Translation for luci-app-meshwizard - Ελληνικά (Greek)
Package: luci-i18n-meshwizard-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci-i18n-meshwizard-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1101
MD5Sum: 0975131f1e3944e6a18d8a6361cb8ffc
SHA256sum: 5d36ea5e006c6d10626304469694f320e8f47488872e856c10f1889d27f95d24
Description: Translation for luci-app-meshwizard - English
Package: luci-i18n-meshwizard-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1582
Filename: luci-i18n-meshwizard-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2410
MD5Sum: e70f3237624f2d5af0fc63233a65ff2e
SHA256sum: 777873563eed2f17e82edb7c3b43baa96691a6a9e963f74c1bc5f0bc1a075f2f
Description: Translation for luci-app-meshwizard - Español (Spanish)
Package: luci-i18n-meshwizard-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1443
Filename: luci-i18n-meshwizard-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2260
MD5Sum: 34fa2f39b7ef58b48e044d266ae2f5ef
SHA256sum: c5215a2f708aefca0f2f223d804431d39ad0e3f56adb591874d2e303928a1218
Description: Translation for luci-app-meshwizard - Français (French)
Package: luci-i18n-meshwizard-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci-i18n-meshwizard-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1163
MD5Sum: 9e7e5abc87b64e95f85238d41495ca15
SHA256sum: 401753917c039377f74b83f51c0c30ec48eb7437ee1af065149c577d1566e775
Description: Translation for luci-app-meshwizard - עִבְרִית (Hebrew)
Package: luci-i18n-meshwizard-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 605
Filename: luci-i18n-meshwizard-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1408
MD5Sum: d08fa285e5fc69432d76f85679fd8a59
SHA256sum: b047f54f29bc574bdafaa9b36d2bf2863e2312e35f935c362a991456a06bf9e7
Description: Translation for luci-app-meshwizard - Magyar (Hungarian)
Package: luci-i18n-meshwizard-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1723
Filename: luci-i18n-meshwizard-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2530
MD5Sum: a43149c8942c6963fa27e274d1d8aa09
SHA256sum: fc31cfa15afbc25a4488a798eee630a6029f97ce23eb8a9a193ec653d5ae3103
Description: Translation for luci-app-meshwizard - Italiano (Italian)
Package: luci-i18n-meshwizard-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-meshwizard-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 987aa32df89273cf693e416c70d63388
SHA256sum: cd19fc3e4a8158a211fe7d21c6ee5efa3d2227ca751417921e09d99ea3a3cf84
Description: Translation for luci-app-meshwizard - 日本語 (Japanese)
Package: luci-i18n-meshwizard-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-meshwizard-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: 827ae825a4dda24691d97576f30f584b
SHA256sum: 5e5662326d2e79a9989cc6f1a6e7d541607a27375b952c2db698964d28f1eedb
Description: Translation for luci-app-meshwizard - Bahasa Melayu (Malay)
Package: luci-i18n-meshwizard-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-meshwizard-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: b697f2dbd0906ef7dad82a29f29b17e3
SHA256sum: 95d05211949eb69534790bf325025dc4ce87804d8f89dffec63417ac84a1b668
Description: Translation for luci-app-meshwizard - Norsk (Norwegian)
Package: luci-i18n-meshwizard-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1807
Filename: luci-i18n-meshwizard-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2613
MD5Sum: 690122fec97f580fee7d35c669f13be2
SHA256sum: bc5dbac9a50d806a9173f1e081729c5591f96cbbef9f76e169e39b55cdf01858
Description: Translation for luci-app-meshwizard - Polski (Polish)
Package: luci-i18n-meshwizard-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1802
Filename: luci-i18n-meshwizard-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2636
MD5Sum: ba1ab510e062115e9ad73676edd8f2c1
SHA256sum: e9a97d6fdeddec35c9c744cf73e34aea15dfe54af78c458add01dd6f25dbe33c
Description: Translation for luci-app-meshwizard - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-meshwizard-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1170
Filename: luci-i18n-meshwizard-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1981
MD5Sum: 9ede156ab5c42d5737558f8eeafbd9c4
SHA256sum: 67b0eeb435b395b87cc3605d56cf642b97677c2d868bb5d8d421804cee1ea02b
Description: Translation for luci-app-meshwizard - Português (Portuguese)
Package: luci-i18n-meshwizard-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 858
Filename: luci-i18n-meshwizard-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1678
MD5Sum: b3705be1c9dff6683b9cf00b9ff08bdc
SHA256sum: 5220c8ec1ee46d6a1bf02612798f6d6f816ee91a759f7f00206dc6bf6814f10d
Description: Translation for luci-app-meshwizard - Română (Romanian)
Package: luci-i18n-meshwizard-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1996
Filename: luci-i18n-meshwizard-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2834
MD5Sum: ffd0431e9cd94b2efa9e1a92203efd65
SHA256sum: 289ebd0989cf23e75d5ec13b2b2abcd377c59ec55e7090c87fe2861408042bbe
Description: Translation for luci-app-meshwizard - Русский (Russian)
Package: luci-i18n-meshwizard-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-meshwizard-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 7643f15d421e8891cc5147bd019c8cb4
SHA256sum: 5dbd2c75a8af0c1374e5dd31942ce0447f725e54881a64b2aa7d1758a76bfbb8
Description: Translation for luci-app-meshwizard - Slovenčina (Slovene)
Package: luci-i18n-meshwizard-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-meshwizard-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 3b58e9b8e30040100a6c3e2679204ffe
SHA256sum: 289cd06df7cec95a03c9a8dee9b0e99f2d27503ca874fbe3a11fc1c6cee6c31f
Description: Translation for luci-app-meshwizard - Svenska (Swedish)
Package: luci-i18n-meshwizard-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci-i18n-meshwizard-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1135
MD5Sum: f6cb9c017dcfb52527fe9ea29b8a7756
SHA256sum: 8ee6ecc945d3bd74551676e45b846e636813542a1d38f59891e30d4ce939a382
Description: Translation for luci-app-meshwizard - Türkçe (Turkish)
Package: luci-i18n-meshwizard-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 842
Filename: luci-i18n-meshwizard-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1684
MD5Sum: e0cc5dc23458fe7a2aef88dd043e44ca
SHA256sum: c4696f72f20252572f6a425a0dcb11e0aabc408dfe5f91bb7c2dcc941680580d
Description: Translation for luci-app-meshwizard - украї́нська (Ukrainian)
Package: luci-i18n-meshwizard-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci-i18n-meshwizard-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1157
MD5Sum: 2367ad4b5719ad3e1480a46eb8e59720
SHA256sum: a9e8b03fe0d34b5dc68109e0d5c019df6151e86416eedcca18ddd6f5412da611
Description: Translation for luci-app-meshwizard - Tiếng Việt (Vietnamese)
Package: luci-i18n-meshwizard-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 1276
Filename: luci-i18n-meshwizard-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2108
MD5Sum: 3decbcc5caa9019a5d5cfffe5a2089a3
SHA256sum: 7d40f6dead35b9138b1b9aecac4053eff3975062e2b587fbf1c4952d0ad7ac21
Description: Translation for luci-app-meshwizard - 普通话 (Chinese)
Package: luci-i18n-meshwizard-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-meshwizard
Source: feeds/luci/applications/luci-app-meshwizard
Section: luci
Architecture: all
Installed-Size: 348
Filename: luci-i18n-meshwizard-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1175
MD5Sum: 2dd7d9fde548a9fc7d6d42021a9e174e
SHA256sum: 6a83ee14a90cef504eb33b61198feaa4029e16d62ba1e96aba0a6a3d893aff22
Description: Translation for luci-app-meshwizard - 臺灣華語 (Taiwanese)
Package: luci-i18n-minidlna-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 895
Filename: luci-i18n-minidlna-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1712
MD5Sum: c58c9c84f414503fb2e30e01568dd0ee
SHA256sum: 6af5b2c3a2a4fc1c9b2e2d042fb1ec89bc0a4caa9be0bed308c0ded7df9723c6
Description: Translation for luci-app-minidlna - Català (Catalan)
Package: luci-i18n-minidlna-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1178
Filename: luci-i18n-minidlna-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1991
MD5Sum: fbcd89ca7f4b6deae3c7f3a8f47d23ad
SHA256sum: e4d122d4504dd71ad453b18f317ab7fc8bcf87258fcbaf2738686694d3322454
Description: Translation for luci-app-minidlna - Čeština (Czech)
Package: luci-i18n-minidlna-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2013
Filename: luci-i18n-minidlna-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2828
MD5Sum: 9479ab110c79c4ca99ed4c08b373a10f
SHA256sum: 32f67409553fcb3f875cc6ad3fe670506cbad2155b7aacd0e2d5cb33e59ab881
Description: Translation for luci-app-minidlna - Deutsch (German)
Package: luci-i18n-minidlna-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-minidlna-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1147
MD5Sum: 3eb8d7c2880605d959cf90e11720985b
SHA256sum: 388264ed3403cfd14ff74ef52a22f0b97601273072f3c0ec47139ab6052defd5
Description: Translation for luci-app-minidlna - Ελληνικά (Greek)
Package: luci-i18n-minidlna-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 306
Filename: luci-i18n-minidlna-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1097
MD5Sum: c0c0a23a549e3e672e0c918cbaee65d2
SHA256sum: 1ba537e466bf0e78977e885232321e60a670ea0f9870f7db95697fcf7f6c3b24
Description: Translation for luci-app-minidlna - English
Package: luci-i18n-minidlna-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1936
Filename: luci-i18n-minidlna-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2756
MD5Sum: 39a8702c314a69d92357443c86f4c0dc
SHA256sum: 0a175034842a1bd6ffe6edad519e002c4fc17f353b9da02b6bf95e50ba7f0c69
Description: Translation for luci-app-minidlna - Español (Spanish)
Package: luci-i18n-minidlna-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-minidlna-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 4d5d769c0203512810b42a2ccd564200
SHA256sum: 45bfc6e39996cc5cf5c4c90e23df47b083a88c586dc8d8d7180208d710b6e48d
Description: Translation for luci-app-minidlna - Français (French)
Package: luci-i18n-minidlna-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-minidlna-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: 1f8ddb65428731279b55d98a26043aa2
SHA256sum: 2b2eabf5642443fb0f524c29069d6648c163f3cc4dc9f008e7ec5f9ceba10758
Description: Translation for luci-app-minidlna - עִבְרִית (Hebrew)
Package: luci-i18n-minidlna-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2111
Filename: luci-i18n-minidlna-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2926
MD5Sum: f68e4b4551bb32d8d4e1ce28634f80b0
SHA256sum: 451d94157b997108f2d2a4f64e0d3a0f74c07541169a59cb54c1a2de5daeb54d
Description: Translation for luci-app-minidlna - Magyar (Hungarian)
Package: luci-i18n-minidlna-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2104
Filename: luci-i18n-minidlna-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2905
MD5Sum: 1e87e3f73d2587288587c7c0f7672801
SHA256sum: 667a2bac131f866759d5d627ecdfd7b4ea4521df6ef31673e5e1fb116df37e20
Description: Translation for luci-app-minidlna - Italiano (Italian)
Package: luci-i18n-minidlna-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2237
Filename: luci-i18n-minidlna-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3030
MD5Sum: 1c2ee5d2357d46134a292e80c7c776d1
SHA256sum: 8ed57a7a79078bff36764aabcbc1556d7df84a5356de29743a45403899a687f0
Description: Translation for luci-app-minidlna - 日本語 (Japanese)
Package: luci-i18n-minidlna-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-minidlna-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: b82a6cc03fb6b3ddb1b39ea161880b88
SHA256sum: 084fc38195b1fe7f6a11d2c35996be6de2d7cc7a173c67ab0e6e8cda8c996e10
Description: Translation for luci-app-minidlna - Bahasa Melayu (Malay)
Package: luci-i18n-minidlna-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1949
Filename: luci-i18n-minidlna-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2764
MD5Sum: eea6070152d4aa3851225e11f54fa835
SHA256sum: dc5c6463626658a6ffca454b9593dca88f91c7c671c18c84d42ded9b2f2d0453
Description: Translation for luci-app-minidlna - Norsk (Norwegian)
Package: luci-i18n-minidlna-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2075
Filename: luci-i18n-minidlna-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2886
MD5Sum: 3774255f19617f89ba8271f517fbac83
SHA256sum: d924c000c27bd7ca9963a89d7b6c33e38a74fb8166667901079e6006a2cedaf0
Description: Translation for luci-app-minidlna - Polski (Polish)
Package: luci-i18n-minidlna-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2083
Filename: luci-i18n-minidlna-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2913
MD5Sum: 6318432fb76fc299250065e131702785
SHA256sum: 88887e1c7afb80b7f63fcda9bdce155cab9edf54ee801826bfb42debd42e97b3
Description: Translation for luci-app-minidlna - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-minidlna-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1110
Filename: luci-i18n-minidlna-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1921
MD5Sum: 90994ccdc4516ad6979232feebd22265
SHA256sum: 19d966bf37e832b6b86a8bb1894c5725aad40684226008ea1b3b14f2347d9907
Description: Translation for luci-app-minidlna - Português (Portuguese)
Package: luci-i18n-minidlna-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 837
Filename: luci-i18n-minidlna-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1656
MD5Sum: 13030e1155016a6932ce671be4f2d69f
SHA256sum: 7579b01e8c9612b312464508c5a8b27e7502aaa06d2374bf96e0bab8401c3926
Description: Translation for luci-app-minidlna - Română (Romanian)
Package: luci-i18n-minidlna-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 2397
Filename: luci-i18n-minidlna-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3195
MD5Sum: 03868758bf4ecacd4a6aa206a1a87777
SHA256sum: 0413caa7815b2f74ee4c689231233a90a665a4ef2bc3546ccf26831f4e9b6601
Description: Translation for luci-app-minidlna - Русский (Russian)
Package: luci-i18n-minidlna-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-minidlna-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: a9929f1e877ac2f78682739269bb2fac
SHA256sum: d67f34920cca8500f0029d213fdad514b6a1810e6abe925ef0d80e4a9cdd4c51
Description: Translation for luci-app-minidlna - Slovenčina (Slovene)
Package: luci-i18n-minidlna-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-minidlna-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1112
MD5Sum: 1a8552c8696b3677dec630d486ab296a
SHA256sum: 0f615fb50643bf4c514159542806168cd86219b6b7e3716f96841b085ac460e3
Description: Translation for luci-app-minidlna - Svenska (Swedish)
Package: luci-i18n-minidlna-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-minidlna-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: 8d8e43999d40ec9bd5553baecc750aed
SHA256sum: 6b54d989f2ad7f4caadac8de5bc21156a87b6f48ae5dc77aa8af5dedd95caa99
Description: Translation for luci-app-minidlna - Türkçe (Turkish)
Package: luci-i18n-minidlna-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci-i18n-minidlna-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1175
MD5Sum: a36d56d9d06e335a08cf97822d4c871b
SHA256sum: c26eebbd4c76f9080372c71865c133bf3a399eef326f2ff3cf5f703b12658d60
Description: Translation for luci-app-minidlna - украї́нська (Ukrainian)
Package: luci-i18n-minidlna-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-minidlna-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1149
MD5Sum: 0213e3be9b39b0fc36f94827badce6f0
SHA256sum: 8d93ec9d19849029b6dd719d65a0b95f5f37301689b2b55dd5136ca207c57690
Description: Translation for luci-app-minidlna - Tiếng Việt (Vietnamese)
Package: luci-i18n-minidlna-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 1822
Filename: luci-i18n-minidlna-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2653
MD5Sum: 02bf7196f5d3a4adc416d0a48562431c
SHA256sum: 436007ae8d6054220788be2a3ec2e1ea1e0b55479f903e4ba47365ef9c1016c5
Description: Translation for luci-app-minidlna - 普通话 (Chinese)
Package: luci-i18n-minidlna-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-minidlna
Source: feeds/luci/applications/luci-app-minidlna
Section: luci
Architecture: all
Installed-Size: 894
Filename: luci-i18n-minidlna-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1734
MD5Sum: 5b078c03606d9ada36aacc65ea54aeb9
SHA256sum: 48b1283e0aefcd6b402ce3cf9aa6285b5290701faab4db5df9b63c53f7fb0565
Description: Translation for luci-app-minidlna - 臺灣華語 (Taiwanese)
Package: luci-i18n-mmc-over-gpio-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 485
Filename: luci-i18n-mmc-over-gpio-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1284
MD5Sum: 80cd1e8f2c7141dcf8028ece0e95683e
SHA256sum: 02f929f06680b718bdfc629a25d21962b284256e0224eb47f092b176f25a0e36
Description: Translation for luci-app-mmc-over-gpio - Català (Catalan)
Package: luci-i18n-mmc-over-gpio-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 598
Filename: luci-i18n-mmc-over-gpio-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1401
MD5Sum: ac897c2f8eeda842d3c8f2d58764fc30
SHA256sum: 4eea72db198a9da99862b3526ff3d2b5a666b80e5edbea6f563969a5a03efa94
Description: Translation for luci-app-mmc-over-gpio - Čeština (Czech)
Package: luci-i18n-mmc-over-gpio-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 570
Filename: luci-i18n-mmc-over-gpio-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1372
MD5Sum: 48612cdc77382b9cb08ce4ebed8709f7
SHA256sum: 0ba05f1bd608eca9c45f3e3fbc5d778e6e4381b49be38b4f1111483a0a28fedf
Description: Translation for luci-app-mmc-over-gpio - Deutsch (German)
Package: luci-i18n-mmc-over-gpio-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 416
Filename: luci-i18n-mmc-over-gpio-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1230
MD5Sum: 789e17c3c5e92f9f36ec030966197fe8
SHA256sum: 18c7b0c5950987a6d314f37562172a5e2f5fc6eaab3c22a721b0a0d71fe0afdf
Description: Translation for luci-app-mmc-over-gpio - Ελληνικά (Greek)
Package: luci-i18n-mmc-over-gpio-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci-i18n-mmc-over-gpio-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 4f43c1cc3faa1bf8859880cf04e8a29d
SHA256sum: 9edcd96a896b4fb0cae15d32f3e2198beb7d410311f1fa243de5eb153908ffb3
Description: Translation for luci-app-mmc-over-gpio - English
Package: luci-i18n-mmc-over-gpio-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 596
Filename: luci-i18n-mmc-over-gpio-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1404
MD5Sum: 51de812c24f113d21bbbed6c86357378
SHA256sum: f140b367aaa333a29d41c3fbd3add7611989bc803745ae49ce33ff98d2e9185d
Description: Translation for luci-app-mmc-over-gpio - Español (Spanish)
Package: luci-i18n-mmc-over-gpio-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 479
Filename: luci-i18n-mmc-over-gpio-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1283
MD5Sum: 3795dc1976c0eaeade4f6749f3255cdf
SHA256sum: d951b2155069b9546c6ca51a283ef417a2bc1b94ef66e1c9b7971ca9d15b455d
Description: Translation for luci-app-mmc-over-gpio - Français (French)
Package: luci-i18n-mmc-over-gpio-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 455
Filename: luci-i18n-mmc-over-gpio-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1280
MD5Sum: c5ffb9d3521b3fb94552be2c5419a38b
SHA256sum: 82755159d99241fc6ed043aaf9eb4031f1373c29a46edf9ba39b3457a97bbcb3
Description: Translation for luci-app-mmc-over-gpio - עִבְרִית (Hebrew)
Package: luci-i18n-mmc-over-gpio-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 520
Filename: luci-i18n-mmc-over-gpio-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1319
MD5Sum: 5a705d87f808d413ef768131ed98b0b6
SHA256sum: 7d174c292a1e42325fb5481067a4e5ec5abad4f6fb7ab855c80bd2e65529c588
Description: Translation for luci-app-mmc-over-gpio - Magyar (Hungarian)
Package: luci-i18n-mmc-over-gpio-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 509
Filename: luci-i18n-mmc-over-gpio-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1303
MD5Sum: 0d57dcca981c77379195066d3f16acb5
SHA256sum: 2c31b8d3aadb62b23b9ac6594aee35b2eba8969bb4b4c6e9a8ea18bdfc58e717
Description: Translation for luci-app-mmc-over-gpio - Italiano (Italian)
Package: luci-i18n-mmc-over-gpio-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 531
Filename: luci-i18n-mmc-over-gpio-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1345
MD5Sum: 4392a90dba73b4b1ae8e389c39899d04
SHA256sum: b26f792b7e9e820320da78a89862c3df3014d0abdc641496c8869272a31426ae
Description: Translation for luci-app-mmc-over-gpio - 日本語 (Japanese)
Package: luci-i18n-mmc-over-gpio-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-mmc-over-gpio-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: e5662b071ba0c11a8ed9b2b1b5d6fe66
SHA256sum: f31fb510bc21ed4e3b00b5a81268289d8932d497689b017636c5d5e7e9b74ff9
Description: Translation for luci-app-mmc-over-gpio - Bahasa Melayu (Malay)
Package: luci-i18n-mmc-over-gpio-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 512
Filename: luci-i18n-mmc-over-gpio-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1306
MD5Sum: e8ad88bd8e90eef8ff40c14d4073a673
SHA256sum: 761564504e2f1f1f2131e32e04faf8b8a5f3e999f4c8140f686b75afe8ec98fe
Description: Translation for luci-app-mmc-over-gpio - Norsk (Norwegian)
Package: luci-i18n-mmc-over-gpio-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 597
Filename: luci-i18n-mmc-over-gpio-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1400
MD5Sum: 8273455cab8d6c8aac46a6b564ea1b45
SHA256sum: 92d4933da71f91380a225a7df68df0d260520f22a2895ce1737a44bc1aaa7118
Description: Translation for luci-app-mmc-over-gpio - Polski (Polish)
Package: luci-i18n-mmc-over-gpio-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 538
Filename: luci-i18n-mmc-over-gpio-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1363
MD5Sum: cf80c28d1af7a51edb522483ef3243ad
SHA256sum: 83fc8bf64a930e222d598234c9e56fa3308403b6e34506f6dbab1d703dfb8dcc
Description: Translation for luci-app-mmc-over-gpio - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-mmc-over-gpio-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 513
Filename: luci-i18n-mmc-over-gpio-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1316
MD5Sum: 770fab48901d44507fea6a7bfd0e229b
SHA256sum: ba49949ba031140241b7339ccc6ace27a11f58e66af282d72a70783f69622c30
Description: Translation for luci-app-mmc-over-gpio - Português (Portuguese)
Package: luci-i18n-mmc-over-gpio-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 503
Filename: luci-i18n-mmc-over-gpio-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1313
MD5Sum: 1879532e8d8fabd5bd5c67c5a7ce81f6
SHA256sum: 41962e5662a4dc444cb4b9d83f2f19e8a621d9d4aee7415ed43f36578cefaf08
Description: Translation for luci-app-mmc-over-gpio - Română (Romanian)
Package: luci-i18n-mmc-over-gpio-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 643
Filename: luci-i18n-mmc-over-gpio-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1457
MD5Sum: 0f085503eb031af0dbec3645b2c1aa32
SHA256sum: 4885f82674778ce8c9dc515cdc26d5063766588374007204dcb7728cde17e978
Description: Translation for luci-app-mmc-over-gpio - Русский (Russian)
Package: luci-i18n-mmc-over-gpio-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci-i18n-mmc-over-gpio-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1127
MD5Sum: 7b961c9810b297a141121b0b1e85706d
SHA256sum: 914bcbe8f8a5d11b5d2ae83f9fb3ef1fc6651bdc3295dfae133497c28a13aeaa
Description: Translation for luci-app-mmc-over-gpio - Slovenčina (Slovene)
Package: luci-i18n-mmc-over-gpio-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-mmc-over-gpio-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 7f315177271dc2191b8e00aac840261c
SHA256sum: 0e2b7e97365e6eab7040246dd63cfd7f2468cb0060e68c45351cb492b16c47b1
Description: Translation for luci-app-mmc-over-gpio - Svenska (Swedish)
Package: luci-i18n-mmc-over-gpio-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 607
Filename: luci-i18n-mmc-over-gpio-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1413
MD5Sum: 4924b9371fc7aad74549b728d4f19194
SHA256sum: 4f228d8244071bd84445bb4698973d0322a3e6abc8c2e41c63f0158685f6c6da
Description: Translation for luci-app-mmc-over-gpio - Türkçe (Turkish)
Package: luci-i18n-mmc-over-gpio-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 654
Filename: luci-i18n-mmc-over-gpio-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1485
MD5Sum: 6a2100c6514ce9ef62db35c1a288d09a
SHA256sum: ed330aff90991cb5f6c18a52209370f993d134e776af0dc799c9c32ec48df632
Description: Translation for luci-app-mmc-over-gpio - украї́нська (Ukrainian)
Package: luci-i18n-mmc-over-gpio-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 408
Filename: luci-i18n-mmc-over-gpio-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1222
MD5Sum: 31fe8d8b71c8d2289d3482833d9f56a8
SHA256sum: b579169da8cfd4d6be9c5c6b2e5996aa528ed7b643fc2712c7fe92b4d5ed01fe
Description: Translation for luci-app-mmc-over-gpio - Tiếng Việt (Vietnamese)
Package: luci-i18n-mmc-over-gpio-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 602
Filename: luci-i18n-mmc-over-gpio-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1415
MD5Sum: 771c1cde9c0a346194c80c994603d856
SHA256sum: 16d9bc16873baada27754d56db062bade960c9ed0bd234dcf10ac160c8408900
Description: Translation for luci-app-mmc-over-gpio - 普通话 (Chinese)
Package: luci-i18n-mmc-over-gpio-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-mmc-over-gpio
Source: feeds/luci/applications/luci-app-mmc-over-gpio
Section: luci
Architecture: all
Installed-Size: 628
Filename: luci-i18n-mmc-over-gpio-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1454
MD5Sum: 065351ad9609b4a65822646112b01e66
SHA256sum: 34fa3260ef69da56a268a52b83cf5b9235783d195eec37df2594eecd43506b0b
Description: Translation for luci-app-mmc-over-gpio - 臺灣華語 (Taiwanese)
Package: luci-i18n-multiwan-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1243
Filename: luci-i18n-multiwan-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2054
MD5Sum: 59903d5ba8036cd47d343d05660c6c7c
SHA256sum: c31e1d4e7d95244ad9221eced124de338a9639e7c5791c9f0ce464cbd76b5216
Description: Translation for luci-app-multiwan - Català (Catalan)
Package: luci-i18n-multiwan-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1293
Filename: luci-i18n-multiwan-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2119
MD5Sum: 5dbae66df71e6777094474854672e942
SHA256sum: b6d1274f457ed186c4b462f0827e1b305a67918dc06adcfbd6ccf30fe4895546
Description: Translation for luci-app-multiwan - Čeština (Czech)
Package: luci-i18n-multiwan-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1319
Filename: luci-i18n-multiwan-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2130
MD5Sum: e69cbdc5ee8634ba3aa07be1dc55b2f1
SHA256sum: 0d83147e57ae7f93bfae01b3391015825ff6d0360fac1282638f5efb5fdcd280
Description: Translation for luci-app-multiwan - Deutsch (German)
Package: luci-i18n-multiwan-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 518
Filename: luci-i18n-multiwan-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1334
MD5Sum: 428c409a1695b3c5a6dadbec10e03520
SHA256sum: 5c51a8561db2b06c4514a088fad0354ea35363373be4401ac6f4f0e938b27e6e
Description: Translation for luci-app-multiwan - Ελληνικά (Greek)
Package: luci-i18n-multiwan-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 308
Filename: luci-i18n-multiwan-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1093
MD5Sum: cfc3e04f8ad5cdf2704e815f9b6ab171
SHA256sum: 323d38407a6aaf8bd2264eb81ae3083c2158f2a8b9a15d4b40c8cc0ffef83aa7
Description: Translation for luci-app-multiwan - English
Package: luci-i18n-multiwan-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1261
Filename: luci-i18n-multiwan-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2081
MD5Sum: 248e22b25251445a9791f8169a43c809
SHA256sum: 34abed3cc3e29183b14beb72a682a569ad4fb851201fc7dc2095a5917fc7e1de
Description: Translation for luci-app-multiwan - Español (Spanish)
Package: luci-i18n-multiwan-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1312
Filename: luci-i18n-multiwan-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2133
MD5Sum: 7b5e77b455a72983822e83ef8bae12de
SHA256sum: 16ed7b1199d08e1a3e257a32c6755631e8a1183ba5a069b44e740e8faa0f22f1
Description: Translation for luci-app-multiwan - Français (French)
Package: luci-i18n-multiwan-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 338
Filename: luci-i18n-multiwan-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1159
MD5Sum: bb77d8ae4cc14950e6a734b2e3110e78
SHA256sum: d8fa34b77038d2ad216775a642f779d03a34378d04e25737fdb6400ea2368c1c
Description: Translation for luci-app-multiwan - עִבְרִית (Hebrew)
Package: luci-i18n-multiwan-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1409
Filename: luci-i18n-multiwan-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2227
MD5Sum: d96442148e4635132a2b5b95776396a1
SHA256sum: 30d88309fd4349f8be3c3e878215d82a21be5884a4060fff83bc92dc2382621d
Description: Translation for luci-app-multiwan - Magyar (Hungarian)
Package: luci-i18n-multiwan-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1068
Filename: luci-i18n-multiwan-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1872
MD5Sum: 2cd4e43346fa2609bacdba17c0bd2105
SHA256sum: 4597b4d16765d2c16a20ed98b9e81464dfc0c65c5d59acc8dbd62aa5e6d8984e
Description: Translation for luci-app-multiwan - Italiano (Italian)
Package: luci-i18n-multiwan-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1174
Filename: luci-i18n-multiwan-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1994
MD5Sum: 70fb4536131f1a74e044fad96f7503a0
SHA256sum: 35f5cbdb058283d783a4eb230aaaea220b886a58e0bb72e4203de366d987d821
Description: Translation for luci-app-multiwan - 日本語 (Japanese)
Package: luci-i18n-multiwan-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-multiwan-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 707b9bd59d0f4d739237ead864ecaea5
SHA256sum: 37fd2c6237fde38feb4c4d0c85e5b06d3bff6731c14d44ee2c02e270224068fe
Description: Translation for luci-app-multiwan - Bahasa Melayu (Malay)
Package: luci-i18n-multiwan-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1131
Filename: luci-i18n-multiwan-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1931
MD5Sum: 2690750cc67485b2bef9c54432f88a2b
SHA256sum: 14dc24f75ec66b69fa9f1b0bc5dd24b858d15352a4c63bbe3128e61107a855a7
Description: Translation for luci-app-multiwan - Norsk (Norwegian)
Package: luci-i18n-multiwan-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1400
Filename: luci-i18n-multiwan-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2212
MD5Sum: 85b159851bd07528edfba58449c06234
SHA256sum: b9472b5970de0e9f234af3ac86453608edf210674f9508c6ae5ef68bd453f9f7
Description: Translation for luci-app-multiwan - Polski (Polish)
Package: luci-i18n-multiwan-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1363
Filename: luci-i18n-multiwan-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2197
MD5Sum: cf2196788ec22055e22f45ea3279366a
SHA256sum: 86ddb410f1e70cf0c81f7b83476d1809cb9953b6d53e667c50a1f27bc4f80af2
Description: Translation for luci-app-multiwan - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-multiwan-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 638
Filename: luci-i18n-multiwan-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1444
MD5Sum: 057974b99a5e1ade13d5ae6f6810ef3d
SHA256sum: 65ebfa98a8b5380676713a98db9f32f252b95f585a9b379975e2e9aa7a1f3a90
Description: Translation for luci-app-multiwan - Português (Portuguese)
Package: luci-i18n-multiwan-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 675
Filename: luci-i18n-multiwan-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1479
MD5Sum: cf55335404326af5c1b200a52a6c5585
SHA256sum: 5aa78d5e9fc5360ace39989f59de710012679396fb2a5fef1f0908ef2831c38a
Description: Translation for luci-app-multiwan - Română (Romanian)
Package: luci-i18n-multiwan-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1524
Filename: luci-i18n-multiwan-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2356
MD5Sum: 9ee085535d832c2a0a5b339bc474ea61
SHA256sum: ee4dd4c55342fb1b420ffcb68cca4fcfa185f06245e4af9eb797d0f4051eda20
Description: Translation for luci-app-multiwan - Русский (Russian)
Package: luci-i18n-multiwan-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-multiwan-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: 0b35ae731b6f4ae1028e74d05140362f
SHA256sum: 97a041daa7ae021c3cdd22cf4004a978e29eee5dbe4daa08fa74ec01e3672e4c
Description: Translation for luci-app-multiwan - Slovenčina (Slovene)
Package: luci-i18n-multiwan-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-multiwan-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: a27a7091a2ef7579d71786e3dc574f40
SHA256sum: 302067cce768c7324368b248e04ecb1c490eb29447d1996b2f2ad52009f7f408
Description: Translation for luci-app-multiwan - Svenska (Swedish)
Package: luci-i18n-multiwan-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-multiwan-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 68bd1aa50fe774ef5129dd8394e7f9be
SHA256sum: 86efa602834ba716519acf6f8307c97eb8b706028166d2635e6bdd121dd0ca48
Description: Translation for luci-app-multiwan - Türkçe (Turkish)
Package: luci-i18n-multiwan-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 624
Filename: luci-i18n-multiwan-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1457
MD5Sum: 01f79a16594f20f984d045eb559e79fd
SHA256sum: 2024daa4702790f55fb3949b77d425f300cff666f67a89bb3ddc7e142893b04b
Description: Translation for luci-app-multiwan - украї́нська (Ukrainian)
Package: luci-i18n-multiwan-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-multiwan-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: bfadc5fafdce535fa87671b71c568c37
SHA256sum: f540297880086e5e5621c8d70e876c71bcc5997e4ae32af20ccb26676e6329f7
Description: Translation for luci-app-multiwan - Tiếng Việt (Vietnamese)
Package: luci-i18n-multiwan-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1283
Filename: luci-i18n-multiwan-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2114
MD5Sum: c39eeeb2bdc61b3b815c0faa28932349
SHA256sum: 3b991c538534cb71079b6256f398a42c29ad8281a3239d1e4ed98dc3f9fa7b9a
Description: Translation for luci-app-multiwan - 普通话 (Chinese)
Package: luci-i18n-multiwan-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-multiwan
Source: feeds/luci/applications/luci-app-multiwan
Section: luci
Architecture: all
Installed-Size: 1255
Filename: luci-i18n-multiwan-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2094
MD5Sum: f9f0cb9ec9785f8c2930e1c90cd7b692
SHA256sum: 15f93f6068a8538a800991b226227c383de72e68086cf9e2e88ffba99acee767
Description: Translation for luci-app-multiwan - 臺灣華語 (Taiwanese)
Package: luci-i18n-ntpc-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 702
Filename: luci-i18n-ntpc-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1499
MD5Sum: 920dcc8e87169397f4bf92d62c22612e
SHA256sum: af004444cd8664e1872fe7f3420e9c761a8850bc776707b41da1fd0e643ffa9e
Description: Translation for luci-app-ntpc - Català (Catalan)
Package: luci-i18n-ntpc-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 756
Filename: luci-i18n-ntpc-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1560
MD5Sum: 0887d9e225bd17da56494e764a0ff38c
SHA256sum: 1e4154e202ff6e330477d0d5c530929f75360b17fdb906c89a580e152ef18b94
Description: Translation for luci-app-ntpc - Čeština (Czech)
Package: luci-i18n-ntpc-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 676
Filename: luci-i18n-ntpc-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1466
MD5Sum: a168addcb8e3dde121474ecf4a04bbb3
SHA256sum: 9604deba6ed5be79ac0f52f9a05e096b6bb29f27dfd3903cea97e7ce9f7f2eeb
Description: Translation for luci-app-ntpc - Deutsch (German)
Package: luci-i18n-ntpc-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 817
Filename: luci-i18n-ntpc-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1632
MD5Sum: ce425e0c821fc570dda61e429f3f9a98
SHA256sum: 11a59282e851931cf67dab95913e7d475236b794b72bb49efaca53b38da5f960
Description: Translation for luci-app-ntpc - Ελληνικά (Greek)
Package: luci-i18n-ntpc-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci-i18n-ntpc-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1090
MD5Sum: 2a09e9b1078609d087f2dec659e62118
SHA256sum: de9479fcba57ea165ace10f48fc95af4464994ee353eb357a839eae184d43202
Description: Translation for luci-app-ntpc - English
Package: luci-i18n-ntpc-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 734
Filename: luci-i18n-ntpc-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1536
MD5Sum: a088bc9a122bf4f02ba6760fe508f614
SHA256sum: 0d26ec4763fa885b1b207e26aa7ae588e9c6a394a53d080c28d1a2f51ecdfcf7
Description: Translation for luci-app-ntpc - Español (Spanish)
Package: luci-i18n-ntpc-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 733
Filename: luci-i18n-ntpc-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1536
MD5Sum: 1607762dc92f653e90516ca63033e65f
SHA256sum: e24e6d0acb8fe5814eedb436c7c558335b250d26bae1b4fd735a7d565e8b0355
Description: Translation for luci-app-ntpc - Français (French)
Package: luci-i18n-ntpc-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 734
Filename: luci-i18n-ntpc-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1562
MD5Sum: fc16b6949b1c31fe652e71248cb6a399
SHA256sum: 7687194fede1b20214045b511bf777662a809934880d290f76c7b437a97d7ac3
Description: Translation for luci-app-ntpc - עִבְרִית (Hebrew)
Package: luci-i18n-ntpc-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 723
Filename: luci-i18n-ntpc-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1520
MD5Sum: efecfd0fae02eb1bd24893074186b634
SHA256sum: f6fa34f970fac07e11bd5d1f9678866a0b2256b888a3e3d652e7347eafa40a10
Description: Translation for luci-app-ntpc - Magyar (Hungarian)
Package: luci-i18n-ntpc-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 714
Filename: luci-i18n-ntpc-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1502
MD5Sum: 049f6ca666926a81e231f5521ac945a4
SHA256sum: 35cd21f957103b10c2e3bdda37b08837bf6a6d0edf16d3207f29e4a46c80aef6
Description: Translation for luci-app-ntpc - Italiano (Italian)
Package: luci-i18n-ntpc-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 754
Filename: luci-i18n-ntpc-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1575
MD5Sum: 1bfcba1ec4cf825873f28a2df7a6d3b6
SHA256sum: cb346dedb9fae25318dd8dcdb989698dcd79ab5ea525cf718c7ae607c834ff6e
Description: Translation for luci-app-ntpc - 日本語 (Japanese)
Package: luci-i18n-ntpc-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-ntpc-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 2b44fd7b5aa3a4f918714c733c61d4f4
SHA256sum: 2d9a2e97e6f4a5757c2aa91517462cdeed4ca2e4b1253da12339b79779a88df1
Description: Translation for luci-app-ntpc - Bahasa Melayu (Malay)
Package: luci-i18n-ntpc-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 696
Filename: luci-i18n-ntpc-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1489
MD5Sum: 2747ac46a81ac06c23b809ac5edbf799
SHA256sum: b6ec273ba865b7237ee4152dd3b1ea15a7d46ee08402d3ed177051d723fd8e0a
Description: Translation for luci-app-ntpc - Norsk (Norwegian)
Package: luci-i18n-ntpc-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 724
Filename: luci-i18n-ntpc-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1516
MD5Sum: 6943419c2a77eb064d466ce7a62df44b
SHA256sum: 96ecc4f9e0c17709b676ff7dfcdb5673e5d983003bf0264eaf5977fcde7e2b1a
Description: Translation for luci-app-ntpc - Polski (Polish)
Package: luci-i18n-ntpc-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 776
Filename: luci-i18n-ntpc-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1594
MD5Sum: 6d158a700f0b6354e97cd4f91846b896
SHA256sum: 6b5c5c3541b94b23ff8b538ede91c678b6b9797b8a0a85db3ef45e0728e82af8
Description: Translation for luci-app-ntpc - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-ntpc-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 743
Filename: luci-i18n-ntpc-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1547
MD5Sum: 2a9db971533855a23575eec153605baf
SHA256sum: 546c1d5f7fb99fca7d9add14236b2fd54ddc3924d6ef055dc89b098668b504a1
Description: Translation for luci-app-ntpc - Português (Portuguese)
Package: luci-i18n-ntpc-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 689
Filename: luci-i18n-ntpc-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1490
MD5Sum: 869e2b72eed254f242c84df68b475b65
SHA256sum: 7a602d18160c3ca933d05648e83de28846980d25e1ad85e7a57ce25aa0c6e89b
Description: Translation for luci-app-ntpc - Română (Romanian)
Package: luci-i18n-ntpc-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 819
Filename: luci-i18n-ntpc-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1632
MD5Sum: bd9df22814c7cbe8a000cd67caa47d5b
SHA256sum: 6643871f68aac11202c719cb31cb37734fadfefa90198ed5c417b1dfc2c01c45
Description: Translation for luci-app-ntpc - Русский (Russian)
Package: luci-i18n-ntpc-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-ntpc-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 5af4125cb21a71f26636cc332ad550b3
SHA256sum: 2aa3284a0d8b5e08483fcecc12db1423feb80d2ae9a6e98940f9378e90fbee83
Description: Translation for luci-app-ntpc - Slovenčina (Slovene)
Package: luci-i18n-ntpc-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-ntpc-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: 3b0b1fdb962c612f8d848cd22c273105
SHA256sum: c34450943a9b0824c5c3baaf1cba81d701ef23e59b38d025b96875eae7276ef2
Description: Translation for luci-app-ntpc - Svenska (Swedish)
Package: luci-i18n-ntpc-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 701
Filename: luci-i18n-ntpc-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1499
MD5Sum: c15efb33bf16c25de16b9e0c771c53f2
SHA256sum: 754ed6d47873a6d117299466afbfcd4bb0259cc9424d2b54cdd489bcefa64c51
Description: Translation for luci-app-ntpc - Türkçe (Turkish)
Package: luci-i18n-ntpc-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 832
Filename: luci-i18n-ntpc-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1654
MD5Sum: 6796b87597341b01705b1539e6054fba
SHA256sum: 1e3b8ee357285b503f38318128e2dcd41621d322aa749629a79d6c807cce3e9a
Description: Translation for luci-app-ntpc - украї́нська (Ukrainian)
Package: luci-i18n-ntpc-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 678
Filename: luci-i18n-ntpc-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1493
MD5Sum: 3136baabb3ee3d7d9f7371c64c5bbfb3
SHA256sum: 317f8ea8007858c483754bce03238c86fa2eb920165d1355815ae27905e793c9
Description: Translation for luci-app-ntpc - Tiếng Việt (Vietnamese)
Package: luci-i18n-ntpc-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 722
Filename: luci-i18n-ntpc-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1529
MD5Sum: 759cf1358c1a9f1c26d757ced6b90366
SHA256sum: 9b533e311508b487532f3d6ac10762799b876674adb6049c5d9e43d23b2934da
Description: Translation for luci-app-ntpc - 普通话 (Chinese)
Package: luci-i18n-ntpc-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-ntpc
Source: feeds/luci/applications/luci-app-ntpc
Section: luci
Architecture: all
Installed-Size: 729
Filename: luci-i18n-ntpc-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1544
MD5Sum: 1fb635ab135bbcad4c5fc97bb65ae7d2
SHA256sum: f37d47700b514ad8f2a2b4a908246d5214657946db814e14a1575d30c42dd41b
Description: Translation for luci-app-ntpc - 臺灣華語 (Taiwanese)
Package: luci-i18n-olsr-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 2306
Filename: luci-i18n-olsr-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3115
MD5Sum: c71d9fa8d9ab7b690a80b3dc13faa518
SHA256sum: f8b5bbbecb1a9ee0cbb60432c817e229d8a0a27b7390716a1cafd6e4d075e2fc
Description: Translation for luci-app-olsr - Català (Catalan)
Package: luci-i18n-olsr-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1446
Filename: luci-i18n-olsr-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2261
MD5Sum: d172ca9fd3ebcb1add092925df3c1c64
SHA256sum: a5c964a2c34e90df6398214e286194cd58e0720d6ef822668369473c4bfa3373
Description: Translation for luci-app-olsr - Čeština (Czech)
Package: luci-i18n-olsr-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 5999
Filename: luci-i18n-olsr-de_git-15.079.29361-3e37216-1_all.ipk
Size: 6797
MD5Sum: 323fea6a0b2e41390f161b5fa93d98fb
SHA256sum: 0b4f7eeac815d0113ca8954c67e042abc2c6e79a19c479159fe25b98f485e5ae
Description: Translation for luci-app-olsr - Deutsch (German)
Package: luci-i18n-olsr-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 973
Filename: luci-i18n-olsr-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1785
MD5Sum: 0d2e7456ee4a2dd4ec895e3aa4068139
SHA256sum: efaeaf5355da5c92d4b63dfb7e7d73190560252e74a4fd43a6b8da16e5918da4
Description: Translation for luci-app-olsr - Ελληνικά (Greek)
Package: luci-i18n-olsr-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 397
Filename: luci-i18n-olsr-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1180
MD5Sum: 315bf4d59ca766a686f2d40dbe7900f3
SHA256sum: c7ce50c76c87cda74225031727b35ff8b9a5ba210c0126e461463c6624a186d0
Description: Translation for luci-app-olsr - English
Package: luci-i18n-olsr-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 6509
Filename: luci-i18n-olsr-es_git-15.079.29361-3e37216-1_all.ipk
Size: 7350
MD5Sum: 3726ed9e613fab01b8da66f9d47d06e6
SHA256sum: ea7c3b4056cd6345ab404189b87b43cd89401f6c7f9a4030c687acb3c2105bc5
Description: Translation for luci-app-olsr - Español (Spanish)
Package: luci-i18n-olsr-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 387
Filename: luci-i18n-olsr-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1179
MD5Sum: f9020dc4d2c7031bb2bdce345b982a33
SHA256sum: 1aabe51f2b5e42687b92e6ed3788a61ddc935be6924ceb5700c623a04cc47124
Description: Translation for luci-app-olsr - Français (French)
Package: luci-i18n-olsr-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci-i18n-olsr-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1150
MD5Sum: 245879fe877119a50beeb0d3fc6e4e29
SHA256sum: 23566d5aede9dd9297a15c9f6386fe3aae2f401c81ca66c1e54f085be3ca814d
Description: Translation for luci-app-olsr - עִבְרִית (Hebrew)
Package: luci-i18n-olsr-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-olsr-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1099
MD5Sum: 607424d2d9c58e20273492910fb04437
SHA256sum: fe78d91258b89565f79f31151e584fe84e814d7bba19d0eaf51776f72dee4191
Description: Translation for luci-app-olsr - Magyar (Hungarian)
Package: luci-i18n-olsr-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 2400
Filename: luci-i18n-olsr-it_git-15.079.29361-3e37216-1_all.ipk
Size: 3174
MD5Sum: 8ad61ffbf68cf2d993a1b905135efd3b
SHA256sum: 6bf6c36fe1f59ec5ac648db2209ec0b6f8948f45684ee6a3ff0fe9fc8fde238d
Description: Translation for luci-app-olsr - Italiano (Italian)
Package: luci-i18n-olsr-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 6236
Filename: luci-i18n-olsr-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 7097
MD5Sum: c8a3b9dd488663ecf9f3f597e4137e0b
SHA256sum: 5b7a9cce961886d8a848975ea60ca644d2cf7537a6072d6ffcf8de5f6b72b229
Description: Translation for luci-app-olsr - 日本語 (Japanese)
Package: luci-i18n-olsr-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-olsr-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 13a23e3f468b69f57243b3433ff9d383
SHA256sum: 13ec44281b2b68fa45d9ab0c92e72f7847464d4f45456b13e5d304729c8810c9
Description: Translation for luci-app-olsr - Bahasa Melayu (Malay)
Package: luci-i18n-olsr-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 314
Filename: luci-i18n-olsr-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1101
MD5Sum: bb2cdf20c876686a15dacb90b86bc392
SHA256sum: 72ed436b9ac80f5a25dc795f986ab2eb1c0d8e8287500349b251c0fbb9c5fc38
Description: Translation for luci-app-olsr - Norsk (Norwegian)
Package: luci-i18n-olsr-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 3969
Filename: luci-i18n-olsr-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 4739
MD5Sum: e764de2a65feb7ec066495e255302065
SHA256sum: 7dea9e2d2c84adde559b4f213a6bb5fa99b3a0393b9c8bf258cb7c85f5ac6b1f
Description: Translation for luci-app-olsr - Polski (Polish)
Package: luci-i18n-olsr-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 7267
Filename: luci-i18n-olsr-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 8096
MD5Sum: 20ce3659e45f3bc6361207b24d3102cd
SHA256sum: 3f2a7ca53c47a1d245f93a639535805cc6dfd252810e631c18f5e9821ca379e5
Description: Translation for luci-app-olsr - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-olsr-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 2505
Filename: luci-i18n-olsr-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 3318
MD5Sum: 9d3490e3c1248766eb39f6fb50816076
SHA256sum: 3148f21e5bc77645c98fe4eb879232d21a9a65547d51975542368777967a14cc
Description: Translation for luci-app-olsr - Português (Portuguese)
Package: luci-i18n-olsr-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1046
Filename: luci-i18n-olsr-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1854
MD5Sum: 24aea5db77785840d1a89f5a250966e0
SHA256sum: f5c3d5ef9d198cb5bd96b543fa1cfd8d69c06ae96dface60be36cc7d73c7b0b1
Description: Translation for luci-app-olsr - Română (Romanian)
Package: luci-i18n-olsr-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 6966
Filename: luci-i18n-olsr-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 7805
MD5Sum: 49e62b5f30ebb5e7c216177d29a9601c
SHA256sum: 17f5a9b704b99bf313da007e3740c5bffe1e86356fec1843fa27c67a3b649b99
Description: Translation for luci-app-olsr - Русский (Russian)
Package: luci-i18n-olsr-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-olsr-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 66f9313537a70dad8b4e23e1b50cdff2
SHA256sum: e95eae24326ff0b9dfcd6ff1b2c8cdee62d50c0f630a915fb545d245f1f434ae
Description: Translation for luci-app-olsr - Slovenčina (Slovene)
Package: luci-i18n-olsr-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-olsr-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 58c0229f5cacfa5d1dd20e95bfacbae0
SHA256sum: 2b37e9cc304954e438668509ec39a036e98c08ae935d3443a7d971e4df479315
Description: Translation for luci-app-olsr - Svenska (Swedish)
Package: luci-i18n-olsr-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-olsr-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 88bc8e43b63203eb962f81187d016293
SHA256sum: 046bdd373b6450f6e7c8e95f24259947f1d171f8c305edfcf8f945f27ecbd286
Description: Translation for luci-app-olsr - Türkçe (Turkish)
Package: luci-i18n-olsr-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 346
Filename: luci-i18n-olsr-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1171
MD5Sum: f0de8b4a974751b0235d23fb9d483b4c
SHA256sum: cc0d14aafcd8b91d460fc463a816d79b312b4b62afaeb966b3a12a43967b116a
Description: Translation for luci-app-olsr - украї́нська (Ukrainian)
Package: luci-i18n-olsr-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1297
Filename: luci-i18n-olsr-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2125
MD5Sum: 8d086db36ccc3d4e15d7c241b87c42e4
SHA256sum: 064b5df99682f89d8177882e375f3f8fad4e7bd56af7c8ef624d48bade12b14a
Description: Translation for luci-app-olsr - Tiếng Việt (Vietnamese)
Package: luci-i18n-olsr-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1187
Filename: luci-i18n-olsr-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2004
MD5Sum: b30ca6f54747f70bc673cd97b79cecaa
SHA256sum: c2f88274b29bac581c7123bad71f32553d9ba9a653089299056c2717d5d381b3
Description: Translation for luci-app-olsr - 普通话 (Chinese)
Package: luci-i18n-olsr-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-olsr
Source: feeds/luci/applications/luci-app-olsr
Section: luci
Architecture: all
Installed-Size: 1296
Filename: luci-i18n-olsr-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2132
MD5Sum: a69ce8236988d36969f67064a3e4bb85
SHA256sum: cda2c5aa96974011b4f673bf6a07e3ac21b39ebd94d0b488787d013d89e02e22
Description: Translation for luci-app-olsr - 臺灣華語 (Taiwanese)
Package: luci-i18n-openvpn-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5404
Filename: luci-i18n-openvpn-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 6181
MD5Sum: 1b4f14445148992e120c1a3fd2de81f6
SHA256sum: fff9eeaed0c53780a25fa870e48a1cac408e331bf3dda9899df164cbab4a549a
Description: Translation for luci-app-openvpn - Català (Catalan)
Package: luci-i18n-openvpn-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1630
Filename: luci-i18n-openvpn-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2451
MD5Sum: 9898ddc91b5d19603a86dec0b7e27ddd
SHA256sum: 3fee4a3ff540ce9dd940463a997d9d24a6e044c2f3c7b54f2e7b664e065c43e9
Description: Translation for luci-app-openvpn - Čeština (Czech)
Package: luci-i18n-openvpn-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5615
Filename: luci-i18n-openvpn-de_git-15.079.29361-3e37216-1_all.ipk
Size: 6405
MD5Sum: d5a3205220ebabb1b3eab690f6c26c18
SHA256sum: 8d477e270aeab434d845c33c55d19c22c0541ccdcfa05c76b3344ec9072abcbf
Description: Translation for luci-app-openvpn - Deutsch (German)
Package: luci-i18n-openvpn-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1688
Filename: luci-i18n-openvpn-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2519
MD5Sum: c6a84e7a8c0310ea87a880d2d1162bf2
SHA256sum: b63f23e061bbec1930ab9ed5dd14d4f14ceed759fec5a2c860858583ce045caa
Description: Translation for luci-app-openvpn - Ελληνικά (Greek)
Package: luci-i18n-openvpn-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci-i18n-openvpn-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: a33554ed848e0e35f2a9135fa56ba4cc
SHA256sum: 9a7763c25321c289ba2b605b8f2faf2b8553eb0c6736828d785aecb703999989
Description: Translation for luci-app-openvpn - English
Package: luci-i18n-openvpn-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5507
Filename: luci-i18n-openvpn-es_git-15.079.29361-3e37216-1_all.ipk
Size: 6284
MD5Sum: b0989d6c56c6aa5d94782542c8692be1
SHA256sum: 84835a1b41d873dfbd26a1991f16d39ab95fe57bc93f1ba7034911753a84f9eb
Description: Translation for luci-app-openvpn - Español (Spanish)
Package: luci-i18n-openvpn-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5804
Filename: luci-i18n-openvpn-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 6603
MD5Sum: 1ed18be1d6451de39506cf53f7a52f68
SHA256sum: fccca1c18ba05af67c1d336fb6d548f9b98559a66f1da9ddc277be03a4430cfb
Description: Translation for luci-app-openvpn - Français (French)
Package: luci-i18n-openvpn-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-openvpn-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1154
MD5Sum: b9c011dbed72e7293eea97792d24c327
SHA256sum: c6d18b941cc57122bae7ff2a6f6ef56ed560d1d3f2cc1308156f401ba7f1f584
Description: Translation for luci-app-openvpn - עִבְרִית (Hebrew)
Package: luci-i18n-openvpn-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 2868
Filename: luci-i18n-openvpn-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 3650
MD5Sum: f0ae308b82e0f1f884101a9fb356c5af
SHA256sum: a09dc6d7c15bfcfcf1941bfcc98eba6e3788373b95acee17a26c821801b04058
Description: Translation for luci-app-openvpn - Magyar (Hungarian)
Package: luci-i18n-openvpn-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1874
Filename: luci-i18n-openvpn-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2685
MD5Sum: b8b6a7f2042f982edc11da22e6460024
SHA256sum: 2b315986d9e4320f6a9c7fadd8a7b6f7f9ac7717aefb04d17a61a02382847d2e
Description: Translation for luci-app-openvpn - Italiano (Italian)
Package: luci-i18n-openvpn-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 1793
Filename: luci-i18n-openvpn-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2615
MD5Sum: b98f09566bc2305171d93723cc401056
SHA256sum: c98fbfeb82953ec9fc24830344eee3652d20bcb1fe97bbbd1f0e3361ffae3549
Description: Translation for luci-app-openvpn - 日本語 (Japanese)
Package: luci-i18n-openvpn-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-openvpn-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: f154b21e154635c79bbff73b3b24f4a2
SHA256sum: 230c384b17af1a5517c12bfbee4cf624e546aa76ef195e8c8046bf4cd5412fc2
Description: Translation for luci-app-openvpn - Bahasa Melayu (Malay)
Package: luci-i18n-openvpn-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-openvpn-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: a36c2a7764d6800b2508a07647f1766f
SHA256sum: 084eb67ecd925ca3a14f0844e1e446fc8f3d46fbf910e5ca81f62724edf7086f
Description: Translation for luci-app-openvpn - Norsk (Norwegian)
Package: luci-i18n-openvpn-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5702
Filename: luci-i18n-openvpn-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 6488
MD5Sum: 103612ebf296969e83a77e499ad64733
SHA256sum: e04881b05d56fa77cf18f4b2c69616a836652b5e7b58b9046ea6ba2c569826e8
Description: Translation for luci-app-openvpn - Polski (Polish)
Package: luci-i18n-openvpn-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5732
Filename: luci-i18n-openvpn-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 6544
MD5Sum: 26e51f24d4055cf5811993046d292ff8
SHA256sum: 4162c5646b8c6cb56e7ce4e17ff8687825bbc4086fe1418432d11e33217ec580
Description: Translation for luci-app-openvpn - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-openvpn-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5671
Filename: luci-i18n-openvpn-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 6466
MD5Sum: c58e5463e1a7cfca26c76eb35069ac9e
SHA256sum: 0acf2800119dcf358a9596a124cb1c11c5bcd2b134cc921730155f253df84c2e
Description: Translation for luci-app-openvpn - Português (Portuguese)
Package: luci-i18n-openvpn-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci-i18n-openvpn-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1136
MD5Sum: d8434d0b764154996456c8e2a41f787d
SHA256sum: f610d462b3f613414c1bd1f17378ed9356058a593f7cf023c868367f67f4db03
Description: Translation for luci-app-openvpn - Română (Romanian)
Package: luci-i18n-openvpn-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 6362
Filename: luci-i18n-openvpn-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 7213
MD5Sum: ada4420264824c333751bcbf9d5f4f81
SHA256sum: ac2afee2e5ed6566d4e37799df6adcbbbae25a6b4af1490405d7a8f3a0fabbcd
Description: Translation for luci-app-openvpn - Русский (Russian)
Package: luci-i18n-openvpn-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-openvpn-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: d432bc89441d7eed68399b17418799a1
SHA256sum: 96c664e36c66ecfe4fd2a4c0ebb760d8f978cba49d168c0418ea5422a537018a
Description: Translation for luci-app-openvpn - Slovenčina (Slovene)
Package: luci-i18n-openvpn-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-openvpn-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 1d9b46f4a89e7b604936b52984374624
SHA256sum: 8f0893d21b57c26233ced676d5df4e75de2a77bf7adbf13224a7395c83e616a7
Description: Translation for luci-app-openvpn - Svenska (Swedish)
Package: luci-i18n-openvpn-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-openvpn-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1127
MD5Sum: a35c74c83540feeb83ac951910effe6e
SHA256sum: 58601db766b24a919f6247eb9ab0b09aac83c86141077ec46d2a7c2d473bfc57
Description: Translation for luci-app-openvpn - Türkçe (Turkish)
Package: luci-i18n-openvpn-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 560
Filename: luci-i18n-openvpn-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1397
MD5Sum: fe2383ab2bb36e114feba5446dee7376
SHA256sum: d3a65386e29c1451ccb48877d154d44987b1a1b808dbadf87d4e8eed983df427
Description: Translation for luci-app-openvpn - украї́нська (Ukrainian)
Package: luci-i18n-openvpn-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5192
Filename: luci-i18n-openvpn-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 5991
MD5Sum: bbcada80b439e87d671ac8131a26f98b
SHA256sum: 1cf00b1dd3b4f8c9bfab5fa00f52f4e9a46bf1c385287c6a08f52eebd3eacecf
Description: Translation for luci-app-openvpn - Tiếng Việt (Vietnamese)
Package: luci-i18n-openvpn-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 5435
Filename: luci-i18n-openvpn-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 6228
MD5Sum: 2fe8a798a93076524f3f44c234fb8dcc
SHA256sum: f90c60f5887cf4b2c601f470098e75eb356673f01d6458098bf5d04eb6412059
Description: Translation for luci-app-openvpn - 普通话 (Chinese)
Package: luci-i18n-openvpn-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-openvpn
Source: feeds/luci/applications/luci-app-openvpn
Section: luci
Architecture: all
Installed-Size: 347
Filename: luci-i18n-openvpn-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1165
MD5Sum: 328607fbc45b400a1c5bf9d9953fcff7
SHA256sum: 104fe7923ead4aa0bf6ebc4849272c6950962ba3f2019a716ef90cd6ceb3ba16
Description: Translation for luci-app-openvpn - 臺灣華語 (Taiwanese)
Package: luci-i18n-p2pblock-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 652
Filename: luci-i18n-p2pblock-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1454
MD5Sum: c18c5d66dcb85d0cc895941fbacbee32
SHA256sum: eca352d0699580ac918c9d5293f14ce3480207e21d744a4ce57968ce43d5e535
Description: Translation for luci-app-p2pblock - Català (Catalan)
Package: luci-i18n-p2pblock-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 550
Filename: luci-i18n-p2pblock-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1354
MD5Sum: 755378ce380511d20df3bc6337a47a5c
SHA256sum: f604850b7d63d61e8dc9c89af16fbb1339881b598888ca123108fbbb1d56f315
Description: Translation for luci-app-p2pblock - Čeština (Czech)
Package: luci-i18n-p2pblock-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 713
Filename: luci-i18n-p2pblock-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1515
MD5Sum: 7b3e2dd2c9b1f70f26ea5978f207c20a
SHA256sum: 0446b8c86551888a864794d8da6761ece7a74d1c59792c732dd9ede021bc16f5
Description: Translation for luci-app-p2pblock - Deutsch (German)
Package: luci-i18n-p2pblock-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 407
Filename: luci-i18n-p2pblock-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1218
MD5Sum: 0d33a6b7f0ee07709600445c3d2e9117
SHA256sum: 9f233344d39ef13efc5712e15c8e9a8fa8b7592e393b449f269164ea1011cc74
Description: Translation for luci-app-p2pblock - Ελληνικά (Greek)
Package: luci-i18n-p2pblock-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 309
Filename: luci-i18n-p2pblock-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1096
MD5Sum: c72c1e5a6911753f23e3bf642b0a0314
SHA256sum: 08e8873a5c1a997b65ce462c897062fda6b7fe5d157663c7a08afa3dab4aad96
Description: Translation for luci-app-p2pblock - English
Package: luci-i18n-p2pblock-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 649
Filename: luci-i18n-p2pblock-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1456
MD5Sum: 989a0209fd75f838eeb43e40ee5f4f46
SHA256sum: 8b6f532b0d09d010ca41dd8790ffe962c9fd826136cc2f88236bca042901a567
Description: Translation for luci-app-p2pblock - Español (Spanish)
Package: luci-i18n-p2pblock-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 650
Filename: luci-i18n-p2pblock-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1454
MD5Sum: a6f861aba425de23e8dab77516b845e3
SHA256sum: cf4f2c45124a3f3f70139133c17304c1c8278bfefe01c7324df9bb18de66825d
Description: Translation for luci-app-p2pblock - Français (French)
Package: luci-i18n-p2pblock-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 705
Filename: luci-i18n-p2pblock-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1526
MD5Sum: 3c5da17503b3ce05fd7a64c678656635
SHA256sum: 44c15c156baafa49e1229fa4fe68c3da21e528250fa9b4cb11ec46c9d0dc8cc8
Description: Translation for luci-app-p2pblock - עִבְרִית (Hebrew)
Package: luci-i18n-p2pblock-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 667
Filename: luci-i18n-p2pblock-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1472
MD5Sum: 8709e7795ae51426f2a5619109665a9b
SHA256sum: a855f277514ad50ec12ebc8f3615557f56f0820b890876ecda25926d9d7c3633
Description: Translation for luci-app-p2pblock - Magyar (Hungarian)
Package: luci-i18n-p2pblock-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 655
Filename: luci-i18n-p2pblock-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1452
MD5Sum: ee9be374cd412fcf37d26fcca65e3535
SHA256sum: 98d911cea00336c1738e521f8371ee7388edf79ab32f4039db8f6e26ac2e0973
Description: Translation for luci-app-p2pblock - Italiano (Italian)
Package: luci-i18n-p2pblock-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-p2pblock-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: c4e92f194d2b1ead02ded687f0db67af
SHA256sum: b96ffe17f64aee1eb306221b9923387c3b6c7a04b0a6852514b1bc02f9263205
Description: Translation for luci-app-p2pblock - 日本語 (Japanese)
Package: luci-i18n-p2pblock-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-p2pblock-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 609ebc14e0fd36f0f26cba3011ca9297
SHA256sum: f72e9ae0dc0c5c5142a96b643e878b6e2b66b84b3ef85747b7cfd4c827c6fa29
Description: Translation for luci-app-p2pblock - Bahasa Melayu (Malay)
Package: luci-i18n-p2pblock-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 631
Filename: luci-i18n-p2pblock-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1425
MD5Sum: ca2ee7091fe49fedd92fb9e3baebb04e
SHA256sum: 9a9413d3d603d7e49c909b8909f29e05fd54826b47f84b5e570f4335548c0888
Description: Translation for luci-app-p2pblock - Norsk (Norwegian)
Package: luci-i18n-p2pblock-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 631
Filename: luci-i18n-p2pblock-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1427
MD5Sum: 0cdd6e1b651f0cb700560879ab6ed801
SHA256sum: 657f8a0383e5808e86d38af99432795f496943d92008a7dcb260de2fa5e77879
Description: Translation for luci-app-p2pblock - Polski (Polish)
Package: luci-i18n-p2pblock-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 660
Filename: luci-i18n-p2pblock-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1479
MD5Sum: e12d639df370132d40a269305205e5cf
SHA256sum: c06dec06de4e6c4b9b37c61a7f3a84d86247944309402033ae521f2705a326b9
Description: Translation for luci-app-p2pblock - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-p2pblock-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 656
Filename: luci-i18n-p2pblock-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1460
MD5Sum: 11ce3831683a2a3a2e3ab96cdf11b587
SHA256sum: f5076e45ac720f37948ff00a0c369cb231fbc15fbefdba292731b4acf9b8919a
Description: Translation for luci-app-p2pblock - Português (Portuguese)
Package: luci-i18n-p2pblock-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 639
Filename: luci-i18n-p2pblock-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1445
MD5Sum: 89b923db5cc94fbe9a318743dd2c8b2e
SHA256sum: 5ef0ea8af6c90126cdd3c99c85448ad66796e63769b5bf12e9b11804b3f233b8
Description: Translation for luci-app-p2pblock - Română (Romanian)
Package: luci-i18n-p2pblock-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 704
Filename: luci-i18n-p2pblock-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1521
MD5Sum: 6e40cb550120822b314195b3e5c4b6dc
SHA256sum: c971a2bdd2f9b1211581641dac7ec9ec76f78b7af92322312aa32b47d4bea503
Description: Translation for luci-app-p2pblock - Русский (Russian)
Package: luci-i18n-p2pblock-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-p2pblock-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: d2606f9ea13f44c81126b72cc587e40d
SHA256sum: e5fc8cd6745b9db19d3761e2b3d7f2a66bc9c836b45106b1fe008bf4ea293ea4
Description: Translation for luci-app-p2pblock - Slovenčina (Slovene)
Package: luci-i18n-p2pblock-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-p2pblock-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: b7f7d2d320461e2ef084f81b6d8f2f50
SHA256sum: 979869b0ae8b52f121b8919035828a0f15c33d368ed0e8135dbdeb16419d95c4
Description: Translation for luci-app-p2pblock - Svenska (Swedish)
Package: luci-i18n-p2pblock-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 666
Filename: luci-i18n-p2pblock-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1472
MD5Sum: 94b70958262e8e2f2b9d268e3b50d244
SHA256sum: 65b8603f18601313c7c34634ec442e39c438a8e4349ba076b322018f6438bb58
Description: Translation for luci-app-p2pblock - Türkçe (Turkish)
Package: luci-i18n-p2pblock-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 767
Filename: luci-i18n-p2pblock-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1604
MD5Sum: 6763dbe2de1b44019fe27e78f856f801
SHA256sum: d56bcf0e3a0d5b0ddd77db9382a4c0d27dd65eb4c788fa7ad74ec3a128194480
Description: Translation for luci-app-p2pblock - украї́нська (Ukrainian)
Package: luci-i18n-p2pblock-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 628
Filename: luci-i18n-p2pblock-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1447
MD5Sum: d8686995978a53bee53fa5650a291806
SHA256sum: 15960d08b029ae86424c5274e7b28c0320e41d60b5618aedc62aa1210826b224
Description: Translation for luci-app-p2pblock - Tiếng Việt (Vietnamese)
Package: luci-i18n-p2pblock-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 653
Filename: luci-i18n-p2pblock-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1458
MD5Sum: 2f979325b281e11820b9c1172bdc66d7
SHA256sum: 6e28673e49f1b0d163803fee86b7a89778d674b7bb23811cf70a4d7f37404eb0
Description: Translation for luci-app-p2pblock - 普通话 (Chinese)
Package: luci-i18n-p2pblock-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p2pblock
Source: feeds/luci/applications/luci-app-p2pblock
Section: luci
Architecture: all
Installed-Size: 709
Filename: luci-i18n-p2pblock-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1529
MD5Sum: b5d39cd21523ea4ec81709f351bffe22
SHA256sum: 3aa1e647273348cbda3164cd107752bb876e47bff507b4acadb370e3bf7f0a58
Description: Translation for luci-app-p2pblock - 臺灣華語 (Taiwanese)
Package: luci-i18n-p910nd-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 687
Filename: luci-i18n-p910nd-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1485
MD5Sum: 549352b4429c37546765c5abe966d629
SHA256sum: bd296c5560dc99140796c432937215bf970b5e0044125443664a6726e9e3d9d8
Description: Translation for luci-app-p910nd - Català (Catalan)
Package: luci-i18n-p910nd-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 713
Filename: luci-i18n-p910nd-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1519
MD5Sum: b63bbc0af4edd082e07c0bbb3fb91df4
SHA256sum: 1cf0dac8b49f6433c8df80ff4ca7c956ebd3400a47b84b3961f7a5f38f17c915
Description: Translation for luci-app-p910nd - Čeština (Czech)
Package: luci-i18n-p910nd-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 622
Filename: luci-i18n-p910nd-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1419
MD5Sum: bafce513946506fef1e546c5817ed1d4
SHA256sum: 03070ebc2d291cd98ee3fcd9e8ddd0b9120122d766f6644e1103edf198743161
Description: Translation for luci-app-p910nd - Deutsch (German)
Package: luci-i18n-p910nd-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 762
Filename: luci-i18n-p910nd-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1581
MD5Sum: 1a63e7222e900af1aaf281cdb2aa8bb8
SHA256sum: 19a76e9b6d1ea4394a0412c9b89f13d048d9ffe2563c1cf21b3554d12c3ef330
Description: Translation for luci-app-p910nd - Ελληνικά (Greek)
Package: luci-i18n-p910nd-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 304
Filename: luci-i18n-p910nd-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1087
MD5Sum: 4f8728ac0c49be5a88aee8c33d165f61
SHA256sum: d34be77ff488cf33d2d9dc5c3b437f9d4fc1227f89dea6e72dc36bbd30e8f03d
Description: Translation for luci-app-p910nd - English
Package: luci-i18n-p910nd-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 708
Filename: luci-i18n-p910nd-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1504
MD5Sum: a6a77d2aef419b62e15378023503ce37
SHA256sum: 279d208d694e349610b66b87bfb9649e02c4c9dce6e14503fd1307320ea22f88
Description: Translation for luci-app-p910nd - Español (Spanish)
Package: luci-i18n-p910nd-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 648
Filename: luci-i18n-p910nd-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1445
MD5Sum: 00f473e7be464be9613199cac6194c23
SHA256sum: 1e12f2a31a257a01615b51d24c0df5f1fc69cf4ff36ffbe534819544133febec
Description: Translation for luci-app-p910nd - Français (French)
Package: luci-i18n-p910nd-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 693
Filename: luci-i18n-p910nd-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1515
MD5Sum: 94f7a9b20725a54a0796b09572b3637d
SHA256sum: a5b806f9b048a2cc52a5cb6d7dc0c5e5cf2d1772604c2f23a389aa2abc045e53
Description: Translation for luci-app-p910nd - עִבְרִית (Hebrew)
Package: luci-i18n-p910nd-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 662
Filename: luci-i18n-p910nd-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1457
MD5Sum: 358d537b0ec79928779b2676427b10d1
SHA256sum: 79e9232880d242be4b212c8bb4b777d30835c0f3692c5174d8e9e46f7bf2d41c
Description: Translation for luci-app-p910nd - Magyar (Hungarian)
Package: luci-i18n-p910nd-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 714
Filename: luci-i18n-p910nd-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1502
MD5Sum: 86e1404d8b445060528bb334f698da17
SHA256sum: 39a9e5f43b48d642c0b32463274ce92cbce076f7a10d5c08fd38d83bd7c93394
Description: Translation for luci-app-p910nd - Italiano (Italian)
Package: luci-i18n-p910nd-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 728
Filename: luci-i18n-p910nd-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1548
MD5Sum: 2213a4d860c71d100a3cea502e8c8039
SHA256sum: 7ed072462889542fab890805ae33a17b2953e24d98e61c2a06ab6945473eb67e
Description: Translation for luci-app-p910nd - 日本語 (Japanese)
Package: luci-i18n-p910nd-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-p910nd-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 7ba738322877b75a2a0fbbb06c5a2b3a
SHA256sum: b70410e62c9598cab5355d1dab6e5e396aafc70284fa78de0aba1782743e723d
Description: Translation for luci-app-p910nd - Bahasa Melayu (Malay)
Package: luci-i18n-p910nd-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 629
Filename: luci-i18n-p910nd-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1425
MD5Sum: 2e6734b8989a41c2949b6293c621b00d
SHA256sum: 468c5323db3a34e229b7ec5ef506b75ae5497aa239158e2281889c5c31064ece
Description: Translation for luci-app-p910nd - Norsk (Norwegian)
Package: luci-i18n-p910nd-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 682
Filename: luci-i18n-p910nd-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1476
MD5Sum: 80c32b96d5774b0b844eaac5f45d92b6
SHA256sum: f44d0f86af57ea4dc99cefb58a9b2339393fbfc4da821f4ef1de38732e8df6fc
Description: Translation for luci-app-p910nd - Polski (Polish)
Package: luci-i18n-p910nd-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 717
Filename: luci-i18n-p910nd-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1534
MD5Sum: cddc1967870b71212945e1bcecf90923
SHA256sum: c9fa5b2c2993d9dd585bfdf82f691caf0aab2bda7ac220f4713e604d68c236fc
Description: Translation for luci-app-p910nd - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-p910nd-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 654
Filename: luci-i18n-p910nd-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1458
MD5Sum: 2b15a71a8b5cd1d35c5f85fc486cb5a1
SHA256sum: 8f9286a90bb7f325f33eefa3a1de4e5b2c091950a295de2e44256f0092f3a05d
Description: Translation for luci-app-p910nd - Português (Portuguese)
Package: luci-i18n-p910nd-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 465
Filename: luci-i18n-p910nd-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1266
MD5Sum: 131568a1598b01181b724de08c095ad0
SHA256sum: 0e065587a620802d80fbbdfecc2e518e85aac4feca93bbfbf2f3a49d74ae8919
Description: Translation for luci-app-p910nd - Română (Romanian)
Package: luci-i18n-p910nd-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 750
Filename: luci-i18n-p910nd-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1570
MD5Sum: f543332895f34be9130bfb9e1f55e664
SHA256sum: f3678647eaefe7ad4d078eb3c083b308e219f72cf7cfbe46a0f21eb743490860
Description: Translation for luci-app-p910nd - Русский (Russian)
Package: luci-i18n-p910nd-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-p910nd-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 6b9e562b0c2bdeb6d33f690b23d8af45
SHA256sum: 29c288202789da8d49bb31be4514ab0453f01126a5eda6e5b1079ef2a53b9e72
Description: Translation for luci-app-p910nd - Slovenčina (Slovene)
Package: luci-i18n-p910nd-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-p910nd-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: 885cc33a14f38615d1509fd6e3f871a0
SHA256sum: 1e1a1e41400edd14a0413efb800345424003ef6bc86a64c3f56e7e7b2cd064c8
Description: Translation for luci-app-p910nd - Svenska (Swedish)
Package: luci-i18n-p910nd-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 644
Filename: luci-i18n-p910nd-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1442
MD5Sum: 78a0be36cb831d5828635443a79be407
SHA256sum: 43ef98e43adaa4b2d3aca4cb40ea99e5517b4eb64bd53cb8dfff19cac4e42cec
Description: Translation for luci-app-p910nd - Türkçe (Turkish)
Package: luci-i18n-p910nd-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 751
Filename: luci-i18n-p910nd-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1581
MD5Sum: 94d7120a64d731c0446847738307c7a3
SHA256sum: d08c89a0e617625859a1407b652251ef7383a702fe28d3ace21ae9bbd7cb51d1
Description: Translation for luci-app-p910nd - украї́нська (Ukrainian)
Package: luci-i18n-p910nd-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 576
Filename: luci-i18n-p910nd-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1394
MD5Sum: c15f684856bc09f4945b9c980bc049da
SHA256sum: e3e46c34b4d77d8c7cc87afc3913f3b97809588216d7e76d66059129d52b9344
Description: Translation for luci-app-p910nd - Tiếng Việt (Vietnamese)
Package: luci-i18n-p910nd-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 687
Filename: luci-i18n-p910nd-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1498
MD5Sum: 35f62ccb002755f2aa76acbdc2c11f84
SHA256sum: 8de2bc7e11672a7580509e3314750f3181db54f929753950bf198be49bf9ec24
Description: Translation for luci-app-p910nd - 普通话 (Chinese)
Package: luci-i18n-p910nd-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-p910nd
Source: feeds/luci/applications/luci-app-p910nd
Section: luci
Architecture: all
Installed-Size: 687
Filename: luci-i18n-p910nd-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1510
MD5Sum: a0ce8b8910c9760e9232e0034c7cd3a9
SHA256sum: 88c79eba311261255369b47094d310176550f2c0d60b72324a194d7fbb8fd3f2
Description: Translation for luci-app-p910nd - 臺灣華語 (Taiwanese)
Package: luci-i18n-pbx-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 2321
Filename: luci-i18n-pbx-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3095
MD5Sum: ac901cab8910b2be845974d8e4d2d654
SHA256sum: 369b2c25309fbdb14d48cef299090c35aa706296db3c242093c447d6ef6b9627
Description: Translation for luci-app-pbx - Català (Catalan)
Package: luci-i18n-pbx-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1038
Filename: luci-i18n-pbx-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1838
MD5Sum: 3cb67d4c2a9246cf624e4103210a4b8e
SHA256sum: 0a94f966f56967225972ea33c4d109b135ec7c254f1033662e2527648acd69f0
Description: Translation for luci-app-pbx - Čeština (Czech)
Package: luci-i18n-pbx-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 6545
Filename: luci-i18n-pbx-de_git-15.079.29361-3e37216-1_all.ipk
Size: 7364
MD5Sum: a80c85b2c7600fe31de0ef50c49a0f34
SHA256sum: 20684c521f479782274d93dd48f0a6bf4c76e39060e309c6e1b6ae4ca629287d
Description: Translation for luci-app-pbx - Deutsch (German)
Package: luci-i18n-pbx-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 726
Filename: luci-i18n-pbx-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1540
MD5Sum: ae96d9df23ded9e12c651cb2fc115d3a
SHA256sum: b5ac780ea666d20a8eee85b6600e7a09ec5ff07189afc60d2152358c40a634bf
Description: Translation for luci-app-pbx - Ελληνικά (Greek)
Package: luci-i18n-pbx-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 305
Filename: luci-i18n-pbx-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1086
MD5Sum: a9f0a68f2a6dea7c7cece43e32e5f607
SHA256sum: 09974848230ca6c77e7d197b64c478133c264f259168f09cfefe9ede80498544
Description: Translation for luci-app-pbx - English
Package: luci-i18n-pbx-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 6552
Filename: luci-i18n-pbx-es_git-15.079.29361-3e37216-1_all.ipk
Size: 7342
MD5Sum: 707b2390ff79af437d70aff5ba1bf6fd
SHA256sum: 281e418a3b5ad622389130746e5a66ba51beaeaf15f323cbc7c7da76846c68a2
Description: Translation for luci-app-pbx - Español (Spanish)
Package: luci-i18n-pbx-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-pbx-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: 3ecb37adc81dda7f26137bd8b851243c
SHA256sum: 60b24554bbf09ee9f9a744a2be00ab1895bbd5eccaf92ba485644af302cdb457
Description: Translation for luci-app-pbx - Français (French)
Package: luci-i18n-pbx-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-pbx-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1143
MD5Sum: bc18f56239c10b4482280ce66d157b98
SHA256sum: ad5ee1fa6d80929d6f6725dbda8b44860f9cdc35988673261f102b6e5f7d9162
Description: Translation for luci-app-pbx - עִבְרִית (Hebrew)
Package: luci-i18n-pbx-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-pbx-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1108
MD5Sum: 0f52a24138ea7648427e4e7a4793bf4d
SHA256sum: fc94edcde9767b28a8061306f16977ed061f02ca977f6ddefc070cd66f009b6f
Description: Translation for luci-app-pbx - Magyar (Hungarian)
Package: luci-i18n-pbx-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 370
Filename: luci-i18n-pbx-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: 1aee3b9b207df4c13690ce9b5b8acc83
SHA256sum: e85a6f1e76033b4c2ab6fc45921b96392b279a08a1e6b06f07a5d0bf212dcd32
Description: Translation for luci-app-pbx - Italiano (Italian)
Package: luci-i18n-pbx-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 899
Filename: luci-i18n-pbx-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1721
MD5Sum: eaf345128c2468b76260af2298e04ab7
SHA256sum: 752426a1d10ab95b52db41692d0426c998f1c3337c6d0e6b94fc6d5118ccc437
Description: Translation for luci-app-pbx - 日本語 (Japanese)
Package: luci-i18n-pbx-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-pbx-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: f1f409145091c92dac661dbd1e9e80db
SHA256sum: 3dde4095241bb7ff811d6752a5f6374ff9488571ef669a0b5d9a0be864154ffe
Description: Translation for luci-app-pbx - Bahasa Melayu (Malay)
Package: luci-i18n-pbx-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 313
Filename: luci-i18n-pbx-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 175c2ce306c1e1737ef5565a8c8d68e8
SHA256sum: 64c3a24726b73b62f1712b7410829536144f498252ea8f0ffdbb4a555b6cfabf
Description: Translation for luci-app-pbx - Norsk (Norwegian)
Package: luci-i18n-pbx-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1782
Filename: luci-i18n-pbx-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2585
MD5Sum: e473d51f83175311621df3f6764140ef
SHA256sum: d4fd490f2122fe53089fd6ab14a485c46f94d3b58bed587fb387363094bac2c4
Description: Translation for luci-app-pbx - Polski (Polish)
Package: luci-i18n-pbx-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 7343
Filename: luci-i18n-pbx-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 8181
MD5Sum: 28dd0c436a85e68c23d61221385e6d8d
SHA256sum: db07a382837b1443bd0760cd3f5a814fe7705384f962ba7af5377146516ae48a
Description: Translation for luci-app-pbx - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-pbx-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 480
Filename: luci-i18n-pbx-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1279
MD5Sum: 24309d40991541334eaa7d7927ada492
SHA256sum: 22dd4bae87d66220c370cfce1ffda704e097b4d3dbed76acc5537c16ded19e64
Description: Translation for luci-app-pbx - Português (Portuguese)
Package: luci-i18n-pbx-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 632
Filename: luci-i18n-pbx-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1438
MD5Sum: 69ac9237ea18519f161ba875ef32b3cc
SHA256sum: 883dadc584c977a7c28487f7c85c7b1b53e4d70f5a6d91cb2754fa99361b2565
Description: Translation for luci-app-pbx - Română (Romanian)
Package: luci-i18n-pbx-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 2701
Filename: luci-i18n-pbx-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3515
MD5Sum: 6c76bfb7863fa182d54ca4a7b016ac13
SHA256sum: 692f7e2f02bac91d27c84eba39a05e607fe7bf6bacef34b90332999524232108
Description: Translation for luci-app-pbx - Русский (Russian)
Package: luci-i18n-pbx-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-pbx-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: e65ed5d6b773773bf8413e12fef178d9
SHA256sum: 21829289ddf174e24e808404ce7f4c872917c9efe3775daef6efd444b750216a
Description: Translation for luci-app-pbx - Slovenčina (Slovene)
Package: luci-i18n-pbx-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 2321
Filename: luci-i18n-pbx-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 3131
MD5Sum: eaa4e4f4b49d22bcb4f11cbec92715ee
SHA256sum: 08141bb218dd3efa7e711e1463ef8ee7502594736d158658add85f2f8084a05c
Description: Translation for luci-app-pbx - Svenska (Swedish)
Package: luci-i18n-pbx-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-pbx-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 5d0d353b503928c2ba828b829b72e0aa
SHA256sum: 67ec0e0d1197492efcb51176a5e668483df0533bc389ed83124658ed3e3543ca
Description: Translation for luci-app-pbx - Türkçe (Turkish)
Package: luci-i18n-pbx-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1353
Filename: luci-i18n-pbx-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2193
MD5Sum: c1e696d52119b94c5fea1df6630b74cd
SHA256sum: cf02efcb34e83152069dcc4e6faa57f83aca6f925ab8f082f1eabeeb540497c8
Description: Translation for luci-app-pbx - украї́нська (Ukrainian)
Package: luci-i18n-pbx-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-pbx-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1140
MD5Sum: 3270a5705cf6c5bff0d4e2b677e8df6c
SHA256sum: 065d0278061b6932dd61263329a71550b7290ffe080e3fb754a6ac36a9a0ed55
Description: Translation for luci-app-pbx - Tiếng Việt (Vietnamese)
Package: luci-i18n-pbx-voicemail-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1123
Filename: luci-i18n-pbx-voicemail-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1936
MD5Sum: 56d1523c7a54e24556f6518ccb349131
SHA256sum: 0272c3ae635a1fe21e59691e1d49edb39389065404303ea3212f99d7599d2e93
Description: Translation for luci-app-pbx-voicemail - Català (Catalan)
Package: luci-i18n-pbx-voicemail-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 559
Filename: luci-i18n-pbx-voicemail-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1370
MD5Sum: e77254614af5c2608afe9895b8f10bbf
SHA256sum: 96a8d92cc7ce936189e8f17cc95102f3106f571a19b60ef3cbc80ca001e770ca
Description: Translation for luci-app-pbx-voicemail - Čeština (Czech)
Package: luci-i18n-pbx-voicemail-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1688
Filename: luci-i18n-pbx-voicemail-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2505
MD5Sum: 7de2a49f17379ac7f5977b0180cf8095
SHA256sum: 167afe53ac66a33750e58cfb3316a2ac25e749ce1a6e3fd5b89e19ec329715f4
Description: Translation for luci-app-pbx-voicemail - Deutsch (German)
Package: luci-i18n-pbx-voicemail-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 398
Filename: luci-i18n-pbx-voicemail-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1211
MD5Sum: ee0c9a4cebde2ab48289b2d7a060f48e
SHA256sum: 442a8d0f3074df3ee74ae9ab3ab97e07fb8b1580b940f485c53f76e5532e10aa
Description: Translation for luci-app-pbx-voicemail - Ελληνικά (Greek)
Package: luci-i18n-pbx-voicemail-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 311
Filename: luci-i18n-pbx-voicemail-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: b616213930c67e9fc8e1005d626b30d9
SHA256sum: 2de4d13644e8e781c3ec74f0b240fea99b3e1e5018d64f5ee8619018618c702a
Description: Translation for luci-app-pbx-voicemail - English
Package: luci-i18n-pbx-voicemail-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1352
Filename: luci-i18n-pbx-voicemail-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2174
MD5Sum: e516b1a11bb7f618f7463dddb09f82cd
SHA256sum: 430a2cdb5c6811bf5d803af528ecf8632c7baacfb3c0680d2689aefcb1881ff0
Description: Translation for luci-app-pbx-voicemail - Español (Spanish)
Package: luci-i18n-pbx-voicemail-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-pbx-voicemail-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1130
MD5Sum: 55de8a3a4e5e6969498b9833c57d2dab
SHA256sum: c5a1f27e23a6ce58b7a1ad9ea0fe3906ed75821747b31166ce98851c2928451a
Description: Translation for luci-app-pbx-voicemail - Français (French)
Package: luci-i18n-pbx-voicemail-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 341
Filename: luci-i18n-pbx-voicemail-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1161
MD5Sum: a4bddb9421faa0e61ec16fa6c58c3212
SHA256sum: 55c9e738fde7f3d9da133843af8f0985564ab813d340c8b53e0c524ada702b89
Description: Translation for luci-app-pbx-voicemail - עִבְרִית (Hebrew)
Package: luci-i18n-pbx-voicemail-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-pbx-voicemail-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: 2f529c93761bd2e3b1464e8074e26fe4
SHA256sum: 5154e172eee53043b57c8be97dc44ca7d294dd80f732544a8f979f62ecb0108e
Description: Translation for luci-app-pbx-voicemail - Magyar (Hungarian)
Package: luci-i18n-pbx-voicemail-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1478
Filename: luci-i18n-pbx-voicemail-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2292
MD5Sum: 1d7c088116c51436db7c7d38e96143ed
SHA256sum: 2aef4579e067327480111aeaf4637f25a47f08cca79b2f3f96c8d711278e475c
Description: Translation for luci-app-pbx-voicemail - Italiano (Italian)
Package: luci-i18n-pbx-voicemail-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-pbx-voicemail-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: f9bea0d177df5754027506fc6c430a7e
SHA256sum: 402ef0b1b1820aa31a08caf034e433a30c3805767a84e6fef376bf431939b024
Description: Translation for luci-app-pbx-voicemail - 日本語 (Japanese)
Package: luci-i18n-pbx-voicemail-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-pbx-voicemail-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: f76e03e3733ca5259042faee724d464e
SHA256sum: 1f42aefe9a74f09dcfef16c8f28d5c54bda23cbf2db94d6f3e43de8e954e2704
Description: Translation for luci-app-pbx-voicemail - Bahasa Melayu (Malay)
Package: luci-i18n-pbx-voicemail-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-pbx-voicemail-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: ac87665d3b112550e17996046d1cd480
SHA256sum: f7b582408074c6b7ba993ee7a0e9fb3ad1fc1725c6a995e4a334af49551090b1
Description: Translation for luci-app-pbx-voicemail - Norsk (Norwegian)
Package: luci-i18n-pbx-voicemail-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1480
Filename: luci-i18n-pbx-voicemail-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2292
MD5Sum: 9fa51cafc789f71af6e119d21e52e70f
SHA256sum: 240458b5668bee0e6a0f454a00a17035fc67fa53780db32d6a23d46974c9faf6
Description: Translation for luci-app-pbx-voicemail - Polski (Polish)
Package: luci-i18n-pbx-voicemail-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1582
Filename: luci-i18n-pbx-voicemail-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2428
MD5Sum: 2ccaf81eac4a857f9ae5322c13e1f949
SHA256sum: 32e113fb2748786e756905803128fca5d957f453d4761d6e084104a593275a1a
Description: Translation for luci-app-pbx-voicemail - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-pbx-voicemail-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 684
Filename: luci-i18n-pbx-voicemail-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1497
MD5Sum: 53868d7f4f4d95fee62dd3173fe44f08
SHA256sum: 2e9648b23afb492cbccc60137c02730aca7f5656e8a8e66d35fe5bb288dfaa54
Description: Translation for luci-app-pbx-voicemail - Português (Portuguese)
Package: luci-i18n-pbx-voicemail-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 328
Filename: luci-i18n-pbx-voicemail-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1133
MD5Sum: 64c50ce85e2d6b0b2a8b4ff1ef99a4a6
SHA256sum: ab13cf2ae6859e657e81f2dcf7bcc829791dd11f7ae83a31952a8c4774bccbb4
Description: Translation for luci-app-pbx-voicemail - Română (Romanian)
Package: luci-i18n-pbx-voicemail-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1719
Filename: luci-i18n-pbx-voicemail-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2552
MD5Sum: 3d1a5dae6e49f538bea8754d8760d98b
SHA256sum: eafab3dba6c036197a1cbd69bf6da5748cae56d30a62bd0a5d4c01c5043ee32f
Description: Translation for luci-app-pbx-voicemail - Русский (Russian)
Package: luci-i18n-pbx-voicemail-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 327
Filename: luci-i18n-pbx-voicemail-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1136
MD5Sum: 8adaacbf74fab46dea52e6d1f4c0b947
SHA256sum: e7d809eefe039fa2614985f0305a4fb365b99a7fbf40737b94c092b8b77a7ea5
Description: Translation for luci-app-pbx-voicemail - Slovenčina (Slovene)
Package: luci-i18n-pbx-voicemail-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-pbx-voicemail-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: fe804925145246704ca6317f0873609f
SHA256sum: 8c1232b03cd45a85374e9dce5830c72d68dd8b97534c6d102501e4ac858ebf6a
Description: Translation for luci-app-pbx-voicemail - Svenska (Swedish)
Package: luci-i18n-pbx-voicemail-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 328
Filename: luci-i18n-pbx-voicemail-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1133
MD5Sum: 59d1327e15212afbcbbf7bac325922e5
SHA256sum: 4077d462c2dea1f06c3c849f5cda669a0e2603c678b3191fb3f9498ac0cbc1f1
Description: Translation for luci-app-pbx-voicemail - Türkçe (Turkish)
Package: luci-i18n-pbx-voicemail-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 351
Filename: luci-i18n-pbx-voicemail-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1182
MD5Sum: 37f28c99a568b88cdc0372c32729c53f
SHA256sum: 2a9033374d15ad12d1313264c5e4b9d663bbdd346d3470abacc80f2bf8a7fc3f
Description: Translation for luci-app-pbx-voicemail - украї́нська (Ukrainian)
Package: luci-i18n-pbx-voicemail-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 339
Filename: luci-i18n-pbx-voicemail-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1158
MD5Sum: e836307bca9f7765ebe7f764a36b4cb2
SHA256sum: 36115957fb8e9c161410a3a1887280bf1a0e134d001e07de06a707895bc2e2dd
Description: Translation for luci-app-pbx-voicemail - Tiếng Việt (Vietnamese)
Package: luci-i18n-pbx-voicemail-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1464
Filename: luci-i18n-pbx-voicemail-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2300
MD5Sum: 4cc6050dd0ef669c50e5c3c23b7ab88c
SHA256sum: 6f9e36fc2fe340e3dc95786f055db3b82a8f4739c128db2d33d3f69722ab24a2
Description: Translation for luci-app-pbx-voicemail - 普通话 (Chinese)
Package: luci-i18n-pbx-voicemail-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx-voicemail
Source: feeds/luci/applications/luci-app-pbx-voicemail
Section: luci
Architecture: all
Installed-Size: 1494
Filename: luci-i18n-pbx-voicemail-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2347
MD5Sum: 65ee677a9f8ff3314a505caff8f08b5f
SHA256sum: f7e1693cedf33c201ba58648bbcaaaca32141bbda731b91d429ab678bc7c426c
Description: Translation for luci-app-pbx-voicemail - 臺灣華語 (Taiwanese)
Package: luci-i18n-pbx-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 1966
Filename: luci-i18n-pbx-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2786
MD5Sum: 41755d9e13f0f87c7c85ccd9a6515756
SHA256sum: 1ffa58b6a97877efb2c0d2b06c37e4f9f513e453c6a80bfa3fb51c535208d5e7
Description: Translation for luci-app-pbx - 普通话 (Chinese)
Package: luci-i18n-pbx-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-pbx
Source: feeds/luci/applications/luci-app-pbx
Section: luci
Architecture: all
Installed-Size: 3015
Filename: luci-i18n-pbx-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 3817
MD5Sum: abed8174d34505da8465a118778d1991
SHA256sum: 792e6655e18651b27aafce72c8df8c5496b7cb9642fe92039896dd9363a3358c
Description: Translation for luci-app-pbx - 臺灣華語 (Taiwanese)
Package: luci-i18n-polipo-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2178
Filename: luci-i18n-polipo-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2982
MD5Sum: 58c4826cb8f1c4341fa3b46ce862f68e
SHA256sum: b1cf31fe2e4a206612111d1b457e5def6e66922320269f92001556895a4a9d6c
Description: Translation for luci-app-polipo - Català (Catalan)
Package: luci-i18n-polipo-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 620
Filename: luci-i18n-polipo-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1423
MD5Sum: 8da5e95580d8ed664fc9ba09665b8320
SHA256sum: f26f11dc5f9ccd6add73c983a4d670495b714b25aa9c7c36cabe095d091fb986
Description: Translation for luci-app-polipo - Čeština (Czech)
Package: luci-i18n-polipo-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2654
Filename: luci-i18n-polipo-de_git-15.079.29361-3e37216-1_all.ipk
Size: 3438
MD5Sum: 873af73ddf097d52b0fbcc213eb51d34
SHA256sum: a826d3c888d274b046e601337e9a89c57d31995c8a316cc9e099eafbb827ebde
Description: Translation for luci-app-polipo - Deutsch (German)
Package: luci-i18n-polipo-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 414
Filename: luci-i18n-polipo-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1223
MD5Sum: 733ea353b80f9dad0808024a6e6bb256
SHA256sum: a120256bd52936ba76219840a1bbeea9f8b58e9332ea625b6e0022e4290f6ebf
Description: Translation for luci-app-polipo - Ελληνικά (Greek)
Package: luci-i18n-polipo-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 556
Filename: luci-i18n-polipo-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1345
MD5Sum: 5700480adf0b46c6d2fe4dc0157e07be
SHA256sum: 25ada4c4b3d92adf8c4d0d1a12ab3d3595bfe44fd230d4346b989b0a5ae62f54
Description: Translation for luci-app-polipo - English
Package: luci-i18n-polipo-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2520
Filename: luci-i18n-polipo-es_git-15.079.29361-3e37216-1_all.ipk
Size: 3296
MD5Sum: 2678e4ed34148aef0d047675f54ccea4
SHA256sum: 2216bf8039995bcd31486b911fd351fd45b3a21afd39450136f6379011cdcd85
Description: Translation for luci-app-polipo - Español (Spanish)
Package: luci-i18n-polipo-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-polipo-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 87e2b5874a8d3af0488c7c649fda038e
SHA256sum: 44326f35eceaae25ba71bc040e63584a00b4938d2714c88569e231b7b221bc11
Description: Translation for luci-app-polipo - Français (French)
Package: luci-i18n-polipo-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-polipo-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 8022a7eaf49c3b464e6ca8c586369437
SHA256sum: cb91f7431c6556e7afb1733cb0248162c62ea3a034b35833a91ec6532aa0d530
Description: Translation for luci-app-polipo - עִבְרִית (Hebrew)
Package: luci-i18n-polipo-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-polipo-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 30c0e59199118e023c82e6805b54ccd9
SHA256sum: 018832e4bfaee7de1d048ccc34e2001ceff4dfba65efa85408fcd3562e384fa0
Description: Translation for luci-app-polipo - Magyar (Hungarian)
Package: luci-i18n-polipo-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 1610
Filename: luci-i18n-polipo-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2414
MD5Sum: 9b288e8594b1aaaa915886cde145dcab
SHA256sum: b0665e4dd1186cee7c69f0ab30063bd5a9b1edd3f17dc335e39a715626557813
Description: Translation for luci-app-polipo - Italiano (Italian)
Package: luci-i18n-polipo-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2394
Filename: luci-i18n-polipo-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3189
MD5Sum: 88c849e5697a38bd42cd4794c42472d8
SHA256sum: 3f4ffa27e02e5b9a5d5070f309728c2954d25f8778d7503f06590d2805b301ac
Description: Translation for luci-app-polipo - 日本語 (Japanese)
Package: luci-i18n-polipo-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-polipo-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 749898c721796115fe2a0eeb127fcef8
SHA256sum: 46faa3cdbb10f377168ee0c25c1c6f659f1c4f1ceba8d2e2513e9e41f2fca282
Description: Translation for luci-app-polipo - Bahasa Melayu (Malay)
Package: luci-i18n-polipo-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 313
Filename: luci-i18n-polipo-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1103
MD5Sum: 228cb2d70c42c83dd12604ccc42eb17e
SHA256sum: 92b485538a8eba90a0fea3b708bd44108fcff2d028842aedc6025d56877c53a6
Description: Translation for luci-app-polipo - Norsk (Norwegian)
Package: luci-i18n-polipo-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2616
Filename: luci-i18n-polipo-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 3386
MD5Sum: 137ba3aac3a47b6ca8ee647201308840
SHA256sum: 571d863ea5934226949b4ae4781ff3f21c6f269f200df96d425a62000cc8a5f0
Description: Translation for luci-app-polipo - Polski (Polish)
Package: luci-i18n-polipo-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2569
Filename: luci-i18n-polipo-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 3371
MD5Sum: 58d2a4155f0850109229bb087362119c
SHA256sum: 15190422f697261aed7df82d320d15a56e2b75a20c72568bb498be29e3af6ef2
Description: Translation for luci-app-polipo - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-polipo-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2557
Filename: luci-i18n-polipo-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 3340
MD5Sum: 739d9cdc3bdd14e9f5f6414204ec9581
SHA256sum: fc9b3a6f8b3ffaa568c6d6c49c80597c8d566f783d00ebf71edb0db13ec183e0
Description: Translation for luci-app-polipo - Português (Portuguese)
Package: luci-i18n-polipo-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 385
Filename: luci-i18n-polipo-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1187
MD5Sum: 9c90eb02ef948dd47cef745b1e0c6bc0
SHA256sum: 4aab2610c5f7b9ce3e9264dbb63405514068860d3a61c4d96bf69b64498dcf61
Description: Translation for luci-app-polipo - Română (Romanian)
Package: luci-i18n-polipo-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2830
Filename: luci-i18n-polipo-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3631
MD5Sum: c7c4d033eea51c8abb311b4df1479576
SHA256sum: a601ecec2679503ab1b6b9472418ebaa701b55de6b805953f89eeb77781ec62e
Description: Translation for luci-app-polipo - Русский (Russian)
Package: luci-i18n-polipo-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-polipo-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: e71dbe7dfd59056293bd8bf74749918e
SHA256sum: da41e17245443665258c45acf5c9d7feafb26fa83eb2cae655299aca46f7c30f
Description: Translation for luci-app-polipo - Slovenčina (Slovene)
Package: luci-i18n-polipo-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-polipo-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1109
MD5Sum: 375b256a2928160413dcfb85655163a5
SHA256sum: c2131481067c8340fc268155643b1a169792755829b05785e0a6ed244bed1724
Description: Translation for luci-app-polipo - Svenska (Swedish)
Package: luci-i18n-polipo-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-polipo-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: a058692af5acf02cec33499f2740b995
SHA256sum: b0b6ecbe390d6f6039ec5fe2506e88934ec512704430550826488d4366d07556
Description: Translation for luci-app-polipo - Türkçe (Turkish)
Package: luci-i18n-polipo-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 475
Filename: luci-i18n-polipo-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1304
MD5Sum: 82d81459514b7c87e0af6e513dac77fa
SHA256sum: 2bac75d70aa054ffce792a4f68f1372b4d491eeb8ae63de908cbc8489428fcf0
Description: Translation for luci-app-polipo - украї́нська (Ukrainian)
Package: luci-i18n-polipo-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 1839
Filename: luci-i18n-polipo-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 2671
MD5Sum: 0f45752d3e6388e0a9112e8405fb7d67
SHA256sum: 80cab12837f077d755eff6f71687e96ac0bfa3d7fd823268f773b0bde042d01d
Description: Translation for luci-app-polipo - Tiếng Việt (Vietnamese)
Package: luci-i18n-polipo-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 1097
Filename: luci-i18n-polipo-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1916
MD5Sum: affc30373299edaf88c0141560eb9062
SHA256sum: efa75772cf54d6c1ff2fb2f5a20380b548b8a166047657c3f83a3477a126a763
Description: Translation for luci-app-polipo - 普通话 (Chinese)
Package: luci-i18n-polipo-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-polipo
Source: feeds/luci/applications/luci-app-polipo
Section: luci
Architecture: all
Installed-Size: 2134
Filename: luci-i18n-polipo-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2975
MD5Sum: 27c7381f891a90afe0972011e1079381
SHA256sum: ddcb7bb2f7ddb7cdaee7526bc12700ebc4109202a8821e3cfbb71189bfd09ee8
Description: Translation for luci-app-polipo - 臺灣華語 (Taiwanese)
Package: luci-i18n-privoxy-de
Version: 1.0.3-1
Depends: libc, luci-app-privoxy
Source: feeds/luci/applications/luci-app-privoxy
License: Apache-2.0
Section: luci
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 5001
Filename: luci-i18n-privoxy-de_1.0.3-1_all.ipk
Size: 5822
MD5Sum: 19a3cb27528775b4ba40f48fbbda7f1b
SHA256sum: d0cccfb40abae34eced4945de060677d075ebb433a60adb41ec66e509d4f61f1
Description: Translation for luci-app-privoxy - Deutsch (German)
Package: luci-i18n-qos-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 894
Filename: luci-i18n-qos-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1694
MD5Sum: 31aaae55eb897683d4576b463c9ab4db
SHA256sum: d270ed9eaf91a19e4f9ebb42e9eeec0e749ce54211614602ba53c372f47fcc96
Description: Translation for luci-app-qos - Català (Catalan)
Package: luci-i18n-qos-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1131
Filename: luci-i18n-qos-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1933
MD5Sum: de61b2ccd3b4d4fe995e9d5437c842be
SHA256sum: 62f98fd7b5ba5d4a784698c61d671ead3cb8e93a370858d345cbc2e34fa299dc
Description: Translation for luci-app-qos - Čeština (Czech)
Package: luci-i18n-qos-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 927
Filename: luci-i18n-qos-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1723
MD5Sum: 17939addd4b735a656f90d8994881918
SHA256sum: d2c9f39df95d65e2d26d6b874ef32b92a96693f88fec01a89a234446915d5e81
Description: Translation for luci-app-qos - Deutsch (German)
Package: luci-i18n-qos-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 964
Filename: luci-i18n-qos-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1782
MD5Sum: f6001bf1970b67a26aa96909dbcbd306
SHA256sum: 073860c2f0d270e8efffd634b7a40beee0697742310c01c8ba1e5b4688d6a96c
Description: Translation for luci-app-qos - Ελληνικά (Greek)
Package: luci-i18n-qos-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 303
Filename: luci-i18n-qos-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1082
MD5Sum: 88c0eb1fa6b6efbce71740f1bdc4b0b6
SHA256sum: e367387b146b08e69453cd3795634b2e41479708f6e54f5f826e5df1f7392c5c
Description: Translation for luci-app-qos - English
Package: luci-i18n-qos-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 952
Filename: luci-i18n-qos-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1752
MD5Sum: 45ff93b4ee52975af9ec89f5815bb777
SHA256sum: bc8e56108fe63d998b0c0fa74e43d8e82fa63adf7963113101d6955ddd649124
Description: Translation for luci-app-qos - Español (Spanish)
Package: luci-i18n-qos-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 932
Filename: luci-i18n-qos-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1734
MD5Sum: e5fe7d857afc63056c31b5a56cbc713c
SHA256sum: f67c93a77f8f4a1afd54b96ff7cf37846cb8bf06aef41080a521c7413957d676
Description: Translation for luci-app-qos - Français (French)
Package: luci-i18n-qos-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-qos-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: f2c5827a2ffcc6c7019e9d2aaf5017af
SHA256sum: 7e9713acbabd1ab2f07b727286b05dcfcb06fec93f74803ebb5b9fd8a2b9fa71
Description: Translation for luci-app-qos - עִבְרִית (Hebrew)
Package: luci-i18n-qos-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1018
Filename: luci-i18n-qos-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1817
MD5Sum: 17d694b336d1401b1eb4e0441f81a51c
SHA256sum: 327d1d10617acef08aefea2839455faf4c1b31f726e9eefa20dd32d0c85ef555
Description: Translation for luci-app-qos - Magyar (Hungarian)
Package: luci-i18n-qos-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 923
Filename: luci-i18n-qos-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1718
MD5Sum: e2bae769d28fa8ca4f9271ca491dc4a0
SHA256sum: 3b3228578245b0f724bc99f02547b2d10f855164b9c955ec34dd45a948936fcd
Description: Translation for luci-app-qos - Italiano (Italian)
Package: luci-i18n-qos-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1050
Filename: luci-i18n-qos-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1862
MD5Sum: 6cbbf737a8081278962647ac178b7021
SHA256sum: a81850c20b819bff261b1ca292b8a10c58b4bcf74f3f5e0758cac8187966f80c
Description: Translation for luci-app-qos - 日本語 (Japanese)
Package: luci-i18n-qos-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-qos-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: a8f67ac7ef4fe8ee2337788016a9cfbf
SHA256sum: 00f2efe86f08e6f6ccfa9447b4f2ab18ac4321fdfa1eb6b88445fe0bca3cdccc
Description: Translation for luci-app-qos - Bahasa Melayu (Malay)
Package: luci-i18n-qos-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 910
Filename: luci-i18n-qos-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1716
MD5Sum: ec3c5e06f536806fdf4d1cff497a267d
SHA256sum: 84fd37ac831db1b774e6434ffcc661546a0232038f91c6b48de76bc24d6300e5
Description: Translation for luci-app-qos - Norsk (Norwegian)
Package: luci-i18n-qos-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1025
Filename: luci-i18n-qos-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1818
MD5Sum: f076150680400996f4c8f4ed3760298b
SHA256sum: 55bb45b1586e9054be2320f774505cbcba6966a9fd51d3efb9d90ea5011723ff
Description: Translation for luci-app-qos - Polski (Polish)
Package: luci-i18n-qos-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1000
Filename: luci-i18n-qos-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1818
MD5Sum: 1b0cd005338b5f93e4347784257aed01
SHA256sum: 255acaaa1ae4f0394f61f50414c6b86b0abdef2fe51a2a24dcf90c5752cee3b3
Description: Translation for luci-app-qos - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-qos-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 912
Filename: luci-i18n-qos-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1725
MD5Sum: 03ff8222874b9cec25c43c562921dfdb
SHA256sum: 633d61132a0ac068ffa40c003540ab635c5c69b3e095c26b73188533fd93cca0
Description: Translation for luci-app-qos - Português (Portuguese)
Package: luci-i18n-qos-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 575
Filename: luci-i18n-qos-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1383
MD5Sum: 7e1ece4ffd18660108eb5aaabebea1a3
SHA256sum: a97b6edc351ed800125546e6499e9bd73b99326088a6b2876feb65362bb0c61d
Description: Translation for luci-app-qos - Română (Romanian)
Package: luci-i18n-qos-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1150
Filename: luci-i18n-qos-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1968
MD5Sum: 153b4269306c811b4280e0edbccc86f7
SHA256sum: 84beae41ec3defbde3ef073066feeb4ddee5dd79f99cd12f33ec6b7769439fb4
Description: Translation for luci-app-qos - Русский (Russian)
Package: luci-i18n-qos-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-qos-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 40c3d0e4e2bf05cf94467a69974f3beb
SHA256sum: 0ba0076b6cf36e5b14cb56e77b2fdb674f64a22f556517944423520989e6d5d3
Description: Translation for luci-app-qos - Slovenčina (Slovene)
Package: luci-i18n-qos-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-qos-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1103
MD5Sum: f3acb4a954f416d7c68ddc43846bbe2c
SHA256sum: 4dc8cef59e30a2bb331a7ea991b52ae0a468df295719657804afb7d9e204698e
Description: Translation for luci-app-qos - Svenska (Swedish)
Package: luci-i18n-qos-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-qos-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 3d8368976278c4a620901cc631d4bbc0
SHA256sum: 7e8651a393872882056546c20d54830b0b1670e0009123a2bad4f898b370940f
Description: Translation for luci-app-qos - Türkçe (Turkish)
Package: luci-i18n-qos-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1193
Filename: luci-i18n-qos-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2026
MD5Sum: 3507f69a4d517c685bf66a151ca9f218
SHA256sum: aa6e9dad46019524ceff06af855758351e193ac4a7fc0e83254477cf0ed244a1
Description: Translation for luci-app-qos - украї́нська (Ukrainian)
Package: luci-i18n-qos-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 792
Filename: luci-i18n-qos-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1615
MD5Sum: aacc604f0870211c0a12281fc2120cc0
SHA256sum: 8679dcb9a91014c890a500f1462e11cb0776bf118c7598aa2d035a07c8cd520d
Description: Translation for luci-app-qos - Tiếng Việt (Vietnamese)
Package: luci-i18n-qos-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 955
Filename: luci-i18n-qos-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1782
MD5Sum: 4bee7a45924268ddabf0077cc0b125f0
SHA256sum: 1c8551739ecdc93f16f83b3d38048c832a1ae394173e2b8f148e2ce5d53c0a42
Description: Translation for luci-app-qos - 普通话 (Chinese)
Package: luci-i18n-qos-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-qos
Source: feeds/luci/applications/luci-app-qos
Section: luci
Architecture: all
Installed-Size: 1039
Filename: luci-i18n-qos-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1873
MD5Sum: 89a99dc35c148079a3f134fa9bc4f282
SHA256sum: 019a727ecffc6969707d9f1095f4c8d1d7eb36a52a44d8722398106149f13500
Description: Translation for luci-app-qos - 臺灣華語 (Taiwanese)
Package: luci-i18n-radvd-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1531
Filename: luci-i18n-radvd-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2345
MD5Sum: a290a6b718e034a4d8dd63fc7d08de1b
SHA256sum: 833ba129a802ab15bd4d52baebe7a10a64c3dbec53cd0c4b4335df8ce3109d50
Description: Translation for luci-app-radvd - Català (Catalan)
Package: luci-i18n-radvd-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2004
Filename: luci-i18n-radvd-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2819
MD5Sum: 378d026ab7f15ebfb4b52ca916dfcfff
SHA256sum: 0ee9cb9a0a012787823c951c0efcb871f5cfc9c49421a7e27aaffa111d2ec121
Description: Translation for luci-app-radvd - Čeština (Czech)
Package: luci-i18n-radvd-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3424
Filename: luci-i18n-radvd-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4209
MD5Sum: 47bbd304c6b0889828a91f69f98a7f93
SHA256sum: f3bbf51198a9ba64549f2d50f52969b8a6992b37326ef81129993f4d70147d78
Description: Translation for luci-app-radvd - Deutsch (German)
Package: luci-i18n-radvd-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 684
Filename: luci-i18n-radvd-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1492
MD5Sum: 0bc49406c6165284082e001824fae96b
SHA256sum: 2f917640f7e73724876fe4115f5009ed76b981bc50654f9a7e49d53809f99d26
Description: Translation for luci-app-radvd - Ελληνικά (Greek)
Package: luci-i18n-radvd-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 304
Filename: luci-i18n-radvd-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1084
MD5Sum: c93556d1aaa8547f2138916eec3ab188
SHA256sum: 599336d78796674bd8531a3ae3511c7e3ecdfbdf007ca2001111706159341657
Description: Translation for luci-app-radvd - English
Package: luci-i18n-radvd-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3221
Filename: luci-i18n-radvd-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4000
MD5Sum: 6c9d5c3bdb3f81ec08edf78b2320f10b
SHA256sum: c83116feb5ecdb425f17efa22fd61d07906abbb9676ff8d325af2c6903ab36e5
Description: Translation for luci-app-radvd - Español (Spanish)
Package: luci-i18n-radvd-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3192
Filename: luci-i18n-radvd-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 3968
MD5Sum: ef8a24301f3a900d59da77414ba4ba35
SHA256sum: d07e51f48d4cc37c9234464e2a4e2156717a92d2d61121701145591adf760663
Description: Translation for luci-app-radvd - Français (French)
Package: luci-i18n-radvd-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-radvd-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1146
MD5Sum: 7de56136901105afb2f965790cd50da4
SHA256sum: 4714e9074c1430ca5d4dbc8329ed3de1de95d4b0d8db61bfaf9d9f6853273953
Description: Translation for luci-app-radvd - עִבְרִית (Hebrew)
Package: luci-i18n-radvd-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1080
Filename: luci-i18n-radvd-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1881
MD5Sum: 475b81c076ec005e0913eed75bd42a1c
SHA256sum: 6ed951158eb9bbe12e07661216cb68d3e4036ab0737b70b15b5cfdb8cb4d52a5
Description: Translation for luci-app-radvd - Magyar (Hungarian)
Package: luci-i18n-radvd-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 716
Filename: luci-i18n-radvd-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1508
MD5Sum: 3bbeb6c0d70ce2571eb2481124a412cc
SHA256sum: 586aad824cc55e3996eb8396189b176da28a30cc91648cf312d4262cab36decc
Description: Translation for luci-app-radvd - Italiano (Italian)
Package: luci-i18n-radvd-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2008
Filename: luci-i18n-radvd-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2835
MD5Sum: 819d28c04e15303ded445022e5bad153
SHA256sum: dd5bfdd81c9e98d083d57d465a0fb015e59543c0d60bfe762f9f5ecc5c97f550
Description: Translation for luci-app-radvd - 日本語 (Japanese)
Package: luci-i18n-radvd-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-radvd-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1109
MD5Sum: c152d6d97f312e67c0f23fd748a21c37
SHA256sum: 1521e556267ef3d1c44f2e57400aec09ac479cc296621d82aaa729165d8d0a31
Description: Translation for luci-app-radvd - Bahasa Melayu (Malay)
Package: luci-i18n-radvd-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2978
Filename: luci-i18n-radvd-no_git-15.079.29361-3e37216-1_all.ipk
Size: 3749
MD5Sum: 3066c8b4a87be5f3d41f3823444be202
SHA256sum: e8b42e5ab46906c6d006fae3f32b4b91e54a17508910d624bbeccc3aa5c0367e
Description: Translation for luci-app-radvd - Norsk (Norwegian)
Package: luci-i18n-radvd-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1239
Filename: luci-i18n-radvd-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2040
MD5Sum: 3da1c1b9b091e23b9ed51550b4226581
SHA256sum: 7270e935eb50bdd8ba12bb48b3b57f7714588da384bd326557b98900c768ff4c
Description: Translation for luci-app-radvd - Polski (Polish)
Package: luci-i18n-radvd-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3369
Filename: luci-i18n-radvd-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4173
MD5Sum: 2686962f5f8c2bb89cced439bcfacb7e
SHA256sum: c3ce9dd3c6694a4a085505c7554aaafd9a820b99f1d2654564edef21f57b6032
Description: Translation for luci-app-radvd - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-radvd-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-radvd-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: f7845263a20536485fa6b01c3ba7f185
SHA256sum: 3daf86c971bf2eb4787d371666bb916d10d71f4628472ff84c1765f8c661afc3
Description: Translation for luci-app-radvd - Português (Portuguese)
Package: luci-i18n-radvd-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1495
Filename: luci-i18n-radvd-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2308
MD5Sum: 5c03c83f1f51f1eff9f23cab62315a85
SHA256sum: 9a9ca6f513d5abf6f45a25b6510e7e679c9f35e4b5698fd107d06cca2ca94c9d
Description: Translation for luci-app-radvd - Română (Romanian)
Package: luci-i18n-radvd-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 3883
Filename: luci-i18n-radvd-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4691
MD5Sum: 9dc56b836b9e9abfb92dfc682c3e0e75
SHA256sum: 77d01594a179d54a86aab8108b08a9d0df7667e117ddcd8756363bf250a15295
Description: Translation for luci-app-radvd - Русский (Russian)
Package: luci-i18n-radvd-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-radvd-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: a578e891fc7f5ccca4d8334a0cb3b9bc
SHA256sum: 9ab5b98344217329d40e87ebacd05fa80e55ef745dc20b9d74d5e200074de67e
Description: Translation for luci-app-radvd - Slovenčina (Slovene)
Package: luci-i18n-radvd-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-radvd-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 2da297a8aa0e169d4745f2753c81ba19
SHA256sum: a368b65fd48c8a32ae770e94d0f9eec202c7816ea1d78121cbb9d6c0c73e64a0
Description: Translation for luci-app-radvd - Svenska (Swedish)
Package: luci-i18n-radvd-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 327
Filename: luci-i18n-radvd-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1129
MD5Sum: caef06d014019f5164fcbe455df1124c
SHA256sum: ed555382a31b4d645f03c20bff82fcde60b460450b30c36127e921e4ea2f38e8
Description: Translation for luci-app-radvd - Türkçe (Turkish)
Package: luci-i18n-radvd-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 1235
Filename: luci-i18n-radvd-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2077
MD5Sum: 760c96a07d17b6b54c2a233b8f3211b4
SHA256sum: 8cb0e41876d0359ff7405fb5e994ef96fc345c038a703cff24e4de8371fc1e91
Description: Translation for luci-app-radvd - украї́нська (Ukrainian)
Package: luci-i18n-radvd-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-radvd-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1141
MD5Sum: 76958e9072147b36819c01a036f9e60c
SHA256sum: 5394cd75f47a578f07d73b64523190cc9b4e474412f5365c46ee0312d8103ea4
Description: Translation for luci-app-radvd - Tiếng Việt (Vietnamese)
Package: luci-i18n-radvd-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 2957
Filename: luci-i18n-radvd-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 3752
MD5Sum: cedc10329b5b31b8bc1773749136526b
SHA256sum: 63c7e7b3ca5632fc9b817f80aff336b97b0ec2562858004373af49b34fed0705
Description: Translation for luci-app-radvd - 普通话 (Chinese)
Package: luci-i18n-radvd-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-radvd
Source: feeds/luci/applications/luci-app-radvd
Section: luci
Architecture: all
Installed-Size: 345
Filename: luci-i18n-radvd-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1164
MD5Sum: a63c1d556b2dd65bf401ed389251cfa2
SHA256sum: 880d3114feaf224d1c57371e9d2b7b68764bf8fb8782632437d70594ec7162e1
Description: Translation for luci-app-radvd - 臺灣華語 (Taiwanese)
Package: luci-i18n-samba-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1060
Filename: luci-i18n-samba-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1862
MD5Sum: 6df15c974610c160e033b988560faff0
SHA256sum: 3f663e29ed06ba8e698fc842631016aa39fd6a5ceccf352d6996c372a9ffc3a3
Description: Translation for luci-app-samba - Català (Catalan)
Package: luci-i18n-samba-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1105
Filename: luci-i18n-samba-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1909
MD5Sum: 972cd515302a57fce008107b20258404
SHA256sum: 8ad3fec466bea5dbd2fcec3c55399ed85ebd6aee8bfcf09e37ca1a4242d4723e
Description: Translation for luci-app-samba - Čeština (Czech)
Package: luci-i18n-samba-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1077
Filename: luci-i18n-samba-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1873
MD5Sum: 58db0f2f983487a97a3cb92b6ce6eb9b
SHA256sum: f192fe5e93ee79eaaf187febe77ebc9631cda526a12b3d48a3a70e0bb4864859
Description: Translation for luci-app-samba - Deutsch (German)
Package: luci-i18n-samba-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 391
Filename: luci-i18n-samba-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1204
MD5Sum: bf1265c069c99eceb884ca593361e40e
SHA256sum: d3107e54f7aee91db5b65ce2aeb79f8668e726395ed47eac5eb2a610e66acc09
Description: Translation for luci-app-samba - Ελληνικά (Greek)
Package: luci-i18n-samba-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 614
Filename: luci-i18n-samba-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1407
MD5Sum: 90bd111cc6a8893129645684d8e13fa5
SHA256sum: c2edb66ec78c0c533ee2d231c3b789fc3a9bb1c0000995ca60696c46ee26be8d
Description: Translation for luci-app-samba - English
Package: luci-i18n-samba-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1051
Filename: luci-i18n-samba-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1852
MD5Sum: 1b868cf3658bdcf5f2ed0a081a066b1c
SHA256sum: 43c662904f38460eaf430436eec564c2c123b62caa402b44935e11539ad68a50
Description: Translation for luci-app-samba - Español (Spanish)
Package: luci-i18n-samba-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1079
Filename: luci-i18n-samba-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1883
MD5Sum: b7fec06e03371c41468251fd09e0e8b5
SHA256sum: e9656aa455d4bd2aae9fda1bcc9fde9c580219488bee0c68c0cbe9c4714dcf2d
Description: Translation for luci-app-samba - Français (French)
Package: luci-i18n-samba-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 335
Filename: luci-i18n-samba-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 7403b04814279a5252897f10ba4a9237
SHA256sum: d636431020dd3f965326093481a3bf7d4a73f888c8cf26542d3a0916929d54f7
Description: Translation for luci-app-samba - עִבְרִית (Hebrew)
Package: luci-i18n-samba-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1124
Filename: luci-i18n-samba-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1923
MD5Sum: f0e93aa90be22fbecce9b6736c9cc7a4
SHA256sum: a4f477b6bf31af0d4903b0ce0921f292083dde3fc9a0b38d1d2813f9dedb07cb
Description: Translation for luci-app-samba - Magyar (Hungarian)
Package: luci-i18n-samba-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1061
Filename: luci-i18n-samba-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1853
MD5Sum: 64896177cf6d9b709cad09d9d779df7f
SHA256sum: 6ccadb7082fc9a4cd62fbeef5045221e0387fb513fe5bd5691811ce6d25ec370
Description: Translation for luci-app-samba - Italiano (Italian)
Package: luci-i18n-samba-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1114
Filename: luci-i18n-samba-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1932
MD5Sum: bc9470b2c5d42c8be0408a742f30643f
SHA256sum: e63127fbe41289c26f2462410a2b01a7ef5f41ba960eedbc0ad0a7377a80a0f1
Description: Translation for luci-app-samba - 日本語 (Japanese)
Package: luci-i18n-samba-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-samba-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 7bda807ba181327897263e169d841c71
SHA256sum: 09ae52604f9461718e3da562419978767393ab5678ed8fb025f0c0fc9fd9a5bf
Description: Translation for luci-app-samba - Bahasa Melayu (Malay)
Package: luci-i18n-samba-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1029
Filename: luci-i18n-samba-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1831
MD5Sum: 030f2c77be838c586e51834e31a84886
SHA256sum: fe31c4429cb3e603aa05d19fd41b9eafe85127cdf06d4e327cda5cbb85ca0029
Description: Translation for luci-app-samba - Norsk (Norwegian)
Package: luci-i18n-samba-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1114
Filename: luci-i18n-samba-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1911
MD5Sum: bcf3d53e400399be2a45a257123b31a7
SHA256sum: 36d3d99c583bf5c28bdcbefca79dee67d3eaa761c414c28d11bd6857409057c9
Description: Translation for luci-app-samba - Polski (Polish)
Package: luci-i18n-samba-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1099
Filename: luci-i18n-samba-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1927
MD5Sum: 76ab12985052c4dd5445e4753b689f8b
SHA256sum: 45cbc5215d91d1abcb72f66dea6c239da717e43f18ab17d09989054fa3c01216
Description: Translation for luci-app-samba - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-samba-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1074
Filename: luci-i18n-samba-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1875
MD5Sum: 586ad53ee3bf22d839ed174ef1e8b8eb
SHA256sum: 62a5cd4f6ef48aae5d0bf807890828bfda25ecd1483d0ab55933fd3cf80f677a
Description: Translation for luci-app-samba - Português (Portuguese)
Package: luci-i18n-samba-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1024
Filename: luci-i18n-samba-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1822
MD5Sum: e3d15318103eebee05ace0dd9facdd4a
SHA256sum: 86b737fe7bc0b2fd8c56d4c43c53dc8ef891a7e873bb06a6acb83417af4440ca
Description: Translation for luci-app-samba - Română (Romanian)
Package: luci-i18n-samba-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1238
Filename: luci-i18n-samba-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2062
MD5Sum: 909134806a3f397fb88ea0aae23d9938
SHA256sum: 16201bbe4eaf5e131cbe816fedfcc60e90fcdf714395799de158a7246d11d023
Description: Translation for luci-app-samba - Русский (Russian)
Package: luci-i18n-samba-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-samba-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: f3b4b17c47710233af19b9a8666b711b
SHA256sum: 1e57e049f8fcf047b8b968091e4fa1562bb715517dc016e152f0c666cd9a46f2
Description: Translation for luci-app-samba - Slovenčina (Slovene)
Package: luci-i18n-samba-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-samba-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1100
MD5Sum: 100f838f150860709a34430fdb52138a
SHA256sum: f1c057b2d340e588c74e2c6699703db65eae0f2c7ccdc12b0556f7d4518b4f60
Description: Translation for luci-app-samba - Svenska (Swedish)
Package: luci-i18n-samba-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-samba-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1115
MD5Sum: 88e944075d572ef59f2bb9fd3a7edce4
SHA256sum: a487b6dbaa2b0166d09206886d7f476d0127f7d8d0bed13762eec4a929012a47
Description: Translation for luci-app-samba - Türkçe (Turkish)
Package: luci-i18n-samba-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 1258
Filename: luci-i18n-samba-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2096
MD5Sum: cdb0cb54bb9846af34cb09eaf3f6b76f
SHA256sum: be01c6e9b221085ea514dd99539a76929bab9734dada7fc4e6cdcec6a9678d3b
Description: Translation for luci-app-samba - украї́нська (Ukrainian)
Package: luci-i18n-samba-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 849
Filename: luci-i18n-samba-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1670
MD5Sum: e02f0d67d3b7cd0ec5d67eb22e81645e
SHA256sum: a0ddb55fd73501061277f7f840b9989aa629191e5c71c1047dfc4da7aeb08e66
Description: Translation for luci-app-samba - Tiếng Việt (Vietnamese)
Package: luci-i18n-samba-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 960
Filename: luci-i18n-samba-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1787
MD5Sum: a27d0d6b9353bd05311697dc450b9863
SHA256sum: db66f4cb252a0cbfead741325bdac6d19205f2352790bdf2d2f5a696470489b4
Description: Translation for luci-app-samba - 普通话 (Chinese)
Package: luci-i18n-samba-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-samba
Source: feeds/luci/applications/luci-app-samba
Section: luci
Architecture: all
Installed-Size: 968
Filename: luci-i18n-samba-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1805
MD5Sum: a9a2807274cd3c5ed34c9274a2b38a11
SHA256sum: c0c47a3fcca5a75e478e2493a58e3bf94d746eb2d3b0c42cfeb2ef7a618e0cff
Description: Translation for luci-app-samba - 臺灣華語 (Taiwanese)
Package: luci-i18n-splash-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 2428
Filename: luci-i18n-splash-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 3243
MD5Sum: 8c4c31b86f51e79c331b09b2bc9e2f6b
SHA256sum: 9f0a0372eee7e34e5d921a3c7311d456182a0df553f5c25e564c1fdefbb19089
Description: Translation for luci-app-splash - Català (Catalan)
Package: luci-i18n-splash-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 2354
Filename: luci-i18n-splash-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 3174
MD5Sum: ac85ba2fd6070f73007dc05203341ca8
SHA256sum: b4770d7fb35c6bbfa6d4d91bd4df6ed339c912ba547bf7938932e52873b57b22
Description: Translation for luci-app-splash - Čeština (Czech)
Package: luci-i18n-splash-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3977
Filename: luci-i18n-splash-de_git-15.079.29361-3e37216-1_all.ipk
Size: 4759
MD5Sum: bf74492063a394e7696701917e7832fd
SHA256sum: a6be45d9e82b6918a2231c495e12b1a1ff60450b9018b2ca09d33ee00bd946ed
Description: Translation for luci-app-splash - Deutsch (German)
Package: luci-i18n-splash-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 514
Filename: luci-i18n-splash-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1327
MD5Sum: d40ebf049d6e8d5856c785b3b9205866
SHA256sum: 94ef436bb290059485bcbc0dfc246c255e9ff09f177f1fe09d7181d109d911ba
Description: Translation for luci-app-splash - Ελληνικά (Greek)
Package: luci-i18n-splash-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 305
Filename: luci-i18n-splash-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1096
MD5Sum: 91379f0b4841960aff896e1c3bffb05c
SHA256sum: e95553d7d3feecc42a2d4101781c8f75458cacf3b862a1e6a552c59db56d964f
Description: Translation for luci-app-splash - English
Package: luci-i18n-splash-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3651
Filename: luci-i18n-splash-es_git-15.079.29361-3e37216-1_all.ipk
Size: 4430
MD5Sum: 75c2e77b66cb2c6b13e9b1273b2bbda8
SHA256sum: acac317723a4962b26214904165ac35ee98ee7f059eba06f3b605046d627d988
Description: Translation for luci-app-splash - Español (Spanish)
Package: luci-i18n-splash-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1670
Filename: luci-i18n-splash-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2482
MD5Sum: ba429e00c739018033a85d9fa87698cd
SHA256sum: c7e4c72945870363b9fd33bf269dde141da44dea593364cc09bfd14344a951b4
Description: Translation for luci-app-splash - Français (French)
Package: luci-i18n-splash-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1655
Filename: luci-i18n-splash-he_git-15.079.29361-3e37216-1_all.ipk
Size: 2487
MD5Sum: 3f1de4558df2d347de52edbdf5beb93d
SHA256sum: 11079202ab89fd9a3b9e54c8bbfbc8c4c0721447ccf65d886dc00c1e13a75b13
Description: Translation for luci-app-splash - עִבְרִית (Hebrew)
Package: luci-i18n-splash-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-splash-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 6ea14cb42b652b3baa2044f4b99a6ff8
SHA256sum: 6232e19fdf40b9657a2e41797e41cd906b8a8909044ecdbf4bb3bb4ac7a1853e
Description: Translation for luci-app-splash - Magyar (Hungarian)
Package: luci-i18n-splash-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 2711
Filename: luci-i18n-splash-it_git-15.079.29361-3e37216-1_all.ipk
Size: 3488
MD5Sum: 0fd586da2ea122ea87e40bd68a203925
SHA256sum: 7a6f6ab3abc79f1d702257f5ba845534ef2dc742866a63080d11ed116c27f5c7
Description: Translation for luci-app-splash - Italiano (Italian)
Package: luci-i18n-splash-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci-i18n-splash-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: d692ebd477969bd855df48fc1b250388
SHA256sum: f9c6d4fe953e84505d2084fed9905b752752b5bb516975833ff0cb245f7e7e1b
Description: Translation for luci-app-splash - 日本語 (Japanese)
Package: luci-i18n-splash-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-splash-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 6667d96aa719af8ee85f8b02c5375306
SHA256sum: 5318aec4bafc170fc9699b32c34b8003ee77ce772761a4857f91e1d32f259440
Description: Translation for luci-app-splash - Bahasa Melayu (Malay)
Package: luci-i18n-splash-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-splash-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: accc07bba5367228adbe5a94b3c8684f
SHA256sum: e59e8f0cc7ed3a2899ee1b8563b2de5bd60691641d421c2bd0449c1d7c3b4cbf
Description: Translation for luci-app-splash - Norsk (Norwegian)
Package: luci-i18n-splash-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3845
Filename: luci-i18n-splash-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 4617
MD5Sum: 1f7941de272d64dff22d30b9508f4e2b
SHA256sum: c969266126118f83af2bd943c44710484ebb60f896482f809b3af4d8bc35cbb5
Description: Translation for luci-app-splash - Polski (Polish)
Package: luci-i18n-splash-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3833
Filename: luci-i18n-splash-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 4631
MD5Sum: 8a4b104b3c23126862a9bbc300fde91d
SHA256sum: e01930e57c4d82e199e000307b09c55f7fdfef5fc643d865e3c373116478f50a
Description: Translation for luci-app-splash - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-splash-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1117
Filename: luci-i18n-splash-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1920
MD5Sum: 2e6cc830de71cbf6ab643ec4fc13e7c7
SHA256sum: 214e46ac26af5749d107dd415de71ffdb52f44cac8e1d64cc6c34b65cbf21bf5
Description: Translation for luci-app-splash - Português (Portuguese)
Package: luci-i18n-splash-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-splash-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1126
MD5Sum: 1f12e6deea82a1b33cad4a44dc158cc9
SHA256sum: 7f2afd19dbe1e0816b28bf3f938d4f2c2a3397bc17dd222056504b31faa3068a
Description: Translation for luci-app-splash - Română (Romanian)
Package: luci-i18n-splash-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 3223
Filename: luci-i18n-splash-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4024
MD5Sum: 59e34de9aae270b4ce83322ac32e529b
SHA256sum: eda3465f1ecf6e2ab45cfce25298e4c39d7bb6063bf7a5ee1a2c0dc33f02caa3
Description: Translation for luci-app-splash - Русский (Russian)
Package: luci-i18n-splash-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-splash-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 6a7469c637162736a0fe5061beb925c4
SHA256sum: 331b4f9ea8624b40d8df860181fb0e43c46fa61ce3422867b05d2df4fee4a325
Description: Translation for luci-app-splash - Slovenčina (Slovene)
Package: luci-i18n-splash-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-splash-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: 20acf1627c3ffd93cd440cc93885c036
SHA256sum: 104d1e7e3befab610cbf006bac02d367960d838928769054a235049225f23cd6
Description: Translation for luci-app-splash - Svenska (Swedish)
Package: luci-i18n-splash-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-splash-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 6d0b13aa4a5b0ddbc9969ce56e8df546
SHA256sum: ef272735160ed2e639a81c5039ec73c3c9b55eec75050383c0ff7cde8f4c1b09
Description: Translation for luci-app-splash - Türkçe (Turkish)
Package: luci-i18n-splash-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 343
Filename: luci-i18n-splash-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1170
MD5Sum: 8e34dfe699e0fc7b8bdc5317d53f6cf3
SHA256sum: 9eaeb3ae42769e6eee78805e9f3e4f56aadd68fab5330c9c785f0c0c2f86cfb0
Description: Translation for luci-app-splash - украї́нська (Ukrainian)
Package: luci-i18n-splash-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-splash-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1140
MD5Sum: 4f0bc4320040b5e71d48cdd7598f81a0
SHA256sum: 1d5ef038b97f692b3c218ff24ccdb8a9cd87e04bf23b40a03efc2f6bd7a418a1
Description: Translation for luci-app-splash - Tiếng Việt (Vietnamese)
Package: luci-i18n-splash-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 1902
Filename: luci-i18n-splash-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2727
MD5Sum: bc52ffac1615bd0b55d39b0a299e001b
SHA256sum: fe21fdde3daf8f27b2ee58b7fc0541d62998bfb7860555d48b269292867deb96
Description: Translation for luci-app-splash - 普通话 (Chinese)
Package: luci-i18n-splash-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-splash
Source: feeds/luci/applications/luci-app-splash
Section: luci
Architecture: all
Installed-Size: 343
Filename: luci-i18n-splash-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1164
MD5Sum: b32163e4a88dcdbf372a77b219ac36fc
SHA256sum: 20f4f199633496c2c0bcd6a5fa26193f04c0be8da95bce213d66cc28abf8ef6d
Description: Translation for luci-app-splash - 臺灣華語 (Taiwanese)
Package: luci-i18n-statistics-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6503
Filename: luci-i18n-statistics-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 7350
MD5Sum: e57a80675b956a009e4c77141aaeddc0
SHA256sum: ed3db6333e817c7b9373e3dc291e71e54fd6567ffbf33806095d70c8ff00a245
Description: Translation for luci-app-statistics - Català (Catalan)
Package: luci-i18n-statistics-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6384
Filename: luci-i18n-statistics-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 7237
MD5Sum: 9eed1509d0fdcfe30687a53327c6f206
SHA256sum: 39fc3ef7d70195ca30fdd119668375067ee124acf0c4e0bb8646f31ce5bf2f7b
Description: Translation for luci-app-statistics - Čeština (Czech)
Package: luci-i18n-statistics-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 7011
Filename: luci-i18n-statistics-de_git-15.079.29361-3e37216-1_all.ipk
Size: 7855
MD5Sum: bb9c902fa822549f708680c1f39dae6b
SHA256sum: 7b22ca452ebf31ac582a06b15f21ad9d44c1b9b97ce2d62f84d086d9ff8e78cc
Description: Translation for luci-app-statistics - Deutsch (German)
Package: luci-i18n-statistics-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1700
Filename: luci-i18n-statistics-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2534
MD5Sum: 3e595a5d0115171b7343b185f36846dc
SHA256sum: 8c78014f1e8127c594b85d09468498fb61707b393cda3d665165ccc2e8ba496e
Description: Translation for luci-app-statistics - Ελληνικά (Greek)
Package: luci-i18n-statistics-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1737
Filename: luci-i18n-statistics-en_git-15.079.29361-3e37216-1_all.ipk
Size: 2542
MD5Sum: e04d1d5d3053d0314c5a178d09672d30
SHA256sum: c447c7b6ebe559d3100d20dc3ca24b09b58a197fda5637d1c9de5464c44f2a84
Description: Translation for luci-app-statistics - English
Package: luci-i18n-statistics-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6965
Filename: luci-i18n-statistics-es_git-15.079.29361-3e37216-1_all.ipk
Size: 7827
MD5Sum: 09edabfea163e987d18af2037f9fc3a3
SHA256sum: e06946773634e807f05aafa35a6a671f3c5047ea0c9208ed3aa61d159bb64336
Description: Translation for luci-app-statistics - Español (Spanish)
Package: luci-i18n-statistics-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 4673
Filename: luci-i18n-statistics-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 5462
MD5Sum: 95beb988998635d3ba1f0146d28ff7b5
SHA256sum: f3b82adb3330b5bd73f53a61b9434e814bed3fd23a9cccd29cbdc68f25407f7f
Description: Translation for luci-app-statistics - Français (French)
Package: luci-i18n-statistics-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 425
Filename: luci-i18n-statistics-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1249
MD5Sum: 81dcec284ca5bccfc7c4a8f5d0aee9e7
SHA256sum: 17e8b8da0863416b2b8858e49106f4e382eb273e46d43d0f7ee21cbb630b9118
Description: Translation for luci-app-statistics - עִבְרִית (Hebrew)
Package: luci-i18n-statistics-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6179
Filename: luci-i18n-statistics-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 7030
MD5Sum: 8c80737af985f2c1bd97aa74a07be77d
SHA256sum: ca92e82dee1e0cecc93c465e60f60d2048777648d02dc7d5425b523a4a75140e
Description: Translation for luci-app-statistics - Magyar (Hungarian)
Package: luci-i18n-statistics-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 841
Filename: luci-i18n-statistics-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1640
MD5Sum: 2a44feb78c2c3caad09f9f8231e2c680
SHA256sum: 71c85e2ab20652f32947bd9cff83e89e75a02878b862069a1a187953c0bcd333
Description: Translation for luci-app-statistics - Italiano (Italian)
Package: luci-i18n-statistics-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1616
Filename: luci-i18n-statistics-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2451
MD5Sum: a0ed127aa082ca48527e2ed7500c30c1
SHA256sum: 8b5d6b0e787d5c0a75408c4a5e7fc58b5cc42b3e6fb53c55657a2fd3be86e3cb
Description: Translation for luci-app-statistics - 日本語 (Japanese)
Package: luci-i18n-statistics-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-statistics-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 539668efd343cbf5d82291b001d1d5f2
SHA256sum: 16965a340ff5dac53fcf51250f10878993e459accccb5b6e36183b4a7d602f03
Description: Translation for luci-app-statistics - Bahasa Melayu (Malay)
Package: luci-i18n-statistics-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 5894
Filename: luci-i18n-statistics-no_git-15.079.29361-3e37216-1_all.ipk
Size: 6694
MD5Sum: 85601d6f55469231f737cfda57495aad
SHA256sum: 04954ff9b564d583d35885eb612b12649eba5bce29300c5143b3f14e9ad89513
Description: Translation for luci-app-statistics - Norsk (Norwegian)
Package: luci-i18n-statistics-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6976
Filename: luci-i18n-statistics-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 7821
MD5Sum: ae1962a86258062f07355d36ea8ff228
SHA256sum: d649c2ce67dd95913f5d07b0a42c90a0270fa25f10d87ac3b6ca2ed65f525203
Description: Translation for luci-app-statistics - Polski (Polish)
Package: luci-i18n-statistics-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6986
Filename: luci-i18n-statistics-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 7853
MD5Sum: 4c828272bd7bc927b6707a6c17807677
SHA256sum: 97c987efa8ab92b06e4e26433ee3179e5e1859e4195e959e88f37cdcecc0dd85
Description: Translation for luci-app-statistics - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-statistics-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 6215
Filename: luci-i18n-statistics-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 7069
MD5Sum: 079b2fba767bd16f1dbf90d0fc6779dc
SHA256sum: 17c65e8729e16e8e5cc9900685da1e749dcaec3e271fa1b1677701b1e4191304
Description: Translation for luci-app-statistics - Português (Portuguese)
Package: luci-i18n-statistics-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 1382
Filename: luci-i18n-statistics-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2203
MD5Sum: 72c10a0823740fc6e1ba4f359bfcfcd3
SHA256sum: c0e4bf20e3d5770eabb152e441b10a8f903a066418f6b24724e63f95ccc80849
Description: Translation for luci-app-statistics - Română (Romanian)
Package: luci-i18n-statistics-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 7510
Filename: luci-i18n-statistics-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 8364
MD5Sum: 4a488719e45b5e457a447ef3c398a695
SHA256sum: 28c732dd5513c2be235018776227e7f0cf9d726708893df14f4a92822d0b99e2
Description: Translation for luci-app-statistics - Русский (Russian)
Package: luci-i18n-statistics-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-statistics-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1120
MD5Sum: a98877136f57818bc0d6d785d55c3185
SHA256sum: ab8d9088864ef30f3f7a0e10190de43a168f1aeec361106d2408e55dcd2b9091
Description: Translation for luci-app-statistics - Slovenčina (Slovene)
Package: luci-i18n-statistics-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-statistics-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1114
MD5Sum: 1a976410c03b4c45d6f8e500ea97ccc5
SHA256sum: 6c0ff4afe0f5da51e36342b559e54f72a8d6a133dafba5d00e1b6a782c9aead6
Description: Translation for luci-app-statistics - Svenska (Swedish)
Package: luci-i18n-statistics-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-statistics-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1125
MD5Sum: 048200e02dff38f0b715c2c250b815f8
SHA256sum: 71dc9f27df8ce71d39affb3a2de8a91328a47f3897b77da831fc3c586b786422
Description: Translation for luci-app-statistics - Türkçe (Turkish)
Package: luci-i18n-statistics-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 525
Filename: luci-i18n-statistics-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1364
MD5Sum: ddf603e13c89e0f42606ad359c7f2485
SHA256sum: b9cbc2b5c9a895417e9ee4b5ac4b5617a160a5d014a06e345c68463c15acd854
Description: Translation for luci-app-statistics - украї́нська (Ukrainian)
Package: luci-i18n-statistics-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 4156
Filename: luci-i18n-statistics-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 4961
MD5Sum: 5e24260fd67a451ed23e5410c03a3623
SHA256sum: 2600979230d12a248562633133f752cfacf1afb658117b1225a5e33cc6b154ff
Description: Translation for luci-app-statistics - Tiếng Việt (Vietnamese)
Package: luci-i18n-statistics-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 5418
Filename: luci-i18n-statistics-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 6237
MD5Sum: 476eab5bb66b832e280423a9a9841666
SHA256sum: 590dd8a1c3ac0f007e0a8952d78a8b2635d9f20c4660097a74ec7f91d8cd6ba1
Description: Translation for luci-app-statistics - 普通话 (Chinese)
Package: luci-i18n-statistics-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-statistics
Source: feeds/luci/applications/luci-app-statistics
Section: luci
Architecture: all
Installed-Size: 348
Filename: luci-i18n-statistics-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1169
MD5Sum: da4c7a9f734f42b88923c98f7c6db221
SHA256sum: 921a358094292cec5221514537c7e143c9c2181712b0ca8e126f4f257dc3cc89
Description: Translation for luci-app-statistics - 臺灣華語 (Taiwanese)
Package: luci-i18n-tinyproxy-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1466
Filename: luci-i18n-tinyproxy-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2287
MD5Sum: e90db471f75293f55c71556d528fd948
SHA256sum: 5234cc19b517deb2fa9013eb49b4512c57daff3fd5eecca2160b90a1fa31d6e9
Description: Translation for luci-app-tinyproxy - Català (Catalan)
Package: luci-i18n-tinyproxy-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1021
Filename: luci-i18n-tinyproxy-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1832
MD5Sum: 5ccf627d0cafae2cdeddfcbbae8d04d0
SHA256sum: bc76c2bc08210af13cc8d3ac77e25d9d6c227c592c54f325074d839c423915a4
Description: Translation for luci-app-tinyproxy - Čeština (Czech)
Package: luci-i18n-tinyproxy-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2992
Filename: luci-i18n-tinyproxy-de_git-15.079.29361-3e37216-1_all.ipk
Size: 3772
MD5Sum: 31638bd251af92b7904d7f1a3b72628e
SHA256sum: 34ec2a3401cb239f014ae2ee7426976e2f5eb32cea2bfe4d5aed8fbfd733dfd9
Description: Translation for luci-app-tinyproxy - Deutsch (German)
Package: luci-i18n-tinyproxy-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1763
Filename: luci-i18n-tinyproxy-el_git-15.079.29361-3e37216-1_all.ipk
Size: 2596
MD5Sum: 228b292fb26a0bcd6c121f2575696448
SHA256sum: 8ea517926344dcc902f850adf7f77f921d7f5cca1c89c5e7a91a2b0d7d3e1407
Description: Translation for luci-app-tinyproxy - Ελληνικά (Greek)
Package: luci-i18n-tinyproxy-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 308
Filename: luci-i18n-tinyproxy-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: 163ff0eba9db53098ec8bd1e70eff9d6
SHA256sum: b97db0da9f397efb7fa91be19cd43fae00b1f6ddf4f2b1cdcafdf047a0580816
Description: Translation for luci-app-tinyproxy - English
Package: luci-i18n-tinyproxy-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2753
Filename: luci-i18n-tinyproxy-es_git-15.079.29361-3e37216-1_all.ipk
Size: 3541
MD5Sum: 4c20890dfa5d2a6ff59a941b730acda7
SHA256sum: 9267648698e8429522f4951132bedc1a37a408b3a6ab907f503760385d74b278
Description: Translation for luci-app-tinyproxy - Español (Spanish)
Package: luci-i18n-tinyproxy-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2950
Filename: luci-i18n-tinyproxy-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 3736
MD5Sum: 15a1092e02d5ec8384aa29536cf1e160
SHA256sum: 7e306d92bdc77649332ffc4d018baf4369ecab5ce7375f25a50d412f05bdbec4
Description: Translation for luci-app-tinyproxy - Français (French)
Package: luci-i18n-tinyproxy-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci-i18n-tinyproxy-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1156
MD5Sum: 5d35c49e5538503b5b2dc8e07d659262
SHA256sum: 4f42412db63bdd0ba2efa94b020a1f632b265ecfefd73024d9f70d99d8d3b0e0
Description: Translation for luci-app-tinyproxy - עִבְרִית (Hebrew)
Package: luci-i18n-tinyproxy-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-tinyproxy-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1118
MD5Sum: 108500ad19cd16386acd2d0606e8f83f
SHA256sum: 9e4a7e652e501c3f0151677cfd22027fbb3561281088f87af114920e7ac79c49
Description: Translation for luci-app-tinyproxy - Magyar (Hungarian)
Package: luci-i18n-tinyproxy-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 821
Filename: luci-i18n-tinyproxy-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1622
MD5Sum: ec7844b548bb496b8708ad2e529bb328
SHA256sum: e26939487ce4d41eb37aea265e883a5418d8db558b8aa842118c1c6fd42cc293
Description: Translation for luci-app-tinyproxy - Italiano (Italian)
Package: luci-i18n-tinyproxy-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2423
Filename: luci-i18n-tinyproxy-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3222
MD5Sum: 08b7e6417dfb8d64983deefabc965442
SHA256sum: 52981294e4a8e763e577c15d24d43aad9221363a9d2bf0f64f50154dfeb1bf15
Description: Translation for luci-app-tinyproxy - 日本語 (Japanese)
Package: luci-i18n-tinyproxy-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-tinyproxy-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1125
MD5Sum: 872d9d90e605d0b82f3b0ca2a05bacee
SHA256sum: eeb4d7e69fae63e6be38165dcf4af6481a9e7bfc9b49c2c63f4003f485971ff7
Description: Translation for luci-app-tinyproxy - Bahasa Melayu (Malay)
Package: luci-i18n-tinyproxy-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-tinyproxy-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 557a3e0d027795593382d5bec6b48d92
SHA256sum: 377511f5ccff69a83752545b5dfb6aa07d02a2621701cef4355e4a29d01479fe
Description: Translation for luci-app-tinyproxy - Norsk (Norwegian)
Package: luci-i18n-tinyproxy-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 3080
Filename: luci-i18n-tinyproxy-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 3860
MD5Sum: 301585701740e051fb9c0d513ce1be47
SHA256sum: 68677394bfc874716d67ecf796af01f8820686a0166a28efbaa746126d2af7c6
Description: Translation for luci-app-tinyproxy - Polski (Polish)
Package: luci-i18n-tinyproxy-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2974
Filename: luci-i18n-tinyproxy-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 3767
MD5Sum: 99151561b5a3755abdb223b86b6e6fc3
SHA256sum: df80a94bdb5dd8dbdf7334c2355fecebf2961b16e272d352bcfafbe304ccde91
Description: Translation for luci-app-tinyproxy - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-tinyproxy-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 1160
Filename: luci-i18n-tinyproxy-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1968
MD5Sum: 2010eb95f04bf813997b95fd4d693217
SHA256sum: d425dad450dc834ff53f8705a491535dfdaccefdf6ca0a18b5e55e2acfdb3fac
Description: Translation for luci-app-tinyproxy - Português (Portuguese)
Package: luci-i18n-tinyproxy-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci-i18n-tinyproxy-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1131
MD5Sum: 69bea7181dd29afda3501eda182b43a9
SHA256sum: 55c0cf979852386b6b79bf01f56847a1dae16690293ea91e09c551dcc92a490f
Description: Translation for luci-app-tinyproxy - Română (Romanian)
Package: luci-i18n-tinyproxy-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 3249
Filename: luci-i18n-tinyproxy-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 4051
MD5Sum: b2764a8cb16d966d8eb91539843ebbca
SHA256sum: 71f74e9cb374fc32ffd05cef6d1a40a9f5597f55c1767d01782ae0c549653a99
Description: Translation for luci-app-tinyproxy - Русский (Russian)
Package: luci-i18n-tinyproxy-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci-i18n-tinyproxy-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1127
MD5Sum: 0e6364c98d7d1b1ddee7d730039c399e
SHA256sum: 55464ad327a506a2596e0c0f35530f68580018a0332dbef5a52f322d01f5b112
Description: Translation for luci-app-tinyproxy - Slovenčina (Slovene)
Package: luci-i18n-tinyproxy-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-tinyproxy-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: cd6050bab9a53e1e2cc4d9141e03a3b5
SHA256sum: 1826a92e3da8d911bdc5deeb06ef14854c5a80657c01f54cbb0c749ccd66e5f2
Description: Translation for luci-app-tinyproxy - Svenska (Swedish)
Package: luci-i18n-tinyproxy-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 327
Filename: luci-i18n-tinyproxy-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1130
MD5Sum: 395334649791514d8becb710c333387d
SHA256sum: c7d93ea70b97e8df4405d0e3f0c25cdd03a1766ba531064ded925a6a33b0af6a
Description: Translation for luci-app-tinyproxy - Türkçe (Turkish)
Package: luci-i18n-tinyproxy-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 349
Filename: luci-i18n-tinyproxy-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1176
MD5Sum: 55139ef8ecf5ffc773a28bf1a8ba56b7
SHA256sum: d284a1440088221d16055f93e22a062294983fe81e6a7f44a8156af848fb6d85
Description: Translation for luci-app-tinyproxy - украї́нська (Ukrainian)
Package: luci-i18n-tinyproxy-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 576
Filename: luci-i18n-tinyproxy-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1391
MD5Sum: 4ffd7758485dc89694865d562c06d7ce
SHA256sum: fd30449a5fb59e8b11a42ee8a8c48ec9195dea796f5c1b54a311f0bd191a668b
Description: Translation for luci-app-tinyproxy - Tiếng Việt (Vietnamese)
Package: luci-i18n-tinyproxy-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 2763
Filename: luci-i18n-tinyproxy-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 3560
MD5Sum: f893ae42ae6b273058c81521665e013b
SHA256sum: 233a247a8990c1a5fefbec6e8ab2a0ca87fe82370c023ab43c725d93ec3e8143
Description: Translation for luci-app-tinyproxy - 普通话 (Chinese)
Package: luci-i18n-tinyproxy-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-tinyproxy
Source: feeds/luci/applications/luci-app-tinyproxy
Section: luci
Architecture: all
Installed-Size: 347
Filename: luci-i18n-tinyproxy-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1176
MD5Sum: ba09e183d914db6795dfb4bd77235f86
SHA256sum: 53c9c8971a139f44aabe67ab55eb4e5e8b1eafbe0c4096cb297f3c9976f8140e
Description: Translation for luci-app-tinyproxy - 臺灣華語 (Taiwanese)
Package: luci-i18n-transmission-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 1668
Filename: luci-i18n-transmission-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2479
MD5Sum: 9c5f1381835c2ab12028a7297f84c676
SHA256sum: 4bd4faefcc5cbfaac034320c3b76299de5990ea60860ed8f0b315d861cdecb6d
Description: Translation for luci-app-transmission - Català (Catalan)
Package: luci-i18n-transmission-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2087
Filename: luci-i18n-transmission-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2902
MD5Sum: 0ebf4a51aa6077f97ec52ded5a002a17
SHA256sum: 187e427f57a950053d9755c2361d4c9d69d5f66d6ae49c385ec41734e0d32dbd
Description: Translation for luci-app-transmission - Čeština (Czech)
Package: luci-i18n-transmission-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2737
Filename: luci-i18n-transmission-de_git-15.079.29361-3e37216-1_all.ipk
Size: 3522
MD5Sum: 6c647e18504823e4930f304f6998d1c9
SHA256sum: 2a646b95c9528dd7169e6f80cebc59bab553852f0fa12ae8ef5fa65dcd841fd5
Description: Translation for luci-app-transmission - Deutsch (German)
Package: luci-i18n-transmission-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-transmission-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1152
MD5Sum: 04ec4384e044856d0c4c322b065a03e8
SHA256sum: 1ec3141055bb1f4d716cc562888d0fd28fb84819825421f0d4dee134b9c106bb
Description: Translation for luci-app-transmission - Ελληνικά (Greek)
Package: luci-i18n-transmission-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 310
Filename: luci-i18n-transmission-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1096
MD5Sum: dc982c0e18570da5290bb0eb692e24e4
SHA256sum: c0ef6d65c6d3017a73676ecacbbf1be6e2dbfff32fc104f867bbcc7a001cb7e0
Description: Translation for luci-app-transmission - English
Package: luci-i18n-transmission-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2675
Filename: luci-i18n-transmission-es_git-15.079.29361-3e37216-1_all.ipk
Size: 3461
MD5Sum: 26ee3fd8d6134a227520188c6b8ed87c
SHA256sum: eb31b6e352f39b2ca2f487a904fae900f98629656a4ff0f88a288c52da7aaabf
Description: Translation for luci-app-transmission - Español (Spanish)
Package: luci-i18n-transmission-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-transmission-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: f1a7690d1fff8c5ebae6d0ea1db92d4e
SHA256sum: 86be5fb67409752dc9231b3003c6b4cb0b179e71f61d20b3d71d33524744855d
Description: Translation for luci-app-transmission - Français (French)
Package: luci-i18n-transmission-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci-i18n-transmission-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1159
MD5Sum: cfaf2681b612dd0415e4fb547be10411
SHA256sum: ce939d1d09efab14324306ec967899f8060775aea04ae68d2860f666be317a6c
Description: Translation for luci-app-transmission - עִבְרִית (Hebrew)
Package: luci-i18n-transmission-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2752
Filename: luci-i18n-transmission-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 3535
MD5Sum: e82c842d6a2a08efc033cd997b59fab6
SHA256sum: 5e2d7f446658cdc239b6eecc1c1e175c50af2cb6e6e72dac42b2a412c3782cb7
Description: Translation for luci-app-transmission - Magyar (Hungarian)
Package: luci-i18n-transmission-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 651
Filename: luci-i18n-transmission-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1449
MD5Sum: 570599882376d1e887abaaaf37c33fb3
SHA256sum: 478fbd0afde6422f1ecae8205699f3239928003581cbd269cbc910831bba3784
Description: Translation for luci-app-transmission - Italiano (Italian)
Package: luci-i18n-transmission-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2229
Filename: luci-i18n-transmission-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 3053
MD5Sum: 0fd2a0f4982c5281e30add87b71d4d9a
SHA256sum: 6d5fff71167839c0487794a493a59ae4a1cabaf6c66510f49120e346001733b1
Description: Translation for luci-app-transmission - 日本語 (Japanese)
Package: luci-i18n-transmission-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-transmission-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: ac1adb6607117eedda6efd34451c6c6b
SHA256sum: 071d0835a1dbf008cc2f372779539047e25940d3135526e4c8ffe3a52b13c623
Description: Translation for luci-app-transmission - Bahasa Melayu (Malay)
Package: luci-i18n-transmission-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 1756
Filename: luci-i18n-transmission-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2563
MD5Sum: 6aad8db0acbaeb29cedd76be1e99b42b
SHA256sum: f7c8698b858b57f218698f72314d777fa404dd87fb12d6fabbe0f8c623ec08fe
Description: Translation for luci-app-transmission - Norsk (Norwegian)
Package: luci-i18n-transmission-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2877
Filename: luci-i18n-transmission-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 3655
MD5Sum: 8e52fd9056e1961846878620452b63d0
SHA256sum: c183f8ace7865d2acac592f935cd2d7eb384b1d24dad75ea3d838221aa1b3564
Description: Translation for luci-app-transmission - Polski (Polish)
Package: luci-i18n-transmission-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2828
Filename: luci-i18n-transmission-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 3626
MD5Sum: 7cb635d1796f5c3820565b47ce46e9ee
SHA256sum: f1fb14527ba9c54f9016f90b9d00faeaf0864372d3e09d916afe47efd2191434
Description: Translation for luci-app-transmission - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-transmission-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 1012
Filename: luci-i18n-transmission-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1816
MD5Sum: 710f0935c27c553af82ad611aa85af02
SHA256sum: 59d5be25f1987818603484ecd39d07f47519eef5cd50b3f3cabb310ab731d2f9
Description: Translation for luci-app-transmission - Português (Portuguese)
Package: luci-i18n-transmission-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 711
Filename: luci-i18n-transmission-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1520
MD5Sum: 5aa5a51a3308ded16eb1d19d11a06f6f
SHA256sum: 5a8a32ba4acb937887ab99adcc3ae71cac63a1cf0522742d7fda39b933cd5fad
Description: Translation for luci-app-transmission - Română (Romanian)
Package: luci-i18n-transmission-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 3119
Filename: luci-i18n-transmission-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 3917
MD5Sum: 21354b62f1bb7f1c8f53c458c20b5114
SHA256sum: 75f8db014ad8c7f69a82c678fa10c71ecba481f19168bb38a4a80abfa121f349
Description: Translation for luci-app-transmission - Русский (Russian)
Package: luci-i18n-transmission-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-transmission-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 7f0f3178327c9ea185c2131b34bbe5a0
SHA256sum: 077206dfea7c6aaa1c666512ec9e24eb389c76e3e671b3402da9d4f64dcfc651
Description: Translation for luci-app-transmission - Slovenčina (Slovene)
Package: luci-i18n-transmission-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-transmission-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1117
MD5Sum: 09160c251d8459d64f0e05daf9de8867
SHA256sum: 015daa425cd74e7874e7df634600033bc887573f2c22b5139501489b61b51ad1
Description: Translation for luci-app-transmission - Svenska (Swedish)
Package: luci-i18n-transmission-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 326
Filename: luci-i18n-transmission-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 8baf64b91f0b403003b5cd6ba8283643
SHA256sum: 41a8ccdf66d63b6a7fe7c4e29e2867c533d6c40794f0e310bac2fc113977f960
Description: Translation for luci-app-transmission - Türkçe (Turkish)
Package: luci-i18n-transmission-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 496
Filename: luci-i18n-transmission-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1329
MD5Sum: 007457444622c3378bd37420122ea09c
SHA256sum: 0e447c477f9377bc467a8c875b887ef7690fed87631c3c7965c3b538baef398f
Description: Translation for luci-app-transmission - украї́нська (Ukrainian)
Package: luci-i18n-transmission-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 339
Filename: luci-i18n-transmission-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1149
MD5Sum: 1c4d8b136e6bd99a3e6a9dbba5d22af9
SHA256sum: dec676155db566f52ba689bb1fb12c3587feca9761f46be010440eeafd1fe8cd
Description: Translation for luci-app-transmission - Tiếng Việt (Vietnamese)
Package: luci-i18n-transmission-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2508
Filename: luci-i18n-transmission-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 3341
MD5Sum: 1f32bc192bd89a1fdc326980ad3f72d2
SHA256sum: 7f2e81a5b8cb14db6084e3462ffcc9ebb834fa199c5499fb34a511585ae654f3
Description: Translation for luci-app-transmission - 普通话 (Chinese)
Package: luci-i18n-transmission-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-transmission
Source: feeds/luci/applications/luci-app-transmission
Section: luci
Architecture: all
Installed-Size: 2623
Filename: luci-i18n-transmission-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 3461
MD5Sum: d8eca25fcc66b4a9c387c2f71129cce6
SHA256sum: 97a31c539873696f62703ac8c51b7a356906e69f517ef6026732d4e0ef0705cb
Description: Translation for luci-app-transmission - 臺灣華語 (Taiwanese)
Package: luci-i18n-upnp-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1463
Filename: luci-i18n-upnp-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 2270
MD5Sum: 0b72682934ec4d6fb2a82c29f5335d5e
SHA256sum: d5ca0e1302b751f205043b6dddad7b1948d125930537fdeaf658836ae0caf528
Description: Translation for luci-app-upnp - Català (Catalan)
Package: luci-i18n-upnp-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1519
Filename: luci-i18n-upnp-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 2334
MD5Sum: eb646330449f01a1271a213629698135
SHA256sum: b97f0ee647eaa58b7767709b88021d6dd177be549993e72980ecd8914c0c2019
Description: Translation for luci-app-upnp - Čeština (Czech)
Package: luci-i18n-upnp-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1466
Filename: luci-i18n-upnp-de_git-15.079.29361-3e37216-1_all.ipk
Size: 2268
MD5Sum: 5f0a073491a82332d456ede26e7f3fc8
SHA256sum: 1ac8c9444f2483b8fef3ec956dde2a753d08aa7029543e95e5c3cfbe83787544
Description: Translation for luci-app-upnp - Deutsch (German)
Package: luci-i18n-upnp-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci-i18n-upnp-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1142
MD5Sum: bd90bfa0747772d87ccf645ebc909584
SHA256sum: 8276e8ea190189da05f040da218d9ae8520c1d04c485980766394b3ee0c2c5db
Description: Translation for luci-app-upnp - Ελληνικά (Greek)
Package: luci-i18n-upnp-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 303
Filename: luci-i18n-upnp-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1088
MD5Sum: 804c0c4ef8069dd62a28317ae71ea6ef
SHA256sum: 2fccf488739d418e46b508346cd92961ea31ba87abb623a53df3c2322f30eb12
Description: Translation for luci-app-upnp - English
Package: luci-i18n-upnp-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1570
Filename: luci-i18n-upnp-es_git-15.079.29361-3e37216-1_all.ipk
Size: 2382
MD5Sum: 6fd52bba838ec115de1382d05d64d914
SHA256sum: c01743b41738f41ea075c045b5be356a2b60f2cff58108e6c6cc29cb7c817d48
Description: Translation for luci-app-upnp - Español (Spanish)
Package: luci-i18n-upnp-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1530
Filename: luci-i18n-upnp-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 2350
MD5Sum: 3fb12b92814c3d9eaee2f44d2ebe0899
SHA256sum: 90f9330f70ec4e3b4ee182a1e859f12863dd5b06f603e0f2ee2f402f959a5c9e
Description: Translation for luci-app-upnp - Français (French)
Package: luci-i18n-upnp-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-upnp-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: 58a2f571fa88d6f3e0f714430ba29a66
SHA256sum: 06394de0020d053abd5cc6b617d30a18bdc80291bf862fc98e6ca78c1db1158c
Description: Translation for luci-app-upnp - עִבְרִית (Hebrew)
Package: luci-i18n-upnp-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1632
Filename: luci-i18n-upnp-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 2440
MD5Sum: 4678010496c11d0a64c1c54d9f0b7688
SHA256sum: 3adfd2c562a22b1887b2567dad8a119a76ec65b9bc674847bdc7f0a2e292c163
Description: Translation for luci-app-upnp - Magyar (Hungarian)
Package: luci-i18n-upnp-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1425
Filename: luci-i18n-upnp-it_git-15.079.29361-3e37216-1_all.ipk
Size: 2228
MD5Sum: 9075082cd87c960aacf5206c6710d770
SHA256sum: 8cfa750538bb87940ca3fd4b5764bdc250a20f5035484c93c284a382171543a5
Description: Translation for luci-app-upnp - Italiano (Italian)
Package: luci-i18n-upnp-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1588
Filename: luci-i18n-upnp-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 2414
MD5Sum: 70575160b95be1a425aa2e8ed827cd2c
SHA256sum: cf8b834066a85b0733929d808e38d1a07a77836f138034c66a4b031ba8c262a9
Description: Translation for luci-app-upnp - 日本語 (Japanese)
Package: luci-i18n-upnp-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-upnp-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: 57ad9ce3bbffdc22a138770400e3ec97
SHA256sum: fad200549282fac6fdca39d3e540137b76828394be3bd0c3c473ce2085cdd105
Description: Translation for luci-app-upnp - Bahasa Melayu (Malay)
Package: luci-i18n-upnp-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1456
Filename: luci-i18n-upnp-no_git-15.079.29361-3e37216-1_all.ipk
Size: 2260
MD5Sum: d6b587e793c28572f11bdb9d030e419c
SHA256sum: be8aa060020933f898a569edc5e13ed0f1f6bca4bf310e1b9962ecad24184e15
Description: Translation for luci-app-upnp - Norsk (Norwegian)
Package: luci-i18n-upnp-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1510
Filename: luci-i18n-upnp-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 2309
MD5Sum: 54ddbb9467a2a6ba6f8bd9500845ac6e
SHA256sum: ab11d8e0fc2b0f0314928f46bab4a2b6961b2656c07f2e4e2593f1fec6fae389
Description: Translation for luci-app-upnp - Polski (Polish)
Package: luci-i18n-upnp-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1679
Filename: luci-i18n-upnp-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 2510
MD5Sum: f4de29034a32ed187c5c14d524d8968d
SHA256sum: 6708bf5572f9b2b0ebf79fb3f32cf26d4315108ec79495abc32561766f1bcbd8
Description: Translation for luci-app-upnp - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-upnp-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 446
Filename: luci-i18n-upnp-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1240
MD5Sum: c751f56805357dad0bf19b6fc0b0e840
SHA256sum: 96916bf2f301c409739d465a31a811cb227c345735fe7eb02d2e434f7f1618ab
Description: Translation for luci-app-upnp - Português (Portuguese)
Package: luci-i18n-upnp-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1427
Filename: luci-i18n-upnp-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 2242
MD5Sum: 08d193cf4082325c857dfb4d60e558a8
SHA256sum: 0f4c227bde6c5615564e88d902a76810c0bdae5be983f0e264fe89cff8c6d6f6
Description: Translation for luci-app-upnp - Română (Romanian)
Package: luci-i18n-upnp-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1727
Filename: luci-i18n-upnp-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2556
MD5Sum: a18fca3c9d3022f48e5acef856b93328
SHA256sum: d8ed6567cc23c5021c64515ef1b9629f4faf81b2527f24f2ef39bf6114a5cdca
Description: Translation for luci-app-upnp - Русский (Russian)
Package: luci-i18n-upnp-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-upnp-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: e7dbf3bdb4b6fc2ec9e65eaf5da76476
SHA256sum: 9064bb2215abb1344e44eebbf2699dcfed782a6efe1de631398daa5e6801d091
Description: Translation for luci-app-upnp - Slovenčina (Slovene)
Package: luci-i18n-upnp-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-upnp-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1104
MD5Sum: c68a85f80964cf69965a021784761b33
SHA256sum: 7c1f2e0be147de8beab0f5924a95f4841c66ce9ec545527e93ec68ddf39151eb
Description: Translation for luci-app-upnp - Svenska (Swedish)
Package: luci-i18n-upnp-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-upnp-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: 2806ee61a0a7a1a343ed1010ad97d161
SHA256sum: 8f846904828197708bb29acabd477ce8769e881f2ee46c56c0654fc892d5d099
Description: Translation for luci-app-upnp - Türkçe (Turkish)
Package: luci-i18n-upnp-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1762
Filename: luci-i18n-upnp-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 2606
MD5Sum: d8bd6bafa10361f19e644ece7f2d85aa
SHA256sum: b82ac559ccea0dce738718eb8aa160ce3f9ba71e068d7a88de41c4a918210942
Description: Translation for luci-app-upnp - украї́нська (Ukrainian)
Package: luci-i18n-upnp-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 418
Filename: luci-i18n-upnp-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1228
MD5Sum: d29d23f41e59725d3ec91ef65084143f
SHA256sum: 6714be70d4c28fb4965c19ee94652331942ae3c1dc58135a06e89f714da35482
Description: Translation for luci-app-upnp - Tiếng Việt (Vietnamese)
Package: luci-i18n-upnp-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1550
Filename: luci-i18n-upnp-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 2380
MD5Sum: 7c650312cc4e9d74927068427494e592
SHA256sum: 2843ee57a05e941c6b8ff2a1c48df224e9a6889de428a42f4208da10b4eb4574
Description: Translation for luci-app-upnp - 普通话 (Chinese)
Package: luci-i18n-upnp-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-upnp
Source: feeds/luci/applications/luci-app-upnp
Section: luci
Architecture: all
Installed-Size: 1586
Filename: luci-i18n-upnp-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 2426
MD5Sum: 435e531ff7629a2509a143f2629d57d8
SHA256sum: e1c3aaf56ac16b2933715d444d1f2bca24dc32f7d960a0da8a711762497b4d92
Description: Translation for luci-app-upnp - 臺灣華語 (Taiwanese)
Package: luci-i18n-vnstat-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 852
Filename: luci-i18n-vnstat-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1660
MD5Sum: 7d291052f527195d1306364ed7f74cd7
SHA256sum: ad2e0ffaf9d509fb2603caa5866e7296a38a88512efe7124fca727a225f0a853
Description: Translation for luci-app-vnstat - Català (Catalan)
Package: luci-i18n-vnstat-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 879
Filename: luci-i18n-vnstat-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1697
MD5Sum: 8e05558972954c2baf8b470d77a0b984
SHA256sum: a4a8de287ec719750b22d64816a05fafab67015986fb55b10630d3502d05ea98
Description: Translation for luci-app-vnstat - Čeština (Czech)
Package: luci-i18n-vnstat-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 880
Filename: luci-i18n-vnstat-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1673
MD5Sum: 16b167fd48c6d810e0af15b44e33965c
SHA256sum: 9390d42de974824dad15d9d832be0cbdda5f92aaf7559b62e99a08017727cec1
Description: Translation for luci-app-vnstat - Deutsch (German)
Package: luci-i18n-vnstat-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 332
Filename: luci-i18n-vnstat-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1143
MD5Sum: a976256963cc1015774a6c39cf2ff8d9
SHA256sum: 36a9c4598add1be45f32097eeb8b3f40369fdffe5996add3a2cd2adacd254515
Description: Translation for luci-app-vnstat - Ελληνικά (Greek)
Package: luci-i18n-vnstat-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 306
Filename: luci-i18n-vnstat-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1092
MD5Sum: 9eb04c94b266cfab41aa2a8b3af53aeb
SHA256sum: 6e05f2e6bd889cd216303cff5bba29f584fa0636635cd255eff02d2b7d59b451
Description: Translation for luci-app-vnstat - English
Package: luci-i18n-vnstat-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 865
Filename: luci-i18n-vnstat-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1667
MD5Sum: 6e3312f77fbc7ba211013c6bb7f1018a
SHA256sum: e36b9269be4b032e418f70814ffacec2ae5d19cc568549f3528814d81eaed890
Description: Translation for luci-app-vnstat - Español (Spanish)
Package: luci-i18n-vnstat-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 853
Filename: luci-i18n-vnstat-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1652
MD5Sum: 7f74bbfca767ecd6d14d6bc0d0ecfe0d
SHA256sum: ddc02fbf445825dc6bf0aa6127dad70dcc60b990fe2e02b31d7514b85bdc6483
Description: Translation for luci-app-vnstat - Français (French)
Package: luci-i18n-vnstat-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-vnstat-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1151
MD5Sum: d49aeefac72a32c364b71b8977f3f710
SHA256sum: 71ad11000284b7e13fec6fc77fdee0330807b482e62f4b9dcd192ca128ef5317
Description: Translation for luci-app-vnstat - עִבְרִית (Hebrew)
Package: luci-i18n-vnstat-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 870
Filename: luci-i18n-vnstat-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1683
MD5Sum: 799f4dc175e9dd66e1511583fb307ae2
SHA256sum: aab872604aee8aced7a6ed6a279b10ec1469b602570b4b8568246314fd5a4cad
Description: Translation for luci-app-vnstat - Magyar (Hungarian)
Package: luci-i18n-vnstat-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 788
Filename: luci-i18n-vnstat-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1583
MD5Sum: a0ad81ccf0a837bb677f55cdba3eea54
SHA256sum: f1e36bfa2749b6db469fa368a76a72917b940dc177450193a87152806b641b18
Description: Translation for luci-app-vnstat - Italiano (Italian)
Package: luci-i18n-vnstat-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 916
Filename: luci-i18n-vnstat-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1735
MD5Sum: 26d6ec76118864212170dbf02d785cfd
SHA256sum: 72fc3a0f5786607f8db229fc9c92d90c7750915839b10fd98531793cdac27ca1
Description: Translation for luci-app-vnstat - 日本語 (Japanese)
Package: luci-i18n-vnstat-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-vnstat-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 274066aaaa4b6a7dbe8394e152e1e21c
SHA256sum: 3949ce4828718e566e9cd4486433648f94c8e5bc675172b6d0d5f4969a6bacf4
Description: Translation for luci-app-vnstat - Bahasa Melayu (Malay)
Package: luci-i18n-vnstat-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 830
Filename: luci-i18n-vnstat-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1633
MD5Sum: c36d5e616e26d49393919f50fd2eecc6
SHA256sum: 1091f4b53dc5673a26b193851765214ebf1777adfc08363bd440bab46cfe083c
Description: Translation for luci-app-vnstat - Norsk (Norwegian)
Package: luci-i18n-vnstat-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 865
Filename: luci-i18n-vnstat-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1664
MD5Sum: 9b4b55972b061f4bde75353239de25da
SHA256sum: bfef01d74b7ce38ab60da3bb4ad9d20257ffc594379b1752d2fa31b6da827917
Description: Translation for luci-app-vnstat - Polski (Polish)
Package: luci-i18n-vnstat-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 873
Filename: luci-i18n-vnstat-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1705
MD5Sum: 44b3d023c771748a60c691f3dfca7241
SHA256sum: 07456a2ec5606d8c2c756e430d6a45de19b3815b7f767c24275cac5638c21763
Description: Translation for luci-app-vnstat - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-vnstat-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 848
Filename: luci-i18n-vnstat-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1656
MD5Sum: d78cdc0b6bdeea79c576ede1b460c97c
SHA256sum: 97ee820c1b21a3b8a1eef6202f2256829850fa13be16b5bc066bb794ec3fd5ff
Description: Translation for luci-app-vnstat - Português (Portuguese)
Package: luci-i18n-vnstat-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 830
Filename: luci-i18n-vnstat-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1637
MD5Sum: c8f01410c462f6297b0dc338c8308c59
SHA256sum: 351561602ec4b282b18974807206955feeea0d03fded0a902973db6ad368d776
Description: Translation for luci-app-vnstat - Română (Romanian)
Package: luci-i18n-vnstat-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 925
Filename: luci-i18n-vnstat-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1747
MD5Sum: 77ad8c555dbf150ca258b54439e05421
SHA256sum: a689b9db1592bb06df136ff7540d2ad97cace5a747e41bb149973f87036bf796
Description: Translation for luci-app-vnstat - Русский (Russian)
Package: luci-i18n-vnstat-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-vnstat-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1116
MD5Sum: 8fd3b186b7d2c72f201480428600156a
SHA256sum: 792b8c0b222845008410475d084bf025beb32be7008a4f3b4ab8b311ecfdcbe9
Description: Translation for luci-app-vnstat - Slovenčina (Slovene)
Package: luci-i18n-vnstat-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-vnstat-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 51c3d6c0bcacba873445a837768e07e4
SHA256sum: c5da7dc43f7f8a857c04d16fd44cc7e8afa32060a6ecbe810c0ebbe945d42107
Description: Translation for luci-app-vnstat - Svenska (Swedish)
Package: luci-i18n-vnstat-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-vnstat-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 638ad8539ce0ac6a23f049f88e33206c
SHA256sum: 20508646c3b2e27ca6830cbda6d3b1de1d3877652d8683ea3ef57571383e1112
Description: Translation for luci-app-vnstat - Türkçe (Turkish)
Package: luci-i18n-vnstat-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 972
Filename: luci-i18n-vnstat-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1805
MD5Sum: dd648f8d9bc7841e9e2dd3365f75e63c
SHA256sum: 0ada289fc698b29aede8d227c84f0038d0fc569e0471ffef1c3baa6c4abbb219
Description: Translation for luci-app-vnstat - украї́нська (Ukrainian)
Package: luci-i18n-vnstat-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-vnstat-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1150
MD5Sum: fc81f18c813bc39ef1e7715d09b690b3
SHA256sum: dabfc5b8ac0053722390e828aeebe7a9164b4208c467e3acbe4669c113bfdcf1
Description: Translation for luci-app-vnstat - Tiếng Việt (Vietnamese)
Package: luci-i18n-vnstat-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 835
Filename: luci-i18n-vnstat-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1660
MD5Sum: 1c8849d64de48e2e875f1aa8e60a819e
SHA256sum: d1ac8de11746df6a4b4be630ba48b206d8efc5068aa559433d594df7fe64f337
Description: Translation for luci-app-vnstat - 普通话 (Chinese)
Package: luci-i18n-vnstat-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-vnstat
Source: feeds/luci/applications/luci-app-vnstat
Section: luci
Architecture: all
Installed-Size: 867
Filename: luci-i18n-vnstat-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1702
MD5Sum: 8972f45c8e142c40aba33a31b1fa94e0
SHA256sum: efa8cafa2bbbce46d03b77b78b51d44cb882cf6fafbaefd2405de8944fcb098d
Description: Translation for luci-app-vnstat - 臺灣華語 (Taiwanese)
Package: luci-i18n-voice-core-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 411
Filename: luci-i18n-voice-core-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1203
MD5Sum: 1caa0ef3f8bd420440680001a0a4c0dc
SHA256sum: 5ba68c8ef32b1abf0335b767ba0cea7e1dd64ffdd00a362db5d6cc8130bd87cb
Description: Translation for luci-app-voice-core - Català (Catalan)
Package: luci-i18n-voice-core-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 413
Filename: luci-i18n-voice-core-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1216
MD5Sum: 73c90c386338c5c729501570a535f795
SHA256sum: cfe437a3b013043d165846455a40fab2da79ba5feb4b9887a9073e89675643c0
Description: Translation for luci-app-voice-core - Čeština (Czech)
Package: luci-i18n-voice-core-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 408
Filename: luci-i18n-voice-core-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1200
MD5Sum: e9f412cb33621a5f2b66cdbc8f7b61ce
SHA256sum: cfc8c695016fc308ea020a2454f8f8446ebd2f0a572bc5a180b49ca21fde510a
Description: Translation for luci-app-voice-core - Deutsch (German)
Package: luci-i18n-voice-core-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 406
Filename: luci-i18n-voice-core-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1220
MD5Sum: 581d59d4c9834130586836606df8406f
SHA256sum: f1a901fe831834a648f97118fc2b3b77322cce512e779a707dcf4a3164d8171b
Description: Translation for luci-app-voice-core - Ελληνικά (Greek)
Package: luci-i18n-voice-core-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 309
Filename: luci-i18n-voice-core-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1097
MD5Sum: 257a3f3dd9275013581ddcb1f5bb0d6d
SHA256sum: 5d5b60bedf2d5bb708d09fea5f0edfec409ed03a7ce354d9a24e6158abebff7c
Description: Translation for luci-app-voice-core - English
Package: luci-i18n-voice-core-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 418
Filename: luci-i18n-voice-core-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1216
MD5Sum: d30511dfd371cea1f61ffac54a8ea114
SHA256sum: 88d7f2c1def157ab57a0c27ef5e4e21765f601ccd45a9f8f9bc7bc0b1d0db2bd
Description: Translation for luci-app-voice-core - Español (Spanish)
Package: luci-i18n-voice-core-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 418
Filename: luci-i18n-voice-core-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1221
MD5Sum: 63ed80b86c3ab1530504501fc02e8295
SHA256sum: 0050c6bcbed0f448d9d14f2e4ead1e3843dd69758aad60723ade92cfc9dd3140
Description: Translation for luci-app-voice-core - Français (French)
Package: luci-i18n-voice-core-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 435
Filename: luci-i18n-voice-core-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1253
MD5Sum: 3bd4a97f95eeb208349f949876f7eec4
SHA256sum: 8450592219280a9a717d9b4775c5779078832c8b2845e8db9b76410a112f4056
Description: Translation for luci-app-voice-core - עִבְרִית (Hebrew)
Package: luci-i18n-voice-core-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 411
Filename: luci-i18n-voice-core-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1209
MD5Sum: 343cd7aa965cf066c1b6568791ed16e4
SHA256sum: ed4d8568ba6c0fadb02538f335b116af43cb8804314109bc407aa69b3f77e7e2
Description: Translation for luci-app-voice-core - Magyar (Hungarian)
Package: luci-i18n-voice-core-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 401
Filename: luci-i18n-voice-core-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1189
MD5Sum: 711e446c8145bf7a11ca7401e843d3cd
SHA256sum: 4a96e79b47afd86f5d6e97f6cfb75b705c08b5b8371c34c9fd1177b677be8d4c
Description: Translation for luci-app-voice-core - Italiano (Italian)
Package: luci-i18n-voice-core-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 399
Filename: luci-i18n-voice-core-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1211
MD5Sum: 2db33a4b72880d51545726de3ecd9e0a
SHA256sum: 7eb4e68a3a16862b0ed649fdd473c9ecbd1745356b1d1641268bb9a14db80650
Description: Translation for luci-app-voice-core - 日本語 (Japanese)
Package: luci-i18n-voice-core-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-voice-core-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: 93eab04b687b304697bdca8fa309b7b4
SHA256sum: 6ae1c76fb458627608c5490ac06cff601f60fa758dbebb1093af7d3056ed83cd
Description: Translation for luci-app-voice-core - Bahasa Melayu (Malay)
Package: luci-i18n-voice-core-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 386
Filename: luci-i18n-voice-core-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1186
MD5Sum: 073a2faabe7d22d2954a05c891a828e5
SHA256sum: 4885b66453b045f31b351f4e039e7d7ed9b5329782742f1a4392ace11f3e5015
Description: Translation for luci-app-voice-core - Norsk (Norwegian)
Package: luci-i18n-voice-core-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 408
Filename: luci-i18n-voice-core-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1203
MD5Sum: 143422b51420ff777b2085a6bc1e2fb3
SHA256sum: a82edb85c1a0a446b4c5330dd9172f21f4a6419a18ad1ccaff58061ed386a680
Description: Translation for luci-app-voice-core - Polski (Polish)
Package: luci-i18n-voice-core-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 439
Filename: luci-i18n-voice-core-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1257
MD5Sum: 8672738e4eee512e88ec7b6872bd5226
SHA256sum: 9801bb219d31c744715bc5d8ff7ea517f0f0171281fe083db8c1ed1992349518
Description: Translation for luci-app-voice-core - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-voice-core-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 415
Filename: luci-i18n-voice-core-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1218
MD5Sum: 04fca6cb60dd20153822d33035d23a60
SHA256sum: 94e0c20c25d5bf6a1f05e55c8f6e2f8fac2f80bbf679fdc7c44e206525e4510f
Description: Translation for luci-app-voice-core - Português (Portuguese)
Package: luci-i18n-voice-core-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 414
Filename: luci-i18n-voice-core-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1216
MD5Sum: 0ea6f4d14a2a932a0507dfa66766ad74
SHA256sum: e06694d33bd9f8872a936a3d9dac47532f24165a543a0a4fafe17f9c0ce185db
Description: Translation for luci-app-voice-core - Română (Romanian)
Package: luci-i18n-voice-core-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 436
Filename: luci-i18n-voice-core-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1250
MD5Sum: dcadbef642bf900a805cc946b962a6a2
SHA256sum: 99b6aed4acfa550d95e745ad843a821650d973ca5062aaacdef83d826670b9f1
Description: Translation for luci-app-voice-core - Русский (Russian)
Package: luci-i18n-voice-core-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-voice-core-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: 3e5915b43d3748c8eb59b763369d5e95
SHA256sum: 7f4d753eb0191897a741b07ee4228b8bd15661fe2e4ad98192e8f9903fe2b0a6
Description: Translation for luci-app-voice-core - Slovenčina (Slovene)
Package: luci-i18n-voice-core-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 416
Filename: luci-i18n-voice-core-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1215
MD5Sum: 2a2f2d4505dbb9ef3b78030253d5d387
SHA256sum: fe0bb74e9fa9528c1b8d67739fc4be5a143ac96b556c5e55c030122188bc6ccb
Description: Translation for luci-app-voice-core - Svenska (Swedish)
Package: luci-i18n-voice-core-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 410
Filename: luci-i18n-voice-core-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1209
MD5Sum: bf0c48931e52bafd701a786c82c7d85b
SHA256sum: 653680954681259af882f977c96e56667455acb8740c48ca32e610ce12d69edf
Description: Translation for luci-app-voice-core - Türkçe (Turkish)
Package: luci-i18n-voice-core-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 447
Filename: luci-i18n-voice-core-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1279
MD5Sum: 6a5e6f49fd4cab2f27d8cfa26d41698b
SHA256sum: 700f4da3c1671e72c43895fe0bcaa18a94c881d3096c9acc3d88aee845454dd0
Description: Translation for luci-app-voice-core - украї́нська (Ukrainian)
Package: luci-i18n-voice-core-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-voice-core-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1154
MD5Sum: 1697ab71aa6f7fabba6b4eb173629151
SHA256sum: b568f6134e9b3f1033a98265ba43f191c487177cf433fd80d56e6b2a562dea77
Description: Translation for luci-app-voice-core - Tiếng Việt (Vietnamese)
Package: luci-i18n-voice-core-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 429
Filename: luci-i18n-voice-core-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1240
MD5Sum: d58bc30b1795e18a157e00098beab25f
SHA256sum: 9cce9cd7ac5be988f02c4d870da4336f4108b27e742c85a29831c65fce829a18
Description: Translation for luci-app-voice-core - 普通话 (Chinese)
Package: luci-i18n-voice-core-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-core
Source: feeds/luci/applications/luci-app-voice-core
Section: luci
Architecture: all
Installed-Size: 438
Filename: luci-i18n-voice-core-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1260
MD5Sum: 7c2514bd49fae6587091d511517f54ee
SHA256sum: 44eca1e45e742a267460c7837ea240ddc3c58c6c3ebca1f594cafc0631e4e7ee
Description: Translation for luci-app-voice-core - 臺灣華語 (Taiwanese)
Package: luci-i18n-voice-diag-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 581
Filename: luci-i18n-voice-diag-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1390
MD5Sum: ca4a21e9906c4a29165d33bdf587ebb2
SHA256sum: b0c427cc498a4f3885b2ca34b23a961e107b693ac0f2ad7634c8f423264873b1
Description: Translation for luci-app-voice-diag - Català (Catalan)
Package: luci-i18n-voice-diag-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 617
Filename: luci-i18n-voice-diag-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1422
MD5Sum: 21190e4082df6a4baacbbc285d88d2ed
SHA256sum: c3e99cfbb841706b9d88afd72520a091a376f4ace89e12ee393b288bbb4da632
Description: Translation for luci-app-voice-diag - Čeština (Czech)
Package: luci-i18n-voice-diag-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 570
Filename: luci-i18n-voice-diag-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1372
MD5Sum: e6b421950dc2c9b3ba6544cfdadd8852
SHA256sum: 5f6c75c521207b2181041655fdd893dca9c6feaea30802be860b6edd4033a552
Description: Translation for luci-app-voice-diag - Deutsch (German)
Package: luci-i18n-voice-diag-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 735
Filename: luci-i18n-voice-diag-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1549
MD5Sum: 0a29850cd524baab1624d8489f631809
SHA256sum: 2f69c92c2f24a7c6052a74e0c7ef1eaa84cbba02f104840ff00181bbeecf9526
Description: Translation for luci-app-voice-diag - Ελληνικά (Greek)
Package: luci-i18n-voice-diag-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 470
Filename: luci-i18n-voice-diag-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1266
MD5Sum: 15349b13e5d7a4a5f13c7a888c238587
SHA256sum: 7c7109cbed6b45b11e9650cd71b592437f56aa4e9da53664df8774064039a4ef
Description: Translation for luci-app-voice-diag - English
Package: luci-i18n-voice-diag-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 604
Filename: luci-i18n-voice-diag-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1409
MD5Sum: f14fac47f1c2ed2b41698fdc2255ceea
SHA256sum: afc77af0dca31685321687e66efa74629bb4f371f1bd6594653164b3d4c41d03
Description: Translation for luci-app-voice-diag - Español (Spanish)
Package: luci-i18n-voice-diag-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 565
Filename: luci-i18n-voice-diag-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1373
MD5Sum: 86a46faa31c91817352d239720977bc5
SHA256sum: 618046dc55e99783f2bb5eacf096ea4a6f4572b518f53037eb4aba241cced06e
Description: Translation for luci-app-voice-diag - Français (French)
Package: luci-i18n-voice-diag-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 340
Filename: luci-i18n-voice-diag-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1153
MD5Sum: c32906cf6fb39b3798e2675f78a75b31
SHA256sum: 5639f0a9291b2587d30d55a408c1232314a6d6514de823d0d54da4c15d0fe727
Description: Translation for luci-app-voice-diag - עִבְרִית (Hebrew)
Package: luci-i18n-voice-diag-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 616
Filename: luci-i18n-voice-diag-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1423
MD5Sum: 2fac857675880612f8181294698df341
SHA256sum: 964bc6682e0dc788e725efb3ce60cd5f4b3fcc571bf5616acae5b48474c87c5f
Description: Translation for luci-app-voice-diag - Magyar (Hungarian)
Package: luci-i18n-voice-diag-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 573
Filename: luci-i18n-voice-diag-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1374
MD5Sum: 6fcf8e5bb9f1682f7218538ae3a9a0f5
SHA256sum: bf010ba6a2c49b58779d380101222ab4298a9175e77f58625511eab9b5399e5f
Description: Translation for luci-app-voice-diag - Italiano (Italian)
Package: luci-i18n-voice-diag-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-voice-diag-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: 6669e7933bcffdc977d1e218bdd10b80
SHA256sum: e20b54169bde5b0891bff48439e1cf39b259442e7053258e9831fad214d43c2f
Description: Translation for luci-app-voice-diag - 日本語 (Japanese)
Package: luci-i18n-voice-diag-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 325
Filename: luci-i18n-voice-diag-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1128
MD5Sum: 702c990426eb876cb6f625d741deef4a
SHA256sum: 81306ed9918e6fa517d22446898f372aa27e041f8aa8756e69493702c3256cbd
Description: Translation for luci-app-voice-diag - Bahasa Melayu (Malay)
Package: luci-i18n-voice-diag-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 587
Filename: luci-i18n-voice-diag-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1392
MD5Sum: 35368db7a0403b78b0e77d8b6052a478
SHA256sum: 194f43b8cab56c1010315c8d66c18cd8926797b8a1c939bf2a656d97a16b887a
Description: Translation for luci-app-voice-diag - Norsk (Norwegian)
Package: luci-i18n-voice-diag-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 572
Filename: luci-i18n-voice-diag-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1374
MD5Sum: bb8b9ece4d66f17b29d80a33aec875d1
SHA256sum: a008311af8ee24c0458e0fc4a4ed85093f75bea26772b4641ee0eebd3f2da551
Description: Translation for luci-app-voice-diag - Polski (Polish)
Package: luci-i18n-voice-diag-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 614
Filename: luci-i18n-voice-diag-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1437
MD5Sum: b2fd180036654424ea3746ed13ec4cd0
SHA256sum: df755f38c986f372204746db8ac10a2c3135e6f2b3439a4fa9de0185340aeb4a
Description: Translation for luci-app-voice-diag - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-voice-diag-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 582
Filename: luci-i18n-voice-diag-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1389
MD5Sum: a07353f71a99bf75dcc8a852f71d2245
SHA256sum: 979d547e87fd42921b82a9e95a885ca5c2995e3726116cf1687ef0a98671ab35
Description: Translation for luci-app-voice-diag - Português (Portuguese)
Package: luci-i18n-voice-diag-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 570
Filename: luci-i18n-voice-diag-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1381
MD5Sum: 3b06db89f790738bc81eedd785c870cd
SHA256sum: 41e10ff4ee71eaaafce13b3baa56daeb735b510510acf1a967b04504f5688ec2
Description: Translation for luci-app-voice-diag - Română (Romanian)
Package: luci-i18n-voice-diag-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 657
Filename: luci-i18n-voice-diag-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1476
MD5Sum: 6f1de24beeaf6c336f69106b8d15a43b
SHA256sum: a3aa16eb1853485d0c36025786370cc0215020690b76b7fb5bb965175badb956
Description: Translation for luci-app-voice-diag - Русский (Russian)
Package: luci-i18n-voice-diag-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-voice-diag-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 0ef00b0cba2cebe61419d374f8e3604c
SHA256sum: 08280dd39ac32b6ab2fd712aaf5ffe7e5579921ea9c4f547df7835c0ef24a552
Description: Translation for luci-app-voice-diag - Slovenčina (Slovene)
Package: luci-i18n-voice-diag-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-voice-diag-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: e8787dd73917aaedd66f5616c8fd4c67
SHA256sum: 78c791b33286be3c16281e44076ba3621d90b21765521979b1977cec20cdf522
Description: Translation for luci-app-voice-diag - Svenska (Swedish)
Package: luci-i18n-voice-diag-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-voice-diag-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1129
MD5Sum: 225d489dbd19a17d3f1458283ac1a143
SHA256sum: f3b89bcd1710a14097a773bbe73ce303e7c518ee170793b02868e5272559ea75
Description: Translation for luci-app-voice-diag - Türkçe (Turkish)
Package: luci-i18n-voice-diag-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 683
Filename: luci-i18n-voice-diag-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1519
MD5Sum: 9e3b9ed6c9eb431f71f42dd6a932e3e9
SHA256sum: 100297c55ff710c74ad64a04259e1374eb5701bd2b087bbed8f21e2cffc536f9
Description: Translation for luci-app-voice-diag - украї́нська (Ukrainian)
Package: luci-i18n-voice-diag-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-voice-diag-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1151
MD5Sum: b4b897ecf518159ac5330c637b628336
SHA256sum: cb1e0eab17082f17a3d587f67b695c358799f7b1239b43a34c54252360d688cd
Description: Translation for luci-app-voice-diag - Tiếng Việt (Vietnamese)
Package: luci-i18n-voice-diag-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 577
Filename: luci-i18n-voice-diag-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1391
MD5Sum: 2c44fd54405c02e705dc3de22fa2dca6
SHA256sum: 3a27c37ae4b7c066037158f4cb16628f68f792bc29b1db58db6e28a26dfd0bd7
Description: Translation for luci-app-voice-diag - 普通话 (Chinese)
Package: luci-i18n-voice-diag-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-voice-diag
Source: feeds/luci/applications/luci-app-voice-diag
Section: luci
Architecture: all
Installed-Size: 598
Filename: luci-i18n-voice-diag-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1425
MD5Sum: 42c30d72618e07e2081f9cad8f269893
SHA256sum: 997061e9ddea2cd0e2380cf302a36df49a70a1eea90fd5d5e77c724bf00a10ab
Description: Translation for luci-app-voice-diag - 臺灣華語 (Taiwanese)
Package: luci-i18n-watchcat-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 957
Filename: luci-i18n-watchcat-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1761
MD5Sum: b718b850f3ae45fc7e93c46195ff60ef
SHA256sum: b175ef4bb4a621fd2267d8803abcd0c343d44c3af6632fb71c12904f7326da76
Description: Translation for luci-app-watchcat - Català (Catalan)
Package: luci-i18n-watchcat-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1147
Filename: luci-i18n-watchcat-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1963
MD5Sum: 9ff961af72fb1cf4ef6967009e054516
SHA256sum: cff070b9a6e64ec94f981c7b11c9b865b9949e6c1e16f3e08283edb9393e5945
Description: Translation for luci-app-watchcat - Čeština (Czech)
Package: luci-i18n-watchcat-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1072
Filename: luci-i18n-watchcat-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1878
MD5Sum: 22f4e56e35b7e88f563677c122e9d66b
SHA256sum: 06e12a629344a6fd02ca4cf5b36285a89ca97ecb0507107470497bbb3f5bc8f3
Description: Translation for luci-app-watchcat - Deutsch (German)
Package: luci-i18n-watchcat-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-watchcat-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1146
MD5Sum: 56915ac47ecdd937b64bc1d30566856a
SHA256sum: 9541c9bdb13f8bb9a611d39c8b5731023925e5ac2d417e761be5ea7bbd8dfb30
Description: Translation for luci-app-watchcat - Ελληνικά (Greek)
Package: luci-i18n-watchcat-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 583
Filename: luci-i18n-watchcat-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1379
MD5Sum: 18e66adbd9ecbb049e054e2941a149d8
SHA256sum: 809b283e2e4c6841cbb7bdff1c4585de9c7f58cc86d17b16089dc999324a9056
Description: Translation for luci-app-watchcat - English
Package: luci-i18n-watchcat-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 892
Filename: luci-i18n-watchcat-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1697
MD5Sum: f730d06a8f73b29a155ec62cb67924b9
SHA256sum: 1f9276e476706adf0ee2e0c4ecf77ad7c18ae39d5fa2015a7be1dec325bb0265
Description: Translation for luci-app-watchcat - Español (Spanish)
Package: luci-i18n-watchcat-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-watchcat-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1121
MD5Sum: cc355223bea60a843cb3b009033b5703
SHA256sum: 8f27085f7d37243176dfa38c8b340afa768b2fe038f0b0685c9409262119c4cc
Description: Translation for luci-app-watchcat - Français (French)
Package: luci-i18n-watchcat-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 337
Filename: luci-i18n-watchcat-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1156
MD5Sum: 298850ed3834ddfbc5ff4df89003a241
SHA256sum: f681954b56332352970555bba0524fd2075e2b403f1bc3a98a279acb0684a77c
Description: Translation for luci-app-watchcat - עִבְרִית (Hebrew)
Package: luci-i18n-watchcat-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 794
Filename: luci-i18n-watchcat-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1607
MD5Sum: 6e5e818ac9685239532c6fc47e6d6566
SHA256sum: da67a3199789075d40b6fd66004711e28238555589002c1a521a525e9aa2ac83
Description: Translation for luci-app-watchcat - Magyar (Hungarian)
Package: luci-i18n-watchcat-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 967
Filename: luci-i18n-watchcat-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1770
MD5Sum: 546b2d8f8387f99aae0934af573e7d6b
SHA256sum: 4522b9e00387cfde951e5ce1d38583dedc02f3c27153bc9bda769e6ac2b8e096
Description: Translation for luci-app-watchcat - Italiano (Italian)
Package: luci-i18n-watchcat-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1063
Filename: luci-i18n-watchcat-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1885
MD5Sum: 92f464319b9ded2b36df2688ebfe731d
SHA256sum: 317ff2d86d1aad89e7f375137af2b41f7ca0913bb51c9237417126d37a630104
Description: Translation for luci-app-watchcat - 日本語 (Japanese)
Package: luci-i18n-watchcat-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-watchcat-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: c710c4e890f35d26e5c634c772bf1999
SHA256sum: c43fb491cf4e6dd984654b40840664d11d5dfdc9dc419010b9f1c58580ad62c2
Description: Translation for luci-app-watchcat - Bahasa Melayu (Malay)
Package: luci-i18n-watchcat-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 319
Filename: luci-i18n-watchcat-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1111
MD5Sum: 253f137281e936f2ecd74ed3fe2719eb
SHA256sum: 513ae7222dfc0def1caba5f07549eea34dcb409967ce3d452b9b30ceac55eacd
Description: Translation for luci-app-watchcat - Norsk (Norwegian)
Package: luci-i18n-watchcat-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1007
Filename: luci-i18n-watchcat-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1808
MD5Sum: 4cc6f377863efcd93d25dfda747f0814
SHA256sum: 7f5a348f9b2f8af4d43ef00cabd2db9b1fb49de712599d1ee8f51bbf87ce04e6
Description: Translation for luci-app-watchcat - Polski (Polish)
Package: luci-i18n-watchcat-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1037
Filename: luci-i18n-watchcat-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1861
MD5Sum: a05627667e938eaa5f8b2f95ca574d8b
SHA256sum: cf2b2f9342e1921236d8987d7fa8df5f99d56408f530cc7aa9be6f67b5d023b5
Description: Translation for luci-app-watchcat - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-watchcat-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 476
Filename: luci-i18n-watchcat-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1280
MD5Sum: 0f5f43a9c3af4138ea4d2157d240bc55
SHA256sum: 2b15828fbb13e28993ba3f531981c6ee55a07a06b6dd270dcbe689e54b972fd6
Description: Translation for luci-app-watchcat - Português (Portuguese)
Package: luci-i18n-watchcat-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 390
Filename: luci-i18n-watchcat-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1190
MD5Sum: 40cadcfbc519e30b2099bb3dbaf12760
SHA256sum: f8fe03012275c3a50337e457aaa9238f441659e2302404c654b1aacc67363d25
Description: Translation for luci-app-watchcat - Română (Romanian)
Package: luci-i18n-watchcat-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1192
Filename: luci-i18n-watchcat-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 2023
MD5Sum: daf6c04901cbea1aa9fbcbf769e99ae7
SHA256sum: 96f57736a8e78931705b7d495dc567592488d8d07a0041c726155a7ede55cc68
Description: Translation for luci-app-watchcat - Русский (Russian)
Package: luci-i18n-watchcat-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-watchcat-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 06e0e795b5f55efd46745951cb2a3664
SHA256sum: 0efe0be94ced61d59c33fd4bb762d126d931b4de3f47e798eeb6e50a088ef020
Description: Translation for luci-app-watchcat - Slovenčina (Slovene)
Package: luci-i18n-watchcat-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-watchcat-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: b8a840b918c59f46f4f83ee7eb98d876
SHA256sum: 598546527fa01409786702bd36a255f3770639348dedf6160c7dacb8cd4cc20b
Description: Translation for luci-app-watchcat - Svenska (Swedish)
Package: luci-i18n-watchcat-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 324
Filename: luci-i18n-watchcat-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1122
MD5Sum: faa5c01365283ad3ba644498edc08dbc
SHA256sum: a810b6848db00cefc411b690bc25b25cd5a4c43c15391c25bb7a9e0651c081ed
Description: Translation for luci-app-watchcat - Türkçe (Turkish)
Package: luci-i18n-watchcat-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 765
Filename: luci-i18n-watchcat-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1601
MD5Sum: 9bddb72d59924af701ac292f87eaea91
SHA256sum: 747679c6417a2aff0e568b13971f6430bc7c708f94ac06565226e142acf75863
Description: Translation for luci-app-watchcat - украї́нська (Ukrainian)
Package: luci-i18n-watchcat-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-watchcat-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1148
MD5Sum: e63d2646291d34612967c2474e65ce3b
SHA256sum: 3d971b2b6025fcedf7cec728e9b37adfc0007629042c4287f89bcc1e755faff3
Description: Translation for luci-app-watchcat - Tiếng Việt (Vietnamese)
Package: luci-i18n-watchcat-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1015
Filename: luci-i18n-watchcat-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1838
MD5Sum: 2d2cc83af5a6026a367e00b5c4c66e70
SHA256sum: 71cae7ee5e553d24951f9d3774500c6bd28608b84bca47ce3f3c0e4840bbe871
Description: Translation for luci-app-watchcat - 普通话 (Chinese)
Package: luci-i18n-watchcat-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-watchcat
Source: feeds/luci/applications/luci-app-watchcat
Section: luci
Architecture: all
Installed-Size: 1019
Filename: luci-i18n-watchcat-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1856
MD5Sum: b810a712d6ac7c01f9b395f5eb1bb7b2
SHA256sum: c047c3c3d169e6a1bc1ef215052c6b8741b016a207f0a93def93d1582ce2a191
Description: Translation for luci-app-watchcat - 臺灣華語 (Taiwanese)
Package: luci-i18n-wol-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 814
Filename: luci-i18n-wol-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1613
MD5Sum: 604e938ef8233d4b5fe23aa19b808cdf
SHA256sum: 49361d8826c8ad67a4f1a4ce2dc2b8f9814f7f2c1db0dada564cc44b312d6327
Description: Translation for luci-app-wol - Català (Catalan)
Package: luci-i18n-wol-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 891
Filename: luci-i18n-wol-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1705
MD5Sum: 5e106d4f907b798b939dc46648902311
SHA256sum: 0ce001bba4cd778cae4b7b10686417418826c1db22e2016099dcab8a6a601940
Description: Translation for luci-app-wol - Čeština (Czech)
Package: luci-i18n-wol-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 826
Filename: luci-i18n-wol-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1624
MD5Sum: 9c588a64fbe3da06b24411051bb8a0a6
SHA256sum: 832c13c4fd742bd83e674a949b083e5f2cb8abf2725d58d4097af4540349f318
Description: Translation for luci-app-wol - Deutsch (German)
Package: luci-i18n-wol-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 330
Filename: luci-i18n-wol-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1139
MD5Sum: 3db9427dfa02e9aefab99c299d188f78
SHA256sum: 7c309be906e253a7746ac1883ad1817bbfa76014440bc9d86d5f6f45bce66b28
Description: Translation for luci-app-wol - Ελληνικά (Greek)
Package: luci-i18n-wol-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 409
Filename: luci-i18n-wol-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1197
MD5Sum: d2f8b452bb5c409b1eed0e6197106043
SHA256sum: d1d434dff17693f7a9e776f42e8644247ec428ca93188b6a35538b5c59cad7d1
Description: Translation for luci-app-wol - English
Package: luci-i18n-wol-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 793
Filename: luci-i18n-wol-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1595
MD5Sum: 5cb035faf545f73c316361713fec2744
SHA256sum: a45e9a89d284f7b0328fb143442205006c7dfe8e0da68b4e7a6ade882f2036f3
Description: Translation for luci-app-wol - Español (Spanish)
Package: luci-i18n-wol-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 832
Filename: luci-i18n-wol-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1641
MD5Sum: 068f57206a972ac9707cb70c549bf5a4
SHA256sum: fabd394fb103323d2423c9b33ec47ae1fd84d072de45d30cc13022b7125f964a
Description: Translation for luci-app-wol - Français (French)
Package: luci-i18n-wol-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 334
Filename: luci-i18n-wol-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: 4ea1c20dc522f09e975f10a72b5a48a8
SHA256sum: 5507a8a320b839ed35c4e444220792d53c4eb7a884a44b28f329806163252dc8
Description: Translation for luci-app-wol - עִבְרִית (Hebrew)
Package: luci-i18n-wol-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 836
Filename: luci-i18n-wol-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1640
MD5Sum: f5556868f1f22fd3f0a9d0a54156ee3c
SHA256sum: 745faff29d85ea11a0cbd1c45ed3555e55592b78aee05eaf2007c5a10c861074
Description: Translation for luci-app-wol - Magyar (Hungarian)
Package: luci-i18n-wol-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 805
Filename: luci-i18n-wol-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1602
MD5Sum: d8ba8df9454a05dc10942d0d95ba6cd8
SHA256sum: 5e3f79158229a234da04b8d35ef9898ca21db66217a089e662bfe5916c63bdc6
Description: Translation for luci-app-wol - Italiano (Italian)
Package: luci-i18n-wol-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 895
Filename: luci-i18n-wol-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1717
MD5Sum: b1b602d7ec871f8e1694c1cb1c1fb357
SHA256sum: b0c0197d102349fd81fdaf69452b7836832746f7684c151326e3a83de5a657fd
Description: Translation for luci-app-wol - 日本語 (Japanese)
Package: luci-i18n-wol-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 318
Filename: luci-i18n-wol-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: d4bb3b49a1f966e367b048ede5300db8
SHA256sum: 8b8e61019423b5d4232231def9eea35dfc4ef681f8986d454aaba8bda666c39d
Description: Translation for luci-app-wol - Bahasa Melayu (Malay)
Package: luci-i18n-wol-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 792
Filename: luci-i18n-wol-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1592
MD5Sum: 76fb3d0843a287405c411d1dec72d0aa
SHA256sum: e0acf72e59b940a13dba360367655922de8781a3e9224846fed516630707bc88
Description: Translation for luci-app-wol - Norsk (Norwegian)
Package: luci-i18n-wol-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 825
Filename: luci-i18n-wol-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1627
MD5Sum: d7b2e0a9ac717efce46d1454f57cb2bc
SHA256sum: ae9704e72a4185f65845f2665c29a438cd4a837558d934076f9234276a05f676
Description: Translation for luci-app-wol - Polski (Polish)
Package: luci-i18n-wol-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 812
Filename: luci-i18n-wol-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1638
MD5Sum: 8922017085b6c74610f2398716dd8d7a
SHA256sum: 29f1a7a0c79fd703b1a030b74f92b1274e1a7da27bafe9e3cb5c5120c401d6be
Description: Translation for luci-app-wol - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-wol-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 778
Filename: luci-i18n-wol-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1583
MD5Sum: f673ac771a768f37b972a57ceeb6cec8
SHA256sum: 00ba18869621591d54b704c26a074cd90600179bc4d02a648c4b285b13510a10
Description: Translation for luci-app-wol - Português (Portuguese)
Package: luci-i18n-wol-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 804
Filename: luci-i18n-wol-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1613
MD5Sum: 6fa03d8714b45e54329654b48581eff4
SHA256sum: c5e52d287da5f7124735b31b5fd788c1320bf21132aacd6fc76994c982587379
Description: Translation for luci-app-wol - Română (Romanian)
Package: luci-i18n-wol-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 1060
Filename: luci-i18n-wol-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1885
MD5Sum: 5520894b5f7cdc5cf309c30ac634f6b5
SHA256sum: f44e228351787fe925affaefa3ed091fe54770fea2527e79015418533e104953
Description: Translation for luci-app-wol - Русский (Russian)
Package: luci-i18n-wol-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 317
Filename: luci-i18n-wol-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1110
MD5Sum: aa1dfa38a26ff3e4307ba1318b277723
SHA256sum: d2459eacfdf1b1c685fc6348db41d09f3ab792c0410f5d4accd07a8779a2ea12
Description: Translation for luci-app-wol - Slovenčina (Slovene)
Package: luci-i18n-wol-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 315
Filename: luci-i18n-wol-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1105
MD5Sum: 16efec794edaa115bc67ab323fa82df8
SHA256sum: 0ae95d0f47da7f4e2a991942be2c040dfb4ed33595b8203017de5f75dc11d9e1
Description: Translation for luci-app-wol - Svenska (Swedish)
Package: luci-i18n-wol-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 321
Filename: luci-i18n-wol-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 4324c6fe11698c493e9c2ef12f0f9633
SHA256sum: 9e67c5200fdd7c3c9b61090d4c1a8aa236ac8b053b988025cc4b5df9d790dadf
Description: Translation for luci-app-wol - Türkçe (Turkish)
Package: luci-i18n-wol-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 980
Filename: luci-i18n-wol-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1807
MD5Sum: 162be2edcc79384a5a061c6e983f67d2
SHA256sum: 098cc9fa648e3a5dbd42820db557209ab9bf54a010a2436b7eae0753d1bea62b
Description: Translation for luci-app-wol - украї́нська (Ukrainian)
Package: luci-i18n-wol-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 331
Filename: luci-i18n-wol-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1137
MD5Sum: a97e80a797bfed88890b197fc345bdf4
SHA256sum: 11327edf4c1d368f007c3791e5fd4d9b0e2baa9fa4406ea5981355a43cdc8ad0
Description: Translation for luci-app-wol - Tiếng Việt (Vietnamese)
Package: luci-i18n-wol-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 834
Filename: luci-i18n-wol-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1654
MD5Sum: 98021190dd0c94537640f1e266fd3b6b
SHA256sum: 27d2ac08089ac5d8aa8c2c8798485dd905310b479a0a605bbdc94af3903678cf
Description: Translation for luci-app-wol - 普通话 (Chinese)
Package: luci-i18n-wol-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wol
Source: feeds/luci/applications/luci-app-wol
Section: luci
Architecture: all
Installed-Size: 856
Filename: luci-i18n-wol-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1685
MD5Sum: 1350f139a15e4f05c4b69f209a5d2c89
SHA256sum: ad0e5fc9c72a270014ec5c20b43eb509c240d03d480eb2b4fa4f15d8938ab4e5
Description: Translation for luci-app-wol - 臺灣華語 (Taiwanese)
Package: luci-i18n-wshaper-ca
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 805
Filename: luci-i18n-wshaper-ca_git-15.079.29361-3e37216-1_all.ipk
Size: 1621
MD5Sum: 44e16e26c8671d585bc39bc3853b6ef2
SHA256sum: de5a0f546297b43a220f129f2d1b7f0285f2ce5cdab7632c9864b63c2d7b7f50
Description: Translation for luci-app-wshaper - Català (Catalan)
Package: luci-i18n-wshaper-cs
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 899
Filename: luci-i18n-wshaper-cs_git-15.079.29361-3e37216-1_all.ipk
Size: 1710
MD5Sum: f1b8e83446ae2247600330580577c613
SHA256sum: f460a7f907b7b8aa6cc4047a1df33a29d8dfe7f8cd8a94022f45f68eb578d4d6
Description: Translation for luci-app-wshaper - Čeština (Czech)
Package: luci-i18n-wshaper-de
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 813
Filename: luci-i18n-wshaper-de_git-15.079.29361-3e37216-1_all.ipk
Size: 1615
MD5Sum: 332a82c0f232e20e8dad68ac9ac328ca
SHA256sum: 42729de229acef052c5f60ad76f7b0a684130a2ad843c3216b74c6f158a37917
Description: Translation for luci-app-wshaper - Deutsch (German)
Package: luci-i18n-wshaper-el
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 406
Filename: luci-i18n-wshaper-el_git-15.079.29361-3e37216-1_all.ipk
Size: 1214
MD5Sum: 35d31e1826d22300463aedc642efb168
SHA256sum: 2f2e45e248f1b85b9be2af472e23be49c7af2815993bcbd9efdcc79b462d89d2
Description: Translation for luci-app-wshaper - Ελληνικά (Greek)
Package: luci-i18n-wshaper-en
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 307
Filename: luci-i18n-wshaper-en_git-15.079.29361-3e37216-1_all.ipk
Size: 1094
MD5Sum: e2e44c0f0eae7c88233b6d88d3fa12d8
SHA256sum: d17a590c5fff409544dcd824c75896b73f1a17c40dd7039b001a6ebfe16de38d
Description: Translation for luci-app-wshaper - English
Package: luci-i18n-wshaper-es
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 794
Filename: luci-i18n-wshaper-es_git-15.079.29361-3e37216-1_all.ipk
Size: 1605
MD5Sum: c60ca4166a586115c7f0846b1f562d02
SHA256sum: abca829d89fbc17eb8d7ab2146594ef5b0b2d81917eaa1ad5f8b4e3d5e9a0642
Description: Translation for luci-app-wshaper - Español (Spanish)
Package: luci-i18n-wshaper-fr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 794
Filename: luci-i18n-wshaper-fr_git-15.079.29361-3e37216-1_all.ipk
Size: 1610
MD5Sum: c447996efb4ef7b06712073e16ba0f4b
SHA256sum: 2eff5437155abb1bf0f20f1a76e1c5de961ced54077aed1b64a09f8a61c3e4e6
Description: Translation for luci-app-wshaper - Français (French)
Package: luci-i18n-wshaper-he
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 336
Filename: luci-i18n-wshaper-he_git-15.079.29361-3e37216-1_all.ipk
Size: 1155
MD5Sum: bd4f8333715190088227968dc8d953b4
SHA256sum: 69fd1e0c8e2474850ad55dc2cb84f6d12b480d71903f1e8eeff09cc719d988dd
Description: Translation for luci-app-wshaper - עִבְרִית (Hebrew)
Package: luci-i18n-wshaper-hu
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 826
Filename: luci-i18n-wshaper-hu_git-15.079.29361-3e37216-1_all.ipk
Size: 1636
MD5Sum: 3996a88b243406a371a7109f85f76809
SHA256sum: 7922626102bdb2cc6221ee836d079052f6754f37ce61682f5a9e08e28075ae73
Description: Translation for luci-app-wshaper - Magyar (Hungarian)
Package: luci-i18n-wshaper-it
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 782
Filename: luci-i18n-wshaper-it_git-15.079.29361-3e37216-1_all.ipk
Size: 1584
MD5Sum: 480e68573bc3645e60b3a15bd4acddf0
SHA256sum: 03445d24c83e0cdc15ef22dc8a80df3441e77e344bbd7036178262c63e08f1d6
Description: Translation for luci-app-wshaper - Italiano (Italian)
Package: luci-i18n-wshaper-ja
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 881
Filename: luci-i18n-wshaper-ja_git-15.079.29361-3e37216-1_all.ipk
Size: 1709
MD5Sum: 56e9d4900e5683e38e80166baaf7f82e
SHA256sum: 9d4d4db6fbb9925089c64bcfc902c8a169561394adda9f35937b9179be7cf6fb
Description: Translation for luci-app-wshaper - 日本語 (Japanese)
Package: luci-i18n-wshaper-ms
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 320
Filename: luci-i18n-wshaper-ms_git-15.079.29361-3e37216-1_all.ipk
Size: 1113
MD5Sum: 569e8c253771c446052da55999bca985
SHA256sum: d93716f23e9e2ece26b57765a73fa5984dd781e09fc2a555b0dcb00e290d9953
Description: Translation for luci-app-wshaper - Bahasa Melayu (Malay)
Package: luci-i18n-wshaper-no
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-wshaper-no_git-15.079.29361-3e37216-1_all.ipk
Size: 1106
MD5Sum: c6c946a00b9199cc867547d8f8345523
SHA256sum: 494ee57b5a75309193ada230bebf1cf961b55b9dec144190bc42fa2e2902122a
Description: Translation for luci-app-wshaper - Norsk (Norwegian)
Package: luci-i18n-wshaper-pl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 765
Filename: luci-i18n-wshaper-pl_git-15.079.29361-3e37216-1_all.ipk
Size: 1565
MD5Sum: e623dc860cc432b395b798dea1f5ebde
SHA256sum: 7494ef55a8b4546b036f5a411cd14e7854c3668a6a4e12a74284231ea2dcf274
Description: Translation for luci-app-wshaper - Polski (Polish)
Package: luci-i18n-wshaper-pt-br
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 833
Filename: luci-i18n-wshaper-pt-br_git-15.079.29361-3e37216-1_all.ipk
Size: 1661
MD5Sum: ffb15cde54d46012a5c68b3aad844bda
SHA256sum: ead2945b14a04b6f48c888de474a0c3f699e795fa2de014f12b31cd396836695
Description: Translation for luci-app-wshaper - Português do Brasil (Brazialian Portuguese)
Package: luci-i18n-wshaper-pt
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 484
Filename: luci-i18n-wshaper-pt_git-15.079.29361-3e37216-1_all.ipk
Size: 1288
MD5Sum: b127502eeb84288f77d2a4af7881c3cc
SHA256sum: d967c6af532b3cea151e72ea6ee75f21c5b3b90d6eea0249f0b2992d0d940b45
Description: Translation for luci-app-wshaper - Português (Portuguese)
Package: luci-i18n-wshaper-ro
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 323
Filename: luci-i18n-wshaper-ro_git-15.079.29361-3e37216-1_all.ipk
Size: 1124
MD5Sum: 3078903554f9393d713bc6baf34ba51b
SHA256sum: 45df22ef756a6d46163520364da2088438b39f3499f0bdaa055c0ebba58d11c7
Description: Translation for luci-app-wshaper - Română (Romanian)
Package: luci-i18n-wshaper-ru
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 945
Filename: luci-i18n-wshaper-ru_git-15.079.29361-3e37216-1_all.ipk
Size: 1765
MD5Sum: d2cf75476689ab729527dbdb1e89acae
SHA256sum: abda089eeddeb86cb831e012488d719bebdfe8002a753bd8777a0d5da5ff67e2
Description: Translation for luci-app-wshaper - Русский (Russian)
Package: luci-i18n-wshaper-sk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-wshaper-sk_git-15.079.29361-3e37216-1_all.ipk
Size: 1119
MD5Sum: 9d8d4dde718ab346d0d7087898c1cf32
SHA256sum: ea3bdf385f876c575588afc8f99cb92fecacaceb9990d7b5469dbb9f5001d987
Description: Translation for luci-app-wshaper - Slovenčina (Slovene)
Package: luci-i18n-wshaper-sv
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 316
Filename: luci-i18n-wshaper-sv_git-15.079.29361-3e37216-1_all.ipk
Size: 1109
MD5Sum: 3b03fc1fe3fcecc02239babac76ae3c6
SHA256sum: eeccdf4d59f4256c5e366af237da96ec1708e0fa62c80d81108602c876f18131
Description: Translation for luci-app-wshaper - Svenska (Swedish)
Package: luci-i18n-wshaper-tr
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 322
Filename: luci-i18n-wshaper-tr_git-15.079.29361-3e37216-1_all.ipk
Size: 1123
MD5Sum: 735ab939daaceacb4b9186177b9078c7
SHA256sum: ad22874b608a3b0ed0a6513f1b3d6946e9b2e933826fa01c3ae2fa2e6bd37590
Description: Translation for luci-app-wshaper - Türkçe (Turkish)
Package: luci-i18n-wshaper-uk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 946
Filename: luci-i18n-wshaper-uk_git-15.079.29361-3e37216-1_all.ipk
Size: 1782
MD5Sum: 65228e9473a73f87c0e66abeb0b7ccf3
SHA256sum: a844ae5667f3e855e9f94dd40a0475ccb3389b439c0dfc1482762808e0d588e9
Description: Translation for luci-app-wshaper - украї́нська (Ukrainian)
Package: luci-i18n-wshaper-vi
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 333
Filename: luci-i18n-wshaper-vi_git-15.079.29361-3e37216-1_all.ipk
Size: 1145
MD5Sum: bf3a8ba0704f909a64d00472753ed904
SHA256sum: 3274370bd6ae8df89970a3ce1c1866097d97828c8060ed7cff77e4b0d42bfe81
Description: Translation for luci-app-wshaper - Tiếng Việt (Vietnamese)
Package: luci-i18n-wshaper-zh-cn
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 799
Filename: luci-i18n-wshaper-zh-cn_git-15.079.29361-3e37216-1_all.ipk
Size: 1610
MD5Sum: 1bf07f458d7a8a4442ef2f1905408930
SHA256sum: 2162a8807767f6358ff3ad801067a6b632967278635870154c1722d1a75d8236
Description: Translation for luci-app-wshaper - 普通话 (Chinese)
Package: luci-i18n-wshaper-zh-tw
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-app-wshaper
Source: feeds/luci/applications/luci-app-wshaper
Section: luci
Architecture: all
Installed-Size: 866
Filename: luci-i18n-wshaper-zh-tw_git-15.079.29361-3e37216-1_all.ipk
Size: 1701
MD5Sum: e7eb2ba20c0cf25d8dd58b2c61a75d60
SHA256sum: 071626e1f7b033f98ea9ed1d555079ab34a3d1b279bbddf67b35f57e45691be7
Description: Translation for luci-app-wshaper - 臺灣華語 (Taiwanese)
Package: luci-lib-httpclient
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base, luci-lib-nixio
Source: feeds/luci/libs/luci-lib-httpclient
Section: luci
Architecture: all
Installed-Size: 4826
Filename: luci-lib-httpclient_git-15.079.29361-3e37216-1_all.ipk
Size: 5506
MD5Sum: 87f63221a7e0abb91dcb1f71258e3279
SHA256sum: 8046fbd81515fe60351cd839c4aa4c69ed5b5891d9927b838b13bf59190f1de8
Description: HTTP(S) client library
Package: luci-lib-ip
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua, libnl-tiny
Source: feeds/luci/libs/luci-lib-ip
Section: luci
Architecture: ramips_24kec
Installed-Size: 9386
Filename: luci-lib-ip_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 10091
MD5Sum: 9d79be209ef76b1806bbce879b383094
SHA256sum: 6e977a190474b8585de8edbe90d23b67534bbbad2287cf5d87fec511f9741e3a
Description: Lua library for IP calculation and routing information
Package: luci-lib-json
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/libs/luci-lib-json
Section: luci
Architecture: all
Installed-Size: 3111
Filename: luci-lib-json_git-15.079.29361-3e37216-1_all.ipk
Size: 3802
MD5Sum: f5d1cf0b61b7da6f343af74082739c20
SHA256sum: b4a38429c45518071c393c62a6252af30fb7c43bd447659a1ddcaf1e5ec3b25e
Description: LuCI JSON library
Package: luci-lib-jsonc
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua, libjson-c
Source: feeds/luci/libs/luci-lib-jsonc
Section: luci
Architecture: ramips_24kec
Installed-Size: 3783
Filename: luci-lib-jsonc_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 4480
MD5Sum: 65bbb19d9126389be3b20d6493eec956
SHA256sum: d02b33b6dbc7c7e603e30c31825acc21e6ad6d1214ff335aaad83fc6a4aae2f8
Description: Lua binding for JSON-C
Package: luci-lib-luaneightbl
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua
Source: feeds/luci/libs/luci-lib-luaneightbl
Section: luci
Architecture: ramips_24kec
Installed-Size: 2342
Filename: luci-lib-luaneightbl_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 3075
MD5Sum: 4b727f5a3f8d065358c6fc2dccd126f8
SHA256sum: 273f2c744ae00f5d545e164ccaaeaf84cb36b0ae032fe24dca13560f3fcd9bb0
Description: neightbl - Lua lib for IPv6 neighbors
Package: luci-lib-nixio
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua
Source: feeds/luci/libs/luci-lib-nixio
Section: luci
Architecture: ramips_24kec
Installed-Size: 29094
Filename: luci-lib-nixio_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 29691
MD5Sum: e82c9da862d684f9e7fdab1a8be325df
SHA256sum: ff237ddd0d1365464121eb45452368a210dcc5fdd9e18a1179d4636e456f5566
Description: NIXIO POSIX library
Package: luci-lib-px5g
Version: git-15.079.29361-3e37216-1
Depends: libc, liblua
Source: feeds/luci/libs/luci-lib-px5g
Section: luci
Architecture: ramips_24kec
Installed-Size: 28575
Filename: luci-lib-px5g_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 29293
MD5Sum: f706f614a5c4d7449cc164e0df8f3341
SHA256sum: d6ac79a38c563bc59bfafd949f4f7e62c493ff9514c6b5a41afc314e31a97284
Description: RSA/X.509 Key Generator (required for LuCId SSL support)
Package: luci-mod-admin-full
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base, libubus-lua
Source: feeds/luci/modules/luci-mod-admin-full
Section: luci
Architecture: ramips_24kec
Installed-Size: 67543
Filename: luci-mod-admin-full_git-15.079.29361-3e37216-1_ramips_24kec.ipk
Size: 68401
MD5Sum: 205dc9c5f653ff27b987016169b48849
SHA256sum: 81b8d10e0571187e19ec7ff901911843f19ea07c86813b2cedb63dd50dd0a8b1
Description: LuCI Administration - full-featured for full control
Package: luci-mod-failsafe
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-base
Source: feeds/luci/modules/luci-mod-failsafe
Section: luci
Architecture: all
Installed-Size: 3932
Filename: luci-mod-failsafe_git-15.079.29361-3e37216-1_all.ipk
Size: 4654
MD5Sum: 9b6d4f5212c86c58a0aa9e4307ff1f50
SHA256sum: be54f751010a6472739cf78b2c4ac00a61656a5fc5004bbb4d3777c87c47be0c
Description: LuCI Fail-Safe - Fail-Safe sysupgrade module
Package: luci-mod-freifunk-community
Version: git-15.079.29361-3e37216-1
Depends: libc, iptables-mod-nat-extra, iptables-mod-ipopt, luci-app-splash, olsrd, olsrd-mod-dyn-gw-plain, olsrd-mod-jsoninfo, olsrd-mod-nameservice, olsrd-mod-watchdog, kmod-tun, ip, freifunk-watchdog, luci-app-olsr, luci-app-olsr-services, freifunk-gwcheck, freifunk-mapupdate
Source: feeds/luci/modules/luci-mod-freifunk-community
Section: luci
Architecture: all
Installed-Size: 105
Filename: luci-mod-freifunk-community_git-15.079.29361-3e37216-1_all.ipk
Size: 903
MD5Sum: 87744bb0f381900a744a35396b5e8363
SHA256sum: 7e8553a76bb9e061d974455a9f0247a0c938a85aa752ff36ec690d420d383799
Description: Freifunk Community Meta-Package
Package: luci-mod-freifunk
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-mod-admin-full, luci-lib-json, freifunk-firewall, freifunk-common
Source: feeds/luci/modules/luci-mod-freifunk
Section: luci
Architecture: all
Installed-Size: 19613
Filename: luci-mod-freifunk_git-15.079.29361-3e37216-1_all.ipk
Size: 20381
MD5Sum: 2ed47ce295bbc84cd7ad1d7768617665
SHA256sum: 8dd71d3f0553aac919defcdccaeb1c07086ba4120552e9494528daf3e196ed92
Description: LuCI Freifunk module
Package: luci-mod-rpc
Version: git-15.079.29361-3e37216-1
Depends: libc, luci-lib-json
Source: feeds/luci/modules/luci-mod-rpc
Section: luci
Architecture: all
Installed-Size: 2570
Filename: luci-mod-rpc_git-15.079.29361-3e37216-1_all.ipk
Size: 3266
MD5Sum: 4e7ad77be5a47acf08fc39bd91792005
SHA256sum: 0134bbcaeae6ddf0f3b7d9563858a43e0e8a9f4ac3dfa3bbee0001ef53897bb9
Description: LuCI RPC - JSON-RPC API
Package: luci-proto-3g
Version: git-15.079.29361-3e37216-1
Depends: libc, comgt
Source: feeds/luci/protocols/luci-proto-3g
Section: luci
Architecture: all
Installed-Size: 1690
Filename: luci-proto-3g_git-15.079.29361-3e37216-1_all.ipk
Size: 2401
MD5Sum: 0db5bcb732fdf9df030c170e78815744
SHA256sum: 0de2fcd7eb6de298f792fdb008a4d6750bd98f50cd3ebbbba18fbcb077585f1f
Description: Support for 3G
Package: luci-proto-ipv6
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/protocols/luci-proto-ipv6
Section: luci
Architecture: all
Installed-Size: 4363
Filename: luci-proto-ipv6_git-15.079.29361-3e37216-1_all.ipk
Size: 5061
MD5Sum: 0d0ef3ec94c564a3e3d4026f9dbb9b6a
SHA256sum: 1d13c2ced8164631dcedc57b554472d80956de89bac9bec9f9ab4c11b8913535
Description: Support for DHCPv6/6in4/6to4/6rd/DS-Lite/aiccu
Package: luci-proto-openconnect
Version: git-15.079.29361-3e37216-1
Depends: libc, openconnect
Source: feeds/luci/protocols/luci-proto-openconnect
Section: luci
Architecture: all
Installed-Size: 1284
Filename: luci-proto-openconnect_git-15.079.29361-3e37216-1_all.ipk
Size: 2006
MD5Sum: 8b4813276641779d0c67802d9f044691
SHA256sum: c9c54c5f8c8a9f5fa09dcc2af67f991f3a8937456cfecc56a5ade430b2f40539
Description: Support for OpenConnect VPN
Package: luci-proto-ppp
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/protocols/luci-proto-ppp
Section: luci
Architecture: all
Installed-Size: 2624
Filename: luci-proto-ppp_git-15.079.29361-3e37216-1_all.ipk
Size: 3329
MD5Sum: f8be237803c7cc9aa78ed0caef5738c4
SHA256sum: 1d97a0c3b95649d7eac5844576b8c337fe5b2e05c8f712f4e9015bb94f719701
Description: Support for PPP/PPPoE/PPPoA/PPtP
Package: luci-proto-relay
Version: git-15.079.29361-3e37216-1
Depends: libc, relayd
Source: feeds/luci/protocols/luci-proto-relay
Section: luci
Architecture: all
Installed-Size: 1840
Filename: luci-proto-relay_git-15.079.29361-3e37216-1_all.ipk
Size: 2537
MD5Sum: c763de31053010ae476d2ce5d67dc2fd
SHA256sum: 9f9f64d74abe2e93dd8185cb90f7e059d983e9433b1eb7d01cd75a16847e638d
Description: Support for relayd pseudo bridges
Package: luci-ssl
Version: git-15.079.29361-3e37216-1
Depends: libc, luci, libustream-polarssl, px5g
Source: feeds/luci/collections/luci-ssl
Section: luci
Architecture: all
Installed-Size: 105
Filename: luci-ssl_git-15.079.29361-3e37216-1_all.ipk
Size: 813
MD5Sum: e3f8779df572be627d2066f6d06fd00d
SHA256sum: 83d9ae6bbcdf9db212af122e68b625b04ca35acefb96aeb5ff0e38887270edb0
Description: Standard OpenWrt set with HTTPS support
Package: luci-theme-bootstrap
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-bootstrap
Section: luci
Architecture: all
Installed-Size: 13044
Filename: luci-theme-bootstrap_git-15.079.29361-3e37216-1_all.ipk
Size: 13764
MD5Sum: 29ec8ec07767c46e43429480d94fbe5d
SHA256sum: a81f73dfd3a807c7a5a94e1bb346fe12920b77b1ed1289dd0b89dabdaf1475d3
Description: Bootstrap Theme (default)
Package: luci-theme-freifunk-bno
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-freifunk-bno
Section: luci
Architecture: all
Installed-Size: 15495
Filename: luci-theme-freifunk-bno_git-15.079.29361-3e37216-1_all.ipk
Size: 16219
MD5Sum: 608f16be5bf050964b0f169f5c735d7b
SHA256sum: 2d929dd8c1962ca5144cde48edc9652cb93f3d4be0b34ca6291216a21f62e318
Description: Freifunk Berlin Nordost Theme
Package: luci-theme-freifunk-generic
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-freifunk-generic
Section: luci
Architecture: all
Installed-Size: 12780
Filename: luci-theme-freifunk-generic_git-15.079.29361-3e37216-1_all.ipk
Size: 13560
MD5Sum: 473bec7d8d05f3ff6359a181280d688c
SHA256sum: 07c3072a0fb946108fa06fe281252f8999195b085b812b18d20ddf22b5b400f5
Description: Freifunk Generic Theme
Package: luci-theme-openwrt
Version: git-15.079.29361-3e37216-1
Depends: libc
Source: feeds/luci/themes/luci-theme-openwrt
Section: luci
Architecture: all
Installed-Size: 6975
Filename: luci-theme-openwrt_git-15.079.29361-3e37216-1_all.ipk
Size: 7788
MD5Sum: dd83a6029dd504a9eb22ca9a1d7c65f8
SHA256sum: 44c7a04e301a305a427289ce49278f3ef46fe5d45efd04a231919475944f063e
Description: LuCI OpenWrt.org theme
Package: luci
Version: git-15.079.29361-3e37216-1
Depends: libc, uhttpd, uhttpd-mod-ubus, luci-mod-admin-full, luci-theme-bootstrap, luci-app-firewall, luci-proto-ppp, libiwinfo-lua
Source: feeds/luci/collections/luci
Section: luci
Architecture: all
Installed-Size: 105
Filename: luci_git-15.079.29361-3e37216-1_all.ipk
Size: 872
MD5Sum: 95501ee79ff9ad9917ec61d9e1bacab3
SHA256sum: 366e695bdae73895df23d56ffee5bfa3fccde695461ba1687a37b526ac931c67
Description: Standard OpenWrt set including full admin with ppp support and the default Bootstrap theme
Package: meshwizard
Version: 0.1.1
Depends: libc, firewall
Source: feeds/luci/contrib/package/meshwizard
Section: luci
Architecture: ramips_24kec
Installed-Size: 12715
Filename: meshwizard_0.1.1_ramips_24kec.ipk
Size: 13444
MD5Sum: 9a5e4aa2e301610031310377b6132b27
SHA256sum: e27c7e965413ef115034a0ab7655d71e844c4aa208609b850c894cb469758203
Description: A shellscript based wizard to simplify the setup of a typical mesh node (e.g. for Freifunk.net)
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: ahcpd
Version: 0.53-2
Depends: libc, kmod-ipv6, ip, librt
Source: feeds/routing/ahcpd
License: MIT
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21601
Filename: ahcpd_0.53-2_ramips_24kec.ipk
Size: 22470
MD5Sum: 3a0e9b4160d013c9c18981b3c5007d35
SHA256sum: 4a5ba15c7aa9b3275a8d3aed1c2a89ea0ee7347e83a033859502b3a08393c5dc
Description: Ahcpd is a daemon for configuring an IPv6 network using the Ad-Hoc
Configuration Protocol (AHCP). AHCP is designed for wireless mesh
networks, where IPv6 autoconfiguration and DHCPv6 do not work, but may
also be used on wired networks.
Package: alfred
Version: 2014.4.0-0
Depends: libc, kmod-ipv6, librt
Source: feeds/routing/alfred
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 19494
Filename: alfred_2014.4.0-0_ramips_24kec.ipk
Size: 20647
MD5Sum: ae05f1a622f9536be2975b2b2798b800
SHA256sum: 62df9389c1ba57220cef22d862f549dd0bf5f9bc8a1f582f4f48f8758a626d65
Description: alfred is a user space daemon for distributing arbitrary local information over
the mesh/network in a decentralized fashion. This data can be anything which
appears to be useful - originally designed to replace the batman-adv
visualization (vis), you may distribute hostnames, phone books, administration
information, DNS information, the local weather forecast ...
alfred runs as daemon in the background of the system. A user may insert
information by using the alfred binary on the command line, or use special
programs to communicate with alfred (done via unix sockets). alfred then takes
care of distributing the local information to other alfred servers on other
nodes. This is done via IPv6 link-local multicast, and does not require any
configuration. A user can request data from alfred, and will receive the
information available from all alfred servers in the network.
Package: babel-pinger
Version: 0.1-1
Depends: libc, librt
Source: feeds/routing/babel-pinger
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3803
Filename: babel-pinger_0.1-1_ramips_24kec.ipk
Size: 4600
MD5Sum: 36254d870bfeef305577698aa4afd4dc
SHA256sum: cb5a67cf7abbdc86cf7d65c7da832e5eda2886e30ae5580b3da91c5f7fcd4af0
Description: Babel-pinger is a hack to export a default route into Babel for people
using DHCP to configure their routers rather than speaking to their
upstream provider with a proper routing protocol.
Package: babeld
Version: 1.5.1-1
Depends: libc, kmod-ipv6, librt
Source: feeds/routing/babeld
License: MIT
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45880
Filename: babeld_1.5.1-1_ramips_24kec.ipk
Size: 46833
MD5Sum: 0c7274b376f2d77fbabcba42f56d6299
SHA256sum: 64bb301cd56b4d9a80a269f6c274272a09efb810fd4f8a148a1ac06f4ffb8df3
Description: Babel is a loop-avoiding distance-vector routing protocol roughly based
on DSDV and AODV, but with provisions for link cost estimation and
redistribution of routes from other routing protocols.
While it is optimised for wireless mesh networks, Babel will also work
efficiently on wired networks. It will generate between 1.2 and 2.4 times
the amount of routing traffic that RIPng would generate, while
never counting to infinity.
Package: babels
Version: 2014-08-09-2598774f6bd7d9225483c48d72733eab5745d14e-1
Depends: libc, kmod-ipv6
Source: feeds/routing/babels
License: MIT
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53544
Filename: babels_2014-08-09-2598774f6bd7d9225483c48d72733eab5745d14e-1_ramips_24kec.ipk
Size: 54689
MD5Sum: 0880d0d9d674949abd4b64a722bb47ea
SHA256sum: 3b6b404aa679ecff3043ce3566144e7ef614e81feffb3b5f50c7e8520888db9e
Description: Babel is a loop-avoiding distance-vector routing protocol roughly based
on DSDV and AODV, but with provisions for link cost estimation and
redistribution of routes from other routing protocols.
While it is optimised for wireless mesh networks, Babel will also work
efficiently on wired networks. It will generate between 1.2 and 2.4 times
the amount of routing traffic that RIPng would generate, while
never counting to infinity.
This is experimental source routing branch, and should be only used if you
know what you are doing.
Package: batctl
Version: 2014.4.0-1
Depends: libc, kmod-batman-adv, libnl-tiny
Source: feeds/routing/batctl
License: GPL-2.0
Section: net
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23314
Filename: batctl_2014.4.0-1_ramips_24kec.ipk
Size: 24097
MD5Sum: 8b62cdab386d9ec9eee1bc22c407aa4d
SHA256sum: 2e6fbdccd0d604a04d804b833c9a9578c54f2f70db9afbb8717dc178bfe23471
Description: batctl is a more intuitive managment utility for B.A.T.M.A.N.-Advanced.
It is an easier method for configuring batman-adv and provides some
additional tools for debugging as well. This package builds
version 2014.4.0 of the user space utility.
Package: batmand
Version: r1439-2
Depends: libc, libpthread, kmod-tun
Source: feeds/routing/batmand
License: GPL-2.0
Section: net
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37558
Filename: batmand_r1439-2_ramips_24kec.ipk
Size: 38400
MD5Sum: 5699b2ac959a7e3448ad8cd461aa41e9
SHA256sum: 9923f5a41cebcc50013050c47592a80da3d7e6480a65d6e8b2997759dac36290
Description: B.A.T.M.A.N. layer 3 routing daemon
Package: bird4-uci
Version: 0.2
Depends: libc, bird4, libuci, uci
Source: feeds/routing/bird-openwrt/bird4-openwrt
License: GPL-3.0+
Section: net
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4055
Filename: bird4-uci_0.2_ramips_24kec.ipk
Size: 4865
MD5Sum: f6c8d0902c30638a8bee7fd09759ac57
SHA256sum: d928897cb8d8ddb60a8756b672c062622c2ddf1db366c5e7a33a38438f3445a5
Description: bird4 UCI integration module
Package: bird4
Version: 1.4.5-2
Depends: libc, libpthread
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 167828
Filename: bird4_1.4.5-2_ramips_24kec.ipk
Size: 168713
MD5Sum: 0cc24533c9ecc24c43aba48dc9175516
SHA256sum: b8cedc2200c9c543083aadadc4f4c4f3560a24f1b5f9ca63756c49b0011ef2bc
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is IPv4 version of BIRD, it supports OSPFv2, RIPv2 and BGP
protocols.
In BGP, BIRD supports communities, multiprotocol extensions, MD5
authentication, 32bit AS numbers and could act as a route server or a
route reflector. BIRD also supports multiple RIBs, multiple kernel
routing tables and redistribution between the protocols with a powerful
configuration syntax.
Package: bird6-uci
Version: 0.2
Depends: libc, bird6, libuci, uci
Source: feeds/routing/bird-openwrt/bird6-openwrt
License: GPL-3.0+
Section: net
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4229
Filename: bird6-uci_0.2_ramips_24kec.ipk
Size: 5051
MD5Sum: f7adf77f4148e31e205b49c07c61d3e0
SHA256sum: b7799f473c005b411d3a2e4e674470db4ce1fa4934aa365ec3ab362341421bec
Description: bird6 UCI integration module
Package: bird6
Version: 1.4.5-2
Depends: libc, libpthread
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 187478
Filename: bird6_1.4.5-2_ramips_24kec.ipk
Size: 188415
MD5Sum: 1c2d59a36b5d96ccbc04fb9b96550b98
SHA256sum: c35abda773e6b11334ebc13ccc72d42162e6b114a12fbb290bf10b08d7789483
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is IPv6 version of BIRD, it supports OSPFv3, RIPng and BGP
protocols.
In BGP, BIRD supports communities, multiprotocol extensions, MD5
authentication, 32bit AS numbers and could act as a route server or a
route reflector. BIRD also supports multiple RIBs, multiple kernel
routing tables and redistribution between the protocols with a powerful
configuration syntax.
Package: birdc4
Version: 1.4.5-2
Depends: libc, libreadline, libncurses, bird4
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10953
Filename: birdc4_1.4.5-2_ramips_24kec.ipk
Size: 11990
MD5Sum: d7f8f6a24ad7a8a41f5800fa15096162
SHA256sum: 5fe254c495586bf1e5a6c690b130b84645f5c350459c52e713025dfdad9b908e
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Unless you can't afford dependency on ncurses and readline, you
should install BIRD command-line client together with BIRD.
Package: birdc6
Version: 1.4.5-2
Depends: libc, libreadline, libncurses, bird6
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 12200
Filename: birdc6_1.4.5-2_ramips_24kec.ipk
Size: 13247
MD5Sum: f411730f709ebccaa0a140f552885e9a
SHA256sum: fb235807fab089405c93265ccd1ffd91f6c744116f6b36107a60e1a1e2cd5a8f
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Unless you can't afford dependency on ncurses and readline, you
should install BIRD command-line client together with BIRD.
Package: birdcl4
Version: 1.4.5-2
Depends: libc, bird4
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10274
Filename: birdcl4_1.4.5-2_ramips_24kec.ipk
Size: 11253
MD5Sum: 0c6aae00ba1cb711a18e213053d5214e
SHA256sum: bb14d755ce0430fca7c582d2cbf2a03ce3204880ae7ec55edf863198c6f46e13
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD lightweight command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Package: birdcl6
Version: 1.4.5-2
Depends: libc, bird6
Source: feeds/routing/bird
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 11542
Filename: birdcl6_1.4.5-2_ramips_24kec.ipk
Size: 12503
MD5Sum: d6c4f137373bebfc8bbf7753fc290b3e
SHA256sum: 15bd46ef978619317552327cae37b6326e2f5d4ebd23cc75f6928bf2b931edf0
Description: BIRD is an internet routing daemon which manages TCP/IP routing tables
with support of modern routing protocols, easy to use configuration
interface and powerful route filtering language. It is lightweight and
efficient and therefore appropriate for small embedded routers.
This is a BIRD lightweight command-line client. It is used to send commands to BIRD,
commands can perform simple actions such as enabling/disabling of
protocols, telling BIRD to show various information, telling it to show
a routing table filtered by a filter, or asking BIRD to reconfigure.
Package: bmx6-uci-config
Version: r2014112401-4
Depends: libc, bmx6, libuci
Source: feeds/routing/bmx6
License: GPL-2.0
Section: net
Maintainer: Axel Neumann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8593
Filename: bmx6-uci-config_r2014112401-4_ramips_24kec.ipk
Size: 9400
MD5Sum: 4d83944cdbfca03048705615415239be
SHA256sum: 88b13671ccf52001cf891a536c1a8819cd4b1e81e307f790e1088224b0de3cc4
Description: configuration plugin based on uci (recommended!)
Package: bmx6
Version: r2014112401-4
Depends: libc, kmod-ip6-tunnel, kmod-iptunnel6, kmod-tun
Source: feeds/routing/bmx6
License: GPL-2.0
Section: net
Maintainer: Axel Neumann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 130569
Filename: bmx6_r2014112401-4_ramips_24kec.ipk
Size: 131238
MD5Sum: e675de7dfb1790bf1fba80340527edb7
SHA256sum: 2a3c740996fbb22b776f099dceb720607b4718b883ac232774accb9a7fa7e0cb
Description: BMX6 layer 3 routing daemon supporting IPv4, IPv6, and IPv4 over IPv6
Package: hnet-full
Version: 2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1
Depends: libc, hnetd, luci-app-hnet, babels, ohybridproxy, miniupnpd, minimalist-pcproxy
Source: feeds/routing/hnetd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: hnet-full_2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1_ramips_24kec.ipk
Size: 901
MD5Sum: c2520f5aad9f322d225e6395ae9d3724
SHA256sum: 6535c83de8755b587c460de52d9dbd61c8773afdb24f9091e90547fcecac7c36
Description: HNCP Homenet metapackage
Package: hnetd
Version: 2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1
Depends: libc, odhcpd, odhcp6c, netifd
Source: feeds/routing/hnetd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 77598
Filename: hnetd_2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1_ramips_24kec.ipk
Size: 78518
MD5Sum: 2883cde85910b2845b1a46fb111adc4e
SHA256sum: 5de3c1a15bfeb5f0f6e5d0362ae8c788a1aaff2c3bba11f83b4965376ab695f3
Description: This package provides a daemon which implementats distributed prefix assignment
and service discovery for a home network consisting of multiple routers
connected to multiple service providers. It provides a netifd protocol "hnet"
for use in /etc/config/network.
Package: kmod-batman-adv
Version: 3.18.9+2014.4.0-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc16, kmod-crypto-core, kmod-crypto-crc32c, kmod-lib-crc32c
Source: feeds/routing/batman-adv
License: GPL-2.0
Section: kernel
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66533
Filename: kmod-batman-adv_3.18.9+2014.4.0-1_ramips_24kec.ipk
Size: 67368
MD5Sum: b89382a2b35292d9ae39353fda732759
SHA256sum: 65dca0f8a87082ef6c1b335f401dd0fd2f8f586ae8827d480325d2395a67f826
Description: B.A.T.M.A.N. advanced is a kernel module which allows to
build layer 2 mesh networks. This package builds
version 2014.4.0 of the kernel module.
Package: kmod-nat46
Version: 3.18.9+3-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6
Source: feeds/routing/nat46
License: GPL-2.0
Section: kernel
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14688
Filename: kmod-nat46_3.18.9+3-1_ramips_24kec.ipk
Size: 15446
MD5Sum: 7500ffa303b1a96a8edcbc1bcce1b3c8
SHA256sum: 8d9040566cfd41a0a4bae2adc1e3afb2b87749f9c758164482c13dac9fe68834
Description: Stateless NAT46 translation kernel module
Package: luci-app-bird4
Version: 0.2
Depends: libc, bird4-uci, luci-base
Source: feeds/routing/bird-openwrt/bird4-openwrt
License: GPL-3.0+
Section: luci
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4266
Filename: luci-app-bird4_0.2_ramips_24kec.ipk
Size: 5031
MD5Sum: eae95e10758b781027d6e453e27e3482
SHA256sum: 301ed8889de6128f6fb96a34cae850829dd3fde37e1d465c2a14b4c03b849fcc
Description: bird4 application for LuCI
Package: luci-app-bird6
Version: 0.2
Depends: libc, bird6-uci, luci-base
Source: feeds/routing/bird-openwrt/bird6-openwrt
License: GPL-3.0+
Section: luci
Maintainer: Eloi Carbo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4419
Filename: luci-app-bird6_0.2_ramips_24kec.ipk
Size: 5171
MD5Sum: 10778544d9b11f08f6b89c7a4cb52473
SHA256sum: 2fdc9c7daff064cf64cdeb2243e79541f8dc3052eaf7bb9fe09716574fa77bea
Description: bird6 application for LuCI
Package: luci-app-bmx6
Version: 3
Depends: libc, luci-lib-json, luci-mod-admin-full, luci-lib-httpclient, bmx6
Source: feeds/routing/luci-app-bmx6
License: GPL-2.0+
Section: luci
Maintainer: Pau Escrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 81868
Filename: luci-app-bmx6_3_ramips_24kec.ipk
Size: 82733
MD5Sum: dc7d6ebe02a1dcb8f9dde8c13d0f759d
SHA256sum: e4e24c563c5507cfbcb0dd00aa98a005c4143b79f734d06c5fad8728ba046595
Description: bmx6 web application (status and configuration) for LuCi web interface
Package: luci-app-hnet
Version: 2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1
Depends: libc, hnetd
Source: feeds/routing/hnetd
License: GPL-2.0
Section: luci
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56927
Filename: luci-app-hnet_2014-11-25-10b22c409f2ecadaaec45e068fd01c74ffe5c772-1_ramips_24kec.ipk
Size: 57788
MD5Sum: 57d785604e17463e47648eda2ca4c775
SHA256sum: d79d42ba5f5365898d7f125b9577065a53325e41da768352adeef4c71085cbeb
Description: HNCP Homenet configuration and visualization
Package: map-t
Version: 3
Depends: libc, map, kmod-nat46
Source: feeds/routing/nat46
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: map-t_3_ramips_24kec.ipk
Size: 821
MD5Sum: c3839f478551c17f03ecb1db50001bff
SHA256sum: a54429a55f53daed953c49bc5ab59cfbcada76666d04bd40d61f5927001ca223
Description: MAP-T configuration support
Package: mcproxy
Version: 2014-12-31-b7bd2d0809a0d1f177181c361b9a6c83e193b79a-2
Depends: libc, libpthread, libstdcpp
Source: feeds/routing/mcproxy
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 118917
Filename: mcproxy_2014-12-31-b7bd2d0809a0d1f177181c361b9a6c83e193b79a-2_ramips_24kec.ipk
Size: 119619
MD5Sum: 67f6002ff276dfb64b1bd2667f2157ad
SHA256sum: 2050fa8666a3431e0a73715a0924db0d83881f8990cd85e4ef52f20f527cd220
Description: mcproxy is a free & open source implementation of the IGMP/MLD proxy function (see RFC 4605) for Linux systems.
It operates on the kernel tables for multicast routing and allows for multiple instantiations,
as well as dynamically changing downstream interfaces.
Package: minimalist-pcproxy
Version: 2015-01-12-2d6d1b0b0a3b79a9b4a9b0a7606a84600a967bcb-1
Depends: libc, libubox
Source: feeds/routing/minimalist-pcproxy
License: GPL-2.0
Section: net
Maintainer: Markus Stenberg <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6269
Filename: minimalist-pcproxy_2015-01-12-2d6d1b0b0a3b79a9b4a9b0a7606a84600a967bcb-1_ramips_24kec.ipk
Size: 7342
MD5Sum: 1794afdda59c5d8385e4db96c96e6bf3
SHA256sum: 613601d5d6a0e17407579be909da94c08e51b78ad84d4010bb996ecc1fc1d6b1
Description: This package contains a daemon which can be used to forward
PCP (Port Control Protocol - RFC6887) requests requests to PCP remote servers.
In and of itself, it is not very useful, but combined with hnetd+miniupnpd
it allows for control of NAT forwarding and firewall pinholes from multiple
hops away.
Package: miniupnpd
Version: 1.9.20141209-1
Depends: libc, iptables, libip4tc, libip6tc, ip6tables, libnfnetlink
Source: feeds/routing/miniupnpd
License: BSD-3-Clause
Section: net
Maintainer: Markus Stenberg <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53472
Filename: miniupnpd_1.9.20141209-1_ramips_24kec.ipk
Size: 54345
MD5Sum: b387b69a4f372be49d64c03660b0e361
SHA256sum: d242ff46e8622fc6386e266d52aff63d055c36b13869607d5b1098194de68068
Description: Lightweight UPnP IGD, NAT-PMP & PCP daemon
Package: mrd6
Version: 2013-11-30-c805eb33255dbc0b6647d463c6c67d1c9d3105a0-1
Depends: libc, libstdcpp
Source: feeds/routing/mrd6
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 265261
Filename: mrd6_2013-11-30-c805eb33255dbc0b6647d463c6c67d1c9d3105a0-1_ramips_24kec.ipk
Size: 266009
MD5Sum: 1cc4a38650ca30a6b4f2e0fb17d8f848
SHA256sum: 44bb4f9703c5c873b2497dfe1ca4c6c76b3f5429189090dd1d381c4f4be2b49d
Description: Multicast is becoming a major component in next generation networks, used
in several scenarios, from video broadcasting to multimedia conferencing.
In order to be implemented, new technology needs supporting hardware and
software across a set of devices and systems. MRD6 is an implementation of
a modular IPv6 Multicast Routing Framework for the Linux operating system
and provides MLDv2 (as well as MLDv1), PIM-SM and MBGP support.
Package: ndppd
Version: 0.2.3-1
Depends: libc, kmod-ipv6, uclibcxx
Source: feeds/routing/ndppd
License: GPL-3.0+
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31510
Filename: ndppd_0.2.3-1_ramips_24kec.ipk
Size: 32437
MD5Sum: 0baea2e46680152bbede6ad15876b157
SHA256sum: 4edf58f1fcab25ee702b247ed8ef8efdc562b82160f1d83d4273c4e214c2024b
Description: ndppd, or NDP Proxy Daemon, is a daemon that proxies NDP (Neighbor Discovery
Protocol) messages between interfaces. ndppd currently only supports Neighbor
Solicitation Messages and Neighbor Advertisement Messages.
The ndp_proxy provided by Linux doesn't support listing proxies, and only hosts
are supported. No subnets. ndppd solves this by listening for Neighbor
Solicitation messages on an interface, then query the internal interfaces for
that target IP before finally sending a Neighbor Advertisement message.
Package: nodogsplash
Version: 0.9_beta9.9.9-5
Depends: libc, libpthread, iptables-mod-ipopt
Source: feeds/routing/nodogsplash
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 46326
Filename: nodogsplash_0.9_beta9.9.9-5_ramips_24kec.ipk
Size: 47048
MD5Sum: d89a70b3f2b743996233369a81bfcec0
SHA256sum: 401b7017d7048afae19bd966c8dc1cb02384cb8a0dff8097d2649230a33a08b5
Description: Nodogsplash offers a simple way to open a free hotspot providing
restricted access to an internet connection.
Package: ohybridproxy
Version: 2015-01-12-f2ba152799c481471ddc0213b3f98b1c143d97a3-1
Depends: libc, libubox, mdnsd
Source: feeds/routing/ohybridproxy
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10572
Filename: ohybridproxy_2015-01-12-f2ba152799c481471ddc0213b3f98b1c143d97a3-1_ramips_24kec.ipk
Size: 11418
MD5Sum: 1e8456ac3d647327b127f598b502286e
SHA256sum: 6ad06ffd8ee502917157011172d33e104fbe2405aa5b2540939e44f0d0131da3
Description: This package provides a statically configured daemon for translating DNS
requests to Multicast DNS and back again.
Package: olsrd-mod-arprefresh
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1938
Filename: olsrd-mod-arprefresh_0.6.8-2_ramips_24kec.ipk
Size: 2683
MD5Sum: 96d7143b26a64f28972ab91ff1391754
SHA256sum: 91997885cbc2104128c408c5f82489fdd64aa3f8d2bbcbc79dc631ca6da54299
Description: Kernel ARP cache refresh plugin
Package: olsrd-mod-bmf
Version: 0.6.8-2
Depends: libc, olsrd, kmod-tun
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11675
Filename: olsrd-mod-bmf_0.6.8-2_ramips_24kec.ipk
Size: 12462
MD5Sum: 794e9f13087bc8664a5a4e636ca4f7f7
SHA256sum: b9cc35e4f08b0ec599e3edd349c4bdfac107dc6a55c64bfe7f005a90c70ed799
Description: Basic multicast forwarding plugin
Package: olsrd-mod-dot-draw
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3688
Filename: olsrd-mod-dot-draw_0.6.8-2_ramips_24kec.ipk
Size: 4394
MD5Sum: de2b7fa12cd380ac2b3a39b5ba6a6eeb
SHA256sum: 8b458618a4bfede326a799b0788097dcf1baeb373122a891aed4ca81d8cfb7ce
Description: Dot topology information plugin
Package: olsrd-mod-dyn-gw-plain
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2281
Filename: olsrd-mod-dyn-gw-plain_0.6.8-2_ramips_24kec.ipk
Size: 3049
MD5Sum: aad9c77834ac63d4edb94c6524b53500
SHA256sum: 8fa0220ecef575ee80462ab0e780e08bf2d562f3b3554f52e92aaabda0ad80fc
Description: Dynamic internet gateway plain plugin
Package: olsrd-mod-dyn-gw
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4004
Filename: olsrd-mod-dyn-gw_0.6.8-2_ramips_24kec.ipk
Size: 4717
MD5Sum: 172cd77d44590b068bfcc3cc4fa7b66b
SHA256sum: c5e60e8678557844d09dc91ec27cd4fcc65ef39cf1c06aad9b38bd008905c479
Description: Dynamic internet gateway plugin
Package: olsrd-mod-httpinfo
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28490
Filename: olsrd-mod-httpinfo_0.6.8-2_ramips_24kec.ipk
Size: 29223
MD5Sum: 9692ca54ded490e6ac1ec0c16f82b1ed
SHA256sum: cd596f4bd50f0db5e9969bb4942bb33f079132aca3cc5094f78c833322e09a67
Description: Small informative web server plugin
Package: olsrd-mod-jsoninfo
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11579
Filename: olsrd-mod-jsoninfo_0.6.8-2_ramips_24kec.ipk
Size: 12340
MD5Sum: f122e4c75f20d20a1a2e3333f99a74eb
SHA256sum: 7ff210b8a9e3bcb6d2bdc59b018a947e2f37dd8e04aad445a84b00c433b3298c
Description: Small informative plugin with JSON output
Package: olsrd-mod-mdns
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8014
Filename: olsrd-mod-mdns_0.6.8-2_ramips_24kec.ipk
Size: 8768
MD5Sum: bb1197408779a4c4b7113de7252a8aa4
SHA256sum: 33badf66a0679f765e480eb4f3d3fc5b6887155ea588cdf754a1a72250c4360d
Description: MDNS/Zeroconf/Bonjour packet distribution
Package: olsrd-mod-nameservice
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10796
Filename: olsrd-mod-nameservice_0.6.8-2_ramips_24kec.ipk
Size: 11542
MD5Sum: 0c18accb8ab10589c24abc681d48880a
SHA256sum: 33d471ebb124b85cdadbd1150b1976b95b823edda368b812ee6e407cfec6e8fe
Description: Lightweight hostname resolver plugin
Package: olsrd-mod-p2pd
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7601
Filename: olsrd-mod-p2pd_0.6.8-2_ramips_24kec.ipk
Size: 8380
MD5Sum: b60e178734fe26a6add5761f4e922e8e
SHA256sum: 5d1a1948dadf08a043ebcbc2fbb94bc9c88a13c5d153171e6001c580602f2158
Description: Peer to Peer Discovery plugin
Package: olsrd-mod-pgraph
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2748
Filename: olsrd-mod-pgraph_0.6.8-2_ramips_24kec.ipk
Size: 3514
MD5Sum: f0ea7ab001e1f601af65da12526fbcde
SHA256sum: 491926892ae167b0ba7f3504a0abe179c0c3e9d36fc5b04d52865cb8ff13ef6a
Description: output network topology for pgraph
Package: olsrd-mod-pud
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51869
Filename: olsrd-mod-pud_0.6.8-2_ramips_24kec.ipk
Size: 52605
MD5Sum: f304348bf7e083965a5bd1af7a2fae32
SHA256sum: 5efdb3bbeb379548731eb9fe3e53dbde9d873c0d81f530622cb7cf34306cbb09
Description: Position Update Distribution plugin
Package: olsrd-mod-quagga
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5678
Filename: olsrd-mod-quagga_0.6.8-2_ramips_24kec.ipk
Size: 6412
MD5Sum: 0285c500b889cda0cd6dbe00fbfaa67d
SHA256sum: a984e7a6be1bb0174752e96112fa9976941fcedaea2d7c41adbb56d3c55db344
Description: Quagga plugin
Package: olsrd-mod-secure
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9244
Filename: olsrd-mod-secure_0.6.8-2_ramips_24kec.ipk
Size: 10029
MD5Sum: eb46d3701136577096f47a52ce37d651
SHA256sum: 2e60048792271dc3395f29d47ac994014ba4e1b030de93c7531cee7247b81a67
Description: Message signing plugin to secure routing domain
Package: olsrd-mod-sgwdynspeed
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4368
Filename: olsrd-mod-sgwdynspeed_0.6.8-2_ramips_24kec.ipk
Size: 5147
MD5Sum: b3c7a1efbda7d811250f082e4df545a5
SHA256sum: ed506309444310c31dae4d6326f275c98aede6b984faa4478d7a702bcfa9ce63
Description: Smart Gateway dynamic speed plugin
Package: olsrd-mod-txtinfo
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6746
Filename: olsrd-mod-txtinfo_0.6.8-2_ramips_24kec.ipk
Size: 7517
MD5Sum: 1946d5fad46e2d1d9e87a1d90c2dbd51
SHA256sum: a16e8343c9b65098e2de09427eb205e3a7cc8b7c50c7353f4ea10d533d9fa037
Description: Small informative web server plugin
Package: olsrd-mod-watchdog
Version: 0.6.8-2
Depends: libc, olsrd
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1732
Filename: olsrd-mod-watchdog_0.6.8-2_ramips_24kec.ipk
Size: 2443
MD5Sum: 15547bc4a38438876af3ea575e4d5df9
SHA256sum: 51e2dda008711ed3bb4198a9a3e80e961121c64ae18ccdf199278cc6985fed88
Description: Watchdog plugin
Package: olsrd
Version: 0.6.8-2
Depends: libc, libpthread
Source: feeds/routing/olsrd
License: BSD-3-Clause
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 122254
Filename: olsrd_0.6.8-2_ramips_24kec.ipk
Size: 123068
MD5Sum: c2bc763dcf030b3b4c876fa44882ed83
SHA256sum: 26c6304ba68f46307afa74b55ac35466a36ac2616c48b3c90c27cd044b5b913e
Description: OLSR (Optimized Link State Routing) daemon
Package: quagga-babeld
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35222
Filename: quagga-babeld_0.99.22.4-2_ramips_24kec.ipk
Size: 35941
MD5Sum: 99a7c0153ff2aa7bba6396d7e3d85bcf
SHA256sum: b007ba71ec4072b91a8140704ff62f77014ce9ae2485644f2ced5b9bb59ae89c
Description: Babel routing engine
Package: quagga-bgpd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 171920
Filename: quagga-bgpd_0.99.22.4-2_ramips_24kec.ipk
Size: 171527
MD5Sum: 28e61586de04c40c51652781030a62b7
SHA256sum: 41c083fcefad40275d84920712df1d000f741506f80a45ececfff8d2d71aba13
Description: BGPv4, BGPv4+, BGPv4- routing engine
Package: quagga-isisd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71057
Filename: quagga-isisd_0.99.22.4-2_ramips_24kec.ipk
Size: 71365
MD5Sum: 4652e2f6409783b5ce9a3a6b423f0f55
SHA256sum: eb9c7ec9561ca56045aeed55b2581eedaa0ed42161b15f7eb21847fc23374d53
Description: IS-IS routing engine
Package: quagga-libospf
Version: 0.99.22.4-2
Depends: libc, quagga
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 164533
Filename: quagga-libospf_0.99.22.4-2_ramips_24kec.ipk
Size: 164549
MD5Sum: 4be33c41a5d42fe9c47437682fc91f27
SHA256sum: 58d108eb5177e18cea58921a20216743c723929e001f8d5f57a0b08bf2b21123
Description: OSPF library
Package: quagga-libzebra
Version: 0.99.22.4-2
Depends: libc, quagga
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105097
Filename: quagga-libzebra_0.99.22.4-2_ramips_24kec.ipk
Size: 105380
MD5Sum: c1357a31541df1be6cec811f43ef1747
SHA256sum: 909a1a1e7da5681e1d5aa99ce4f513458f8b476a277349f2e2fc2be5b4fe0f43
Description: zebra library
Package: quagga-ospf6d
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libospf, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74300
Filename: quagga-ospf6d_0.99.22.4-2_ramips_24kec.ipk
Size: 74899
MD5Sum: 319e302464b20f50098aea6390fa1501
SHA256sum: 4cc132a063b2c38e75ed36497ca600ab9e9a643f310ea4dd8d4a90e54957e186
Description: OSPFv3 routing engine
Package: quagga-ospfd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libospf, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3898
Filename: quagga-ospfd_0.99.22.4-2_ramips_24kec.ipk
Size: 4665
MD5Sum: dbcf1d58a9585855439be1d56db250fa
SHA256sum: 90b297cf4b8b48c5713a9afc9379f3656dbba5a919fa80729046e2fb577a8cfe
Description: OSPFv2 routing engine
Package: quagga-ripd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33486
Filename: quagga-ripd_0.99.22.4-2_ramips_24kec.ipk
Size: 34243
MD5Sum: c65447ceb091597efe2f106ea9123368
SHA256sum: ab6c02227ac0f4d1b6410ae4d09de59eb6e0033b01f0deeef34097f2ef9190bb
Description: RIP routing engine
Package: quagga-ripngd
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27045
Filename: quagga-ripngd_0.99.22.4-2_ramips_24kec.ipk
Size: 27812
MD5Sum: 6d7a32c087c1ede6ae227a7b2ef3c292
SHA256sum: c998a0f53a579caca0e2ab3285f22c7d43cc6ddf6c7d8151cdc85296628d365b
Description: RIPNG routing engine
Package: quagga-vtysh
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra, libreadline, libncurses
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 101145
Filename: quagga-vtysh_0.99.22.4-2_ramips_24kec.ipk
Size: 101739
MD5Sum: a8578930710bd67744ce3c5e83308b00
SHA256sum: 5b4dbc2f31d07df910f41064dbb64029fa4e56171383527f8f3edc505fe53314
Description: integrated shell for Quagga routing software
Package: quagga-watchquagga
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11214
Filename: quagga-watchquagga_0.99.22.4-2_ramips_24kec.ipk
Size: 11974
MD5Sum: e26db7c3998b427e6de75fe39bdf2519
SHA256sum: 3f242b2f46781f26fa2a85b918a26cdef5a16405fae183e811688601c7e6ee87
Description: Quagga watchdog
Package: quagga-zebra
Version: 0.99.22.4-2
Depends: libc, quagga, quagga-libzebra
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 64229
Filename: quagga-zebra_0.99.22.4-2_ramips_24kec.ipk
Size: 64793
MD5Sum: 7639b122842e68ba2518ddb6a3b2b9c7
SHA256sum: c6157ba2495d95cc28871fdc74d6195999ce0f04c86fec8e12c930fbc1d634f0
Description: Zebra daemon
Package: quagga
Version: 0.99.22.4-2
Depends: libc, librt
Source: feeds/routing/quagga
License: GPL-2.0
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2389
Filename: quagga_0.99.22.4-2_ramips_24kec.ipk
Size: 3202
MD5Sum: 6b8466bf782e8039394da39efaa10d93
SHA256sum: 9ae33a04ea3331ff2c49d039fce53a789874e9f094adef947fd18e69687e889a
Description: A routing software package that provides TCP/IP based routing services
with routing protocols support such as RIPv1, RIPv2, RIPng, OSPFv2,
OSPFv3, BGP-4, and BGP-4+
Package: smcroute
Version: 2.0.0-1
Depends: libc
Source: feeds/routing/smcroute
License: GPL-2.0+
Section: net
Maintainer: Leonardo Brondani Schenkel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13414
Filename: smcroute_2.0.0-1_ramips_24kec.ipk
Size: 14161
MD5Sum: c6f01f418964ccc498f5c19f541cabc1
SHA256sum: 7d4c5685bb12500ffe69ad3c46e88997b338abf93ed6b675c815ff02683d8664
Description: SMCRoute is a command line tool to manipulate the multicast routes of the Linux kernel.
Package: vis
Version: r1439-2
Depends: libc, libpthread
Source: feeds/routing/batmand
License: GPL-2.0
Section: net
Maintainer: Marek Lindner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10064
Filename: vis_r1439-2_ramips_24kec.ipk
Size: 10856
MD5Sum: b3dff73b9da2f7c298f5165d9548120c
SHA256sum: a13538255dc6c6066c9efc7b99349f45c65d5565c78125dfc1007ca6ef8ec979
Description: visualization server for B.A.T.M.A.N. layer 3
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: 6in4
Version: 21-1
Depends: libc, kmod-ipv6, kmod-sit
Source: package/network/ipv6/6in4
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: all
Installed-Size: 1618
Filename: 6in4_21-1_all.ipk
Size: 2429
MD5Sum: 794593e6c93bdce580c75434f6aa138c
SHA256sum: 782dba9209ed34b12cf40189426cfb0dfc6b67d4f0650af60b91a593009c4f09
Description: Provides support for 6in4 tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: 6rd
Version: 9-1
Depends: libc, kmod-ipv6, kmod-sit
Source: package/network/ipv6/6rd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: all
Installed-Size: 3171
Filename: 6rd_9-1_all.ipk
Size: 3944
MD5Sum: 4733f242ab251f09b0121236639fd810
SHA256sum: 7e5ffb10051580e66e9424e1e9b547e76233b4838ed234e611df9a9b35e48848
Description: Provides support for 6rd tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: 6to4
Version: 12-1
Depends: libc, kmod-ipv6, kmod-sit
Source: package/network/ipv6/6to4
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: all
Installed-Size: 1099
Filename: 6to4_12-1_all.ipk
Size: 1909
MD5Sum: d98a0cb88d840c3b527baaebd1abf9f2
SHA256sum: 3d4098e7771266573d30fa2a327cbcec237a15d3ee6fc5d8984a5f0c4d7f10a5
Description: Provides support for 6to4 tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: agetty
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 13768
Filename: agetty_2.25.2-4_ramips_24kec.ipk
Size: 14535
MD5Sum: 4d0426eb7a335856507a3e786db37c35
SHA256sum: ac5609668b83e27c2860a4bcdb6b429d6d2cfa011a4dace64de46b1dcefe16a1
Description: agetty opens a tty port, prompts for a login name and invokes the
/bin/login command
Package: ar
Version: 2.24-3
Depends: libc, zlib, libbfd
Source: package/devel/binutils
License: GPL-3.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24659
Filename: ar_2.24-3_ramips_24kec.ipk
Size: 25319
MD5Sum: c8bf07ed394447e6f67e5a463aa8178a
SHA256sum: 9bff5efca684856f5cc3dc88d09fe477e00aa2b2dfbb869137d5935db93f8c73
Description: ar
Package: arptables
Version: 0.0.4-1
Depends: libc, kmod-arptables
Source: package/network/utils/arptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 20381
Filename: arptables_0.0.4-1_ramips_24kec.ipk
Size: 21081
MD5Sum: 2fd9fabd86bba08f30c78f28e53dc831
SHA256sum: 08fa8c9e53cbbbcc7c007d70a4e274590c6f23cddf714c853af5ed6611e43ec5
Description: ARP firewalling software
Package: atm-aread
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2221
Filename: atm-aread_2.5.2-5_ramips_24kec.ipk
Size: 2917
MD5Sum: 22d84e8b58826022bec3d8df99620ddc
SHA256sum: e0cecd109d728063654b789ea5565d6ed878368ae958a2e92ef13020fb6a2b1b
Description: Linux ATM tool aread.
Package: atm-atmaddr
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2360
Filename: atm-atmaddr_2.5.2-5_ramips_24kec.ipk
Size: 3081
MD5Sum: 6a57c63fccceafb8a387c5f5305a015a
SHA256sum: 2052bcbc55d409232d06bca6c7a779c83468fb08f927cceab7fb91425d5a1f56
Description: Linux ATM tool atmaddr.
Package: atm-atmdiag
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2107
Filename: atm-atmdiag_2.5.2-5_ramips_24kec.ipk
Size: 2825
MD5Sum: 1c36fde44c24d6e842c8d3afeb34431d
SHA256sum: caa21d8854437b175486019582f1fb74162f43b792909a0b697c0a8e2a22a336
Description: Linux ATM tool atmdiag.
Package: atm-atmdump
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 3112
Filename: atm-atmdump_2.5.2-5_ramips_24kec.ipk
Size: 3834
MD5Sum: f7ee2ec32c25817a221f5a424c015c27
SHA256sum: 990f1378f9c06bfb9d048cfab8afa9ffc259f8a84a2c6c99fb699b10f913131f
Description: Linux ATM tool atmdump.
Package: atm-atmloop
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2532
Filename: atm-atmloop_2.5.2-5_ramips_24kec.ipk
Size: 3237
MD5Sum: 54846b3e0eb3d387e370300540de175c
SHA256sum: 0608aadb52f6ac2903ec5c173d1b51f122c2b848639cd826576aa3666240a1ae
Description: Linux ATM tool atmloop.
Package: atm-atmsigd
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 70205
Filename: atm-atmsigd_2.5.2-5_ramips_24kec.ipk
Size: 70649
MD5Sum: 760d1d5b4a72a1c8d9b94aff975e72c7
SHA256sum: 38a7920123ba473987dfc08ace91f34a09037f1efac212f3812ab78a69fdd050
Description: Linux ATM tool atmsigd.
Package: atm-atmswitch
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2644
Filename: atm-atmswitch_2.5.2-5_ramips_24kec.ipk
Size: 3363
MD5Sum: 7e7ca15c932c6bfec902203302d2e0c1
SHA256sum: b774278cec530ae1acd8a6159de0b4ddf7dee08030a913725d878d7d06d0107f
Description: Linux ATM tool atmswitch.
Package: atm-atmtcp
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 7981
Filename: atm-atmtcp_2.5.2-5_ramips_24kec.ipk
Size: 8703
MD5Sum: df94bd95d24d2b14c3f5c51b99f7fb6b
SHA256sum: 8fb7d943b9aee356c0bc2be64330171131e52c0925c068f8e5962ce4faeffede
Description: Linux ATM tool atmtcp.
Package: atm-awrite
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2104
Filename: atm-awrite_2.5.2-5_ramips_24kec.ipk
Size: 2816
MD5Sum: c079356662e968857557b0c4165dc9af
SHA256sum: 79bbf8655a14259dd731c32be8e1dfbcb17f05ab1fca63933c03ab9184b122ff
Description: Linux ATM tool awrite.
Package: atm-bus
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 18558
Filename: atm-bus_2.5.2-5_ramips_24kec.ipk
Size: 19241
MD5Sum: 13bf8ed2366b990c3e380c25a1640d9d
SHA256sum: 28db480658826ec7566f506da24e7f1bc3ff527c2940493b3cca21e2f390d5bc
Description: Linux ATM tool bus.
Package: atm-debug-tools
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 228264
Filename: atm-debug-tools_2.5.2-5_ramips_24kec.ipk
Size: 228182
MD5Sum: e2bffe75a6addf0db22132aaa5bd18e8
SHA256sum: cdc2f964e39a665bb08712fda578a6ee994d859d2a1ea227cfafc63945f2f535
Description: This package contains the Linux ATM debugging tools.
Package: atm-diagnostics
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 6613
Filename: atm-diagnostics_2.5.2-5_ramips_24kec.ipk
Size: 7254
MD5Sum: 2e6cf091cf327e30f7dcea95adb697ca
SHA256sum: 52191ac7c41e71189509e82ce0cf6cb094968ce8d95a77b5b2f9833365e5e165
Description: This package contains the Linux ATM diagnostics.
Package: atm-esi
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2275
Filename: atm-esi_2.5.2-5_ramips_24kec.ipk
Size: 2980
MD5Sum: e3493e78578c77aa84a7bb4926a6268a
SHA256sum: 3f6a1048b535cfb24ee77bff687f6dfb938019a4ae0318e4c2dad4c1e8438500
Description: Linux ATM tool esi.
Package: atm-ilmid
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 21824
Filename: atm-ilmid_2.5.2-5_ramips_24kec.ipk
Size: 22519
MD5Sum: e987ca57c687dd4bd5b7100de54b04ca
SHA256sum: d53a27823a41acb17d2214b28ea63512219101f7faf43e1f0ec9e21bcfa53396
Description: Linux ATM tool ilmid.
Package: atm-ilmidiag
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2314
Filename: atm-ilmidiag_2.5.2-5_ramips_24kec.ipk
Size: 3032
MD5Sum: 1fdeaa1903eb5262d9741818f42a91f0
SHA256sum: 0c480a5b37eb1dad66153d6f25b44a64d2fb96af67609d1d60c7fd2ced7e787d
Description: Linux ATM tool ilmidiag.
Package: atm-lecs
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 10377
Filename: atm-lecs_2.5.2-5_ramips_24kec.ipk
Size: 11072
MD5Sum: cf7c8012b016a323a3ebf38b208cf215
SHA256sum: d01d8a49d44b293b79ed4cf5622532ca4b847085fe047384db31a7d2eaea485b
Description: Linux ATM tool lecs.
Package: atm-les
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 21749
Filename: atm-les_2.5.2-5_ramips_24kec.ipk
Size: 22399
MD5Sum: 11a51f0f355f985f4937a344a39189f4
SHA256sum: 3845f85f42e89db4a458bff34f1fab67bb73260f9d96d977507c5c88e8dcfbc6
Description: Linux ATM tool les.
Package: atm-mpcd
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 12504
Filename: atm-mpcd_2.5.2-5_ramips_24kec.ipk
Size: 13232
MD5Sum: e68e92f9e7509fc52f2206cd607b4c17
SHA256sum: 0dbc9fd1d0458e064772433f800fcafd093173d5313555a5cd8724734b02bf70
Description: Linux ATM tool mpcd.
Package: atm-saaldump
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 25371
Filename: atm-saaldump_2.5.2-5_ramips_24kec.ipk
Size: 25935
MD5Sum: 3a00b271a281232eaf9179579bdc862a
SHA256sum: 1a6c427bd1eecc41709f7f66eb5906a3ddbbbce12ab03e67f86cbedf100ee512
Description: Linux ATM tool saaldump.
Package: atm-sonetdiag
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2596
Filename: atm-sonetdiag_2.5.2-5_ramips_24kec.ipk
Size: 3316
MD5Sum: f8f23fd3ca5e586aff80226817715788
SHA256sum: 9f5fee6d3b7f7f621b6c142779a8905deaae5a26f8ca801b24bbb5c544c35ae4
Description: Linux ATM tool sonetdiag.
Package: atm-svc_recv
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2459
Filename: atm-svc_recv_2.5.2-5_ramips_24kec.ipk
Size: 3169
MD5Sum: 5d234b7f9ab721a1ea336d052bf9b37a
SHA256sum: 193c6eab7102c11f32dc87ffd92605f0365c07c8a71aa475720faefe0e03bf51
Description: Linux ATM tool svc_recv.
Package: atm-svc_send
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 2178
Filename: atm-svc_send_2.5.2-5_ramips_24kec.ipk
Size: 2892
MD5Sum: 68f211b53bb6b00887d6e5e2dac400ad
SHA256sum: 2633e399cbf87a1182c0fc7587d1aa9a56394e83f672478c538051b7d5b1cfc3
Description: Linux ATM tool svc_send.
Package: atm-tools
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 17502
Filename: atm-tools_2.5.2-5_ramips_24kec.ipk
Size: 18189
MD5Sum: a24f44c6fa9fb9e5d034bc272d4237b3
SHA256sum: 4380cc37adcc416f698e5ebd4dd76d5053b9e924101f9672108965f47e77b7f3
Description: This package contains the Linux ATM tools.
Package: atm-ttcp_atm
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 8112
Filename: atm-ttcp_atm_2.5.2-5_ramips_24kec.ipk
Size: 8801
MD5Sum: 2ba68d852293bb629329b3763a8102c0
SHA256sum: c27bd0093e5cc9a7a628fada568ffaf1b90365b860984e35186fc3106cc6d0b4
Description: Linux ATM tool ttcp_atm.
Package: atm-zeppelin
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 18423
Filename: atm-zeppelin_2.5.2-5_ramips_24kec.ipk
Size: 19114
MD5Sum: d432875cb8cb48e4299607731b9bf0fe
SHA256sum: c44bea7cedb721d8f21a9009697cf492efed5a7eb9f7cf075536718af452a03d
Description: Linux ATM tool zeppelin.
Package: authsae
Version: 2014-06-09-8531ab158910a525d4bcbb3ad02c08342f6987f2
Depends: libc, libopenssl, libconfig, libnl-tiny
Source: package/network/services/authsae
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61052
Filename: authsae_2014-06-09-8531ab158910a525d4bcbb3ad02c08342f6987f2_ramips_24kec.ipk
Size: 61620
MD5Sum: 937e843956a773b7f9ba36bb4be21eb0
SHA256sum: 527bf91c26ede3a21a21135a78c2e30865ddb570d54cc9db72d300c5614328ef
Description: 80211s mesh security
Package: badblocks
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 9464
Filename: badblocks_1.42.4-2_ramips_24kec.ipk
Size: 10153
MD5Sum: 46098e026d38bce7012d077d1972dd41
SHA256sum: 75ef96b94bc16d3c05a6e59f0aff7096387694ef9366f9831c18b489b4042e53
Description: Ext2 Filesystem badblocks utility
Package: base-files
Version: 157-r44915
Depends: libc, netifd, procd, jsonfilter
Source: package/base-files
License: GPL-2.0
Section: base
Architecture: ramips_24kec
Installed-Size: 36413
Filename: base-files_157-r44915_ramips_24kec.ipk
Size: 37318
MD5Sum: 8c8fdd07c0925a0f6bc82f4cc5705e51
SHA256sum: 2361504d102cd0d7cc713a6f2a5a5fea69d78afa4fc22c53a6de2e4f0059305e
Description: This package contains a base filesystem and system scripts for OpenWrt.
Package: binutils
Version: 2.24-3
Depends: libc, objdump, ar
Source: package/devel/binutils
License: GPL-3.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 988790
Filename: binutils_2.24-3_ramips_24kec.ipk
Size: 979181
MD5Sum: 8706aec550d598b2ab0e9b3cd4504d6a
SHA256sum: 56aa39c979aa898ea8a9f8bc5524741947d35a41d54d64b8c924b24f117b08cb
Description: The Binutils package contains a linker, an assembler, and other tools for handling object files
Package: blkid
Version: 2.25.2-4
Depends: libc, libblkid, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 27379
Filename: blkid_2.25.2-4_ramips_24kec.ipk
Size: 28146
MD5Sum: 9e2154937f0daeefdc4c228fd9d8ab2a
SHA256sum: 41f3de235af7dc5c6fc0af2555a9868832d30630dfca77827801cb2330fa2302
Description: The blkid program is the command-line interface to working with the libblkid
library.
Package: block-mount
Version: 2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974
Depends: libc, ubox, libubox, libuci
Source: package/system/fstools
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17578
Filename: block-mount_2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974_ramips_24kec.ipk
Size: 18367
MD5Sum: 91b3f4ee3b6b53328ba3af3f1fa3d8ea
SHA256sum: 761b86409f574d2148f3a395e39a9e4ad3457c72d2de12005f39b8fc0c2c7507
Description: Block device mounting and checking
Package: br2684ctl
Version: 2.5.2-5
Depends: libc, linux-atm
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: net
Architecture: ramips_24kec
Installed-Size: 4465
Filename: br2684ctl_2.5.2-5_ramips_24kec.ipk
Size: 5171
MD5Sum: 04c5d26c084c9c5842ffb40d799e6f47
SHA256sum: 5e274621fed7cfefeca7186fe794f931656714780088297beeece82e05b46d3a
Description: Support for AAL5 encapsulation (RFC-1483/RFC-2684) over ATM.
Package: busybox
Version: 1.22.1-6
Depends: libc
Source: package/utils/busybox
License: GPL-2.0
LicenseFiles: LICENSE archival/libarchive/bz/LICENSE
Section: base
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 231000
Filename: busybox_1.22.1-6_ramips_24kec.ipk
Size: 230961
MD5Sum: ad0a74f8f68f8bb0541d3fbeeb4b7924
SHA256sum: 5f1687cef5b5d428ff49a64941328118ca47cb01f9027ffa3d0e727d59547661
Description: The Swiss Army Knife of embedded Linux.
It slices, it dices, it makes Julian Fries.
Package: ca-certificates
Version: 20141019
Depends: libc
Source: package/system/ca-certificates
Section: base
Architecture: ramips_24kec
Installed-Size: 176193
Filename: ca-certificates_20141019_ramips_24kec.ipk
Size: 176915
MD5Sum: f77c327a50b957fb9f1edb61d3d1e486
SHA256sum: 6beb4526f6dbbf4ae6c64d5a4eea80e5de7e700ea0c76c6c68ee07025eda6d5f
Description: System CA certificates
Package: cal
Version: 2.25.2-4
Depends: libc, libncurses
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 14561
Filename: cal_2.25.2-4_ramips_24kec.ipk
Size: 15298
MD5Sum: f2d6b67ae6942de3bc9f3162011e72ee
SHA256sum: 419a18cf7936d36091470e6eb255d881609a4035a49797775793c04800bceec4
Description: cal displays a simple calendar
Package: cfdisk
Version: 2.25.2-4
Depends: libc, libblkid, libncurses, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 91668
Filename: cfdisk_2.25.2-4_ramips_24kec.ipk
Size: 92400
MD5Sum: b57ea43c0fe24173d87b179afabd8d1f
SHA256sum: 352bbd714c746b467d8e7e2f9987414e940f3dbb73715dec0c18410e96680c56
Description: cfdisk is a curses-based program for partitioning any hard disk drive
Package: chat
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9056
Filename: chat_2.4.7-5_ramips_24kec.ipk
Size: 9831
MD5Sum: 2384fc5fa5dea12d2265286e5ff4239d
SHA256sum: 765809626103a41ba0f29b25d9857715d11c45287ce7eb9553151237d0251720
Description: This package contains an utility to establish conversation with other PPP servers
(via a modem).
Package: comgt-directip
Version: 0.32-25
Depends: libc, comgt, kmod-usb-serial, kmod-usb-serial-sierrawireless, kmod-usb-net, kmod-usb-net-sierrawireless
Source: package/network/utils/comgt
License: GPL-2.0+
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1533
Filename: comgt-directip_0.32-25_ramips_24kec.ipk
Size: 2326
MD5Sum: eedbff8dd6b0ced653a37472e110a90a
SHA256sum: e25a03db6925d5ef11336b891d08975dda3eb43e2b751d750058f3bec3ef041d
Description: Sierra Wireless Direct-IP support
Package: comgt-ncm
Version: 0.32-25
Depends: libc, comgt, wwan
Source: package/network/utils/comgt
License: GPL-2.0+
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2046
Filename: comgt-ncm_0.32-25_ramips_24kec.ipk
Size: 2773
MD5Sum: b25683b5df72ffe2325ba4db7af12143
SHA256sum: caf251cd73f2a49a486f77dfa4baf9fe23443535289318e622ad790b0f192ae3
Description: NCM 3G/4G Support
Package: comgt
Version: 0.32-25
Depends: libc, chat
Source: package/network/utils/comgt
License: GPL-2.0+
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20729
Filename: comgt_0.32-25_ramips_24kec.ipk
Size: 21541
MD5Sum: 24d0841f3905ff11ed00f39ed587cd28
SHA256sum: dba150b91115794b61e7794233657e6865eb14c9c8a9474dd19ef61d3f5bc556
Description: comgt is a scripting language interpreter useful for establishing
communications on serial lines and through PCMCIA modems as well as GPRS
and 3G datacards.
Package: conntrack-tools
Version: 1.0.0-1
Depends: libc, libnetfilter-conntrack
Source: package/network/utils/conntrack-tools
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89804
Filename: conntrack-tools_1.0.0-1_ramips_24kec.ipk
Size: 90177
MD5Sum: d4d8c513185841cb73a0027468df3000
SHA256sum: 1f780ceebac666667be124f1338db77fef3707a9403e8d60f4d7da0fa667538c
Description: The conntrack-tools are a set of free software userspace tools for Linux
that allow system administrators interact with the Connection Tracking
System, which is the module that provides stateful packet inspection for
iptables. The conntrack-tools are the userspace daemon conntrackd and the
command line interface conntrack.
Package: curl
Version: 7.40.0-3
Depends: libc, libcurl
Source: package/network/utils/curl
License: MIT
LicenseFiles: COPYING
Section: net
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38166
Filename: curl_7.40.0-3_ramips_24kec.ipk
Size: 38965
MD5Sum: f88ebc288f80fe094e2cc2abdc1eb80f
SHA256sum: 90c069d8406cab6ddd8540afbcfcf5da973c4a4e40138377203829a64fce52ae
Description: A client-side URL transfer utility
Package: debugfs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 62141
Filename: debugfs_1.42.4-2_ramips_24kec.ipk
Size: 62829
MD5Sum: d625a53399284bc623d0c42d03394f86
SHA256sum: b6e9b75e5fdb82c981d888d02ac8e4826231b7eee2bf8d9ad0a4046e8e631c60
Description: Ext2 Filesystem debugger
Package: dmesg
Version: 2.25.2-4
Depends: libc, librt
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 17084
Filename: dmesg_2.25.2-4_ramips_24kec.ipk
Size: 17886
MD5Sum: 7a008f78c40325aa7dc5d6abc5b6da9b
SHA256sum: 0cf909db13b3aaf368b19ad8419efdb5d0055c8736f06413db1e6a0ad1b8cb81
Description: dmesg is used to examine or control the kernel ring buffer
Package: dnsmasq-dhcpv6
Version: 2.72-4
Depends: libc, kmod-ipv6
Source: package/network/services/dnsmasq
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 115434
Filename: dnsmasq-dhcpv6_2.72-4_ramips_24kec.ipk
Size: 115965
MD5Sum: f97dce1b876521febdf8d2f5bf1c0cde
SHA256sum: 02c45415abac1bb2483b812d2be48cab81955a61d43e05251525e3a4f8bdcdb0
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
This is a variant with DHCPv6 support
Package: dnsmasq-full
Version: 2.72-4
Depends: libc, libnettle, kmod-ipv6, kmod-ipt-ipset
Source: package/network/services/dnsmasq
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 136457
Filename: dnsmasq-full_2.72-4_ramips_24kec.ipk
Size: 137101
MD5Sum: d80634cb5632f9dee1e0629335f495ec
SHA256sum: a5caa80efc4130d157e095b215e46f5ac57ac1019129579875e43c591a0e2a3f
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
This is a fully configurable variant with DHCPv6, DNSSEC, Authroitative DNS and
IPset support enabled by default.
Package: dnsmasq
Version: 2.72-4
Depends: libc
Source: package/network/services/dnsmasq
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 95267
Filename: dnsmasq_2.72-4_ramips_24kec.ipk
Size: 95996
MD5Sum: 72afc49d2413b557fbb16bea7367427d
SHA256sum: ba2979d223f108f9b52c73327405bd34af63778fc3a7a8dd1f95e3ea4c64ef0c
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
Package: dropbear
Version: 2014.65-2
Depends: libc
Source: package/network/services/dropbear
License: MIT
LicenseFiles: LICENSE libtomcrypt/LICENSE libtommath/LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 81689
Filename: dropbear_2014.65-2_ramips_24kec.ipk
Size: 82060
MD5Sum: 9f10e0b54b3ad5d3e07f49e12632348d
SHA256sum: 8b3a98e401913d03bf239bdbf699756415cde6f61d05cbb520fab5d9d3842525
Description: A small SSH2 server/client designed for small memory environments.
Package: dropbearconvert
Version: 2014.65-2
Depends: libc
Source: package/network/services/dropbear
License: MIT
LicenseFiles: LICENSE libtomcrypt/LICENSE libtommath/LICENSE
Section: utils
Architecture: ramips_24kec
Installed-Size: 23894
Filename: dropbearconvert_2014.65-2_ramips_24kec.ipk
Size: 24586
MD5Sum: aabe7f3d1c8d3e80cb281cd36c632ae8
SHA256sum: 3d2db5fced6df1c87a2f0bd2d82be881af30a14d1319323bcb740e2d1f651954
Description: Utility for converting SSH keys
Package: ds-lite
Version: 4-1
Depends: libc, kmod-ipv6, kmod-ip6-tunnel
Source: package/network/ipv6/ds-lite
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: all
Installed-Size: 974
Filename: ds-lite_4-1_all.ipk
Size: 1780
MD5Sum: e08490a25e8b67a5191b38bcd41c9271
SHA256sum: 1c97c410259da2b91782071427003414ca13d021d14e1619ccf3bd78388a2dac
Description: Provides support for Dual-Stack Lite in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: dumpe2fs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 7004
Filename: dumpe2fs_1.42.4-2_ramips_24kec.ipk
Size: 7734
MD5Sum: 05863a4e4bfbb30e13996e66e911f81c
SHA256sum: 8be3054cf4b3b893881770aba9c64a154bb83c78c77e0d9829457d86ece4f1d5
Description: Ext2 Filesystem information dumping utility
Package: e2freefrag
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 3907
Filename: e2freefrag_1.42.4-2_ramips_24kec.ipk
Size: 4586
MD5Sum: 818e41328b94a67755d201f2ace21e65
SHA256sum: d4dd19b7c399d0cc9e2bec86869ab512309f331367c612f9f4b57064ae93abb7
Description: Ext2 Filesystem free space fragmentation information utility
Package: e2fsprogs
Version: 1.42.4-2
Depends: libc, libuuid, libext2fs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 175129
Filename: e2fsprogs_1.42.4-2_ramips_24kec.ipk
Size: 175499
MD5Sum: 6c1451f5b57a586ca3d43f7a5156b252
SHA256sum: 64bdc8424efb003b0bc7843a478c126c49842f37e5133d1bbfb571098454a11b
Description: This package contains essential ext2 filesystem utilities which consists of
e2fsck, mke2fs and most of the other core ext2 filesystem utilities.
Package: ead
Version: 1
Depends: libc
Source: package/network/services/ead
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48404
Filename: ead_1_ramips_24kec.ipk
Size: 49166
MD5Sum: 3370ee1603cca4df502dddcdcaef108f
SHA256sum: 7548f2f724921b64e813bfc0bcfe29ab5f86d6acca41d791d4449cd782281c85
Description: Provides remote access to your device even if IP and firewall
configuration settings are defunct
Package: eapol-test
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 212165
Filename: eapol-test_2014-10-25-1_ramips_24kec.ipk
Size: 212758
MD5Sum: 49094654efba70cd8471b43af2157258
SHA256sum: 19dc2ed55c853bfc57f6ea115094f3f3690f4c4d48fa1408ad8e23d5ac7e6f3d
Description: 802.1x authentication test utility
Package: ebtables-utils
Version: 2.0.10-4-3
Depends: libc, kmod-ebtables, ebtables
Source: package/network/utils/ebtables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 3533
Filename: ebtables-utils_2.0.10-4-3_ramips_24kec.ipk
Size: 4332
MD5Sum: 0295e963411d53c169b54b3b90a71bdf
SHA256sum: 0a5ce6934ed7edbf41fdfcdbaa2a3ad57f4742a1c556ce13697268a23df390f6
Description: The ebtables program is a filtering tool for a bridging firewall. The
filtering is focussed on the Link Layer Ethernet frame fields. Apart
from filtering, it also gives the ability to alter the Ethernet MAC
addresses and implement a brouter.
Package: ebtables
Version: 2.0.10-4-3
Depends: libc, kmod-ebtables
Source: package/network/utils/ebtables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 58554
Filename: ebtables_2.0.10-4-3_ramips_24kec.ipk
Size: 59443
MD5Sum: ba862c0127aea1fec5062892d2f40864
SHA256sum: 6a91b54985dd75b94802575a77c23f7a35beba24de4af3ff8d4d67d4dfdc5530
Description: The ebtables program is a filtering tool for a bridging firewall. The
filtering is focussed on the Link Layer Ethernet frame fields. Apart
from filtering, it also gives the ability to alter the Ethernet MAC
addresses and implement a brouter.
Package: fconfig
Version: 20080329-1
Depends: libc
Source: package/boot/fconfig
Section: utils
Architecture: ramips_24kec
Installed-Size: 6898
Filename: fconfig_20080329-1_ramips_24kec.ipk
Size: 7645
MD5Sum: 9f4873a5addf443b92ed50e6827bfdfd
SHA256sum: 99238ce1a675648521ca986f37bce838f4cf417c5ec67b4a6cd46c0eeb28b51d
Description: displays and (if writable) also edits the RedBoot configuration.
Package: fdisk
Version: 2.25.2-4
Depends: libc, libblkid, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 97550
Filename: fdisk_2.25.2-4_ramips_24kec.ipk
Size: 98327
MD5Sum: b3e343ec15a35f94ce000d43367986f7
SHA256sum: 03c27c51b47347b987413cd0ffb18699a3823be3392ed6741abb034ffed4af04
Description: a menu-driven program for creation and manipulation of partition tables
Package: filefrag
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 4616
Filename: filefrag_1.42.4-2_ramips_24kec.ipk
Size: 5291
MD5Sum: 1ff8c1fa14d1ecbd1da29dd6eb0b559f
SHA256sum: dea127958c200e8562b31afc8bd09be3488a5a04664be6cfab7a112da75a827c
Description: Ext2 Filesystem file fragmentation report utility
Package: findfs
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 2454
Filename: findfs_2.25.2-4_ramips_24kec.ipk
Size: 3292
MD5Sum: bc6af9cfcfd294b9628d1d0063168e79
SHA256sum: 05d0684bbf733d5edf9189cf704fc4336875e4ae0edef9c7431a4cd8cf7d784b
Description: findfs will search the disks in the system looking for a filesystem which has
a label matching label or a UUID equal to uuid
Package: firewall
Version: 2015-02-26
Depends: libc, libubox, libubus, libuci, libip4tc, libip6tc, libxtables, kmod-ipt-core, kmod-ipt-nat
Source: package/network/config/firewall
License: ISC
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60455
Filename: firewall_2015-02-26_ramips_24kec.ipk
Size: 61031
MD5Sum: df6473f7fef45f229b7d9d32610e028c
SHA256sum: a35c71f532efccfedae85411e27ef0bb9d29337b62c87b1be7fb527fb49efe26
Description: This package provides a config-compatible C implementation of the UCI firewall.
Package: flock
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 7559
Filename: flock_2.25.2-4_ramips_24kec.ipk
Size: 8385
MD5Sum: 975e5cc3210c64a403d2d7c3be878e7d
SHA256sum: 2161447be96f50e71f600be0f38adadecdd0fd1e717ad4a99395bbf48a93c360
Description: manages flock locks from within shell scripts or the command line
Package: fstools
Version: 2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974
Depends: libc, ubox
Source: package/system/fstools
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16884
Filename: fstools_2015-03-12-0b99adb02f2eb822fbfc4efcb8ebf5fecbd74974_ramips_24kec.ipk
Size: 17672
MD5Sum: 8eac2471d4684229ec756804711ec6bd
SHA256sum: c7541860ef213261c581076c3c546e1b3f156e5bcab5a03df374cfa7918a9486
Description: OpenWrt filesystem tools
Package: fuse-utils
Version: 2.9.3-1
Depends: libc, libfuse
Source: package/utils/fuse
License: LGPLv2.1 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: utils
Architecture: ramips_24kec
Installed-Size: 13687
Filename: fuse-utils_2.9.3-1_ramips_24kec.ipk
Size: 14443
MD5Sum: 8949ed151d57920eedbc27bcce13f5c4
SHA256sum: 2785d6e2e62c81a3ea80776447a325c5c9b7c675074a93f97795333a3321c417
Description: FUSE (Filesystem in UserSpacE)
This package contains the FUSE utilities.
- fusermount
- ulockmgr_server
Package: gdb
Version: 7.8-1
Depends: libc, libthread-db, zlib, libreadline, libncurses, zlib
Source: package/devel/gdb
License: GPL-3.0+
Section: devel
Architecture: ramips_24kec
Installed-Size: 1714220
Filename: gdb_7.8-1_ramips_24kec.ipk
Size: 1707930
MD5Sum: 2c12c18a3a6438002ce0a095832c5306
SHA256sum: 983a277a0316fa74623042e9b84d84f3dcbfe7fb06c61fee095f4528c467dbbe
Description: GDB, the GNU Project debugger, allows you to see what is going on `inside'
another program while it executes -- or what another program was doing at the
moment it crashed.
Package: gdbserver
Version: 7.8-1
Depends: libc, libthread-db, zlib
Source: package/devel/gdb
License: GPL-3.0+
Section: devel
Architecture: ramips_24kec
Installed-Size: 110759
Filename: gdbserver_7.8-1_ramips_24kec.ipk
Size: 111072
MD5Sum: fbd49b87f0c68cde5e663097b2860472
SHA256sum: d3fc00a5feb90322ab307d993cb53e5c48db6092ee68d36a4279c7e5fd77369f
Description: GDBSERVER is a program that allows you to run GDB on a different machine than the
one which is running the program being debugged.
Package: genl
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6790
Filename: genl_3.19.0-1_ramips_24kec.ipk
Size: 7565
MD5Sum: 771c739c0e234fc89143ac9dacc05fa2
SHA256sum: e2b3ff43f59bdaaf737a88bb5c963032bea0f6330500fcc7ab19049859be851d
Description: General netlink utility frontend
Package: getopt
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 4839
Filename: getopt_2.25.2-4_ramips_24kec.ipk
Size: 5642
MD5Sum: 554c5188b640bef17e5e82ffd8e0c046
SHA256sum: 555b0cbd1bf26f7c24d85938f759ab020a932e6277a4c747e584d324ec8b4534
Description: getopt is used to break up (parse) options in command lines for easy parsing
by shell procedures, and to check for legal options
Package: gre
Version: 1-3
Depends: libc
Source: package/network/config/gre
License: GPL-2.0
Section: net
Maintainer: Hans Dedecker <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1320
Filename: gre_1-3_ramips_24kec.ipk
Size: 2091
MD5Sum: d07ef869446db7ff034861e8afa1b82c
SHA256sum: 8562dbcebe94bb71c91805303b7467ba7b463ff1643718bafbd674410fc5735f
Description: Generic Routing Encapsulation config support (IPv4 and IPv6) in /etc/config/network.
Package: hostapd-common-old
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4827
Filename: hostapd-common-old_2014-10-25-1_ramips_24kec.ipk
Size: 5610
MD5Sum: 500705fb564519926bc445e368b5c296
SHA256sum: fc0440cd4bfa491797e15d5486b7d4ba2a31bee628dc3d1bb348a7b092ad4ece
Description: hostapd/wpa_supplicant common support files (legacy drivers)
Package: hostapd-common
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4582
Filename: hostapd-common_2014-10-25-1_ramips_24kec.ipk
Size: 5337
MD5Sum: 99689e955385dbcc65f476213ebc9f46
SHA256sum: 1c8cea8d13170f024997b1d6458177d17379da30e9bfc7446f8e89ecdbe7b0c3
Description: hostapd/wpa_supplicant common support files
Package: hostapd-mini
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141880
Filename: hostapd-mini_2014-10-25-1_ramips_24kec.ipk
Size: 142225
MD5Sum: fe4c6add71763983dcb2a70cbca3a6c2
SHA256sum: d125fab47b9ed765649650128ab8a7f3a629a044901a34c5be541bfa4722a9cd
Description: This package contains a minimal IEEE 802.1x/WPA Authenticator (WPA-PSK only).
Package: hostapd-utils
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16100
Filename: hostapd-utils_2014-10-25-1_ramips_24kec.ipk
Size: 16863
MD5Sum: 0d8a8f9fbd64f89b76964cae06e7fcd2
SHA256sum: a9cded84ccb4192cfd469a2005c52eb204022f1b55bc4b92c02bc820615058b1
Description: This package contains a command line utility to control the
IEEE 802.1x/WPA/EAP/RADIUS Authenticator.
Package: hostapd
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 241920
Filename: hostapd_2014-10-25-1_ramips_24kec.ipk
Size: 242358
MD5Sum: a793915bd5b6b015f475c1f95b249ed8
SHA256sum: 9644a057c5021f82bc104f98fcb619e7c841f3dc63b19bb5f860861b91ff0bd1
Description: This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS
Authenticator.
Package: hwclock
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 16665
Filename: hwclock_2.25.2-4_ramips_24kec.ipk
Size: 17457
MD5Sum: 8b0cc332dc3095492c1baa59b86e20c9
SHA256sum: a8345bbf5f92de21e10f58e6a52e3d8fd23d371a173461dafa932778fb04bbfb
Description: hwclock is a tool for accessing the Hardware Clock
Package: iconv
Version: 1.11.1-1
Depends: libc, libiconv-full, libcharset
Source: package/libs/libiconv-full
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10076
Filename: iconv_1.11.1-1_ramips_24kec.ipk
Size: 10822
MD5Sum: 0dd0b55db61882479ae1b45930cd5aa0
SHA256sum: e44da2a7dc67953b05576a57bf32de5a406d2373e9250d554c707610ea6c3c3a
Description: Character set conversion utility
Package: iftop
Version: 1.0pre2-1
Depends: libc, libpcap, libncurses, libpthread
Source: package/network/utils/iftop
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20071
Filename: iftop_1.0pre2-1_ramips_24kec.ipk
Size: 20931
MD5Sum: bd8f5ad2359d6995af1d750a00c64820
SHA256sum: f4cca2d23c26775b912f130c59c70107dcbd3c0fc67dc6b0420aa5d12767ec3f
Description: iftop does for network usage what top(1) does for CPU usage. It
listens to network traffic on a named interface and displays a
table of current bandwidth usage by pairs of hosts. Handy for
answering the question 'why is our ADSL link so slow?'.
Package: igmpproxy
Version: 0.1-8
Depends: libc
Source: package/network/services/igmpproxy
License: GPL-2.0+
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14653
Filename: igmpproxy_0.1-8_ramips_24kec.ipk
Size: 15471
MD5Sum: dcc2b888066158fb292c5d85f2953aa1
SHA256sum: 3bf25c858f1cf5be5758dc811f2326fca64c9949f78384eac19986d989ea11c1
Description: IGMPproxy is a simple dynamic Multicast Routing Daemon using
only IGMP signalling (Internet Group Management Protocol).
Package: ip-bridge
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17945
Filename: ip-bridge_3.19.0-1_ramips_24kec.ipk
Size: 18712
MD5Sum: 5624e98187225bb800ce31a6946eda62
SHA256sum: d2b4c15c57f8469b92046a9328e153bbc37448319a03d7938a24385037b7ae80
Description: Bridge configuration utility from iproute2
Package: ip-full
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 111947
Filename: ip-full_3.19.0-1_ramips_24kec.ipk
Size: 112591
MD5Sum: 09d10fc66dfef40fb33542a483aa8847
SHA256sum: feeb018700c40d8489e2b61c80efe1811fdf6427db2e0340bb52af49a6252498
Description: Routing control utility (Full)
Package: ip6tables-extra
Version: 1.4.21-1
Depends: libc, ip6tables, kmod-ip6tables-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10235
Filename: ip6tables-extra_1.4.21-1_ramips_24kec.ipk
Size: 10929
MD5Sum: 42473c1208bbef19b3e6e63ee119328c
SHA256sum: 18c711721f7fd0da9c48657a29d21e72fb8bf84a143d0d543db94baa25cac3b0
Description: IPv6 header matching modules
Package: ip6tables-mod-nat
Version: 1.4.21-1
Depends: libc, ip6tables, kmod-ipt-nat6
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 1850
Filename: ip6tables-mod-nat_1.4.21-1_ramips_24kec.ipk
Size: 2565
MD5Sum: 6d31fc264407c39f4dec4e37623c7a68
SHA256sum: 4bc6c34f148ced9307d037f9c250d08b8d09a1c5b728bba106f654104c247077
Description: iptables extensions for IPv6-NAT targets.
Package: ip6tables
Version: 1.4.21-1
Depends: libc, kmod-ip6tables, iptables
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 214
Filename: ip6tables_1.4.21-1_ramips_24kec.ipk
Size: 913
MD5Sum: 184486046befef543eb5d9dbc460e323
SHA256sum: 623fe09e3b72f57f0241911f36fbd170a00600de5551fb43436c50d8a8626698
Description: IPv6 firewall administration tool
Package: ip
Version: 3.19.0-1
Depends: libc, libnl-tiny
Conflicts: ip-full
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74845
Filename: ip_3.19.0-1_ramips_24kec.ipk
Size: 75567
MD5Sum: 5b12722957d7245104c87d990e27d6d4
SHA256sum: bb30504941d9fd01fa2ebeead055706b40f18a5d26cab3535e82ddabe81a459f
Description: Routing control utility (Minimal)
Package: iperf-mt
Version: 2.0.5-1
Depends: libc, uclibcxx, libpthread
Source: package/network/utils/iperf
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25945
Filename: iperf-mt_2.0.5-1_ramips_24kec.ipk
Size: 26611
MD5Sum: 59a402754f37c7ece75295c6b4bf38d0
SHA256sum: cdfa141aaf002d62a8bdd93e7c7bb83755e4bd93dde87d9c01cb0974cf9d27d8
Description: Iperf is a modern alternative for measuring TCP and UDP bandwidth
performance, allowing the tuning of various parameters and
characteristics.
This package is built with multithread support.
Package: iperf3
Version: 3.0.11-1
Depends: libc
Source: package/network/utils/iperf3
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33700
Filename: iperf3_3.0.11-1_ramips_24kec.ipk
Size: 34500
MD5Sum: 763e0fc238c26399213e5ec0ddcac6f5
SHA256sum: 40a6277c8f8315ea2b9682d694d751cdbe7b379f8bb0ca4f3026e9b264eac1aa
Description: Iperf is a modern alternative for measuring TCP and UDP bandwidth
performance, allowing the tuning of various parameters and
characteristics.
Package: iperf
Version: 2.0.5-1
Depends: libc, uclibcxx
Source: package/network/utils/iperf
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24834
Filename: iperf_2.0.5-1_ramips_24kec.ipk
Size: 25612
MD5Sum: 31aa9d6c3bf838c25f4a1b61b8019fc8
SHA256sum: 1c54a41ae5ac5a0762224c8a04ecf4a78e8268c711fafa9592e196534c627377
Description: Iperf is a modern alternative for measuring TCP and UDP bandwidth
performance, allowing the tuning of various parameters and
characteristics.
This package is built with single thread support.
Package: ipip
Version: 1-1
Depends: libc, kmod-ipip
Source: package/network/config/ipip
License: GPL-2.0
Section: net
Maintainer: Hans Dedecker <[email protected]>
Architecture: ramips_24kec
Installed-Size: 819
Filename: ipip_1-1_ramips_24kec.ipk
Size: 1568
MD5Sum: b2608895c4483d4dc11a4ea8fd3bbe2d
SHA256sum: 6b7247bf56c32aebd9ec33d423a5944e0fb7621a8027b87b3290da2a29a07aea
Description: IP in IP Tunnel config support in /etc/config/network.
Package: ipset-dns
Version: 2013-05-03-6be3afd819a86136b51c5ae722ab48266187155b
Depends: libc, libmnl
Source: package/network/services/ipset-dns
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4401
Filename: ipset-dns_2013-05-03-6be3afd819a86136b51c5ae722ab48266187155b_ramips_24kec.ipk
Size: 5450
MD5Sum: 7783331830dd8ed9ae6b5c2b17bde207
SHA256sum: 6ff13bcd7de4071cc83331c56f0b49875fe65cefa21b64459c7ee1d21b78e60b
Description: The ipset-dns daemon is a lightweight DNS forwarding server that adds all
resolved IPs to a given netfilter ipset. It is designed to be used in
conjunction with dnsmasq's upstream server directive.
Practical use cases include routing over a given gateway traffic for
particular web services or webpages that do not have a priori predictable
IP addresses and instead rely on dizzying arrays of DNS resolutions.
Package: ipset
Version: 6.24-1
Depends: libc, kmod-ipt-ipset, libmnl
Source: package/network/utils/ipset
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 70069
Filename: ipset_6.24-1_ramips_24kec.ipk
Size: 70363
MD5Sum: f1c7f896642ebf24eed3a79250115680
SHA256sum: 911a4a1a0663df0723a7bb3b9dba26e30992dd5b8c04422fc70a960e08987a7c
Description: IPset administration utility
Package: iptables-mod-account
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-account
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2156
Filename: iptables-mod-account_2.5-1_ramips_24kec.ipk
Size: 2925
MD5Sum: c12ecbcfd002db3623c236c3782773a7
SHA256sum: 4820f9c720bc1b7b8d4ba6bf108876810e9d929cffea9211c12b13248761a622
Description: ACCOUNT iptables extension
Package: iptables-mod-chaos
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-chaos
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1662
Filename: iptables-mod-chaos_2.5-1_ramips_24kec.ipk
Size: 2427
MD5Sum: 144f807d64957cfc7419b81eaeae772c
SHA256sum: 93ad8a0ace7708218cde63a4fa245250a8d807765ff2ef9b28c831d374155401
Description: CHAOS iptables extension
Package: iptables-mod-cluster
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-cluster
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2015
Filename: iptables-mod-cluster_1.4.21-1_ramips_24kec.ipk
Size: 3067
MD5Sum: 70da05de38edb05f3ddcfc5b8e57ed3f
SHA256sum: 610c720cbba3aa4535cc37d27e958abc6f0d0201234f02691b8103e8f41ae935
Description: iptables extensions for matching cluster.
Netfilter (IPv4/IPv6) module for matching cluster
This option allows you to build work-load-sharing clusters of
network servers/stateful firewalls without having a dedicated
load-balancing router/server/switch. Basically, this match returns
true when the packet must be handled by this cluster node. Thus,
all nodes see all packets and this match decides which node handles
what packets. The work-load sharing algorithm is based on source
address hashing.
This module is usable for ipv4 and ipv6.
If you select it, it enables kmod-ipt-cluster.
see `iptables -m cluster --help` for more information.
Package: iptables-mod-clusterip
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-clusterip
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2316
Filename: iptables-mod-clusterip_1.4.21-1_ramips_24kec.ipk
Size: 3191
MD5Sum: bfd177a49d54e7082cfcf9accdf1acbe
SHA256sum: d8ad72feb9c6c04f9732c8566da9c6b5d03107df972539592eec0d8098da9abe
Description: iptables extensions for CLUSTERIP.
The CLUSTERIP target allows you to build load-balancing clusters of
network servers without having a dedicated load-balancing
router/server/switch.
If you select it, it enables kmod-ipt-clusterip.
see `iptables -j CLUSTERIP --help` for more information.
Package: iptables-mod-condition
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-condition
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1758
Filename: iptables-mod-condition_2.5-1_ramips_24kec.ipk
Size: 2518
MD5Sum: 4b6dc7d7d517134549fa83c7c0e7970e
SHA256sum: 3eb11d7b6d577ab395161eea2848cd245a4924a13b3ca670096a142a1a86b894
Description: Condition iptables extension
Package: iptables-mod-conntrack-extra
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-conntrack-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 9264
Filename: iptables-mod-conntrack-extra_1.4.21-1_ramips_24kec.ipk
Size: 10072
MD5Sum: 4e3c68619033d4aa22db713503b755cb
SHA256sum: 6ab53b95e157dc290bd37dfe54def901f54aff61eb72ef5b6db26e5d2f4624e4
Description: Extra iptables extensions for connection tracking.
Matches:
- connbytes
- connlimit
- connmark
- recent
- helper
Targets:
- CONNMARK
Package: iptables-mod-delude
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-delude
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1321
Filename: iptables-mod-delude_2.5-1_ramips_24kec.ipk
Size: 2085
MD5Sum: 64a76025ad4ca279df17694780b5e995
SHA256sum: dd4d429dbb8ab58c780baf0340384384211aae1d439c961c21451a246d822b3a
Description: DELUDE iptables extension
Package: iptables-mod-dhcpmac
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-dhcpmac
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2038
Filename: iptables-mod-dhcpmac_2.5-1_ramips_24kec.ipk
Size: 2797
MD5Sum: b05cf4da6c7ba05cfd2fe5d289820455
SHA256sum: c6c27d70ff3ba163c662eddba4e9bf248608888a996b95ac5e93c2f26328ac0c
Description: DHCPMAC iptables extension
Package: iptables-mod-dnetmap
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-dnetmap
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2797
Filename: iptables-mod-dnetmap_2.5-1_ramips_24kec.ipk
Size: 3567
MD5Sum: 11aa2bd4148c2f7341f409ebe13b5d39
SHA256sum: 68881a1af436ab09a00d89cc5b962f524b17529f944b13a542689dfec805e95e
Description: DNETMAP iptables extension
Package: iptables-mod-extra
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 8180
Filename: iptables-mod-extra_1.4.21-1_ramips_24kec.ipk
Size: 8956
MD5Sum: 7ec412cc298c89243974359344f224bc
SHA256sum: 20c4bb8335d52ae975d631c31db829df2ee8f98ba4059b77c958442e3065db1c
Description: Other extra iptables extensions.
Matches:
- addrtype
- condition
- owner
- physdev (if ebtables is enabled)
- pkttype
- quota
Package: iptables-mod-filter
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-filter
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 11762
Filename: iptables-mod-filter_1.4.21-1_ramips_24kec.ipk
Size: 12534
MD5Sum: 59a87f23a0e54c534a5155a53653770b
SHA256sum: 3e07491cb62b2319200ffdf2fc5d7d87b40aaf93a17932d3d56d127634663e87
Description: iptables extensions for packet content inspection.
Includes support for:
Matches:
- layer7
- string
Package: iptables-mod-fuzzy
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-fuzzy
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1856
Filename: iptables-mod-fuzzy_2.5-1_ramips_24kec.ipk
Size: 2611
MD5Sum: 68c38c4b665b4d725327e04c42416ba7
SHA256sum: f7e91f6e2e750def5c7b60d2c91b49158998a39cb705fc22f153d438fb1fc152
Description: fuzzy iptables extension
Package: iptables-mod-geoip
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-geoip
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3218
Filename: iptables-mod-geoip_2.5-1_ramips_24kec.ipk
Size: 3975
MD5Sum: 7d7f399e437f360b41bcf1b01272400c
SHA256sum: b446c1b4cc83cdba839b86aced22147cf198078f7d4d78406ece3d015e108b3c
Description: geoip iptables extension
Package: iptables-mod-hashlimit
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-hashlimit
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 5240
Filename: iptables-mod-hashlimit_1.4.21-1_ramips_24kec.ipk
Size: 5967
MD5Sum: 7c38cd122ad85e6bb0011275c38f7c0f
SHA256sum: 92736569136922311fbd82d62a7c9bd11f4441714d79d5ec6c86f022d170b7b8
Description: iptables extensions for hashlimit matching
Matches:
- hashlimit
Package: iptables-mod-iface
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-iface
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2901
Filename: iptables-mod-iface_2.5-1_ramips_24kec.ipk
Size: 3665
MD5Sum: 4a6e2ce4008409889c37bba2e1d11762
SHA256sum: 0054520ec265b5e2fa2d4c15fd1be8b0072c4a69c3dd33c5422b1ca14f2c98aa
Description: iface iptables extension
Package: iptables-mod-ipmark
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-ipmark
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2246
Filename: iptables-mod-ipmark_2.5-1_ramips_24kec.ipk
Size: 3010
MD5Sum: dd668536e41737b7e8966f1e82a3e692
SHA256sum: b7f9d8510358515e5b867b71e32fc0dd8a17a1bbc7442c77cbc54cf785cbe3c5
Description: IPMARK iptables extension
Package: iptables-mod-ipopt
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-ipopt
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 12698
Filename: iptables-mod-ipopt_1.4.21-1_ramips_24kec.ipk
Size: 13440
MD5Sum: c48d5395ca8280b70143496aa6e0fea5
SHA256sum: 2a6d0d9027ca577835110b24c4b82c9d6e6d845977d5724fffcb93ff292c9210
Description: iptables extensions for matching/changing IP packet options.
Matches:
- dscp
- ecn
- length
- statistic
- tcpmss
- unclean
- hl
Targets:
- DSCP
- CLASSIFY
- ECN
- HL
Package: iptables-mod-ipp2p
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-ipp2p
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2713
Filename: iptables-mod-ipp2p_2.5-1_ramips_24kec.ipk
Size: 3471
MD5Sum: 864b00c9c27004b921f7585c35b6cab7
SHA256sum: 06b528817405afa498d01a2e6d99d17cadb711e494fc27ddb1efc1042db6d117
Description: IPP2P iptables extension
Package: iptables-mod-iprange
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-iprange
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2991
Filename: iptables-mod-iprange_1.4.21-1_ramips_24kec.ipk
Size: 3692
MD5Sum: 6687615633e45d1a253bc64a9912bae6
SHA256sum: cf0b4a83189ca2d6bc3f2bc39713d252301607e85c3e32bcc7f8ee24af69b1e6
Description: iptables extensions for matching ip ranges.
Matches:
- iprange
Package: iptables-mod-ipsec
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-ipsec
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 5455
Filename: iptables-mod-ipsec_1.4.21-1_ramips_24kec.ipk
Size: 6157
MD5Sum: f3ae6c1189e5b0de1b1d871dc99ef6ba
SHA256sum: 56ffbb1f647a5f8eb771732cbe70c1437717b5ac82bfcf057f1fb575683c95dd
Description: iptables extensions for matching ipsec traffic.
Matches:
- ah
- esp
- policy
Package: iptables-mod-ipv4options
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-ipv4options
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2355
Filename: iptables-mod-ipv4options_2.5-1_ramips_24kec.ipk
Size: 3110
MD5Sum: 9e456a8c6dfb61a792c4ad3422514d6b
SHA256sum: 51a18e3e9231e186976d03c014a2c2441cc0a970eacf59ee382d70b5a7b4b646
Description: ipv4options iptables extension
Package: iptables-mod-led
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-led
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2091
Filename: iptables-mod-led_1.4.21-1_ramips_24kec.ipk
Size: 2843
MD5Sum: cfd5b39843fcd13fc866a74e327a1174
SHA256sum: 908acd9fb0500a9456ef5b781642c2013a8f2a21a4e2b78631ddad5e62fedaa5
Description: iptables extension for triggering a LED.
Targets:
- LED
Package: iptables-mod-length2
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-length2
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2339
Filename: iptables-mod-length2_2.5-1_ramips_24kec.ipk
Size: 3106
MD5Sum: f238868ef15384605ec2ab905059e55b
SHA256sum: 227b2683cb3a19e0c448ae8fa723d28c9008dea030d38678bc10613a38d2ad17
Description: length2 iptables extension
Package: iptables-mod-logmark
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-logmark
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2035
Filename: iptables-mod-logmark_2.5-1_ramips_24kec.ipk
Size: 2799
MD5Sum: 986b550da848244ae8861b525b83786c
SHA256sum: 4db225e52dd3e8d2f3e30b0aba028f6df5f59be7d9d2d30a6763ee26152d7504
Description: LOGMARK iptables extension
Package: iptables-mod-lscan
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-lscan
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1703
Filename: iptables-mod-lscan_2.5-1_ramips_24kec.ipk
Size: 2458
MD5Sum: e1f4b4519c8d57f372ee0a0854681cad
SHA256sum: cd97ca5a979b783151bf782d955c7051a8a4e9b71a99df7cf49b69959a6ec5a2
Description: lscan iptables extension
Package: iptables-mod-lua
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-lua
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2524
Filename: iptables-mod-lua_2.5-1_ramips_24kec.ipk
Size: 3289
MD5Sum: d825daf12fa0b630b1733af6bf1a5c49
SHA256sum: ff271bebec7120835deb2bbd1967b5a37f41be48fea7d2fee276dc20456bd06b
Description: Lua PacketScript iptables extension
Package: iptables-mod-nat-extra
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-nat-extra
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2495
Filename: iptables-mod-nat-extra_1.4.21-1_ramips_24kec.ipk
Size: 3223
MD5Sum: e13ff24dbd15a94862e15a8a0dc168c8
SHA256sum: 87b7c0c99d89455d7acde5ac47459647b5c0bd2621dc51fa222be6a02265c2be
Description: iptables extensions for extra NAT targets.
Targets:
- MIRROR
- NETMAP
Package: iptables-mod-nflog
Version: 1.4.21-1
Depends: libc, iptables, kmod-nfnetlink-log, kmod-ipt-nflog
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 1877
Filename: iptables-mod-nflog_1.4.21-1_ramips_24kec.ipk
Size: 2658
MD5Sum: 319686e283efb96a07addeb700bc040c
SHA256sum: d222855cdb8a4ae618572bb75d803cc3bc8c85c2d69aa6dd28c612393e6ca7e8
Description: iptables extension for user-space logging via NFNETLINK.
Includes:
- libxt_NFLOG
Package: iptables-mod-nfqueue
Version: 1.4.21-1
Depends: libc, iptables, kmod-nfnetlink-queue, kmod-ipt-nfqueue
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2249
Filename: iptables-mod-nfqueue_1.4.21-1_ramips_24kec.ipk
Size: 3033
MD5Sum: 1fb2349d6235e65dac0bf08e77c3034d
SHA256sum: 7c01a78e737714da5042ad33d6f43fc87223cb3f0520c5454ef63d4fe402fa52
Description: iptables extension for user-space queuing via NFNETLINK.
Includes:
- libxt_NFQUEUE
Package: iptables-mod-psd
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-psd
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2038
Filename: iptables-mod-psd_2.5-1_ramips_24kec.ipk
Size: 2798
MD5Sum: 34423260c3f8f372d98b4041e8189a01
SHA256sum: e1e28f8552290352a1f727069f7659d7cd78fdee2dcea34b70380e2881b4449e
Description: psd iptables extension
Package: iptables-mod-quota2
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-quota2
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2176
Filename: iptables-mod-quota2_2.5-1_ramips_24kec.ipk
Size: 2932
MD5Sum: aa1f1fd0b3cf04932d1ec2eced0fdf7d
SHA256sum: eeb6018f120d1db40bccf15b2cb7fe6ccd56c97d337a6103558b525225885bd8
Description: quota2 iptables extension
Package: iptables-mod-sysrq
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-sysrq
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1320
Filename: iptables-mod-sysrq_2.5-1_ramips_24kec.ipk
Size: 2078
MD5Sum: 7d903cda2acad8cfa039a5c4a59f8a70
SHA256sum: f88c2fbdff1be0e1299c0fbcd19e2a129c4628e78b041712c3c87422f8dff775
Description: SYSRQ iptables extension
Package: iptables-mod-tarpit
Version: 2.5-1
Depends: libc, iptables, kmod-ipt-tarpit
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1703
Filename: iptables-mod-tarpit_2.5-1_ramips_24kec.ipk
Size: 2460
MD5Sum: 0f80373c1296684d853aa1fe9036e3ad
SHA256sum: 885300bf221c9beeff15fc797b1a64585e91b536469e873f45313e8c1f61ca1f
Description: TARPIT iptables extension
Package: iptables-mod-tee
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-tee
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 1767
Filename: iptables-mod-tee_1.4.21-1_ramips_24kec.ipk
Size: 2508
MD5Sum: 997eb71e86767c73e497fb6fe975fb27
SHA256sum: 49a4c24c5d092c229167b8c9874671a868060ed88d97dd0d33a542165ac6d33a
Description: TEE iptables extensions.
Targets:
- TEE
Package: iptables-mod-tproxy
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-tproxy
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2911
Filename: iptables-mod-tproxy_1.4.21-1_ramips_24kec.ipk
Size: 3648
MD5Sum: ba6bb87a1c489ed7a63592834aa29e6b
SHA256sum: 3cd11e956fa2c732f98b51e107e775c3e8ab89221b254f10f4e22141d45f1d5e
Description: Transparent proxy iptables extensions.
Matches:
- socket
Targets:
- TPROXY
Package: iptables-mod-u32
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-u32
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 2939
Filename: iptables-mod-u32_1.4.21-1_ramips_24kec.ipk
Size: 3682
MD5Sum: 3e1eafd0dc68a63d1336d5aaf8cad399
SHA256sum: 03afec4f83bd0ca983bec3a01ebfd172b7f866fb1fea0efe845ed079f88fdea5
Description: U32 iptables extensions.
Matches:
- u32
Package: iptables-mod-ulog
Version: 1.4.21-1
Depends: libc, iptables, kmod-ipt-ulog
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 160
Filename: iptables-mod-ulog_1.4.21-1_ramips_24kec.ipk
Size: 891
MD5Sum: 1415e87dcccfa08cb5e6b2f1112041fa
SHA256sum: a88272f4cf8ff83bf2589d28462e75b329fb24aa6f03c52ff5ffb2fa8aad879b
Description: iptables extensions for user-space packet logging.
Targets:
- ULOG
Package: iptables
Version: 1.4.21-1
Depends: libc, kmod-ipt-core, libip4tc, libip6tc, libxtables
Source: package/network/utils/iptables
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 49760
Filename: iptables_1.4.21-1_ramips_24kec.ipk
Size: 50538
MD5Sum: e9c56a2bc2ebbef3a43d9e61b8bfe9eb
SHA256sum: b757a2a5e2a1982e82785c934983f6072f610c7b33d197b47dd680302b920115
Description: IP firewall administration tool.
Matches:
- icmp
- tcp
- udp
- comment
- conntrack
- limit
- mac
- mark
- multiport
- set
- state
- time
Targets:
- ACCEPT
- CT
- DNAT
- DROP
- REJECT
- LOG
- MARK
- MASQUERADE
- REDIRECT
- SET
- SNAT
- TCPMSS
Tables:
- filter
- mangle
- nat
- raw
Package: iptaccount
Version: 2.5-1
Depends: libc, iptables, iptables-mod-account
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4885
Filename: iptaccount_2.5-1_ramips_24kec.ipk
Size: 5617
MD5Sum: 60dc4533c1aa639a85d1790ac3ee9e6d
SHA256sum: 7e50e59af3671c902f45ec404f15ce970acc7856b1750cbf11e5e2b7e0e462f8
Description: iptables-mod-account control utility
Package: iputils-arping
Version: 20101006-1
Depends: libc, libsysfs
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5725
Filename: iputils-arping_20101006-1_ramips_24kec.ipk
Size: 6465
MD5Sum: 55e4634cdbdc8c55ec2ad7010ec73422
SHA256sum: 7459905a06c467fe30c754c692a5d95d5126802be2749d4458f4eded884efcc9
Description: Program arping from iputils.
Sends ARP REQUEST to a neighbour host.
Package: iputils-clockdiff
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4773
Filename: iputils-clockdiff_20101006-1_ramips_24kec.ipk
Size: 5503
MD5Sum: 9753f7d160b09ad9a31a3f1c2429283c
SHA256sum: e489d7c661dc5c03b89409ed4659b17daad165210ea0a78420d66cd6c38f5c9f
Description: Program clockdiff from iputils.
Measures clock difference between hosts.
Package: iputils-ping6
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13088
Filename: iputils-ping6_20101006-1_ramips_24kec.ipk
Size: 13879
MD5Sum: 74751cff0177c2ebf51879a4188bda82
SHA256sum: 50d68d846b309591f0422bd2a318bf264bdc4e332a7ad2e52747211beb438a7d
Description: Program ping6 from iputils.
Sends ICMP ECHO_REQUEST to network hosts (IPv6).
Package: iputils-ping
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14885
Filename: iputils-ping_20101006-1_ramips_24kec.ipk
Size: 15615
MD5Sum: 80a2e9532ea92f6854101fadff4ac943
SHA256sum: 34d1dbf42b3ea7c80119efa87c1d4280272a6292822be2e54684f92c426eb953
Description: Program ping from iputils.
Sends ICMP ECHO_REQUEST to network hosts (IPv4).
Package: iputils-tftpd
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5158
Filename: iputils-tftpd_20101006-1_ramips_24kec.ipk
Size: 5883
MD5Sum: d45b74d01707a9cc284115c7289fdb4f
SHA256sum: 418e85994d987014b6b954b2e8d2838d466fb0e5c1c5178903e6b267fad3b552
Description: Program tftpd from iputils
Trivial File Transfer Protocol server.
Package: iputils-tracepath6
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4709
Filename: iputils-tracepath6_20101006-1_ramips_24kec.ipk
Size: 5462
MD5Sum: 12cd28d87990fe6822ecb16c61d744da
SHA256sum: 3e4bd72e88e7ae4fe59d810ee2ea85d7670a3d8c79a96369b853002a7d9ea952
Description: Program tracepath6 from iputils.
Traces path to a network host discovering MTU along this path (IPv6).
Package: iputils-tracepath
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4185
Filename: iputils-tracepath_20101006-1_ramips_24kec.ipk
Size: 4942
MD5Sum: 076f6897c62079f588ca9a60b93203db
SHA256sum: cec7f3466f9f53391d518c6328979c4becccd4d432a4974c523c803a24788652
Description: Program tracepath from iputils.
Traces path to a network host discovering MTU along this path (IPv4).
Package: iputils-traceroute6
Version: 20101006-1
Depends: libc
Source: package/network/utils/iputils
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5938
Filename: iputils-traceroute6_20101006-1_ramips_24kec.ipk
Size: 6664
MD5Sum: 3206f0458d478990a39485a6fdd9f4ee
SHA256sum: 6f1cebd1c839863b02310afaa182a51751e34891243ad36bba2485b203d1b7ef
Description: Program traceroute6 from iputils.
Traces path to a network host (IPv6).
Package: iw
Version: 3.17-1
Depends: libc, libnl-tiny
Source: package/network/utils/iw
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43324
Filename: iw_3.17-1_ramips_24kec.ipk
Size: 44036
MD5Sum: 137530cf62c005a60dd43251d1464a42
SHA256sum: d0d76b82f2f1a36b81062cc8cfde4c44c4216e6806406e379d468daee785a6d1
Description: cfg80211 interface configuration utility
Package: iwcap
Version: 1
Depends: libc
Source: package/network/utils/iwcap
License: Apache-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4682
Filename: iwcap_1_ramips_24kec.ipk
Size: 5580
MD5Sum: bea7992baf682ed8857f03833b849a82
SHA256sum: 0358eded3ab43d92a0bfcc9340d2c4a9d86010db954df031670b10bbb0d725ed
Description: The iwcap utility receives radiotap packet data from wifi monitor interfaces
and outputs it to pcap format. It gathers recived packets in a fixed ring
buffer to dump them on demand which is useful for background monitoring.
Alternatively the utility can stream the data to stdout to act as remote
capture drone for Wireshark or similar programs.
Package: iwinfo
Version: 2015-01-04-c9fd399316003040825dfbd9700488b621bd990e
Depends: libc, libiwinfo
Source: package/network/utils/iwinfo
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5950
Filename: iwinfo_2015-01-04-c9fd399316003040825dfbd9700488b621bd990e_ramips_24kec.ipk
Size: 6743
MD5Sum: 2216417ed771cdfee5a6fc4e7a9fb7a4
SHA256sum: cd18f76ab07b76d5c857103ffffc6f48d854d945a6b7d2faa1197c9c84227095
Description: Command line frontend for the wireless information library.
Package: jshn
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libjson-c, libubox, libblobmsg-json
Source: package/libs/libubox
License: ISC
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5502
Filename: jshn_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 6308
MD5Sum: e27fe58207ddeab53605e6e68ebc741a
SHA256sum: c106c7031c030f367d906453b9548a33de01ddc31b62f60003ea246082c4fdd9
Description: Library for parsing and generating JSON from shell scripts
Package: jsonfilter
Version: 2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9
Depends: libc, libubox, libjson-c
Source: package/utils/jsonfilter
License: ISC
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8085
Filename: jsonfilter_2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9_ramips_24kec.ipk
Size: 8897
MD5Sum: 9f42107ea15952ca2f7e62803c417223
SHA256sum: 54e1157cad0e4f94517218d8ad696509f0196ba5d7157758e099ba0c84e938a7
Description: OpenWrt JSON filter utility
Package: kmod-6lowpan-iphc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: kmod-6lowpan-iphc_3.18.9-1_ramips_24kec.ipk
Size: 861
MD5Sum: ee74360767993c5567bb2d402e7e467c
SHA256sum: 9bbbc61b501865059764f50e383f2eee2b563c9139c5b9a82dece5c3a6c03116
Description: Shared 6lowpan code for IEEE 802.15.4 and Bluetooth.
Package: kmod-8021q
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 184
Filename: kmod-8021q_3.18.9-1_ramips_24kec.ipk
Size: 923
MD5Sum: b67a0269b5045d0dabf5e0566c3f3418
SHA256sum: 52b8bfb14c8814a3ad3caecb0699d8a5a9a61f3218bb1ad79e50f98395eac907
Description: Kernel module for 802.1Q VLAN support
Package: kmod-ac97
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: kmod-ac97_3.18.9-1_ramips_24kec.ipk
Size: 840
MD5Sum: 4b8185444f6c5db7a96ccc499436d9ae
SHA256sum: 937c1f69cd744d8a4f5f7d0d2295e0b70544d513d53129f870d93c35c0fe48aa
Description: The ac97 controller
Package: kmod-aoe
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21967
Filename: kmod-aoe_3.18.9-1_ramips_24kec.ipk
Size: 22633
MD5Sum: cb375f217c165b9f641cfc77877c71d5
SHA256sum: b3465943b176bd1d79ff3a5095c100f0c4d8ab8329035e730a3eb1f89d3c07c0
Description: Kernel support for ATA over Ethernet
Package: kmod-appletalk
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-llc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18432
Filename: kmod-appletalk_3.18.9-1_ramips_24kec.ipk
Size: 19208
MD5Sum: 27866a107b9d3da4302ffc33780ec4a5
SHA256sum: 88e90fbe1d3c769a69ad1d15dc62f6c2ce05498708c8f56f8bd1b348f2ee8f96
Description: Kernel module for AppleTalk protocol.
Package: kmod-arptables
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8107
Filename: kmod-arptables_3.18.9-1_ramips_24kec.ipk
Size: 8882
MD5Sum: 6d15898825b31ade5d6c44f5f9b34f7d
SHA256sum: f3dda48794b6d1cf592f294bf642e8c177074d650b1dfc049786e62138c308fc
Description: Kernel modules for ARP firewalling
Package: kmod-ath9k-common
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ath
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123562
Filename: kmod-ath9k-common_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 121457
MD5Sum: 1d3ca7b7a556d3182a2f96f06d86f41a
SHA256sum: 2fa9ccdc4df8ebb8a5d747f1d1c2798352ad6964fcb0d7c0f861a89a392784bb
Description: Atheros 802.11n wireless devices (common code for ath9k and ath9k_htc)
Package: kmod-ath9k-htc
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ath9k-common, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94843
Filename: kmod-ath9k-htc_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 95175
MD5Sum: a5016615e63cda6b8a7ab8773107bd39
SHA256sum: b76e64722d44ffe44a41f50bbd83bfe07e326f9c76358a3ab97dee551a7a451a
Description: This module adds support for wireless adapters based on
Atheros USB AR9271 and AR7010 family of chipsets.
Package: kmod-ath
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12549
Filename: kmod-ath_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 13230
MD5Sum: 2d735791f55a330ee15ee7bbda993b26
SHA256sum: c93acf00fbe20969dfefb6cf4bf2ea51fffa9cda1b1d7cdd82c0ba50fb160128
Description: This module contains some common parts needed by Atheros Wireless drivers.
Package: kmod-atm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 26538
Filename: kmod-atm_3.18.9-1_ramips_24kec.ipk
Size: 27227
MD5Sum: 21d6859515d511945e0960d6fd7ca1b8
SHA256sum: 837928c5e4854b0269dbb58e5629d31ad3be85edd0d0040b889984bba1ccafbc
Description: Kernel modules for ATM support
Package: kmod-atmtcp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3860
Filename: kmod-atmtcp_3.18.9-1_ramips_24kec.ipk
Size: 4607
MD5Sum: 40ddb25ff213c9f27342bf729246bb02
SHA256sum: aa05390ea79ca5fa597d1ed8f9fdc7cf4181c531b7f4c0285f54fd4d8f9a07dc
Description: Kernel module for ATM over TCP support
Package: kmod-ax25
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc16
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 31689
Filename: kmod-ax25_3.18.9-1_ramips_24kec.ipk
Size: 32388
MD5Sum: 92eeb274dfec09cda05a81fdee5a2cc2
SHA256sum: 6053fce536f12c83eaabcba9ca68ef1d44a72affae10315c8dd0fa1aa0eeab59
Description: Kernel modules for AX25 support
Package: kmod-block2mtd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3512
Filename: kmod-block2mtd_3.18.9-1_ramips_24kec.ipk
Size: 4232
MD5Sum: da2c627a97f1e94008d1c3b5b92c4dab
SHA256sum: fb5cf56daef61bf52aee71e511f11bad96b8c8f4ed6ead34e49294d181b8fcf8
Description: Block device MTD emulation
Package: kmod-bluetooth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-crypto-hash, kmod-6lowpan-iphc, kmod-lib-crc16, kmod-hid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 184516
Filename: kmod-bluetooth_3.18.9-1_ramips_24kec.ipk
Size: 184778
MD5Sum: c4aec8ced4fa85e722d43ce86e9c891c
SHA256sum: 968a4dfca085db8865d9808552a49c5f9cf39a58ffa19db2f03d30c82ee1d6fb
Description: Kernel support for Bluetooth devices
Package: kmod-bluetooth_6lowpan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-bluetooth
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10354
Filename: kmod-bluetooth_6lowpan_3.18.9-1_ramips_24kec.ipk
Size: 11150
MD5Sum: 3ba0471af8a3d1156e11ce8aa16d3f68
SHA256sum: 12654af468561677267c7eec0dd4defdea69685f89c615dc51a7a4c9943498b2
Description: Kernel support for 6LoWPAN over Bluetooth Low Energy devices
Package: kmod-bonding
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 54184
Filename: kmod-bonding_3.18.9-1_ramips_24kec.ipk
Size: 54782
MD5Sum: 5016ad9066f9efaa89d1dc275450b5c9
SHA256sum: 0addc3422eb5fa9bcb0d4ce8c6214863d6f1c5cbf45faddc0e0183fe723bc3e1
Description: Kernel module for NIC bonding.
Package: kmod-brcmfmac
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211, kmod-brcmutil, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 572273
Filename: kmod-brcmfmac_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 572813
MD5Sum: ed32b170df75f7e383ad757a9b2f3e25
SHA256sum: d58d9178f390df747cf86eba7d6bb23bf26f2cb338dce62f013069211981ac6c
Description: Kernel module for Broadcom IEEE802.11n USB Wireless cards
Package: kmod-brcmutil
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3651
Filename: kmod-brcmutil_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 4446
MD5Sum: ed6180670bcedee117a4da946de181ac
SHA256sum: 5053565ed58f97eabf5b40a569e526d9976e93f9946f1cb88310a8a3ac5214fd
Description: This module contains some common parts needed by Broadcom Wireless drivers brcmsmac and brcmfmac.
Package: kmod-bridge
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-stp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 187
Filename: kmod-bridge_3.18.9-1_ramips_24kec.ipk
Size: 931
MD5Sum: 9ab619c9669723121513c21b243416f2
SHA256sum: 8f2b7fb136f7c9da9c38a91febd83702ce835a5e4296bb78a89c03ff6c7bf94b
Description: Kernel module for Ethernet bridging.
Package: kmod-button-hotplug
Version: 3.18.9-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/button-hotplug
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2872
Filename: kmod-button-hotplug_3.18.9-3_ramips_24kec.ipk
Size: 3643
MD5Sum: a6ce5a7f33af63983e4cdb61f7d53870
SHA256sum: 6ce2f962f5bccb5ab048edc5a256c69e4d62b0ec839fde5af2ba8c406d902782
Description: Kernel module to generate button uevent-s from input subsystem events.
If your device uses GPIO buttons, see gpio-button-hotplug.
Package: kmod-can-bcm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8186
Filename: kmod-can-bcm_3.18.9-1_ramips_24kec.ipk
Size: 9020
MD5Sum: a81582b94d7d2ade2d8e433241884bff
SHA256sum: 578d6155776ee75f474f26d9a7cde506856f3ab541bf69a54cb327d67e5ce6b3
Description: The Broadcast Manager offers content filtering, timeout monitoring,
sending of RTR frames, and cyclic CAN messages without permanent user
interaction.
Package: kmod-can-c-can-platform
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can-c-can, kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2663
Filename: kmod-can-c-can-platform_3.18.9-1_ramips_24kec.ipk
Size: 3600
MD5Sum: a836b6860c46cdb98c939a43a0c29c07
SHA256sum: ef12ec0d1dfee3f3876cd4b02b9c9b19ec994f952138df52d59085f34ed91d0c
Description: This driver adds support for the C_CAN/D_CAN chips connected
to the "platform bus" (Linux abstraction for directly to the
processor attached devices) which can be found on various
boards from ST Microelectronics (http://www.st.com) like the
SPEAr1310 and SPEAr320 evaluation boards & TI (www.ti.com)
boards like am335x, dm814x, dm813x and dm811x.
Package: kmod-can-c-can
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5054
Filename: kmod-can-c-can_3.18.9-1_ramips_24kec.ipk
Size: 5811
MD5Sum: 909f250f1c37368ff90e16dac37dba5a
SHA256sum: 857b371c3a6dc3984e5757b7c2a2b4c1815f55dac81632dda38db99fd8569903
Description: This driver adds generic support for the C_CAN/D_CAN chips.
Package: kmod-can-gw
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5106
Filename: kmod-can-gw_3.18.9-1_ramips_24kec.ipk
Size: 5866
MD5Sum: 69af942290440930ba69d7ea2660b312
SHA256sum: 1db228dff00a59281346187dd9829356d4cd0596416423d5f36dc9c60ba8da93
Description: The CAN Gateway/Router is used to route (and modify) CAN frames.
Package: kmod-can-raw
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4666
Filename: kmod-can-raw_3.18.9-1_ramips_24kec.ipk
Size: 5431
MD5Sum: e3ef337fd09acfcf3b1ca59fdf9765df
SHA256sum: 69e1b98ebff3b2afd7111f18bb13d244c27115c6d79ad91da0d321a6097ae9a4
Description: The raw CAN protocol option offers access to the CAN bus via
the BSD socket API.
Package: kmod-can-slcan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4424
Filename: kmod-can-slcan_3.18.9-1_ramips_24kec.ipk
Size: 5251
MD5Sum: 3d17fde8b1fe6018b253032223884aab
SHA256sum: b975a408ea02853c7900e731c9d5840deac9d809f596995ab06c347dec7176d0
Description: CAN driver for several 'low cost' CAN interfaces that are attached
via serial lines or via USB-to-serial adapters using the LAWICEL
ASCII protocol.
Package: kmod-can-usb-8dev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5768
Filename: kmod-can-usb-8dev_3.18.9-1_ramips_24kec.ipk
Size: 6567
MD5Sum: aa7aa116e418b128c8ff2599792e6bdd
SHA256sum: 85693b0cd69abdf37c07248035ebc3f471087686edcc5ae3ea7e1a5768eeeebc
Description: This driver supports the USB2CAN interface
from 8 devices (http://www.8devices.com).
Package: kmod-can-usb-ems
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5626
Filename: kmod-can-usb-ems_3.18.9-1_ramips_24kec.ipk
Size: 6461
MD5Sum: 7c10fdde91b5d0b56d2d1ab0829ccf8a
SHA256sum: 49dd7efee299b6242b100a5ccb4d00f910a606c15e9513414c6b63e5ce422fdf
Description: This driver is for the one channel CPC-USB/ARM7 CAN/USB interface
from EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
Package: kmod-can-usb-esd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6181
Filename: kmod-can-usb-esd_3.18.9-1_ramips_24kec.ipk
Size: 7051
MD5Sum: dd6a65797538d84847feacd477388686
SHA256sum: f5af06accc46f54cb9ae153519d8ad5832540c3cb99624b65e1993f8ba98ba11
Description: This driver supports the CAN-USB/2 interface
from esd electronic system design gmbh (http://www.esd.eu).
Package: kmod-can-usb-kvaser
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7951
Filename: kmod-can-usb-kvaser_3.18.9-1_ramips_24kec.ipk
Size: 8754
MD5Sum: 047c04df32554d163288a37d1af80f95
SHA256sum: 580d5b09773a4eecd442a4cf0a00bb42a5b81849d369441a5940882baad510cf
Description: This driver adds support for Kvaser CAN/USB devices like Kvaser
Leaf Light.
Package: kmod-can-usb-peak
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12603
Filename: kmod-can-usb-peak_3.18.9-1_ramips_24kec.ipk
Size: 13406
MD5Sum: 68f497a822e0f0de466303d2e17961f4
SHA256sum: edf0f4f1c8f755a247aaa4101dceb704fd560d68a6b6c8146827dd89ac9af5f5
Description: This driver supports the PCAN-USB and PCAN-USB Pro adapters
from PEAK-System Technik (http://www.peak-system.com).
Package: kmod-can-vcan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-can
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1664
Filename: kmod-can-vcan_3.18.9-1_ramips_24kec.ipk
Size: 2478
MD5Sum: f0b15601b205a9a4c323830b8f2a203e
SHA256sum: 651ddddabd8153bde6116e47c9228fdb9b3a7e1600bf951f1c47a49ab2b5206d
Description: Similar to the network loopback devices, vcan offers a
virtual local CAN interface.
Package: kmod-can
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14452
Filename: kmod-can_3.18.9-1_ramips_24kec.ipk
Size: 15144
MD5Sum: b5d020e2d3fe044aef9f2a125e1e6956
SHA256sum: b83443b4855bf50c36fef6edc5ab21f4b7b732a82e576591da18ea16e8c8b5b3
Description: Kernel module for CAN bus support.
Package: kmod-capi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20822
Filename: kmod-capi_3.18.9-1_ramips_24kec.ipk
Size: 21582
MD5Sum: a6518fdee4a0da1a920c848504510ec6
SHA256sum: 2a6a97c85395d8dae4b981dbf111e4320ffbf99bea6576df793e341d1ccf21a5
Description: Kernel module for basic CAPI (ISDN) support
Package: kmod-carl9170
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211, kmod-ath, kmod-usb-core, kmod-input-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58800
Filename: kmod-carl9170_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 59505
MD5Sum: 8605daceadd9b7d0c9216908fad91ac1
SHA256sum: 8dde6bb2730e2cd25bffecdc259125e0ec2545f3225676fb04062bd43d7d03d5
Description: Driver for Atheros AR9170 USB sticks
Package: kmod-cfg80211
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), iw
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 117611
Filename: kmod-cfg80211_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 118184
MD5Sum: d166043213f0e94d25b0e774da1b93bd
SHA256sum: d1b78d28673d2124f2454cf72837f4d51359000e2e72b98600322842bba85c9f
Description: cfg80211 is the Linux wireless LAN (802.11) configuration API.
Package: kmod-crypto-aead
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3705
Filename: kmod-crypto-aead_3.18.9-1_ramips_24kec.ipk
Size: 4452
MD5Sum: 45d1a94512320282dd0a073126eec5c2
SHA256sum: e96258eca9e27e6df734a63378c91465be1e293f7834c6f65afb0d5eb9972fb6
Description: CryptoAPI AEAD support
Package: kmod-crypto-aes
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 199
Filename: kmod-crypto-aes_3.18.9-1_ramips_24kec.ipk
Size: 947
MD5Sum: fba35e427dd61e06ec7b8fbef55003bd
SHA256sum: c79163bab27eb3dda2e3ff1fd5ebbefe5ca9884251315c947aa7cc04340e01ee
Description: AES cipher CryptoAPI module
Package: kmod-crypto-arc4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1263
Filename: kmod-crypto-arc4_3.18.9-1_ramips_24kec.ipk
Size: 2055
MD5Sum: 936dd4ca63750edaef794819cc098dba
SHA256sum: 0167ff873683ec6dc6ccca2342208c4bbde18e3e7395112d009e209179199df7
Description: ARC4 (RC4) cipher CryptoAPI module
Package: kmod-crypto-authenc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4284
Filename: kmod-crypto-authenc_3.18.9-1_ramips_24kec.ipk
Size: 5028
MD5Sum: 8099416d75c13c72b298e977e0a54f81
SHA256sum: 75f0ee59827280451cd0b7cc1723cf9152c43891e706f1ab673e7f2013e79e70
Description: Combined mode wrapper for IPsec
Package: kmod-crypto-cbc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2018
Filename: kmod-crypto-cbc_3.18.9-1_ramips_24kec.ipk
Size: 2816
MD5Sum: f153ea5279d3b19dbd76dfc5b1e3a4af
SHA256sum: e6e34b4dc51ccfa0f7eb82aa60a369040e0713a627c1e59493c60d8ffca8b979
Description: Cipher Block Chaining CryptoAPI module
Package: kmod-crypto-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7278
Filename: kmod-crypto-core_3.18.9-1_ramips_24kec.ipk
Size: 8043
MD5Sum: 483f17bc441f3dc6f0ac8ded6d90c325
SHA256sum: 358fb0811a37f8eb0aeda43e79eab3181c3bbc43b020303e84be621d5f1e70ae
Description: Core CryptoAPI modules
Package: kmod-crypto-crc32c
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1035
Filename: kmod-crypto-crc32c_3.18.9-1_ramips_24kec.ipk
Size: 1804
MD5Sum: 5762b0a5c82fee4d1d5de8cbdfac7125
SHA256sum: 2b2812d1184e268d7a65097cd25c6365ed489b3276d192fbfe09a66810461ea4
Description: CRC32c CRC module
Package: kmod-crypto-ctr
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-seqiv, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2760
Filename: kmod-crypto-ctr_3.18.9-1_ramips_24kec.ipk
Size: 3517
MD5Sum: afd53a5c6919bc9ee098ab126812aa1f
SHA256sum: 870a4618c1e62938646a787f669e0d3d6a78d1b421bf26911c41b0e89d59e9fc
Description: Counter Mode CryptoAPI module
Package: kmod-crypto-deflate
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-zlib, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1441
Filename: kmod-crypto-deflate_3.18.9-1_ramips_24kec.ipk
Size: 2224
MD5Sum: 682ca4ff2b8045e8f53a1c23a90cfeb0
SHA256sum: a8afe2e0f77950337331e7e2270a07ca4c79f91f88f5811e8a98c39d64cbecba
Description: Deflate compression CryptoAPI module
Package: kmod-crypto-des
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8371
Filename: kmod-crypto-des_3.18.9-1_ramips_24kec.ipk
Size: 8936
MD5Sum: d3a5494525b85dc322d26dd8fff28a26
SHA256sum: 318539e79eb8e39236fb25b4991e5b3a653c5ba640a31a0fbf976762db4441a7
Description: DES/3DES cipher CryptoAPI module
Package: kmod-crypto-ecb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1587
Filename: kmod-crypto-ecb_3.18.9-1_ramips_24kec.ipk
Size: 2383
MD5Sum: fd02e35c1c38492ebe5cf6bf9d43c21b
SHA256sum: 09f91d451a9dda0cc3f73036afd1004b7c13a958dd2aa461130e909d732a1669
Description: Electronic CodeBook CryptoAPI module
Package: kmod-crypto-fcrypt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3747
Filename: kmod-crypto-fcrypt_3.18.9-1_ramips_24kec.ipk
Size: 4506
MD5Sum: db53cd355de6b9a20760f3a734f31ec3
SHA256sum: afece54a8bd6e2a0a0eb21a83c08a974961971c519e3bbe111915d394f96005d
Description: FCRYPT cipher CryptoAPI module
Package: kmod-crypto-gcm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-ctr, kmod-crypto-ghash, kmod-crypto-null, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7202
Filename: kmod-crypto-gcm_3.18.9-1_ramips_24kec.ipk
Size: 7988
MD5Sum: c447bad807bbe06579958236ebead0d0
SHA256sum: 2c33b930bc623d3595fb2a2499da3faacdc68d545b271b3bd6985befc1c38e1d
Description: GCM/GMAC CryptoAPI module
Package: kmod-crypto-gf128
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4234
Filename: kmod-crypto-gf128_3.18.9-1_ramips_24kec.ipk
Size: 5009
MD5Sum: 50756bc06e2f0c9a45bbd5f9f7d6b60d
SHA256sum: a06377520b37b102fbc68702c49123ecfe2d09abbd64a421dc20ea8abc090a71
Description: GF(2^128) multiplication functions CryptoAPI module
Package: kmod-crypto-ghash
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-gf128, kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1396
Filename: kmod-crypto-ghash_3.18.9-1_ramips_24kec.ipk
Size: 2192
MD5Sum: d3cae3c2fa6004066563aa00236cfd21
SHA256sum: 1703c81c62b2d08856bb30cee73964ea7314774fc8178eeb0e373265c5352cc3
Description: GHASH digest CryptoAPI module
Package: kmod-crypto-hash
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6383
Filename: kmod-crypto-hash_3.18.9-1_ramips_24kec.ipk
Size: 7159
MD5Sum: 68170ec62c12e3d8eefb6d4b1a2c564d
SHA256sum: 5704b8da65416c4e0435761585088fb3bb20fbed3880457fd81a6dc26149fd23
Description: CryptoAPI hash support
Package: kmod-crypto-hmac
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2099
Filename: kmod-crypto-hmac_3.18.9-1_ramips_24kec.ipk
Size: 2883
MD5Sum: f1550d0bb6a143ae8590065aaeb0dd19
SHA256sum: 1dc09fbdd841c09d1a374aa3bc5e8e1308b7279d1743ecb0d38c8dff4c1430fa
Description: HMAC digest CryptoAPI module
Package: kmod-crypto-hw-geode
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-hw-geode_3.18.9-1_ramips_24kec.ipk
Size: 863
MD5Sum: 3e61d5683f7844f569c5fd3ab74ba37a
SHA256sum: 3d679b7abe86a8d343032cb0e9095688bc157bcb78980fb611c99ea92f75c33a
Description: AMD Geode hardware crypto module
Package: kmod-crypto-hw-hifn-795x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-random-core, kmod-crypto-manager, kmod-crypto-core, kmod-crypto-des
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-hw-hifn-795x_3.18.9-1_ramips_24kec.ipk
Size: 880
MD5Sum: 41b28790e3b506675986698a5bffd541
SHA256sum: 8d284a9858e5eea0fc90d176823130074ce95ef7758c4006ff29942aa792a5a0
Description: HIFN 795x crypto accelerator
Package: kmod-crypto-hw-padlock
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aes, kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-hw-padlock_3.18.9-1_ramips_24kec.ipk
Size: 881
MD5Sum: 35c85ac44ff242af57f9edb37e187cb5
SHA256sum: 1734433d30503f3dfb1affadcfc674f123ca80661c14a034171c0a6d23fa0dd0
Description: VIA PadLock ACE with AES/SHA hw crypto module
Package: kmod-crypto-hw-talitos
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aes, kmod-crypto-manager, kmod-crypto-hash, kmod-random-core, kmod-crypto-authenc, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-hw-talitos_3.18.9-1_ramips_24kec.ipk
Size: 906
MD5Sum: 41b2c46d1f290285c14ed72766fe7225
SHA256sum: 7c01bf7f2c09c30fe12da94115d825c9e6548c656a02f76ceb3da2fe2f07e8d8
Description: Freescale integrated security engine (SEC) driver
Package: kmod-crypto-iv
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-rng, kmod-crypto-wq, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3722
Filename: kmod-crypto-iv_3.18.9-1_ramips_24kec.ipk
Size: 4470
MD5Sum: e4d52009b9620bd82e53b13c0db5af49
SHA256sum: 7c6ca3f5e4339c5ad45e463f1adc2af28af8b78533557fdee0f4cae635863536
Description: CryptoAPI initialization vectors
Package: kmod-crypto-manager
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aead, kmod-crypto-hash, kmod-crypto-pcompress, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-manager_3.18.9-1_ramips_24kec.ipk
Size: 863
MD5Sum: 3a691133250a84517962af25e8d4cafe
SHA256sum: 52158b28c7642b37b05ec3f694aa08c159f030bf80a62d40e10aeae1f6985f94
Description: CryptoAPI algorithm manager
Package: kmod-crypto-md4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2183
Filename: kmod-crypto-md4_3.18.9-1_ramips_24kec.ipk
Size: 2945
MD5Sum: 9d7be0a4bd8f6c006ad8f7e76b3ada2b
SHA256sum: 56b6d7faf56fffab285bf8d6426322ba391f01ce688ad746ce9347ed53136363
Description: MD4 digest CryptoAPI module
Package: kmod-crypto-md5
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1308
Filename: kmod-crypto-md5_3.18.9-1_ramips_24kec.ipk
Size: 2095
MD5Sum: e92413140e38ca8f96dbdfa20b53cfeb
SHA256sum: 9a40c68d07f9e869038165a2b7635c576f30391bc01286e99539bc981b136950
Description: MD5 digest CryptoAPI module
Package: kmod-crypto-michael-mic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1412
Filename: kmod-crypto-michael-mic_3.18.9-1_ramips_24kec.ipk
Size: 2207
MD5Sum: 671ec93f7c3e7bde7c7474a9d3ea4249
SHA256sum: d8a7a5168845eb15cb312e709e24972ef8ef7c5f3506bbd8c43314c239c05ae0
Description: Michael MIC keyed digest CryptoAPI module
Package: kmod-crypto-misc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104750
Filename: kmod-crypto-misc_3.18.9-1_ramips_24kec.ipk
Size: 100808
MD5Sum: f15018d731c2c9a0fe21407cb580dc0b
SHA256sum: 93e05f79c6aa088f104be5bea8223a02622b1e60464bb00113d7014304205c2e
Description: Other CryptoAPI modules
Package: kmod-crypto-null
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-manager
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1274
Filename: kmod-crypto-null_3.18.9-1_ramips_24kec.ipk
Size: 2057
MD5Sum: 926c58a7648c6b4b7e324d7e31326293
SHA256sum: 9149efcb52ab4e77f2227effb498282b4894f40ff60df9988c4b4d6ed81132a1
Description: Null CryptoAPI module
Package: kmod-crypto-ocf
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 31400
Filename: kmod-crypto-ocf_3.18.9-1_ramips_24kec.ipk
Size: 32057
MD5Sum: 75d6d891269a201be22b90197495ea9d
SHA256sum: 3c82da7bddb7de4e9e8876e61fb83981fa214d43da38c55f05accff7d6a7d17e
Description: OCF modules
Package: kmod-crypto-pcbc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1838
Filename: kmod-crypto-pcbc_3.18.9-1_ramips_24kec.ipk
Size: 2641
MD5Sum: 6039aaeb018b990ff16eea666235db38
SHA256sum: 9bf273b75e697ff7806ecc6cbf851cf3d0133c3075761fa3c12fec650655bee5
Description: Propagating Cipher Block Chaining CryptoAPI module
Package: kmod-crypto-pcompress
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-crypto-pcompress_3.18.9-1_ramips_24kec.ipk
Size: 857
MD5Sum: 355369f5bda0c1e38a78b8805e004e8c
SHA256sum: ae8a45742be2963154ceb201b3fd7336651f49984304a554865178e79f41d9de
Description: CryptoAPI Partial (de)compression operations
Package: kmod-crypto-rng
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2111
Filename: kmod-crypto-rng_3.18.9-1_ramips_24kec.ipk
Size: 2861
MD5Sum: f34e7d8ab6bca5e8003e0194c615c387
SHA256sum: d85b46f8f2c8142472b1c816f3b8cfbcc2d19d992963a8770ba3a47a640f9f2f
Description: CryptoAPI random number generation
Package: kmod-crypto-seqiv
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-aead, kmod-crypto-rng, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2075
Filename: kmod-crypto-seqiv_3.18.9-1_ramips_24kec.ipk
Size: 2840
MD5Sum: 24f1f8ea38de3c17f4ae4e185cfd0aee
SHA256sum: 4431da3628d758c9931552a99031f2187c08f3be58aa48ff8c44c2673ccbaf00
Description: CryptoAPI Sequence Number IV Generator
Package: kmod-crypto-sha1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1536
Filename: kmod-crypto-sha1_3.18.9-1_ramips_24kec.ipk
Size: 2316
MD5Sum: 522a672a333b6e131abbe7f869dabfe9
SHA256sum: eee15ec48178a62b18295fd198c1879a696590d86425ea5ae90724d9ff32a43d
Description: SHA1 digest CryptoAPI module
Package: kmod-crypto-sha256
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4465
Filename: kmod-crypto-sha256_3.18.9-1_ramips_24kec.ipk
Size: 5224
MD5Sum: 6c161b6ff275ad920507bfdef2e60b59
SHA256sum: 908398586ea9ab39f5dbd118af9460b5ef287057ce7a7aeaf3a98c9b5c0bf524
Description: SHA224 SHA256 digest CryptoAPI module
Package: kmod-crypto-test
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-manager
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15174
Filename: kmod-crypto-test_3.18.9-1_ramips_24kec.ipk
Size: 15811
MD5Sum: f1672247f144d9799a437f163877cffc
SHA256sum: 36b6778a06cf9c9576f296b1d50f1ef599bc0f034134d662ca53b9b8f6873274
Description: Test CryptoAPI module
Package: kmod-crypto-user
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-hash, kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8912
Filename: kmod-crypto-user_3.18.9-1_ramips_24kec.ipk
Size: 9715
MD5Sum: 227d77270c66886ade63585b91289a6a
SHA256sum: 2e641da206159dd8dee2de12bf74515ccc7f746bab13f039dabffd1d6b1e007d
Description: CryptoAPI userspace interface
Package: kmod-crypto-wq
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 908
Filename: kmod-crypto-wq_3.18.9-1_ramips_24kec.ipk
Size: 1680
MD5Sum: 985edd1d6242eaad9dace6990e66fda3
SHA256sum: 6474d0c3cf76c19f578766a0c14ccf0a72648f489fcbc66bf60f4500e083f3cc
Description: CryptoAPI work queue handling
Package: kmod-crypto-xts
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-gf128, kmod-crypto-manager, kmod-crypto-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2458
Filename: kmod-crypto-xts_3.18.9-1_ramips_24kec.ipk
Size: 3205
MD5Sum: ee1e3f24e0fa09b875e21273fc8edd09
SHA256sum: 8f2b566c03ba7290cccba01b88dbf942c9d3b618e5af2c8373faef68d1d21687
Description: XTS cipher CryptoAPI module
Package: kmod-dm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-manager
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 72761
Filename: kmod-dm_3.18.9-1_ramips_24kec.ipk
Size: 73450
MD5Sum: 38e77e1468bf83a6b4b24dca3c8732e1
SHA256sum: ee008fb1072a003606ca2cd5786d03455f21af9a595449162bc22078818fc858
Description: Kernel module necessary for LVM2 support
Package: kmod-dnsresolver
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3879
Filename: kmod-dnsresolver_3.18.9-1_ramips_24kec.ipk
Size: 4609
MD5Sum: 03827e677b644b0bc7454521c8d3e921
SHA256sum: 6115df6bd61d73bc6aaf2a33b40f893465fd3bd63e84572637b0c423a01f73ad
Description: In-kernel DNS Resolver
Package: kmod-dummy
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1872
Filename: kmod-dummy_3.18.9-1_ramips_24kec.ipk
Size: 2642
MD5Sum: 4bae67a938b1d83849e076f7bb723a96
SHA256sum: 8fb58d22c4a8c0e31b4c8585605943f52bfbae7cf91165452a33628c933ba2f7
Description: The dummy network device
Package: kmod-ebtables-ipv4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ebtables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3848
Filename: kmod-ebtables-ipv4_3.18.9-1_ramips_24kec.ipk
Size: 4646
MD5Sum: e2c10ae6950d09d3b1311270b4138f93
SHA256sum: 1b7c230d2bd1876bf32d656c51e7d8453f6367f7c3683ca002f8c72c49048773
Description: This option adds the IPv4 support to ebtables, which allows basic
IPv4 header field filtering, ARP filtering as well as SNAT, DNAT targets.
Package: kmod-ebtables-ipv6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ebtables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1596
Filename: kmod-ebtables-ipv6_3.18.9-1_ramips_24kec.ipk
Size: 2424
MD5Sum: c2ab367ff83faabfab56178a47885586
SHA256sum: 63a0ff0fb2bd015e80255e0ae564df1aa5cc178651f4dd2d31c9310ee93bb1ba
Description: This option adds the IPv6 support to ebtables, which allows basic
IPv6 header field filtering and target support.
Package: kmod-ebtables-watchers
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ebtables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2809
Filename: kmod-ebtables-watchers_3.18.9-1_ramips_24kec.ipk
Size: 3586
MD5Sum: 76f6edc47b7fb3bcc449d0c44c94950b
SHA256sum: 5d022e51e54315dd50ad6fcd7fd59c7ae541f0e104ee8a559659ee438c2f1145
Description: This option adds the log watchers, that you can use in any rule
in any ebtables table.
Package: kmod-ebtables
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-bridge
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16761
Filename: kmod-ebtables_3.18.9-1_ramips_24kec.ipk
Size: 17611
MD5Sum: 936891c4befd80abaa79e8813ece285f
SHA256sum: 1a8028793c99f389fefc70e3a6ca39eb0c119d96a52108b9d49a1f7a56fa307b
Description: ebtables is a general, extensible frame/packet identification
framework. It provides you to do Ethernet
filtering/NAT/brouting on the Ethernet bridge.
Package: kmod-eeprom-93cx6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1600
Filename: kmod-eeprom-93cx6_3.18.9-1_ramips_24kec.ipk
Size: 2384
MD5Sum: cfbb0676639170fda42299590aaf1e81
SHA256sum: ac48b8aab95994183b6b3c5e6bcab06204fb205e9feaeabe4fab3d171ee9f2f0
Description: Kernel module for EEPROM 93CX6 support
Package: kmod-eeprom-at24
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4023
Filename: kmod-eeprom-at24_3.18.9-1_ramips_24kec.ipk
Size: 4769
MD5Sum: 59bb774b7b9d7fbe879bdf618e243e69
SHA256sum: 7605ef9ce82d096e920df8930b838cb7b2749e2a7a44361bddf73c753920dfb1
Description: Kernel module for most I2C EEPROMs
Package: kmod-eeprom-at25
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3452
Filename: kmod-eeprom-at25_3.18.9-1_ramips_24kec.ipk
Size: 4189
MD5Sum: 379fbe8b03533c2ff732b609b051981d
SHA256sum: 9a7769fe9d64e13d4d1786d5b999b180fbfbe3952de9a4dc48cb1567a7ff57d6
Description: Kernel module for most SPI EEPROMs
Package: kmod-fs-afs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rxrpc, kmod-dnsresolver, kmod-fs-fscache
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 46275
Filename: kmod-fs-afs_3.18.9-1_ramips_24kec.ipk
Size: 46999
MD5Sum: 9995e8b78d9c7c4431e9f0511ec9c342
SHA256sum: 74b807a0b226c1fbde2210485c70d0c9160d8f60c8da9974d3d2f8fad8e865e0
Description: Kernel module for Andrew FileSystem client support
Package: kmod-fs-autofs4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13400
Filename: kmod-fs-autofs4_3.18.9-1_ramips_24kec.ipk
Size: 14138
MD5Sum: e1f4331a57f14a8ea3cba49052a927d2
SHA256sum: 54221578f07b1d34f3c24daddee39246faf14afb5b3de1887c2f8f61d67788a6
Description: Kernel module for AutoFS4 support
Package: kmod-fs-btrfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc32c, kmod-lib-lzo, kmod-lib-zlib, kmod-lib-raid6, kmod-lib-xor
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 458994
Filename: kmod-fs-btrfs_3.18.9-1_ramips_24kec.ipk
Size: 458734
MD5Sum: c15e3cd47dc10ce3a1489bad733bdeb2
SHA256sum: 1e1b69fb1e673bcacaaf08a616a5e1d53d8468f255316421eb5e80a576594355
Description: Kernel module for BTRFS support
Package: kmod-fs-cifs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base, kmod-crypto-arc4, kmod-crypto-hmac, kmod-crypto-md5, kmod-crypto-md4, kmod-crypto-des, kmod-crypto-ecb, kmod-crypto-sha256
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 110535
Filename: kmod-fs-cifs_3.18.9-1_ramips_24kec.ipk
Size: 110247
MD5Sum: 02afe5e8b864a255f5a37a887d10c964
SHA256sum: 72bd75c8735beebd81578df8f3eeaa4678b363b733e440480cb46945ddc3de2a
Description: Kernel module for CIFS support
Package: kmod-fs-configfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11316
Filename: kmod-fs-configfs_3.18.9-1_ramips_24kec.ipk
Size: 12052
MD5Sum: 258e611d7e4880e3c652ec914f512005
SHA256sum: 2f4c571d941918ae0f8eb6f18639ef7d9125a87c49c7d527b240db9d9a4a22e6
Description: Kernel module for configfs support
Package: kmod-fs-cramfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-zlib
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4813
Filename: kmod-fs-cramfs_3.18.9-1_ramips_24kec.ipk
Size: 5562
MD5Sum: 7306d1765458d529e6ed7215ffc25018
SHA256sum: d43be828cf74df0460ada75bc28234aa250b1e7cbc4e147b93b5ed9714840074
Description: Kernel module for cramfs support
Package: kmod-fs-exportfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2753
Filename: kmod-fs-exportfs_3.18.9-1_ramips_24kec.ipk
Size: 3507
MD5Sum: 1f28433f7ef74cb0427c3974da4807d1
SHA256sum: 628ebed1fb60bfd89206a758a8c546308d2c374e722f51f8f235a70a4e77ad84
Description: Kernel module for exportfs. Needed for some other modules.
Package: kmod-fs-ext4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc16, kmod-crypto-hash
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 220170
Filename: kmod-fs-ext4_3.18.9-1_ramips_24kec.ipk
Size: 220259
MD5Sum: 0db512034481f45311fd0d1705b22829
SHA256sum: 32ba0f0f68505c8ec16009b61ff8ffec47958080ce9b9609afd1846c20ae6f82
Description: Kernel module for EXT4 filesystem support
Package: kmod-fs-f2fs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 76662
Filename: kmod-fs-f2fs_3.18.9-1_ramips_24kec.ipk
Size: 77112
MD5Sum: a4a39cdc6b0c1ac723d21a8cb6b5b7ba
SHA256sum: db2bd0a586001298573f538358814d89da43f238ec3ff9e8e72dca66780462ec
Description: Kernel module for F2FS filesystem support
Package: kmod-fs-fscache
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 24879
Filename: kmod-fs-fscache_3.18.9-1_ramips_24kec.ipk
Size: 25486
MD5Sum: 5ac8dd624421484f34ba3e675995ba03
SHA256sum: c8dfe27a4185ada74b2fa323662c4be4922fad0c99ad0cca5187b72d82bf3b38
Description: General filesystem local cache manager
Package: kmod-fs-hfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 28050
Filename: kmod-fs-hfs_3.18.9-1_ramips_24kec.ipk
Size: 28727
MD5Sum: 428291c78c0ede5ffc240625a5760ff5
SHA256sum: 1eb960dc45f16668c57a50955247ed1dfacdf7235aed70f24abd2720606a0b8d
Description: Kernel module for HFS filesystem support
Package: kmod-fs-hfsplus
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base, kmod-nls-utf8
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 55572
Filename: kmod-fs-hfsplus_3.18.9-1_ramips_24kec.ipk
Size: 56167
MD5Sum: d1e9ff334541621f9f019601ef16679c
SHA256sum: b15e822cb8a3cee1560332274e503d2eb5ae36539270841cf8fe26774c587188
Description: Kernel module for HFS+ filesystem support
Package: kmod-fs-isofs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-zlib, kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14921
Filename: kmod-fs-isofs_3.18.9-1_ramips_24kec.ipk
Size: 15665
MD5Sum: cda8743ae8de65502535b28d1975d7ed
SHA256sum: 5503db8f407b7422cb68b647cc94d7da8e38e82da9f97fabca690105beba1d10
Description: Kernel module for ISO9660 filesystem support
Package: kmod-fs-jfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 92427
Filename: kmod-fs-jfs_3.18.9-1_ramips_24kec.ipk
Size: 92989
MD5Sum: 885b3ec9408e8269793afa51eb4e3aa6
SHA256sum: 600d13842b352447c15b908a2aaeaa2889647b3a745f65462a11fcfe9be22185
Description: Kernel module for JFS support
Package: kmod-fs-minix
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14629
Filename: kmod-fs-minix_3.18.9-1_ramips_24kec.ipk
Size: 15385
MD5Sum: c8a0d651573a4b291bf68b7e33b82eb7
SHA256sum: 5e197b11ec9c0f203cc8c35ded4a070ac7c0db4dd19d451e27e611d10e0c3c44
Description: Kernel module for Minix filesystem support
Package: kmod-fs-msdos
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-vfat, kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4692
Filename: kmod-fs-msdos_3.18.9-1_ramips_24kec.ipk
Size: 5451
MD5Sum: 634de9b893e40a181ee7d500bc393ee9
SHA256sum: ce97be11a604bbd68cd7f0b12ca686831e62109b2a7fcc455bc0fe41ca944ea0
Description: Kernel module for MSDOS filesystem support
Package: kmod-fs-nfs-common
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 111460
Filename: kmod-fs-nfs-common_3.18.9-1_ramips_24kec.ipk
Size: 112012
MD5Sum: 5ddc21c3ba059d7605d2ba13ac90e157
SHA256sum: 40ca9de88570484209d4b3056d312500ad6f10944e0fdfac2c0d5ba3f6313ad7
Description: Common NFS filesystem modules
Package: kmod-fs-nfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-nfs-common, kmod-dnsresolver
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 71494
Filename: kmod-fs-nfs_3.18.9-1_ramips_24kec.ipk
Size: 72169
MD5Sum: 1a9cf5615f90dc3dabe891e669e86678
SHA256sum: b8c096a82ef0dccf9e0eeb0debe2c6f81d49b6ce8d527f84154d142bf43a403e
Description: Kernel module for NFS support
Package: kmod-fs-nfsd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-nfs-common, kmod-fs-exportfs
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 43233
Filename: kmod-fs-nfsd_3.18.9-1_ramips_24kec.ipk
Size: 43985
MD5Sum: d0964e257d1d6cc1fdd8897b720a2fc9
SHA256sum: 4fb2ddfe5fc9c9922acaf95423b59c41c89c59d09d9562f15d7f89182633433c
Description: Kernel module for NFS kernel server support
Package: kmod-fs-ntfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 53896
Filename: kmod-fs-ntfs_3.18.9-1_ramips_24kec.ipk
Size: 54385
MD5Sum: 425344f6cba92d556547e905fd698e40
SHA256sum: 878e005f808e00e32a5d57a5f511f25dd4c4ef17dc058eb89bf6e9486a554899
Description: Kernel module for NTFS filesystem support
Package: kmod-fs-reiserfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 117149
Filename: kmod-fs-reiserfs_3.18.9-1_ramips_24kec.ipk
Size: 117281
MD5Sum: 0e9910fbf4a67fceb2d01e1a0e1ebe72
SHA256sum: e5ff2da800fd03cfa4b59aae2ec23b1bf4ebc50c98c7313dbc38984f6ce4bfbf
Description: Kernel module for ReiserFS support
Package: kmod-fs-udf
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-itu-t, kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 48593
Filename: kmod-fs-udf_3.18.9-1_ramips_24kec.ipk
Size: 49234
MD5Sum: d658a085d07b6f0f5d89fd56fa8abc80
SHA256sum: df261a560d0c141dfe96fd282697f7ccd3e648fff5e17168329c7c73355d57ae
Description: Kernel module for UDF filesystem support
Package: kmod-fs-vfat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 38056
Filename: kmod-fs-vfat_3.18.9-1_ramips_24kec.ipk
Size: 38771
MD5Sum: 594c33078ec018093382dd209bfc2728
SHA256sum: 81631007f2ed9af4cb5ed73458262c129db857b9260690a2d3cea721ba4a2315
Description: Kernel module for VFAT filesystem support
Package: kmod-fs-xfs
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-fs-exportfs, kmod-lib-crc32c
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 271373
Filename: kmod-fs-xfs_3.18.9-1_ramips_24kec.ipk
Size: 271137
MD5Sum: ac79ebdfa5febf8352da1c2d094fd04c
SHA256sum: 3b156d9024ef76c3c2f9c00a544a2c4bf0564c5660119ff7e5b6fa8f9516e8a4
Description: Kernel module for XFS support
Package: kmod-fuse
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 43447
Filename: kmod-fuse_3.18.9-1_ramips_24kec.ipk
Size: 44153
MD5Sum: c337e2b5290803391422cf30dffcf18c
SHA256sum: 5c589fe15fb90307ca76da7b342dd961181c611d35f3a71d0b802e874fbab9e9
Description: Kernel module for userspace filesystem support
Package: kmod-gigaset
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-isdn4linux, kmod-lib-crc-ccitt, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 50188
Filename: kmod-gigaset_3.18.9-1_ramips_24kec.ipk
Size: 51025
MD5Sum: af743a0b6b9f4a23de5d2e517f0210d2
SHA256sum: 59c8c39c7a357491fedbd0402c60198e0d2af2ae7bd3c115539dd2241719f1e7
Description: This driver supports the Siemens Gigaset SX205/255 family of
ISDN DECT bases, including the predecessors Gigaset 3070/3075
and 4170/4175 and their T-Com versions Sinus 45isdn and Sinus
721X.
Package: kmod-gpio-beeper
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1373
Filename: kmod-gpio-beeper_3.18.9-1_ramips_24kec.ipk
Size: 2179
MD5Sum: 0881f64e030a2eb9e876d633e6523413
SHA256sum: b904c2f974860ae7f2c9ec4634783b04a73a5519e4f4f56b53d4bb7da9d5d5f3
Description: This enables playing beeps through an GPIO-connected buzzer
Package: kmod-gpio-button-hotplug
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/gpio-button-hotplug
Section: kernel
Architecture: ramips_24kec
Installed-Size: 5205
Filename: kmod-gpio-button-hotplug_3.18.9-1_ramips_24kec.ipk
Size: 6089
MD5Sum: 0f2d201e632d0e3265615667ff759ab3
SHA256sum: faf4f7b656a8c76be8d2bd471bc13e07465be70e6a5a2b91caec577195dbfa47
Description: This is a replacement for the following in-kernel drivers:
1) gpio_keys (KEYBOARD_GPIO)
2) gpio_keys_polled (KEYBOARD_GPIO_POLLED)
Instead of generating input events (like in-kernel drivers do) it generates
uevent-s and broadcasts them. This allows disabling input subsystem which is
an overkill for OpenWrt simple needs.
Package: kmod-gpio-dev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-gpio-dev_3.18.9-1_ramips_24kec.ipk
Size: 868
MD5Sum: dc64fc1c369d0f6311fab94c644a1ad9
SHA256sum: 09ded9638a9976c40c8686b3dc355eaca87ed702cb61a35ebe99305ecb95da50
Description: Kernel module to allows control of GPIO pins using a character device.
Package: kmod-gpio-mcp23s08
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5739
Filename: kmod-gpio-mcp23s08_3.18.9-1_ramips_24kec.ipk
Size: 6527
MD5Sum: 5cc3a2a3a70973bccaa01bc282a1011e
SHA256sum: 0f3aecdd183252c47f03a8439d9267f820222587f9e30b8bdd23c463ce3531ac
Description: Kernel module for Microchip MCP23xxx SPI/I2C I/O expander
Package: kmod-gpio-nxp-74hc164
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-gpio-nxp-74hc164_3.18.9-1_ramips_24kec.ipk
Size: 865
MD5Sum: 0a23dfda5e8ab6a6a543fffed1ddad64
SHA256sum: da353df139dece369515bbdde1e0f1c9fdf16e0b379160c299352f4c1f45c234
Description: Kernel module for NXP 74HC164 GPIO expander
Package: kmod-gpio-pca953x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3209
Filename: kmod-gpio-pca953x_3.18.9-1_ramips_24kec.ipk
Size: 4030
MD5Sum: a668434bdddf3c32d830436308462139
SHA256sum: dda3ed15014898fdd6a6981e2a6a150e5a33457498f4275de4f3b71ca8cfbe83
Description: Kernel module for MAX731{0,2,3,5}, PCA6107, PCA953{4-9}, PCA955{4-7},
PCA957{4,5} and TCA64{08,16} I2C GPIO expanders
Package: kmod-gpio-pcf857x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2967
Filename: kmod-gpio-pcf857x_3.18.9-1_ramips_24kec.ipk
Size: 3755
MD5Sum: 905151bc9e194b73b81fbfc9e1013f28
SHA256sum: 4d79bb8c7d319c94ec2545a018beabe5fa01973c2f01bde35d5f1b9ef251c3e5
Description: Kernel module for PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders
Package: kmod-gre6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel, kmod-ip6-tunnel
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10769
Filename: kmod-gre6_3.18.9-1_ramips_24kec.ipk
Size: 11583
MD5Sum: 409c6fca91b664630d1c1526f90fcde8
SHA256sum: 827b59d5d9af32994c3018638a9809d41b5e6b7caf51d53d3e4a83ee8788554e
Description: Generic Routing Encapsulation support over IPv6
Package: kmod-gre
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7714
Filename: kmod-gre_3.18.9-1_ramips_24kec.ipk
Size: 8502
MD5Sum: 75a80b05cd293bb8c425e5587a43bf3e
SHA256sum: 4c1547eed3718f140bfc0ec8b2a384f140cf76aad0d29b9af7f46aa103910fa8
Description: Generic Routing Encapsulation support
Package: kmod-hfcmulti
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-misdn
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-hfcmulti_3.18.9-1_ramips_24kec.ipk
Size: 898
MD5Sum: d446fe1b1cde61e04c5a67472a1b52a5
SHA256sum: 0a6202587b597f6a993d49d65c3b9abc7bb46591a2a7cafa9510c7fa72cc377b
Description: Kernel modules for Cologne AG's HFC multiport cards (HFC-4S/8S/E1)
using the mISDN V2 stack
Package: kmod-hfcpci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-misdn
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-hfcpci_3.18.9-1_ramips_24kec.ipk
Size: 886
MD5Sum: 72b4a0256bf716656827fa8e89e0bfa5
SHA256sum: e85ae0b5ff16f70844570a22b9c454a61c33fd990304c80d40f4214f33db9ded
Description: Kernel modules for Cologne AG's HFC pci cards (single port)
using the mISDN V2 stack
Package: kmod-hid-generic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 826
Filename: kmod-hid-generic_3.18.9-1_ramips_24kec.ipk
Size: 1582
MD5Sum: bb58805d220ffb9efa1b1d442d50ffd6
SHA256sum: 6cb2a2686314be5810d82cdb08ab84a51003c6c227ac35eeffb665d0070bf57c
Description: Generic HID device support
Package: kmod-hid
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 41963
Filename: kmod-hid_3.18.9-1_ramips_24kec.ipk
Size: 42296
MD5Sum: 602c2d2c6585eac17773027f51ad96a9
SHA256sum: 7a05922b6e2d4838ebb3166b646fdc9739a050129afb4f49734102ec9694f412
Description: Kernel modules for HID devices
Package: kmod-hwmon-adt7410
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3672
Filename: kmod-hwmon-adt7410_3.18.9-1_ramips_24kec.ipk
Size: 4444
MD5Sum: fcfe26c8e8391d658cf0462eb8d9cd42
SHA256sum: 7b704babf73c6f2bb1cd0da54848deb13430fcaf89de5b2acc5f3dc7d77b62aa
Description: Kernel module for ADT7410/7420 I2C thermal monitor chip
Package: kmod-hwmon-adt7475
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core, kmod-hwmon-vid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8896
Filename: kmod-hwmon-adt7475_3.18.9-1_ramips_24kec.ipk
Size: 9678
MD5Sum: a4305cd6af5e42291a695ca221f607dc
SHA256sum: 9adb06df9773d45328b17537035fe8fc597fac08b3470b34b7bd44d6981c6f27
Description: Kernel module for ADT7473/7475/7476/7490 thermal monitor chip
Package: kmod-hwmon-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2136
Filename: kmod-hwmon-core_3.18.9-1_ramips_24kec.ipk
Size: 2916
MD5Sum: 5a3230fd034c5e9058c8caf7a41c68a8
SHA256sum: 5753cd87d9c9b50ee713f7fb9a23d589919f03b2154930e2cc5ac247727eefad
Description: Kernel modules for hardware monitoring
Package: kmod-hwmon-gpiofan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3684
Filename: kmod-hwmon-gpiofan_3.18.9-1_ramips_24kec.ipk
Size: 4441
MD5Sum: 707a3b149f05d361eac1139f1fe381ed
SHA256sum: 86abf80cf746df07e5e2881cd45568556e84d634af169d0980a45c690bc92ff1
Description: Kernel module for GPIO controlled FANs
Package: kmod-hwmon-gsc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2542
Filename: kmod-hwmon-gsc_3.18.9-1_ramips_24kec.ipk
Size: 3304
MD5Sum: 9912faa755df8832630cd0506f8b760b
SHA256sum: d2c2683554fe58f19a19d46215a4a9f8272d843c96a27517106f50fe779bc6b4
Description: Kernel module for the Gateworks System Controller chips.
Package: kmod-hwmon-ina2xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2192
Filename: kmod-hwmon-ina2xx_3.18.9-1_ramips_24kec.ipk
Size: 2982
MD5Sum: ba13bff5c9144afcd6086112782916e5
SHA256sum: e4977d88d7be65167b51bcbcf775f75805567d6c75369b3e3c8244b733e12638
Description: Kernel module for ina2xx dc current monitor chips
Package: kmod-hwmon-lm63
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5784
Filename: kmod-hwmon-lm63_3.18.9-1_ramips_24kec.ipk
Size: 6547
MD5Sum: ec7d777062757e5edf9d83f2496750ad
SHA256sum: 01e4aa923b17c2e1a02a1e7d60b4d80889dd513605890872e23cb94e5ac6cce8
Description: Kernel module for lm63 and lm64 thermal monitor chip
Package: kmod-hwmon-lm75
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2946
Filename: kmod-hwmon-lm75_3.18.9-1_ramips_24kec.ipk
Size: 3683
MD5Sum: 96755957635d33a27f0adc4ddb38a115
SHA256sum: 4e7109aaee61e854ef485b27a390eadcd9ba02ec5b68fcc9bb7e841319f4769b
Description: Kernel module for lm75 thermal monitor chip
Package: kmod-hwmon-lm77
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2745
Filename: kmod-hwmon-lm77_3.18.9-1_ramips_24kec.ipk
Size: 3505
MD5Sum: 7496961d32b51edebc9372dfac6e3e3e
SHA256sum: 1f607487f98919e86eca7f9dfc0c893dd43bab89df7ddaaf96ef7e029045efb2
Description: Kernel module for LM77 thermal monitor chip
Package: kmod-hwmon-lm85
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core, kmod-hwmon-vid
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7850
Filename: kmod-hwmon-lm85_3.18.9-1_ramips_24kec.ipk
Size: 8625
MD5Sum: 8bb03a3f8335ce5315e194e0fad273c3
SHA256sum: 5661bc46006de58219855ec35f49a6f1787fc4f371835be1a775be12c37477e2
Description: Kernel module for LM85 thermal monitor chip
Package: kmod-hwmon-lm90
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7385
Filename: kmod-hwmon-lm90_3.18.9-1_ramips_24kec.ipk
Size: 8155
MD5Sum: bf0603d8acc7a8a2e47998bd17395941
SHA256sum: a2ef766daa673a32ba57f9ba3c7112a9d5de2720dc003fb624eb8c5538a763f8
Description: Kernel module for LM90 thermal monitor chip
Package: kmod-hwmon-lm92
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2901
Filename: kmod-hwmon-lm92_3.18.9-1_ramips_24kec.ipk
Size: 3650
MD5Sum: bc24e59ca8ca2d1695d1b9b989a00d9d
SHA256sum: 318f0acaa526a96fab6b71243f545d6367fb43c8244bcded026dfeee19bee182
Description: Kernel module for LM92 thermal monitor chip
Package: kmod-hwmon-lm95241
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2798
Filename: kmod-hwmon-lm95241_3.18.9-1_ramips_24kec.ipk
Size: 3558
MD5Sum: 275232d32a6ef96310e2c183a8d01a51
SHA256sum: 0af34b63ecf39d0700a695b2a6f99de85adc0ecf7399f1a3e92b15676141d027
Description: Kernel module for LM95241 thermal monitor chip
Package: kmod-hwmon-pwmfan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-hwmon-pwmfan_3.18.9-1_ramips_24kec.ipk
Size: 858
MD5Sum: a79caf4e82b22c89baed0b74f0bc76bd
SHA256sum: 8c767388ea20241157362d32fc42ad53451a5c740f3a9f6003804576d34fb9e1
Description: Kernel module for PWM controlled FANs
Package: kmod-hwmon-sht21
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1651
Filename: kmod-hwmon-sht21_3.18.9-1_ramips_24kec.ipk
Size: 2465
MD5Sum: fef0b071275fba9b283a8185d9eab1d2
SHA256sum: 6d5bb169af6eb25947703a6080f38459f17823da3b5b5082fc248ab9b09743d1
Description: Kernel module for Sensirion SHT21 and SHT25 temperature and humidity sensors chip
Package: kmod-hwmon-tmp421
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2622
Filename: kmod-hwmon-tmp421_3.18.9-1_ramips_24kec.ipk
Size: 3409
MD5Sum: 15a33e26fc8c9ff8f2e9fd7d45068aa4
SHA256sum: 49bd3c224a4d501868efb2f7b2135b59b21753868127c28d24c381db75718a14
Description: Kernel module for the Texas Instruments TMP421 and compatible chips.
Package: kmod-hwmon-vid
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-hwmon-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1436
Filename: kmod-hwmon-vid_3.18.9-1_ramips_24kec.ipk
Size: 2233
MD5Sum: e6201749a12b59790078db206a3c8ab4
SHA256sum: 88987b3f7eb532685634ce463ab764cc2d0dff8efae823926ed837dd2af99602
Description: VID/VRM/VRD voltage conversion module for hardware monitoring
Package: kmod-i2c-algo-bit
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3558
Filename: kmod-i2c-algo-bit_3.18.9-1_ramips_24kec.ipk
Size: 4321
MD5Sum: 330c81df01a1ecdc24554c703aa6f158
SHA256sum: b440e38cdf03261ce4d5ebf062383ed883a8f82a0904b2152e4926787a30661a
Description: Kernel modules for I2C bit-banging interfaces
Package: kmod-i2c-algo-pca
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4170
Filename: kmod-i2c-algo-pca_3.18.9-1_ramips_24kec.ipk
Size: 4914
MD5Sum: 7643628b440e0e44a1eaf86f01855c87
SHA256sum: 0b5d92fb8f334cbbb16721ea8b24be05198376e7cf58d08313d8d4bf944f4013
Description: Kernel modules for I2C PCA 9564 interfaces
Package: kmod-i2c-algo-pcf
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3211
Filename: kmod-i2c-algo-pcf_3.18.9-1_ramips_24kec.ipk
Size: 3968
MD5Sum: a8ed745836fbe58159d11bfafbbfe420
SHA256sum: cb0b5382337fd2f96dacda4f18da764db61e3736425bb322e1a7253644678a70
Description: Kernel modules for I2C PCF 8584 interfaces
Package: kmod-i2c-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16218
Filename: kmod-i2c-core_3.18.9-1_ramips_24kec.ipk
Size: 16921
MD5Sum: ef74f31f9e4208bb4ab62eaf1d4919ed
SHA256sum: 46072bd0b159427d80e465eb309fb87ae1c53e4cb48fa7e3e565311937ca5bbd
Description: Kernel modules for I2C support
Package: kmod-i2c-gpio-custom
Version: 3.18.9-2
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core, kmod-i2c-gpio
Source: package/kernel/i2c-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 1654
Filename: kmod-i2c-gpio-custom_3.18.9-2_ramips_24kec.ipk
Size: 2416
MD5Sum: 3d29648225d42fafd0d507a3eea00524
SHA256sum: e6ce666e7b957af343b7dd3329cdd69f3dc2cf3001d6665ebeeb7fb5bbebeab0
Description: Kernel module for register a custom i2c-gpio platform device.
Package: kmod-i2c-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-algo-bit
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2574
Filename: kmod-i2c-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3369
MD5Sum: 8ac86c25b88802010f09d36a6e2f8efd
SHA256sum: c05f678297b92be93ccbb8df671e818cfbe5245ea032aec373ccad785898295b
Description: Kernel modules for a very simple bitbanging I2C driver utilizing the
arch-neutral GPIO API to control the SCL and SDA lines.
Package: kmod-i2c-mux-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-mux
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2963
Filename: kmod-i2c-mux-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3716
MD5Sum: a88a7f3b6871379d89d62b330e7b1e8e
SHA256sum: b67fe2c00741cda88e923decd4dbb2b1e8ac745e38613003e938f7abd73c0069
Description: Kernel modules for GENERIC_GPIO I2C bus mux/switching devices
Package: kmod-i2c-mux-pca9541
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-mux
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2139
Filename: kmod-i2c-mux-pca9541_3.18.9-1_ramips_24kec.ipk
Size: 2933
MD5Sum: 61166cdef36332e3789e663be46613cb
SHA256sum: 40d4ca56a0ed18e8eeb066e52872155204a90aee40ffbebfaa2e0cb0302adc96
Description: Kernel modules for PCA9541 I2C bus mux/switching devices
Package: kmod-i2c-mux-pca954x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-mux
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2065
Filename: kmod-i2c-mux-pca954x_3.18.9-1_ramips_24kec.ipk
Size: 2863
MD5Sum: 397f3af6e5263fc93fd2678fed526da6
SHA256sum: c3a7c020f7d09064990ca9b2be5ad37d50049b35b9d893949f9a45c9f4ee1c37
Description: Kernel modules for PCA954x I2C bus mux/switching devices
Package: kmod-i2c-mux
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1832
Filename: kmod-i2c-mux_3.18.9-1_ramips_24kec.ipk
Size: 2626
MD5Sum: afe48bc3325a9d7f7413f465541405f5
SHA256sum: 03eb6a74d6f508a87e818d5a1a2b4cfbaff1a1ef34c94f3ed8fc9d3913e6b81a
Description: Kernel modules for I2C bus multiplexing support
Package: kmod-i2c-ralink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2350
Filename: kmod-i2c-ralink_3.18.9-1_ramips_24kec.ipk
Size: 3089
MD5Sum: d03855de26809b0dbcce1231efab0aa2
SHA256sum: a4c6b773cb594a49432770ebacc0381bbd0a81f7b4edbd27d78aa6a634ce7103
Description: Kernel modules for enable ralink i2c controller.
Package: kmod-i2c-tiny-usb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2410
Filename: kmod-i2c-tiny-usb_3.18.9-1_ramips_24kec.ipk
Size: 3215
MD5Sum: 408fcc9a2914ba9cf9a051ce91e16199
SHA256sum: 931f49b72a55e183ed34858314ca93ca5eb1ac618b4a8c97d50e0afe27e56c2c
Description: Kernel module for the I2C Tiny USB adaptor developed
by Till Harbaum (http://www.harbaum.org/till/i2c_tiny_usb)
Package: kmod-ifb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2838
Filename: kmod-ifb_3.18.9-1_ramips_24kec.ipk
Size: 3567
MD5Sum: fcca79f9827934a535ed63ef3ddc02dc
SHA256sum: 2b2bc0e7498e9bd0ab9ca3f481e36a222964d4a924be56bc67203a733ca8b9ed
Description: The Intermediate Functional Block
Package: kmod-iio-ad799x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core, kmod-iio-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3827
Filename: kmod-iio-ad799x_3.18.9-1_ramips_24kec.ipk
Size: 4599
MD5Sum: b2e2ba204d4a57e371a38393cb6e0ba0
SHA256sum: 0b9d8aaf5d8dbed60340f95265f0863672408097bfc818c72d20edbf3a0cf672
Description: support for Analog Devices:
ad7991, ad7995, ad7999, ad7992, ad7993, ad7994, ad7997, ad7998
i2c analog to digital converters (ADC).
Package: kmod-iio-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 23409
Filename: kmod-iio-core_3.18.9-1_ramips_24kec.ipk
Size: 24204
MD5Sum: 0f5be034e90cc47d81f1b635a685a06b
SHA256sum: 57140a96921e5e1402b33373b52bd470384b73617f3c5c4a2cdb95d88f3ef943
Description: The industrial I/O subsystem provides a unified framework for
drivers for many different types of embedded sensors using a
number of different physical interfaces (i2c, spi, etc)
Package: kmod-iio-dht11
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iio-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2782
Filename: kmod-iio-dht11_3.18.9-1_ramips_24kec.ipk
Size: 3611
MD5Sum: 95e7cffc490c4e3f2cae2960be8d2de3
SHA256sum: f1913ed9ba09f1c38f4a84bec9c82888af5551d4bff07a028ad1e36b034f7d36
Description: support for DHT11 and DHT22 digitial humidity and temperature sensors
attached at GPIO lines. You will need a custom device tree file to
specify the GPIO line to use.
Package: kmod-ikconfig
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 22763
Filename: kmod-ikconfig_3.18.9-1_ramips_24kec.ipk
Size: 23549
MD5Sum: 24dc332dd72d9280a2ff59a8fa31367d
SHA256sum: 11a350eb5c2d6b6d1df13363fa7f23e15ca28b500fc9baa58074ec73818c0d6a
Description: Kernel configuration via /proc/config.gz
Package: kmod-input-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16939
Filename: kmod-input-core_3.18.9-1_ramips_24kec.ipk
Size: 17670
MD5Sum: 0b428b2697d4031ba46ca142002c4661
SHA256sum: 6c403dc5ee8eae5322c2dc24a3a79aa9ce003d0bb11090ca133bddde6610922c
Description: Kernel modules for support of input device
Package: kmod-input-evdev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6711
Filename: kmod-input-evdev_3.18.9-1_ramips_24kec.ipk
Size: 7526
MD5Sum: 827100e5850d64637ee355d6eb976eec
SHA256sum: 27caafe6a20b6b37ec720cd2eadac00646e3e6db87678b26a271a21a203f58ff
Description: Kernel modules for support of input device events
Package: kmod-input-gpio-encoder
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2726
Filename: kmod-input-gpio-encoder_3.18.9-1_ramips_24kec.ipk
Size: 3466
MD5Sum: e7a1d328dd1bad92330b634998eea66b
SHA256sum: 2f5d0b920b8d0de18a5ad188ced917bf9b738a5b97f79ed1220ec51768e6f073
Description: GPIO rotay encoder
Package: kmod-input-gpio-keys-polled
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-polldev, kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3049
Filename: kmod-input-gpio-keys-polled_3.18.9-1_ramips_24kec.ipk
Size: 3913
MD5Sum: 053cf9bb48c4890774f0bdec1f3cfd4e
SHA256sum: 4a0e8b7d1f460984cb99a6b62bc41761b9d3fe4a1d33351c58fac45137e19438
Description: Kernel module for support polled GPIO keys input device
See also gpio-button-hotplug which is an alternative, lower overhead
implementation that generates uevents instead of kernel input events.
Package: kmod-input-gpio-keys
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4838
Filename: kmod-input-gpio-keys_3.18.9-1_ramips_24kec.ipk
Size: 5708
MD5Sum: 6c6509b04ffcf018eb91e4a011a790a8
SHA256sum: a0b95243496adf32c8840492988ce166a993c6b23f52f34b022b675b0ef3f689
Description: This driver implements support for buttons connected
to GPIO pins of various CPUs (and some other chips).
See also gpio-button-hotplug which is an alternative, lower overhead
implementation that generates uevents instead of kernel input events.
Package: kmod-input-joydev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5588
Filename: kmod-input-joydev_3.18.9-1_ramips_24kec.ipk
Size: 6359
MD5Sum: 2e5cac12026b29fe5b29ff4fbed6b34c
SHA256sum: ca9326f1a86be35014455543ae21b7869a7ae91ff7268380011ba31c57d17971
Description: Kernel module for joystick support
Package: kmod-input-matrixkmap
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2025
Filename: kmod-input-matrixkmap_3.18.9-1_ramips_24kec.ipk
Size: 2802
MD5Sum: 5bfad1faacde8b04bbee4dc40f26ef71
SHA256sum: e1fbd730ea4d0922bdfdc49bf582cce913bf9a5382c876a735aca30fef4f7bb6
Description: Input matrix devices support
Package: kmod-input-polldev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2291
Filename: kmod-input-polldev_3.18.9-1_ramips_24kec.ipk
Size: 3076
MD5Sum: de650cd38618ff084de0c8086f35e442
SHA256sum: d500e8c5248691a2e694330765e2c6c6931938c11ceb25206bc49ec58e6753e6
Description: Kernel module for support of polled input devices
Package: kmod-ip6-tunnel
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12206
Filename: kmod-ip6-tunnel_3.18.9-1_ramips_24kec.ipk
Size: 12949
MD5Sum: 7ba10a408f84d040df984165ee18cf0b
SHA256sum: 484d73f3d56438a7a9974463f3b0dc5518b55ff7b8fd15315f634f778f2badb8
Description: Kernel modules for IPv6-in-IPv6 and IPv4-in-IPv6 tunnelling
Package: kmod-ip6tables-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ip6tables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4356
Filename: kmod-ip6tables-extra_3.18.9-1_ramips_24kec.ipk
Size: 5110
MD5Sum: aa2ae5aa39628f4939d5e2862b40e102
SHA256sum: 6684d8912388eaf0e138b8ad40dda85f1d168194f0a76a930285a7e180f85e0e
Description: Netfilter IPv6 extra header matching modules
Package: kmod-ip6tables
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-ipt6, kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8162
Filename: kmod-ip6tables_3.18.9-1_ramips_24kec.ipk
Size: 8941
MD5Sum: cf37026f00939bdb5284d824bce850da
SHA256sum: ae93ab4ef9d94fc2a746d8a9204bcfaeeca5abf09427437498b371cfae799282
Description: Netfilter IPv6 firewalling support
Package: kmod-ipip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iptunnel, kmod-iptunnel4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3551
Filename: kmod-ipip_3.18.9-1_ramips_24kec.ipk
Size: 4297
MD5Sum: c46526fe4d3b13466518cb811156e569
SHA256sum: a30b2965bb41d1fad6d4e686fd459a58cd1111f10e15de4da39b5eaa18c89091
Description: Kernel modules for IP-in-IP encapsulation
Package: kmod-ipoa
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6707
Filename: kmod-ipoa_3.18.9-1_ramips_24kec.ipk
Size: 7518
MD5Sum: 29a93b897c9010b06979fcc1fcc920d7
SHA256sum: fb5a2b1db8771d5c71cb5ace08af40f16c71d63820d0ac564ab67b3f6743cf9c
Description: Kernel modules for IPoA (IP over ATM) support
Package: kmod-ipsec4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipsec, kmod-iptunnel4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11916
Filename: kmod-ipsec4_3.18.9-1_ramips_24kec.ipk
Size: 12719
MD5Sum: 61f66bc394f1bcf3e94f72a07d15e48b
SHA256sum: 83c2a30ddc39877be115ae5d8426d67bc89a4a51ee31e45d140dc8ffbbb663c5
Description: Kernel modules for IPsec support in IPv4.
Includes:
- ah4
- esp4
- ipcomp4
- xfrm4_mode_beet
- xfrm4_mode_transport
- xfrm4_mode_tunnel
- xfrm4_tunnel
Package: kmod-ipsec6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipsec, kmod-iptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12894
Filename: kmod-ipsec6_3.18.9-1_ramips_24kec.ipk
Size: 13686
MD5Sum: 25ec6544e30f51873f2d75702fdd7697
SHA256sum: e44b951a2ef377badd15866101fdfe948dcc8f240483ad75eeb6fa914dfdec6a
Description: Kernel modules for IPsec support in IPv6.
Includes:
- ah6
- esp6
- ipcomp6
- xfrm6_mode_beet
- xfrm6_mode_transport
- xfrm6_mode_tunnel
- xfrm6_tunnel
Package: kmod-ipsec
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-authenc, kmod-crypto-iv, kmod-crypto-des, kmod-crypto-hmac, kmod-crypto-md5, kmod-crypto-sha1, kmod-crypto-deflate, kmod-crypto-cbc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 32821
Filename: kmod-ipsec_3.18.9-1_ramips_24kec.ipk
Size: 33640
MD5Sum: 971ba429e7c9f29b031d149a56aa4e6c
SHA256sum: ad0f74b6ef5716b38db28631b7d2b481f84565a88993be5e67e9a0ef25143347
Description: Kernel modules for IPsec support in both IPv4 and IPv6.
Includes:
- af_key
- xfrm_ipcomp
- xfrm_user
Package: kmod-ipt-account
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6776
Filename: kmod-ipt-account_3.18.9+2.5-1_ramips_24kec.ipk
Size: 7607
MD5Sum: 7bd5ac41320bcd8a70d48e5eacfe1365
SHA256sum: b2756e696f832cd297ef5c9ed0862bad02c9f5680d9a09142630e341fb164334
Description: ACCOUNT netfilter module
Package: kmod-ipt-chaos
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables, kmod-ipt-delude, kmod-ipt-tarpit
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2326
Filename: kmod-ipt-chaos_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3114
MD5Sum: f47dbdf88fffff047e5fc9a85fbb6bfc
SHA256sum: 66e2396c75b03ca0674105c40ba4a56c93dd7b92b6ec8add399f405476814e38
Description: CHAOS netfilter module
Package: kmod-ipt-cluster
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1511
Filename: kmod-ipt-cluster_3.18.9-1_ramips_24kec.ipk
Size: 2591
MD5Sum: d1ee4fe5e87fc4281e2195379359a507
SHA256sum: 67f33d0140f3fe0ab9499bd177a18ec924f368f67136a48bcca138f407b12346
Description: Netfilter (IPv4/IPv6) module for matching cluster
This option allows you to build work-load-sharing clusters of
network servers/stateful firewalls without having a dedicated
load-balancing router/server/switch. Basically, this match returns
true when the packet must be handled by this cluster node. Thus,
all nodes see all packets and this match decides which node handles
what packets. The work-load sharing algorithm is based on source
address hashing.
This module is usable for ipv4 and ipv6.
To use it also enable iptables-mod-cluster
see `iptables -m cluster --help` for more information.
Package: kmod-ipt-clusterip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4677
Filename: kmod-ipt-clusterip_3.18.9-1_ramips_24kec.ipk
Size: 5583
MD5Sum: 425043d6457e64a1d1b43dc923fb4b3e
SHA256sum: d01c8c31e114d5802e3ec905105dc93fafe047a03b249ae5a8895f80eafadd14
Description: Netfilter (IPv4-only) module for CLUSTERIP
The CLUSTERIP target allows you to build load-balancing clusters of
network servers without having a dedicated load-balancing
router/server/switch.
To use it also enable iptables-mod-clusterip
see `iptables -j CLUSTERIP --help` for more information.
Package: kmod-ipt-compat-xtables
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ip6tables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 820
Filename: kmod-ipt-compat-xtables_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1636
MD5Sum: b640bf919665e27a6b3edbf7999eb593
SHA256sum: d6352191599b95e16b9fffdeb6f92d41cabbc58074f37141f06aa7380631356a
Description: API compatibilty layer netfilter module
Package: kmod-ipt-condition
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2502
Filename: kmod-ipt-condition_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3277
MD5Sum: 935c1c2e357382197988b2d62cd00254
SHA256sum: ceab139d6ea3baefe3e24cbddaa3f0dcea85fb20e9bd1b122f743dc72d58d940
Description: Condition netfilter module
Package: kmod-ipt-conntrack-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10603
Filename: kmod-ipt-conntrack-extra_3.18.9-1_ramips_24kec.ipk
Size: 11428
MD5Sum: 61659449161d740d11ae1617760ac38f
SHA256sum: 2fe34423681639a6348aa3b80a4d0f2517f34b7343c9c3c8b7892e997a2d3a52
Description: Netfilter (IPv4) extra kernel modules for connection tracking
Includes:
- connbytes
- connmark/CONNMARK
- conntrack
- helper
- recent
Package: kmod-ipt-conntrack
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4706
Filename: kmod-ipt-conntrack_3.18.9-1_ramips_24kec.ipk
Size: 5496
MD5Sum: 8f66d06ebd41c9959c4874f5ffcedb27
SHA256sum: 5fed584afcfa1258693c41b77c3456f268d991a47088d8e5fb065e4d6557b786
Description: Netfilter (IPv4) kernel modules for connection tracking
Includes:
- conntrack
- defrag
- iptables_raw
- NOTRACK
- state
Package: kmod-ipt-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-ipt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16374
Filename: kmod-ipt-core_3.18.9-1_ramips_24kec.ipk
Size: 17158
MD5Sum: 8340ecda57a95067c96450a83ce54016
SHA256sum: 63e684d11459a96fd609e0b0a3709f289bf4813d162576ded4144aae362eb522
Description: Netfilter core kernel modules
Includes:
- comment
- limit
- LOG
- mac
- multiport
- REJECT
- TCPMSS
Package: kmod-ipt-delude
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1898
Filename: kmod-ipt-delude_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2718
MD5Sum: b41d5fc9ffb516921cf14849bf4a05ab
SHA256sum: 746ede20affc044259aedb96166b9eb06c84b15bd63d8f4c1818422c90cf71dd
Description: DELUDE netfilter module
Package: kmod-ipt-dhcpmac
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1607
Filename: kmod-ipt-dhcpmac_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2428
MD5Sum: 9d750a873fe9a2749d7c3e294b4e2200
SHA256sum: 51027c65eca210a59065f8dfc2bc8ebbba9a9fa3894d64a2633df1cd4401edef
Description: DHCPMAC netfilter module
Package: kmod-ipt-dnetmap
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables, kmod-ipt-nat
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7485
Filename: kmod-ipt-dnetmap_3.18.9+2.5-1_ramips_24kec.ipk
Size: 8290
MD5Sum: d1890f70c1e108d2a5b0477fd4cf5b99
SHA256sum: d062bdbf55e1cec7a3924d692fb4723bd004c6dc8874e6196964a8bd9f6b4492
Description: DNETMAP netfilter module
Package: kmod-ipt-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4142
Filename: kmod-ipt-extra_3.18.9-1_ramips_24kec.ipk
Size: 4930
MD5Sum: 917be4a28baae478142cbb9c5bebb692
SHA256sum: 5885faaae002687936d2f5c73daaa699f7e4381c92f9a78bfb8a35e35e25ab25
Description: Other Netfilter (IPv4) kernel modules
Includes:
- addrtype
- owner
- physdev (if bridge support was enabled in kernel)
- pkttype
- quota
Package: kmod-ipt-filter
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-lib-textsearch, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1080
Filename: kmod-ipt-filter_3.18.9-1_ramips_24kec.ipk
Size: 1902
MD5Sum: 7255490603f0e95b0daff186f17166fc
SHA256sum: e5bd5f8aa0527ceff1693446e641611b36a3f45bc49d6fe85c159f24f410cefd
Description: Netfilter (IPv4) kernel modules for packet content inspection
Includes:
- layer7
- string
Package: kmod-ipt-fuzzy
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1283
Filename: kmod-ipt-fuzzy_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2098
MD5Sum: 3ef84b1aefb3fc3e1527305d17993550
SHA256sum: 3e2c315424a970735e865aaaf1248305e7a3b8b807066776e4014c0fe1615062
Description: fuzzy netfilter module
Package: kmod-ipt-geoip
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2768
Filename: kmod-ipt-geoip_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3544
MD5Sum: 98aeba4f474aa8d07226f29589694895
SHA256sum: 385c24970549a58315962ecad9569e8a87bfda16e5797149759c7986165dea8a
Description: geoip netfilter module
Package: kmod-ipt-hashlimit
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5721
Filename: kmod-ipt-hashlimit_3.18.9-1_ramips_24kec.ipk
Size: 6499
MD5Sum: ecf2d5c7d6347bf58c4bd9f819662700
SHA256sum: 06a1a91436bd83b2a63d73649c452bd8c05f392f396bca4ab2e7d64881361b73
Description: Kernel modules support for the hashlimit bucket match module
Package: kmod-ipt-iface
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1112
Filename: kmod-ipt-iface_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1908
MD5Sum: c657fddc27035ff8ff63605e282944dd
SHA256sum: c4ee7ba7de83fa6739362a6c80c70f0a32878ca12f1d1b788b837096cd649b76
Description: iface netfilter module
Package: kmod-ipt-ipmark
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1123
Filename: kmod-ipt-ipmark_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1932
MD5Sum: a12bd60b641532c7710e9ebf202f7a51
SHA256sum: 80dc2d6b5be1a7a551827d907ef03acfd625fffe0990057d907986d376f306a9
Description: IPMARK netfilter module
Package: kmod-ipt-ipopt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5971
Filename: kmod-ipt-ipopt_3.18.9-1_ramips_24kec.ipk
Size: 6818
MD5Sum: c29288fdf46d4f56351eac6fbe23e6c8
SHA256sum: 858892877876ffcc53e435f8853584b5bc3da59e368c3b75daed64a75b84b40f
Description: Netfilter (IPv4) modules for matching/changing IP packet options
Includes:
- CLASSIFY
- dscp/DSCP
- ecn/ECN
- hl/HL
- length
- mark/MARK
- statistic
- tcpmss
- time
- ttl/TTL
- unclean
Package: kmod-ipt-ipp2p
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5182
Filename: kmod-ipt-ipp2p_3.18.9+2.5-1_ramips_24kec.ipk
Size: 5958
MD5Sum: 900cedb4db22f2dad492a8a25801b2b9
SHA256sum: 4d0edaf901e8aeab663e18284b7aeb414c8b116f11e700a0d3042cd720ea4811
Description: IPP2P netfilter module
Package: kmod-ipt-iprange
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1174
Filename: kmod-ipt-iprange_3.18.9-1_ramips_24kec.ipk
Size: 1976
MD5Sum: 447494f56ae026cef6d3f64e3bf4c07c
SHA256sum: 2e2f1bf3d06323f38ee74f7f7cf028e3c0eaa5b5a276f3006fdc1941b1a429b8
Description: Netfilter (IPv4) module for matching ip ranges
Includes:
- iprange
Package: kmod-ipt-ipsec
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2562
Filename: kmod-ipt-ipsec_3.18.9-1_ramips_24kec.ipk
Size: 3353
MD5Sum: c66922277a8466714d4786eec82a7e68
SHA256sum: 58c7ec092cd1d310a0258a062c66a8a1d5e27cbd498f97eb0e9bf5e3f49fc4a3
Description: Netfilter (IPv4) modules for matching IPSec packets
Includes:
- ah
- esp
- policy
Package: kmod-ipt-ipset
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nfnetlink
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 124013
Filename: kmod-ipt-ipset_3.18.9-1_ramips_24kec.ipk
Size: 124388
MD5Sum: 78dd632d6766271f0efb447d5741adc9
SHA256sum: 5362c9ed114cc2d92b1006e7d021e2d74a69774b4ea395ddf9da6270043d5f11
Description: IPset netfilter modules
Package: kmod-ipt-ipv4options
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 941
Filename: kmod-ipt-ipv4options_3.18.9+2.5-1_ramips_24kec.ipk
Size: 1751
MD5Sum: aa5f51aeae907d45dd97e2ca2381ef45
SHA256sum: 922d100d5001145e06642c49665b09b2931e57f043baa2caf8624c0657b02980
Description: ipv4options netfilter module
Package: kmod-ipt-led
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1827
Filename: kmod-ipt-led_3.18.9-1_ramips_24kec.ipk
Size: 2629
MD5Sum: 8f661aba7bd92954f7295f555c5c1aad
SHA256sum: f02c78ef9b22e77bfbaf50b460e9b5d5b8b960bdb153f19ca21f65baacb1501d
Description: Netfilter target to trigger a LED when a network packet is matched.
Package: kmod-ipt-length2
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2150
Filename: kmod-ipt-length2_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2969
MD5Sum: afebd8ae8acbf3f21a038e4721799f28
SHA256sum: 8c6a7d7e50bc35ba1c061bf82a5ea4a1af89dc25f644cdca7719861212e01886
Description: length2 netfilter module
Package: kmod-ipt-logmark
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1937
Filename: kmod-ipt-logmark_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2759
MD5Sum: 844ac6453c1e61ec6cfecf15c4433d16
SHA256sum: 76fd0f360b48708e36ffe80ab0a41c446872b7a21373acf8c000bb4d3d250290
Description: LOGMARK netfilter module
Package: kmod-ipt-lscan
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2152
Filename: kmod-ipt-lscan_3.18.9+2.5-1_ramips_24kec.ipk
Size: 2915
MD5Sum: 4b20e44a6903d9566787a41fb6a766c2
SHA256sum: aec1f35c9f8f670110b54dbf044c9aa323c647f3808657a77e2cebe8fb8c0725
Description: lscan netfilter module
Package: kmod-ipt-lua
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-conntrack-extra
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69382
Filename: kmod-ipt-lua_3.18.9+2.5-1_ramips_24kec.ipk
Size: 69878
MD5Sum: 7d3578b55558c8a2c52ab8e0b48da504
SHA256sum: 18bf5608ffdbb40e0d6e56b630c7837804014d67bfd42711639379b43ff5fab6
Description: Lua PacketScript netfilter module
Package: kmod-ipt-nat-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1352
Filename: kmod-ipt-nat-extra_3.18.9-1_ramips_24kec.ipk
Size: 2182
MD5Sum: cf9e6212efb0b5400b927f314bbb706f
SHA256sum: 30894dabb44b3f40b696342dea24785c3090da32e90c208ed88fb8511841025f
Description: Netfilter (IPv4) kernel modules for extra NAT targets
Includes:
- NETMAP
- REDIRECT
Package: kmod-ipt-nat6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-nat6, kmod-ipt-core, kmod-ipt-conntrack, kmod-ipt-core, kmod-ipt-nat, kmod-ipt-core, kmod-ip6tables
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3732
Filename: kmod-ipt-nat6_3.18.9-1_ramips_24kec.ipk
Size: 4542
MD5Sum: 6cb502846cbfd4ccc358828f71d11b11
SHA256sum: 12864c64ca3bb99cd6f62ce93c49d68b3b642f8aa8ecd97686860143dd500b5d
Description: Netfilter (IPv6) kernel modules for NAT targets
Package: kmod-ipt-nat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3988
Filename: kmod-ipt-nat_3.18.9-1_ramips_24kec.ipk
Size: 4766
MD5Sum: e8281da423ce4a2a56a00afebe699b9e
SHA256sum: fb133ebbe8118442381a3fa1936fb90ac812f01adac26f2a1c4544c4317deeb1
Description: Netfilter (IPv4) kernel modules for basic NAT targets
Includes:
- MASQUERADE
Package: kmod-ipt-nathelper-rtsp
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-conntrack-extra, kmod-ipt-nat
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7206
Filename: kmod-ipt-nathelper-rtsp_3.18.9+2.5-1_ramips_24kec.ipk
Size: 8031
MD5Sum: 663a7cfd53f0719687148b7ce5436d4e
SHA256sum: 99ecc0decbbd450f5b54b55b93319fb4e9d9fd882be65e3fb1eff5e0db6a8396
Description: RTSP Conntrack and NAT netfilter module
Package: kmod-ipt-nflog
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nfnetlink-log
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 971
Filename: kmod-ipt-nflog_3.18.9-1_ramips_24kec.ipk
Size: 1774
MD5Sum: 219b8aa59eb5f71ccb03fd1a5445c1f5
SHA256sum: 8867f782994aa9522ac01875ba836abf1402582ce04d5eaaa1e5456f7a25a73d
Description: Netfilter module for user-space packet logging
Includes:
- NFLOG
Package: kmod-ipt-nfqueue
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-nfnetlink-queue
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1885
Filename: kmod-ipt-nfqueue_3.18.9-1_ramips_24kec.ipk
Size: 2707
MD5Sum: 0cca6a0e73582dda1180d43ba8b07b38
SHA256sum: 849bf2c1c440527c83fc6116a2edfab648ca3f161e1e9c248dc7bf5533eb3129
Description: Netfilter module for user-space packet queuing
Includes:
- NFQUEUE
Package: kmod-ipt-psd
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2701
Filename: kmod-ipt-psd_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3470
MD5Sum: d5c4d6a561b97eb1ebdc0862050f25d4
SHA256sum: bba4e3c305941467cf4b42046cf391ff312f72222464a0a5db41449885822310
Description: psd netfilter module
Package: kmod-ipt-quota2
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3044
Filename: kmod-ipt-quota2_3.18.9+2.5-1_ramips_24kec.ipk
Size: 3815
MD5Sum: 2d659fecefe93dbc2c932a0db1b7d7ee
SHA256sum: 712a11f1f82a91ab5bdb9aceda1d39fb796660dbdc44eec5f339dc59a279944d
Description: quota2 netfilter module
Package: kmod-ipt-sysrq
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3733
Filename: kmod-ipt-sysrq_3.18.9+2.5-1_ramips_24kec.ipk
Size: 4517
MD5Sum: 0e46d0807272d7d8f1875447e0a4ce57
SHA256sum: 64bff38ef46fcb804796ffd7e7a2b1218ba7f88474bda3830e6ae592752e1558
Description: SYSRQ netfilter module
Package: kmod-ipt-tarpit
Version: 3.18.9+2.5-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core, kmod-ipt-compat-xtables, kmod-ipv6
Source: package/network/utils/xtables-addons
License: GPL-2.0
Section: kernel
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3531
Filename: kmod-ipt-tarpit_3.18.9+2.5-1_ramips_24kec.ipk
Size: 4300
MD5Sum: 4914bd2b283d4f8cf8261e45b531f920
SHA256sum: 91af767025775594da8998ef4b9134d5b15a5bbaa9ed3ee97842c470cf29d0e2
Description: TARPIT netfilter module
Package: kmod-ipt-tee
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-conntrack, kmod-ipv6, kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2048
Filename: kmod-ipt-tee_3.18.9-1_ramips_24kec.ipk
Size: 2823
MD5Sum: 1f6eb0d4f368ff94f129a84b90744f1a
SHA256sum: 6cb083b2edb29056af996c72efc4ab59d6a48dfcb1bf924c3b95dfc9e0597ebd
Description: Kernel modules for TEE
Package: kmod-ipt-tproxy
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-conntrack, kmod-ipv6, kmod-ip6tables, kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5127
Filename: kmod-ipt-tproxy_3.18.9-1_ramips_24kec.ipk
Size: 5900
MD5Sum: a17d752b6b983a87f7a5340da683343c
SHA256sum: 85ca8e1828db2f566de2f1d6073b571c253bf3388bfffcce4415b1c94b6fcc64
Description: Kernel modules for Transparent Proxying
Package: kmod-ipt-u32
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1231
Filename: kmod-ipt-u32_3.18.9-1_ramips_24kec.ipk
Size: 2006
MD5Sum: a29c8ddeeb2af66703bdbaf742c8f43a
SHA256sum: 3dedd316a89297ab518be0dc05174bbfbb156cb9d6d81b064744728da525af9a
Description: Kernel modules for U32
Package: kmod-ipt-ulog
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-ipt-ulog_3.18.9-1_ramips_24kec.ipk
Size: 883
MD5Sum: 1590630cd9a9ec588da367b511282c96
SHA256sum: e36bbbc7b01005f00d2a490c7ab44883ac9008a344af02e6b5732ce9fd65af36
Description: Netfilter (IPv4) module for user-space packet logging
Includes:
- ULOG
Package: kmod-iptunnel4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1882
Filename: kmod-iptunnel4_3.18.9-1_ramips_24kec.ipk
Size: 2656
MD5Sum: ea45731c39d1501cb797ca7c06cc9b72
SHA256sum: 6048666687c899cec548f45378ae866046e2cfc3cd573cdb310844bc23eeba6a
Description: Kernel modules for IPv4 tunneling
Package: kmod-iptunnel6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1919
Filename: kmod-iptunnel6_3.18.9-1_ramips_24kec.ipk
Size: 2692
MD5Sum: 081bda414c9e21e572de18af8f7b4a6c
SHA256sum: e7d8584db017f41a28f51c8128fbfba356b2295766cf9626d7f40de44a35d0b2
Description: Kernel modules for IPv6 tunneling
Package: kmod-iptunnel
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8040
Filename: kmod-iptunnel_3.18.9-1_ramips_24kec.ipk
Size: 8808
MD5Sum: 3574e567af81b45fd9cfdcaa35a0bc14
SHA256sum: cd5527590224b5111dd2588363d4debed2abaa0957c6141f24a6499679ccf432
Description: Kernel module for generic IP tunnel support
Package: kmod-ipv6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 162690
Filename: kmod-ipv6_3.18.9-1_ramips_24kec.ipk
Size: 162802
MD5Sum: db396318dd88c6a5299d2e4fdbf70e08
SHA256sum: 4921272ab80fe87baaaae8683cbaf9c5c8455a8f2de799806b69d58e474244f7
Description: Kernel modules for IPv6 support
Package: kmod-ipvti
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iptunnel, kmod-iptunnel4, kmod-ipsec4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4161
Filename: kmod-ipvti_3.18.9-1_ramips_24kec.ipk
Size: 4926
MD5Sum: 3e218cd1fc5e7ad79b3875370d017047
SHA256sum: 852a6dab9482786351425b3c3ac28e5f365ac9c43963b1b3bd8b58ee31f90397
Description: Kernel modules for IP VTI (Virtual Tunnel Interface)
Package: kmod-isdn4linux
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 86648
Filename: kmod-isdn4linux_3.18.9-1_ramips_24kec.ipk
Size: 86970
MD5Sum: 26d840fbb16f922a9453885eaaf843aa
SHA256sum: 7db88fad094a606da7cc65aa6eb6153ef23e44eb6865e4885a9f93da2d2ee740
Description: This driver allows you to use an ISDN adapter for networking
Package: kmod-l2tp-eth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-l2tp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2796
Filename: kmod-l2tp-eth_3.18.9-1_ramips_24kec.ipk
Size: 3548
MD5Sum: 668f6c5f6f178b6175c2d846c19cab76
SHA256sum: aabcd4eb62c81a229dc426e8f123a7b2f44ba1911c0c5c3b5a1280535173f240
Description: Kernel modules for L2TP ethernet pseudowire support for L2TPv3
Package: kmod-l2tp-ip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-l2tp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4771
Filename: kmod-l2tp-ip_3.18.9-1_ramips_24kec.ipk
Size: 5519
MD5Sum: 418246b1cd7f6effcc7b0fe6974d3ada
SHA256sum: 5c592b7b717d56cf82b7fe294ca76299407fa2e323176470524facb9fc0583e3
Description: Kernel modules for L2TP IP encapsulation for L2TPv3
Package: kmod-l2tp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-udptunnel4, kmod-udptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13171
Filename: kmod-l2tp_3.18.9-1_ramips_24kec.ipk
Size: 13933
MD5Sum: 1ead5c9f2e77b9bbe0525fc2bd259e98
SHA256sum: 43acd1508ca5f1bd5cf007d0da1374de27cd04d2c148ccc7f96566002a03db73
Description: Kernel modules for L2TP V3 Support
Package: kmod-leds-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2753
Filename: kmod-leds-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3491
MD5Sum: b0624a6b2323c7a44622738129a12345
SHA256sum: a40990b340d425858e790f5a09bade2768ddf911fa048d5dc33b2440aafb07cc
Description: Kernel module for LEDs on GPIO lines
Package: kmod-leds-pca963x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3175
Filename: kmod-leds-pca963x_3.18.9-1_ramips_24kec.ipk
Size: 3935
MD5Sum: fb6dbbf22c6fa728d203ae42c2b2d315
SHA256sum: f9de88cb1eb01d691e4b8b33dbe9b66d70ba0c22cff1da59ce6fa847ce89a127
Description: Driver for the NXP PCA963x I2C LED controllers.
Package: kmod-ledtrig-default-on
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 241
Filename: kmod-ledtrig-default-on_3.18.9-1_ramips_24kec.ipk
Size: 1007
MD5Sum: fe41cad814f5fa0e9bbbdc7a42748905
SHA256sum: f7939dbfd9901ead52df9f8beb51c66f6ef8ba5a14f8444663e84b60c9cc5ed0
Description: Kernel module that allows LEDs to be initialised in the ON state
Package: kmod-ledtrig-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2292
Filename: kmod-ledtrig-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3047
MD5Sum: d399e65b621b28e5c102e65492d04110
SHA256sum: a25bace39e4748da09f1546ababf668f3bd6f47915ae21e6d67e332d654f3327
Description: Kernel module that allows LEDs to be controlled by gpio events
Package: kmod-ledtrig-heartbeat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1563
Filename: kmod-ledtrig-heartbeat_3.18.9-1_ramips_24kec.ipk
Size: 2331
MD5Sum: 544f70adfdaa591c745b9b7c7b52b748
SHA256sum: c27b3b0ca3aaaa06c36566c4290abe24f395399f4b1772a665e50d6dba273da3
Description: LED Heartbeat Trigger
Package: kmod-ledtrig-morse
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2108
Filename: kmod-ledtrig-morse_3.18.9-1_ramips_24kec.ipk
Size: 2892
MD5Sum: 3bda55e81217118424d5b558c140ff11
SHA256sum: e64145b27ae0a11fe57bc1710236d09921c6386039af790a5184703686664fff
Description: Kernel module to show morse coded messages on LEDs
Package: kmod-ledtrig-netdev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 193
Filename: kmod-ledtrig-netdev_3.18.9-1_ramips_24kec.ipk
Size: 951
MD5Sum: 086fbb39a039dca77456c3788abb8523
SHA256sum: 537e9c171d7a8b94396cffb15bb5f0593dd3c4153ea3563b09d43c23dd024aa9
Description: Kernel module to drive LEDs based on network activity
Package: kmod-ledtrig-netfilter
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1838
Filename: kmod-ledtrig-netfilter_3.18.9-1_ramips_24kec.ipk
Size: 2815
MD5Sum: 6763cf679f258fc4cd3e328cd5e54c76
SHA256sum: 0f5fb6fa2acfff3b1c50a7fb3250045d4b6cc7bb0bc7a87ffd943cc1f280b34d
Description: Kernel module to flash LED when a particular packets passing through your machine.
For example to create an LED trigger for incoming SSH traffic:
iptables -A INPUT -p tcp --dport 22 -j LED --led-trigger-id ssh --led-delay 1000
Then attach the new trigger to an LED on your system:
echo netfilter-ssh > /sys/class/leds/<ledname>/trigger
Package: kmod-ledtrig-oneshot
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1641
Filename: kmod-ledtrig-oneshot_3.18.9-1_ramips_24kec.ipk
Size: 2452
MD5Sum: f6bed7a55f1ea6dc7d5d91aa1ab03d9b
SHA256sum: b1245d6a932f7080c784dc77fd50340be47e524bbe997155317554443308782d
Description: Kernel module that allows LEDs to be triggered by sporadic events in
one-shot pulses
Package: kmod-ledtrig-timer
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 236
Filename: kmod-ledtrig-timer_3.18.9-1_ramips_24kec.ipk
Size: 1004
MD5Sum: fe42a744eb3baf121627eb20a6780c03
SHA256sum: 53fd55c4a1cfb4116961757f9ca2c190bfa42b1e3f946edd2402948e552c660a
Description: Kernel module that allows LEDs to be controlled by a programmable timer
via sysfs
Package: kmod-ledtrig-transient
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1962
Filename: kmod-ledtrig-transient_3.18.9-1_ramips_24kec.ipk
Size: 2725
MD5Sum: 8dbcf4b18bc0a239e1c826b44116e5a6
SHA256sum: 3b61cebe7d36bcb813b3f331cd6fa2b8385f63ff1288e178c2f9465c47fb45dd
Description: Kernel module that allows LEDs one time activation of a transient state.
Package: kmod-ledtrig-usbdev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2127
Filename: kmod-ledtrig-usbdev_3.18.9-1_ramips_24kec.ipk
Size: 2932
MD5Sum: 2639a8b3b00a7a3dead8880eacb1203a
SHA256sum: 818acf99d80ca7cefa9c589fbe19c5ab92da80c2250b54c5385181f80d94330f
Description: Kernel module to drive LEDs based on USB device presence/activity
Package: kmod-lib-cordic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 981
Filename: kmod-lib-cordic_3.18.9-1_ramips_24kec.ipk
Size: 1750
MD5Sum: 572c6962790d49248e9df59ea4432f1a
SHA256sum: 261d347f92f5e431595dfc582d855fca1f81f7b60a43813b3fc634320d7e48e9
Description: Kernel module for Cordic function support
Package: kmod-lib-crc-ccitt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1350
Filename: kmod-lib-crc-ccitt_3.18.9-1_ramips_24kec.ipk
Size: 2119
MD5Sum: e6be1d22550704785920a7578572160a
SHA256sum: 621ef0d06de94800f388ba521179bf7d904b0ff179d8e2930f1c50fbd9c41786
Description: Kernel module for CRC-CCITT support
Package: kmod-lib-crc-itu-t
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1353
Filename: kmod-lib-crc-itu-t_3.18.9-1_ramips_24kec.ipk
Size: 2124
MD5Sum: 27fd9decfeea0bbda6fe31eeac2159e6
SHA256sum: 6670e63304081585dc048b61a2eae890e7ae5034a82d004b757eac8a2d641872
Description: Kernel module for CRC ITU-T V.41 support
Package: kmod-lib-crc16
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1268
Filename: kmod-lib-crc16_3.18.9-1_ramips_24kec.ipk
Size: 2043
MD5Sum: f667ff8e2052ed4eeef470f53682552b
SHA256sum: bf860bcf7ebf69ccfebf0c970699e8b2343143934d677423f646f925af489108
Description: Kernel module for CRC16 support
Package: kmod-lib-crc32c
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-crc32c
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1013
Filename: kmod-lib-crc32c_3.18.9-1_ramips_24kec.ipk
Size: 1794
MD5Sum: 6e20a398be18167a0105c013ffe4862b
SHA256sum: 9b3baa358385d62792448c2adb1f014fbe11770ba78a887d86a37c9ea6fcd176
Description: Kernel module for CRC32 support
Package: kmod-lib-crc7
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1059
Filename: kmod-lib-crc7_3.18.9-1_ramips_24kec.ipk
Size: 1808
MD5Sum: fe94cda8d2fd58e390a57aed87f41158
SHA256sum: e5dafce57be3c5b03897f0cc37ab9a6cee1d04e72a27166e7a846e83a3b9c52e
Description: Kernel module for CRC7 support
Package: kmod-lib-crc8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 916
Filename: kmod-lib-crc8_3.18.9-1_ramips_24kec.ipk
Size: 1677
MD5Sum: 9135ed68ddf800a264f32528be27f5aa
SHA256sum: 15a3f4ca810ecf82336e66fb71015efb513dab28514e21ad1e1b37284149af83
Description: Kernel module for CRC8 support
Package: kmod-lib-lz4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3636
Filename: kmod-lib-lz4_3.18.9-1_ramips_24kec.ipk
Size: 4375
MD5Sum: 97369cb39e50a3d0e0e4525499528deb
SHA256sum: bbc3d7415edaed4e873dce4140c97fa89ef83f4fc84b11f7028a7405a6d0d183
Description: Kernel module for LZ4 compression/decompression support
Package: kmod-lib-lzo
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2815
Filename: kmod-lib-lzo_3.18.9-1_ramips_24kec.ipk
Size: 3553
MD5Sum: 5294bf6dd195e91a76d2d7ba2d1a9be6
SHA256sum: 1f76e5b5df23e3ba24ffb77ead3571ccf4471bfcecffec193d56857b28efce2a
Description: Kernel module for LZO compression/decompression support
Package: kmod-lib-raid6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 73888
Filename: kmod-lib-raid6_3.18.9-1_ramips_24kec.ipk
Size: 74701
MD5Sum: 11d954dbdae091485447bc793a4a6ddc
SHA256sum: 67136f5f56620dd68161366de025cd06cbf1fc9b5540b5b8e522e8608efcb66d
Description: Kernel module for RAID6 algorithms
Package: kmod-lib-textsearch
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3538
Filename: kmod-lib-textsearch_3.18.9-1_ramips_24kec.ipk
Size: 4271
MD5Sum: 7a99eadaaea4f8c377fd78493bf29ceb
SHA256sum: 61025b02f7c9bb3d2e6fce39087c3149aab9416ac165efc8f8d122798b4d994e
Description: Textsearch support
Package: kmod-lib-xor
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3061
Filename: kmod-lib-xor_3.18.9-1_ramips_24kec.ipk
Size: 3732
MD5Sum: 7180effce8f79dd0dab11815b35588bc
SHA256sum: e7581d1b8c31f195359098c37fc7ac39a24dac7b32fe7ae417538645230ffab5
Description: Kernel module for XOR blocks algorithms
Package: kmod-lib-zlib
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 17353
Filename: kmod-lib-zlib_3.18.9-1_ramips_24kec.ipk
Size: 18064
MD5Sum: 9ab09312a7ff3a5b0555bff59251d966
SHA256sum: 9290d0f6ac45bb52c568e9a94445e8d514feb154a2149b6b9fba8367dce4d162
Description: Zlib support
Package: kmod-lib80211
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10499
Filename: kmod-lib80211_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 11303
MD5Sum: 4a225eaafb4fb30add5998983a6c7485
SHA256sum: 48f2dc9e81025a31b34bcd968228fa21ca5d8211f041e09caca4e0bb316ab4c3
Description: Kernel modules for 802.11 Networking stack
Includes:
- lib80211
- lib80211_crypt_wep
- lib80211_crypt_tkip
- lib80211_crytp_ccmp
Package: kmod-libertas-sdio
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211, kmod-lib80211, kmod-mmc
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 380609
Filename: kmod-libertas-sdio_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 381504
MD5Sum: ce77fd321090660f6b8de44bf37fc655
SHA256sum: dc59c718fb03edf97635abab07e4f51c87fee6fd3fcdd8c8717cfe491b6c5e1c
Description: Marvell 88W8686 Wireless Driver
Package: kmod-libertas-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-cfg80211, kmod-usb-core, kmod-lib80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 247874
Filename: kmod-libertas-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 248583
MD5Sum: 7bb24409219bd1352a71131d6c26aba2
SHA256sum: 8971761210b57da90dc0b83d52016345250dd2780af521d47a674a91b5b81172
Description: Marvell 88W8015 Wireless Driver
Package: kmod-libphy
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 231
Filename: kmod-libphy_3.18.9-1_ramips_24kec.ipk
Size: 958
MD5Sum: bc08d5ae863b978e97cb0b0f279c349f
SHA256sum: 7ee1bdc9aa42b9d8ef15b891a04c2376133e889a7df6038bf98cb28e69da89c0
Description: PHY library
Package: kmod-llc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 194
Filename: kmod-llc_3.18.9-1_ramips_24kec.ipk
Size: 942
MD5Sum: d80bdb333ff77ddc08170fa04c250bd0
SHA256sum: 44524241ead6f8d9f2ed8551563bcecbf67111e561a313be60782c112f6ad36a
Description: Kernel module for ANSI/IEEE 802.2 LLC support.
Package: kmod-loop
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10473
Filename: kmod-loop_3.18.9-1_ramips_24kec.ipk
Size: 11229
MD5Sum: a52cfba579aa4a20f7649dc555da98c0
SHA256sum: a817df319bcee1801a692084246fd665109b3705139c2902d8780793e3bfc7c1
Description: Kernel module for loopback device support
Package: kmod-mac80211-hwsim
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19288
Filename: kmod-mac80211-hwsim_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 20035
MD5Sum: 6825a9345283252b580db9dd105daf3c
SHA256sum: 6db12125d60ba4ebb8ba9718aefe1466b2169711ee9109e3db3135b5b5b5389b
Description: mac80211 HW simulation device
Package: kmod-mac80211
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-arc4, kmod-crypto-aes, kmod-cfg80211, hostapd-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 218426
Filename: kmod-mac80211_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 217884
MD5Sum: 5fc6dd3bc4261619f6fe2e29af591b12
SHA256sum: 06e0d5c3b1b76a8ea3e8faba3debe3b428be0192590cf4aa8ecbca8e7cd99e5a
Description: Generic IEEE 802.11 Networking Stack (mac80211)
Package: kmod-macvlan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8083
Filename: kmod-macvlan_3.18.9-1_ramips_24kec.ipk
Size: 8909
MD5Sum: 01fd8c2c15d85b201df81588b5a69612
SHA256sum: 6be9a8420a810ccdbf4b24840005b6c735aaf31b2dd32f3d48a89cdecaca96b1
Description: A kernel module which allows one to create virtual interfaces that
map packets to or from specific MAC addresses to a particular interface
Package: kmod-md-linear
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3435
Filename: kmod-md-linear_3.18.9-1_ramips_24kec.ipk
Size: 4181
MD5Sum: 38c59fb19fbef8d2dfabbc006f1bff0e
SHA256sum: 0e19d0d508622225e6d1238602707374e08a7ee02dda5b3e07ed6f67a82dc70d
Description: RAID "Linear" or "Append" driver module (linear.ko)
Package: kmod-md-mod
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 61336
Filename: kmod-md-mod_3.18.9-1_ramips_24kec.ipk
Size: 61954
MD5Sum: 16f8e6e7cf9073010ab3d88f38a3b8d3
SHA256sum: 9c34f04c8285b552d3d69d957b0b95fc01141f0e3c12a48315b782605109b6cc
Description: Kernel RAID md module (md-mod.ko).
You will need to select at least one RAID level module below.
Package: kmod-md-multipath
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4725
Filename: kmod-md-multipath_3.18.9-1_ramips_24kec.ipk
Size: 5465
MD5Sum: fc360cac406710589e019a082698a64b
SHA256sum: 4928c5d8e8426d55fcfd6a60a6abda1ac82323d9d40d3379b3f6706fbce1fd14
Description: Multipath driver module (multipath.ko)
Package: kmod-md-raid0
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5991
Filename: kmod-md-raid0_3.18.9-1_ramips_24kec.ipk
Size: 6767
MD5Sum: 4ddefdd01c8a68b378889a80f5a228cb
SHA256sum: c19f02d94209a490b5b0adaafe2333ea6e486d7770aa1ac482416763781aafa4
Description: RAID Level 0 (Striping) driver module (raid0.ko)
Package: kmod-md-raid10
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 27337
Filename: kmod-md-raid10_3.18.9-1_ramips_24kec.ipk
Size: 28104
MD5Sum: d4ffd19b61f06483a2774ace00523057
SHA256sum: e109927149c9c1671d48c58a084b241c4be95fff961fee06afaa7658bce9ef2b
Description: RAID Level 10 (Mirroring+Striping) driver module (raid10.ko)
Package: kmod-md-raid1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 19366
Filename: kmod-md-raid1_3.18.9-1_ramips_24kec.ipk
Size: 20104
MD5Sum: b9fd61e1f1a0bddbc38a0a4bfbf7301b
SHA256sum: 0f01a9c1687b9feb07bfb802faf5bfd778050b3d65dcb3168d4fdb5488cc9ae1
Description: RAID Level 1 (Mirroring) driver (raid1.ko)
Package: kmod-md-raid456
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-md-mod, kmod-lib-raid6, kmod-lib-xor
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 42746
Filename: kmod-md-raid456_3.18.9-1_ramips_24kec.ipk
Size: 43440
MD5Sum: 6132c7a8dac87ff705d634da127408ef
SHA256sum: eaff892e97e6b137f31517d958edee2f9af96e4bf74ad9b3bd962c1b87d677a3
Description: RAID Level 4,5,6 kernel module (raid456.ko)
Includes the following modules required by
raid456.ko:
xor.ko
async_tx.ko
async_xor.ko
async_memcpy.ko
async_pq.ko
async_raid5_recov.ko
raid6_pq.ko
Package: kmod-mii
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2853
Filename: kmod-mii_3.18.9-1_ramips_24kec.ipk
Size: 3578
MD5Sum: ff4c093bdd44a70a2d37ce359b45d643
SHA256sum: 2a450733657827b1e5bec5c2715c1b79939adca702605f1f01e56964f4570eed
Description: MII library
Package: kmod-misdn
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 86147
Filename: kmod-misdn_3.18.9-1_ramips_24kec.ipk
Size: 86719
MD5Sum: ec7deb87638717a726ad712062d9851f
SHA256sum: f737b688bc240a318ada4b80d972f347202b19cd4d8146adbef09994dfe756b5
Description: Modular ISDN driver support
Package: kmod-mmc-over-gpio
Version: 3.18.9-4
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mmc-spi, kmod-spi-gpio-old, kmod-fs-configfs
Source: package/kernel/mmc_over_gpio
Section: kernel
Architecture: ramips_24kec
Installed-Size: 4372
Filename: kmod-mmc-over-gpio_3.18.9-4_ramips_24kec.ipk
Size: 5142
MD5Sum: 62f6d8ad8d184260969390f5a934804b
SHA256sum: ab36e2aa323319db23f8a3f271682370a89d8344cbfb66949854c11eb728bb25
Description: Support for driving an MMC/SD card over GPIO pins via SPI.
Package: kmod-mmc-spi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mmc, kmod-lib-crc-itu-t, kmod-lib-crc7
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7036
Filename: kmod-mmc-spi_3.18.9-1_ramips_24kec.ipk
Size: 7818
MD5Sum: 3f06f13b2778ac10f3606735d3c23f29
SHA256sum: 5a00dddd089264f63373dfd3f9696ed9efcb3f57cc90d6f655273bf9087d816d
Description: Kernel support for MMC/SD over SPI
Package: kmod-mmc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 58854
Filename: kmod-mmc_3.18.9-1_ramips_24kec.ipk
Size: 59550
MD5Sum: 16e3188df646ce10d46a6dae9e39364a
SHA256sum: 430c0f00382dfba592b6730aea9789addef410c6abc8debe768ba09272b9a71b
Description: Kernel support for MMC/SD cards
Package: kmod-mp-alg
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-mp-alg_3.18.9-1_ramips_24kec.ipk
Size: 998
MD5Sum: 0d530d418b1e2cf0db14d76d5f368272
SHA256sum: 7117f0dbb344999fbf55d6d49c89568235e7ea6a256bb9b3b5e726d2fd13f792
Description: Kernel modules that provide several different algorithms for multipath
route selection from the route cache. The iproute "mpath" argument allows
specifying which algorithm to use for routes.
quagga (at least <=0.99.6) requires a multipath patch to support this
cached mp route feature.
Package: kmod-mppe
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-crypto-core, kmod-crypto-arc4, kmod-crypto-sha1, kmod-crypto-ecb
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4143
Filename: kmod-mppe_3.18.9-1_ramips_24kec.ipk
Size: 4917
MD5Sum: ac7d0da7d8a56934a19ead5c300dceb9
SHA256sum: 7cac77e581a4a7e8c473508fa5519cc59082e50c1ad865f4b94c24712b8b6ac2
Description: Kernel modules for Microsoft PPP compression/encryption
Package: kmod-mtdtests
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nand
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 29007
Filename: kmod-mtdtests_3.18.9-1_ramips_24kec.ipk
Size: 29665
MD5Sum: 12c575938b1a819dff0f54f4a86b956b
SHA256sum: f3ed7a781e62cb3c7e282e6ac397e902fd3905414d5e819d9ffe31b60db448b8
Description: Kernel modules for MTD subsystem/driver testing
Package: kmod-nand
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 26911
Filename: kmod-nand_3.18.9-1_ramips_24kec.ipk
Size: 27540
MD5Sum: 85a9eb49bcce59b238eea36b6cc81646
SHA256sum: e265900aff98527c8b2e3d64660b5789f442454d94ed8363932c08bdbe37bf60
Description: Kernel module for NAND support
Package: kmod-nandsim
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nand
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15798
Filename: kmod-nandsim_3.18.9-1_ramips_24kec.ipk
Size: 16488
MD5Sum: 82780c2c367faf51a2a664ea9f7b46b6
SHA256sum: b72eab08be6c0af3d0b4fae0d7a3cd53900bc7d2c9f34828d5a737cfd09548d1
Description: Kernel module for NAND flash simulation.
Package: kmod-nbd
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8365
Filename: kmod-nbd_3.18.9-1_ramips_24kec.ipk
Size: 9135
MD5Sum: 53c78b707bd653701b48d390d60ceb18
SHA256sum: f9910d12f55f4f0f7aac455975a214b3b30d112872c18ed4e8d07adc937868ca
Description: Kernel module for network block device support
Package: kmod-net-rtl8188eu
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), r8188eu-firmware, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 221337
Filename: kmod-net-rtl8188eu_3.18.9-1_ramips_24kec.ipk
Size: 220597
MD5Sum: c315b8c0e29d164b68b74e594ce20eef
SHA256sum: 6f069f101c4883aaaab1ae9ca4f4df92766fe439fb4208f328c2dc386a6b41f3
Description: Kernel modules for RealTek RTL8188EU support
Package: kmod-net-rtl8192su
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 140548
Filename: kmod-net-rtl8192su_3.18.9-1_ramips_24kec.ipk
Size: 141274
MD5Sum: 8910d610be6a7a4b5e41659f9d7e98df
SHA256sum: 9ee4bf6a6ad4c9ad5565d1a73892eb1ca300a40f5ed6eed6a02cff434e9d3b65
Description: Kernel modules for RealTek RTL8712 and RTL81XXSU fullmac support.
Package: kmod-net-zd1201
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: kmod-net-zd1201_3.18.9-1_ramips_24kec.ipk
Size: 1175
MD5Sum: 9daa1e5fcc6ab8c6d0eec76c0c009685
SHA256sum: 1c876484c455b8fd9cee765bf59a0f3481956c394f76e490fabd7d0dc8f8bd1f
Description: Kernel modules for Zydas ZD1201 support
Devices using this chip:
* Sweex LC100020
* Zyxel ZyAir B-220
* Peabird USB
* Gigafast WF741-UIC
* E-Tech Wireless USB Adapter
* DSE 802.11b USB wireless LAN adapter
* CC and C WLAN USB Adapter (WL 1202)
* Edimax EW-7117U
* X-Micro WLAN 11b USB Adapter
* Belkin F5D6051
* Topcom SKYR@CER WIRELESS USB STICK 11
* Surecom EP-9001
* JAHT WN-1011U
* BeWAN Wi-Fi USB 11
* NorthQ NQ9000
* MSI UB11B
* Origo WLL-1610
* Longshine LCS-8131R
* Gigabyte GN-WLBZ201
Package: kmod-netem
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5642
Filename: kmod-netem_3.18.9-1_ramips_24kec.ipk
Size: 6423
MD5Sum: 02130596ab51ca3cb5495e4eb804b758
SHA256sum: d122f79325fc44b9e5ec0404036e12a962518a9dccb9841e4164530ea718223e
Description: Kernel modules for emulating the properties of wide area networks
Package: kmod-nf-conntrack-netlink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10735
Filename: kmod-nf-conntrack-netlink_3.18.9-1_ramips_24kec.ipk
Size: 11542
MD5Sum: 10adbb052a503bd3cb59c0007346a9cc
SHA256sum: 7fe98f013e5e8d3157141dbf5d3b8e08d74d029ccde2d0c8686a58c516b75b91
Description: Kernel modules support for a netlink-based connection tracking
userspace interface
Package: kmod-nf-conntrack6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-nf-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9219
Filename: kmod-nf-conntrack6_3.18.9-1_ramips_24kec.ipk
Size: 9999
MD5Sum: 7bacad37a100a84deb832bf4af765f20
SHA256sum: ee3fc8838d75b4e6c131c9b85ed15115328eb844cb840eaefcee0efe2e37acf5
Description: Netfilter IPv6 connection tracking
Package: kmod-nf-conntrack
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 37826
Filename: kmod-nf-conntrack_3.18.9-1_ramips_24kec.ipk
Size: 38649
MD5Sum: 0f0daf5fa7887154f14491f727694c85
SHA256sum: bcf0db2be80dcd6921943c85d043cdfb4b6a7d3805145197fce22c366c77c110
Description: Netfilter connection tracking
Package: kmod-nf-ipt6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-ipt, kmod-nf-conntrack6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7497
Filename: kmod-nf-ipt6_3.18.9-1_ramips_24kec.ipk
Size: 8265
MD5Sum: 74b3c464e5fc762f2cb7c76a0954650d
SHA256sum: 2a475ed33c90b9eea6aedbe40b6487a687204acb2a84e0d9340897408b8d036e
Description: Ip6tables core
Package: kmod-nf-ipt
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14274
Filename: kmod-nf-ipt_3.18.9-1_ramips_24kec.ipk
Size: 14982
MD5Sum: 7dad617f8a4ea9b6e02b221a7c1d915e
SHA256sum: 6e0863c84a36b2ebcc6634d83f2669d35857726f0bcc48b83836f66a3c30dcbf
Description: Iptables core
Package: kmod-nf-nat6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-conntrack6, kmod-nf-ipt6, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4179
Filename: kmod-nf-nat6_3.18.9-1_ramips_24kec.ipk
Size: 4932
MD5Sum: 5a086b2638e571b3f3ddb6f71028f837
SHA256sum: 4e50d508e6d51b3c25921c02fcff330839547e2aedd3b533243cd288303eb2ef
Description: Netfilter IPV6-NAT
Package: kmod-nf-nat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-conntrack, kmod-nf-ipt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11179
Filename: kmod-nf-nat_3.18.9-1_ramips_24kec.ipk
Size: 11905
MD5Sum: 9935dee60822ba21e4f32990b3d7e82e
SHA256sum: 231ef98882f672902137ab216caac98f4f852c238f4ff106bd00766130a7bf15
Description: Netfilter NAT
Package: kmod-nf-nathelper-extra
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-nat, kmod-lib-textsearch
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 50069
Filename: kmod-nf-nathelper-extra_3.18.9-1_ramips_24kec.ipk
Size: 50956
MD5Sum: e357cb63bef4fb2ab6c3a5579812f21f
SHA256sum: 1d3ebff38587bee0be08246744266d86329ea79b885e2a54a85fd97d28575b2c
Description: Extra Netfilter (IPv4) Conntrack and NAT helpers
Includes:
- amanda
- h323
- mms
- pptp
- proto_gre
- sip
- snmp_basic
- broadcast
Package: kmod-nf-nathelper
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8131
Filename: kmod-nf-nathelper_3.18.9-1_ramips_24kec.ipk
Size: 8928
MD5Sum: bd0e5ab97215f5e8a6445e08b4e75395
SHA256sum: 4d46f09a26c633b886f20271780e68d324bc86ce3715d295cdacda023f3d2577
Description: Default Netfilter (IPv4) Conntrack and NAT helpers
Includes:
- ftp
- irc
- tftp
Package: kmod-nfnetlink-log
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5891
Filename: kmod-nfnetlink-log_3.18.9-1_ramips_24kec.ipk
Size: 6684
MD5Sum: 1aad12b5d5771f503b73c7184edaa544
SHA256sum: 086cc3aefe8db759247d3b1857c6b4ee118b62f98aa9fa44eb159df6772ab0cd
Description: Kernel modules support for logging packets via NFNETLINK
Includes:
- NFLOG
Package: kmod-nfnetlink-queue
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6699
Filename: kmod-nfnetlink-queue_3.18.9-1_ramips_24kec.ipk
Size: 7532
MD5Sum: 163334c84e79269485f7b80e890b7985
SHA256sum: 4e270bb4321df8c95a59fbcfc73aba1bb8747de9d16754dca585f86ad5f6bb29
Description: Kernel modules support for queueing packets via NFNETLINK
Includes:
- NFQUEUE
Package: kmod-nfnetlink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3894
Filename: kmod-nfnetlink_3.18.9-1_ramips_24kec.ipk
Size: 4644
MD5Sum: 4f37265646ac1c0e133c242e6febe106
SHA256sum: c3ac1aba38e20cb38316784ce92038ffd8e9288cc87cc8ef96681aac58cf2d6f
Description: Kernel modules support for a netlink-based userspace interface
Package: kmod-nft-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nfnetlink, kmod-nf-conntrack6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 41291
Filename: kmod-nft-core_3.18.9-1_ramips_24kec.ipk
Size: 42128
MD5Sum: f9d0a05500223747d34db87ddd9b41ff
SHA256sum: 5298b7272550919b75c37d4b625e93b2d0f8baf8f37221082a391534447a259e
Description: Kernel module support for nftables
Package: kmod-nft-nat6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nft-core, kmod-nf-nat6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1107
Filename: kmod-nft-nat6_3.18.9-1_ramips_24kec.ipk
Size: 1888
MD5Sum: 71a0f12200bd3b3489b90a1c2a399cff
SHA256sum: 300f6da167daf6ae82587f1a097f2f3a58f6084edc602c42dabdbd97c22ea14d
Description: Netfilter nf_tables IPv6-NAT support
Package: kmod-nft-nat
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nft-core, kmod-nf-nat
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4968
Filename: kmod-nft-nat_3.18.9-1_ramips_24kec.ipk
Size: 5694
MD5Sum: fe7494cc054fe366abf1f55c511c85d5
SHA256sum: d3fc39abd4013764df47ddc96d3266bc3681d6c8860f830daf3c12df7c779d81
Description: Netfilter nf_tables NAT support
Package: kmod-nls-base
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3145
Filename: kmod-nls-base_3.18.9-1_ramips_24kec.ipk
Size: 3894
MD5Sum: 145e621d7d41f81488066511ca37c4ff
SHA256sum: f8694f8dd0549375a6ae43d57040290390404bbe822f8095abb6507c0691baa7
Description: Kernel module for NLS (Native Language Support)
Package: kmod-nls-cp1250
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2023
Filename: kmod-nls-cp1250_3.18.9-1_ramips_24kec.ipk
Size: 2803
MD5Sum: cf3f305e6001f505ba2ad98e7a587bdc
SHA256sum: 5b397133c143386fab44f1063f499ddfa71ffc78e9b6b32c60471a36b9ec0626
Description: Kernel module for NLS Codepage 1250 (Eastern Europe)
Package: kmod-nls-cp1251
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1934
Filename: kmod-nls-cp1251_3.18.9-1_ramips_24kec.ipk
Size: 2703
MD5Sum: 25c3ff9de77564e802ee9e52cd62a94f
SHA256sum: 37ee5eb8fc0de03ab380cebb23ae220188a03b00585d0df0376ce77563d22118
Description: Kernel module for NLS Codepage 1251 (Russian)
Package: kmod-nls-cp437
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2094
Filename: kmod-nls-cp437_3.18.9-1_ramips_24kec.ipk
Size: 2873
MD5Sum: dd69ced8be87088ec5c74c4bdefd71c0
SHA256sum: 92bbd3c0e86b3cd00ec3dbe603fa8c1fd79979e01b7b40a59e90111712079a2f
Description: Kernel module for NLS Codepage 437 (United States, Canada)
Package: kmod-nls-cp775
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2120
Filename: kmod-nls-cp775_3.18.9-1_ramips_24kec.ipk
Size: 2890
MD5Sum: 4e1f274e30e99fc0dd103552eb7ec08d
SHA256sum: 9a952a1d18701ea36f4ea81a023517c45bbfc89008b069668e47d1952ae0d217
Description: Kernel module for NLS Codepage 775 (Baltic Rim)
Package: kmod-nls-cp850
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2046
Filename: kmod-nls-cp850_3.18.9-1_ramips_24kec.ipk
Size: 2817
MD5Sum: b8913b01f3ebde97f4185365c78e5285
SHA256sum: bc80f20feb466f77027807254c4d7af89c7fd432d8cf5a850b7d9fb7ec960eee
Description: Kernel module for NLS Codepage 850 (Europe)
Package: kmod-nls-cp852
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2118
Filename: kmod-nls-cp852_3.18.9-1_ramips_24kec.ipk
Size: 2888
MD5Sum: c19eba78339ac5308f1fce2afb436325
SHA256sum: 04bbbeb9c466face9dfdababd18844f14a3d2c935d2acb39e206ef379b115fda
Description: Kernel module for NLS Codepage 852 (Europe)
Package: kmod-nls-cp862
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2058
Filename: kmod-nls-cp862_3.18.9-1_ramips_24kec.ipk
Size: 2826
MD5Sum: 07e9db8f504cd2b171278f872c77c58f
SHA256sum: 7577840888aa6ab0bca2ebdfd7b1bc82001de883d1128141c2b430d839b10829
Description: Kernel module for NLS Codepage 862 (Hebrew)
Package: kmod-nls-cp864
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2034
Filename: kmod-nls-cp864_3.18.9-1_ramips_24kec.ipk
Size: 2800
MD5Sum: 79951c32e3f506363cf975b7bbef2d6c
SHA256sum: 17b97d217e5001090e78a7b3a09449757d65dcb999bdc77e5553fe098e8607a9
Description: Kernel module for NLS Codepage 864 (Arabic)
Package: kmod-nls-cp866
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1946
Filename: kmod-nls-cp866_3.18.9-1_ramips_24kec.ipk
Size: 2715
MD5Sum: aacdb0c17228e48a9bceecbd91d1737e
SHA256sum: d50715ac3f0e8f2a00cdfdad478c2cbfa29383230f4aa1b583f468e876933a00
Description: Kernel module for NLS Codepage 866 (Cyrillic)
Package: kmod-nls-cp932
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 36433
Filename: kmod-nls-cp932_3.18.9-1_ramips_24kec.ipk
Size: 37254
MD5Sum: 7e901af3e23a77c95d91cd7622636d8b
SHA256sum: c007d9f6b539628bd498b46ffab8d5c1ecf3b2aa4e80f8756fe02949028e1625
Description: Kernel module for NLS Codepage 932 (Japanese)
Package: kmod-nls-iso8859-13
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1965
Filename: kmod-nls-iso8859-13_3.18.9-1_ramips_24kec.ipk
Size: 2740
MD5Sum: bf37de24bc1d27afb8bcc7bfcdc3c2ec
SHA256sum: d143bb8b624a023f3f750a49ef6fce016cc4024cd68b4900f73308a73de38cc8
Description: Kernel module for NLS ISO 8859-13 (Latin 7; Baltic)
Package: kmod-nls-iso8859-15
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1834
Filename: kmod-nls-iso8859-15_3.18.9-1_ramips_24kec.ipk
Size: 2593
MD5Sum: 28bee40d79c197ded691c9115b203f8d
SHA256sum: b819909fffb26ff20e082faf43110ebbc69635761771abbdc3338b68b0404903
Description: Kernel module for NLS ISO 8859-15 (Latin 9)
Package: kmod-nls-iso8859-1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1722
Filename: kmod-nls-iso8859-1_3.18.9-1_ramips_24kec.ipk
Size: 2511
MD5Sum: 8da9e3732c9642a91aa1689eba45800a
SHA256sum: dce0922f96fc6e30d48c3fef93e328446b348aa1c57e44bfcc419530773707b9
Description: Kernel module for NLS ISO 8859-1 (Latin 1)
Package: kmod-nls-iso8859-2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1968
Filename: kmod-nls-iso8859-2_3.18.9-1_ramips_24kec.ipk
Size: 2733
MD5Sum: e56bbfa3542dd75e40a440186a0449f7
SHA256sum: 24df6eb0f5473dc1e0259a6c24d0e3d6b6a7f5a859e8a239cc15a4cdd99c12c9
Description: Kernel module for NLS ISO 8859-2 (Latin 2)
Package: kmod-nls-iso8859-6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1662
Filename: kmod-nls-iso8859-6_3.18.9-1_ramips_24kec.ipk
Size: 2430
MD5Sum: f76ac0b85e2bff4aa1c002e93e556d33
SHA256sum: 33628f4f1b5becc1eb9efa95f2ffc4f86b53884d0c89ce71ff093581973506b0
Description: Kernel module for NLS ISO 8859-6 (Arabic)
Package: kmod-nls-iso8859-8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1819
Filename: kmod-nls-iso8859-8_3.18.9-1_ramips_24kec.ipk
Size: 2602
MD5Sum: 89fabf0e51844c15e0c0c34f12da2243
SHA256sum: 21b351e0fe7a7fb150cac5a5e053460104f1d6ce2f1b57b603bc3692db91ce32
Description: Kernel module for Hebrew charsets (ISO-8859-8, CP1255)
Package: kmod-nls-koi8r
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1977
Filename: kmod-nls-koi8r_3.18.9-1_ramips_24kec.ipk
Size: 2746
MD5Sum: 4d66fbfd05f467d393ce9b84a85222af
SHA256sum: 0e449962e838efb9ddcdc4370fe2e62b262780ab9ae3c1e7e3cae7dc3f040794
Description: Kernel module for NLS KOI8-R (Russian)
Package: kmod-nls-utf8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1017
Filename: kmod-nls-utf8_3.18.9-1_ramips_24kec.ipk
Size: 1785
MD5Sum: 568eb0813e460e65f47f31cdf65b4722
SHA256sum: 6a17e36bce362536090c3b0674264c4ff44f832ecfb549d67bf3c08087fc4ffd
Description: Kernel module for NLS UTF-8
Package: kmod-of-mdio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 190
Filename: kmod-of-mdio_3.18.9-1_ramips_24kec.ipk
Size: 951
MD5Sum: a9e63dfbc0e53aa58ce0b776722beb04
SHA256sum: 6007764e20f8aa6da9412ba88a4d5e42933dd77e440b238998cf2d43cac06a5f
Description: Kernel driver for OpenFirmware MDIO support
Package: kmod-p54-common
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18426
Filename: kmod-p54-common_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 19225
MD5Sum: 347280a87d4b9cfcaacc7a80d9dcebff
SHA256sum: c774a7456fbc1660f95e2a034844d2ee9840c84c96368db49c64072bb770fac3
Description: Prism54 Drivers (COMMON)
Package: kmod-p54-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-p54-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30874
Filename: kmod-p54-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 31654
MD5Sum: 66910e3f7cc6e6226c8d1e8844a15cd0
SHA256sum: f4626251bd395f5c9439c705b310b8440bcf0676074963103367a2ae2c5d82dc
Description: Prism54 Drivers (USB)
Package: kmod-pktgen
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21948
Filename: kmod-pktgen_3.18.9-1_ramips_24kec.ipk
Size: 22624
MD5Sum: a14c45f1b150304629bb47e31384d622
SHA256sum: cc471f68bf68fb7538ff84e4842d8d76712e1ef52f64b2b0ab8013b71d903389
Description: Kernel modules for the Network Packet Generator
Package: kmod-ppp-synctty
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4328
Filename: kmod-ppp-synctty_3.18.9-1_ramips_24kec.ipk
Size: 5072
MD5Sum: dbd2d9826b9633faef3371ca8324210d
SHA256sum: db91c7208077f36356398b3d1930dd2f7b292f757eac63fc4fe2d843796e2842
Description: Kernel modules for PPP sync tty support
Package: kmod-ppp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-ccitt, kmod-slhc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20421
Filename: kmod-ppp_3.18.9-1_ramips_24kec.ipk
Size: 21157
MD5Sum: 04ee359b488c5824af99afe6627e1707
SHA256sum: 8f432ffa8802e23ab3f3844a5b1c08ae532b813ad35aa4aa1bee5795fd1dcff4
Description: Kernel modules for PPP support
Package: kmod-pppoa
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2889
Filename: kmod-pppoa_3.18.9-1_ramips_24kec.ipk
Size: 3640
MD5Sum: bf2de3e4e5d7973c670cf67405045c4f
SHA256sum: 112c0fcae05cff25af4ca1a460e53315f9209ec5949621989b19c7e2fa0ca11e
Description: Kernel modules for PPPoA (PPP over ATM) support
Package: kmod-pppoe
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-pppox
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6318
Filename: kmod-pppoe_3.18.9-1_ramips_24kec.ipk
Size: 7127
MD5Sum: 581c349acc00f36c9606e0e1929e8bcc
SHA256sum: 74feec90ca4e1fe88eeb857eea136fbcdfaf59d69b8c962ea737a056fac1121e
Description: Kernel module for PPPoE (PPP over Ethernet) support
Package: kmod-pppol2tp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-pppox, kmod-l2tp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9235
Filename: kmod-pppol2tp_3.18.9-1_ramips_24kec.ipk
Size: 10010
MD5Sum: 5719a5bcdd1b45b170e21bfdfb590623
SHA256sum: 13a2f63e77a991fb84ca6c865fb26d5cdd627579cbd7e542033223afd5242f98
Description: Kernel modules for PPPoL2TP (PPP over L2TP) support
Package: kmod-pppox
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1595
Filename: kmod-pppox_3.18.9-1_ramips_24kec.ipk
Size: 2371
MD5Sum: 6ebe0df774bd2449a0ec1d2fe709bb9b
SHA256sum: 5979ea689f45c60b4c5122499b5bb4d78db62ec8c177f48a5232479e8df934f2
Description: Kernel helper module for PPPoE and PPTP support
Package: kmod-pps-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-pps
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2213
Filename: kmod-pps-gpio_3.18.9-1_ramips_24kec.ipk
Size: 3042
MD5Sum: b8adae8dfc7433413358d19752854341
SHA256sum: 952860278452c2cce7520fb50ed715e73f4b05a8593eb87eb254b521ee8344af
Description: Support for a PPS source using GPIO. To be useful you must
also register a platform device specifying the GPIO pin and
other options, usually in your board setup.
Package: kmod-pps
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4961
Filename: kmod-pps_3.18.9-1_ramips_24kec.ipk
Size: 5761
MD5Sum: bc5ee24e71a46d457b2aba2f7d871f81
SHA256sum: 6532d3f0750b9af0e856de9c1676ea49d5b1019250e96f529cdfa04c9079c13c
Description: PPS (Pulse Per Second) is a special pulse provided by some GPS
antennae. Userland can use it to get a high-precision time
reference.
Package: kmod-pptp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ppp, kmod-gre, kmod-pppox
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5150
Filename: kmod-pptp_3.18.9-1_ramips_24kec.ipk
Size: 5885
MD5Sum: 3c7cb09b42e7bd5d22fa22d98579b0e8
SHA256sum: 00908b3eb5882bbf41dbd3005c1fa3e270f13d3d294b861489f6586ebfee5035
Description: PPtP support
Package: kmod-ptp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-pps
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7016
Filename: kmod-ptp_3.18.9-1_ramips_24kec.ipk
Size: 7835
MD5Sum: 5a67a5891659bbe792ba80e4443cf9eb
SHA256sum: 6e817a2b2d70c848e3f29910a232f07e851c3415898c16710bccfb15a8308eb0
Description: The IEEE 1588 standard defines a method to precisely
synchronize distributed clocks over Ethernet networks.
Package: kmod-random-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3948
Filename: kmod-random-core_3.18.9-1_ramips_24kec.ipk
Size: 4711
MD5Sum: 56ad5ae1af0f524a30fcf70c6a57a546
SHA256sum: 5404bcc1cfc1b3d67fd6a677e152df57188b42b9cab1bb1b952406f8cf30343e
Description: Kernel module for the HW random number generator core infrastructure
Package: kmod-regmap
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-lzo, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21406
Filename: kmod-regmap_3.18.9-1_ramips_24kec.ipk
Size: 22161
MD5Sum: 63d24a0290b6148b3f17ea68d9b3216d
SHA256sum: b36f46a020e526f7517d8ded0204675eeff0cd90a32d9dcc8079622d63721aeb
Description: Generic register map support
Package: kmod-rotary-gpio-custom
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-gpio-encoder
Source: package/kernel/rotary-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 1649
Filename: kmod-rotary-gpio-custom_3.18.9-1_ramips_24kec.ipk
Size: 2415
MD5Sum: 4060eb3817ae2d15a393b4c916abbe09
SHA256sum: 49c7dfe9fb5ed80dfb466ddba3d8759d7c0c74e2b3098c9dbc24ed02dafe4af0
Description: Kernel module for register a custom rotary-gpio-encoder platform device.
Package: kmod-rt2500-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-usb
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8775
Filename: kmod-rt2500-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 9569
MD5Sum: bbeb53b0b226cfd5279651ab1e94ce3c
SHA256sum: e43b4e5e870d3139d8352252581e58932abcb3d8501e9cd04af83e7f5384d3e3
Description: Ralink Drivers for RT2x00 cards (RT2500 USB)
Package: kmod-rt2800-lib
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-lib, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38177
Filename: kmod-rt2800-lib_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 38297
MD5Sum: a340645c824aeb6b6a10e31585f0c508
SHA256sum: 3d69daddf01ed10c5ba62e9113a22329a828a28267acf18b4c1b7f899d74ab90
Description: Ralink Drivers for RT2x00 cards (rt2800 LIB)
Package: kmod-rt2800-mmio
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2800-lib, kmod-rt2x00-mmio
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4237
Filename: kmod-rt2800-mmio_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 5018
MD5Sum: 1b56f0d626116f3821828be67f38b6e8
SHA256sum: a3662eb373a0465e6565628f2728279488e6be03dbbd4045d6a46a6f467f38bd
Description: Ralink Drivers for RT2x00 cards (RT28xx/RT3xxx MMIO)
Package: kmod-rt2800-soc
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2800-mmio, kmod-rt2800-lib
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3983
Filename: kmod-rt2800-soc_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 4783
MD5Sum: f14e7af07d79c5fd6c34e888261c154f
SHA256sum: 7fa0b120c63f4ff86d7ee2c5e01c098f9c79b8a7b609e6a65c7a2972ac7cf09e
Description: Ralink Drivers for RT2x00 cards (RT28xx/RT3xxx SoC)
Package: kmod-rt2800-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-usb, kmod-rt2800-lib, kmod-lib-crc-ccitt
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10105
Filename: kmod-rt2800-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 10909
MD5Sum: 67d7841a0b1f9971b0946be5e7d38cdc
SHA256sum: c9b97cf898a6299ebf192ba6460f357f8e6dd1546861b33bb1765bb95f35bb7c
Description: Ralink Drivers for RT2x00 cards (RT2870 USB)
Package: kmod-rt2x00-lib
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211, kmod-lib-crc-itu-t
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20914
Filename: kmod-rt2x00-lib_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 21658
MD5Sum: 2cd7603328e0d38ef19b6b9eca1812ed
SHA256sum: a4a5ade95a7f118a4dfe836345b4913250470ab1f49077ccdbe11cc25a14940f
Description: Ralink Drivers for RT2x00 cards (LIB)
Package: kmod-rt2x00-mmio
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-lib, kmod-eeprom-93cx6
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1918
Filename: kmod-rt2x00-mmio_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 2725
MD5Sum: 9ef3af54afcc6281993df9b48a170964
SHA256sum: f2f22dd262522228e92fd05c1491e60e1e0e6cbcb702f4089d6f01bdf85ff343
Description: Ralink Drivers for RT2x00 cards (MMIO)
Package: kmod-rt2x00-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-lib, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5793
Filename: kmod-rt2x00-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 6578
MD5Sum: 562e0636148a0c88d6f9a1e02d28db4b
SHA256sum: 43ec72c4a5ce3d9c1b8d552cf39636ca1ea1fe72d20e3c7b32c835c52742910a
Description: Ralink Drivers for RT2x00 cards (USB)
Package: kmod-rt73-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rt2x00-usb
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12418
Filename: kmod-rt73-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 13119
MD5Sum: 23f8d403211a769c1fa57e4f61cd2bec
SHA256sum: 1f0e9a3477be28b2c0fed1858e83daa2453a358ba10d404dfb8903d87986e514
Description: Ralink Drivers for RT2x00 cards (RT73 USB)
Package: kmod-rtl8187
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-eeprom-93cx6, kmod-mac80211, kmod-usb-core
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21166
Filename: kmod-rtl8187_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 21895
MD5Sum: d61d25c1b57dea591b94f5f249aa7ffd
SHA256sum: 959be2f175d0ae03a2d0331ede25d57b0712b66255a34478821ece3c1151e3ba
Description: Realtek Drivers for RTL818x devices (RTL8187 USB)
Package: kmod-rtl8192c-common
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rtlwifi
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17453
Filename: kmod-rtl8192c-common_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 18245
MD5Sum: b5148a0119aa245a21d0f9efc067151e
SHA256sum: e50a0c4f7f727ad78e2bf3086801b5d230ee7181ee8a0bf84e2b697fdab63346
Description: Realtek RTL8192CE/RTL8192CU common support module
Package: kmod-rtl8192cu
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-rtlwifi-usb, kmod-rtl8192c-common
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49061
Filename: kmod-rtl8192cu_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 49814
MD5Sum: d4030ddb918c0263f1a486fdbb110fba
SHA256sum: cbe6ff6c511e757eb948f0f5f3043e6f5f141ca0da03a43bbeb8a5daac2f9da5
Description: Realtek RTL8192CU/RTL8188CU support
Package: kmod-rtlwifi-usb
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-rtlwifi
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6707
Filename: kmod-rtlwifi-usb_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 7533
MD5Sum: 7ff3dcb1ae36765c88d50575babae0c0
SHA256sum: 81dd641fca85d1b35e1fda055c4f2d83d11bcdfa00a1fadb242cc1e765b7f0f1
Description: Realtek common driver part (USB support)
Package: kmod-rtlwifi
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26880
Filename: kmod-rtlwifi_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 27619
MD5Sum: c1ef96263350faf43e90511947c6d5ae
SHA256sum: cbfbc4e27b4c5ac7d09912aa4a17833eeac3c8f14c9afdfe2a320a6ac73a9d8c
Description: Realtek common driver part
Package: kmod-rxrpc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-manager, kmod-crypto-pcbc, kmod-crypto-fcrypt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 51317
Filename: kmod-rxrpc_3.18.9-1_ramips_24kec.ipk
Size: 51982
MD5Sum: fc4f2566a0fe98cc24dfab80b590b2ef
SHA256sum: b9de3fc1cb4531a66bf6e711996500ce230d48bf3b504f457500d6c39d37ec7d
Description: Kernel support for AF_RXRPC; required for AFS client
Package: kmod-sched-connmark
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched-core, kmod-ipt-core, kmod-ipt-conntrack-extra
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1175
Filename: kmod-sched-connmark_3.18.9-1_ramips_24kec.ipk
Size: 1970
MD5Sum: 3b9886aada30fecd681d2810306e3fbc
SHA256sum: 758a401a85d669762450a6be5772c5330dd0428e6223a72d6819d8aa0d195c7b
Description: Traffic shaper conntrack mark support
Package: kmod-sched-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 28693
Filename: kmod-sched-core_3.18.9-1_ramips_24kec.ipk
Size: 29397
MD5Sum: 729fece9202b4dbbec4cc08d3738c1f2
SHA256sum: 87fdf0ac695960dbd262a42cbec4f3f0eda4d52b141f298803913b20cb4a6408
Description: Core kernel scheduler support for IP traffic
Package: kmod-sched-esfq
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched-core, kmod-ipt-core, kmod-ipt-conntrack
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5052
Filename: kmod-sched-esfq_3.18.9-1_ramips_24kec.ipk
Size: 5807
MD5Sum: b115595c2c574eadd1e60d2472820299
SHA256sum: 30db11d7802a4000b829151c6904044c7edf112b2779ec26eb34f2a13a3ef011
Description: Traffic shaper ESFQ support
Package: kmod-sched
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sched-core, kmod-ipt-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 49662
Filename: kmod-sched_3.18.9-1_ramips_24kec.ipk
Size: 50455
MD5Sum: 6b5064f693d39cf9e6529a39a39a0fa7
SHA256sum: 524568e1074e2c886fcf12475993d05d2848bcb373bcc3946da87bcebb37fa70
Description: Extra kernel schedulers modules for IP traffic
Package: kmod-scsi-cdrom
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-scsi-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 23422
Filename: kmod-scsi-cdrom_3.18.9-1_ramips_24kec.ipk
Size: 24163
MD5Sum: c157bd432352d5eefd13af1d046d1924
SHA256sum: 7a22ca7496a76e8ad8f4088f2d54c4868db9dd20812c459b46fea25e3517e1da
Description: Kernel support for CD / DVD drives
Package: kmod-scsi-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 76891
Filename: kmod-scsi-core_3.18.9-1_ramips_24kec.ipk
Size: 77312
MD5Sum: 5eb7043e39af3e80fa338befa66e7ad2
SHA256sum: add84b645a49da8f4d53d406bc96b3e402a4bbbca22562182ce1337c6ce8abdb
Description: SCSI device support
Package: kmod-scsi-generic
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-scsi-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15625
Filename: kmod-scsi-generic_3.18.9-1_ramips_24kec.ipk
Size: 16336
MD5Sum: 2e41288c78586f9b7795507fdee34386
SHA256sum: 8a422344bc7a53b0391f3db05e32f8faa28f07032f5e25365e1c8e222a7701bb
Description: Kernel support for SCSI generic
Package: kmod-sctp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc32c, kmod-crypto-md5, kmod-crypto-hmac, kmod-ipv6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 101400
Filename: kmod-sctp_3.18.9-1_ramips_24kec.ipk
Size: 101633
MD5Sum: 319d74d1cbb3f92b3d0bd876adf71409
SHA256sum: 3d4e693b485fcee31df58c74480f6268e4e103603504a7a69a29ff47e20a8df7
Description: Kernel modules for SCTP protocol support
Package: kmod-sdhci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mmc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14755
Filename: kmod-sdhci_3.18.9-1_ramips_24kec.ipk
Size: 15495
MD5Sum: c80481deda7875b347b3ea9f3569fff3
SHA256sum: 583caac9eff837e4dddb1f25ff14d62b004e3f2a647a49ab74b75d980599413a
Description: Kernel support for SDHCI Hosts
Package: kmod-serial-8250
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-serial-8250_3.18.9-1_ramips_24kec.ipk
Size: 853
MD5Sum: 8afc80ae56c3b0485c28837e4bea9cd6
SHA256sum: 752c68f5dc9c8717917d84e5ac3e80d346259182bddb4454801c11dafa3e3c00
Description: Kernel module for 8250 UART based serial ports
Package: kmod-sit
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ipv6, kmod-iptunnel, kmod-iptunnel4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10373
Filename: kmod-sit_3.18.9-1_ramips_24kec.ipk
Size: 11145
MD5Sum: 4b7c89d2d27bf93bd423b4ff94920ae0
SHA256sum: db0124cbb8bc96ca181e205fca63742c451a8186b401031c4c7de6a99cc7db52
Description: Kernel modules for IPv6-in-IPv4 tunnelling
Package: kmod-slhc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-ccitt
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3383
Filename: kmod-slhc_3.18.9-1_ramips_24kec.ipk
Size: 4167
MD5Sum: e150b23c3c6f3896ae8b130d3215ef6b
SHA256sum: bfc1c988f82d5ca3078dbcf1d7fd16fdba71f5761e90f862c5f453baff30af0f
Description: Serial Line Header Compression
Package: kmod-slip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-slhc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7716
Filename: kmod-slip_3.18.9-1_ramips_24kec.ipk
Size: 8468
MD5Sum: 010792a28931fa90b6e0bbaed017b68e
SHA256sum: a37944448175f8a59631dc282378fc73976ebfb77f2b51778d277ba04c42f36c
Description: Kernel modules for SLIP support
Package: kmod-softdog
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1951
Filename: kmod-softdog_3.18.9-1_ramips_24kec.ipk
Size: 2719
MD5Sum: 80dd065d68ccb08560ee14f0cbd81d29
SHA256sum: a2634c4a7e44472cc41deda2c6d300714a9c679ec4c98c386a217f0a6eaeda65
Description: Software watchdog driver
Package: kmod-sound-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 127795
Filename: kmod-sound-core_3.18.9-1_ramips_24kec.ipk
Size: 128395
MD5Sum: cc4ccf302ad84c0834968bdca0b5a43b
SHA256sum: e99e590710598943aba84b8c6352195895f2d0183e9dd303ce2043634b21b646
Description: Kernel modules for sound support
Package: kmod-sound-cs5535audio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ac97, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: kmod-sound-cs5535audio_3.18.9-1_ramips_24kec.ipk
Size: 876
MD5Sum: 7c4a8ae34615747aec1ca1b8428dd09f
SHA256sum: 1dfdb9d93d742fe3329dd20f45ed45bcccecdfabcd54f0d791783f584e9acf5e
Description: Support for the integrated AC97 sound device on olpc
Package: kmod-sound-i8x0
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ac97, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 104
Filename: kmod-sound-i8x0_3.18.9-1_ramips_24kec.ipk
Size: 935
MD5Sum: 2555583052a986eb3879f2f96f0a2c51
SHA256sum: ca00c988744a3d57219c808e585cbdec742135f398ac6c80b33396a9ba65bca8
Description: support for the integrated AC97 sound device on motherboards
with Intel/SiS/nVidia/AMD chipsets, or ALi chipsets using
the M5455 Audio Controller.
Package: kmod-sound-seq
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 30024
Filename: kmod-sound-seq_3.18.9-1_ramips_24kec.ipk
Size: 30779
MD5Sum: f39b8f76d1de05efa0685708e01d05e6
SHA256sum: e015c7680e556589f3620fc922bf22a16487129ced5f74884fdd2b908c20f375
Description: Kernel modules for sequencer support
Package: kmod-sound-soc-ac97
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-ac97, kmod-sound-soc-core, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-sound-soc-ac97_3.18.9-1_ramips_24kec.ipk
Size: 853
MD5Sum: e820a0c21b6eee15cb0b3489178ee6c0
SHA256sum: c2c87f96dc520ddf6581f26610089497d68f0b71ab4a16fac7f412a3fb579ad0
Description: AC97 Codec support
Package: kmod-sound-soc-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-regmap, kmod-ac97, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 57145
Filename: kmod-sound-soc-core_3.18.9-1_ramips_24kec.ipk
Size: 57593
MD5Sum: 3799b0f751e0546a6a5b8e1329a94871
SHA256sum: a661c44809d9912c1b12ab8ff300932179d966fa34b7a813742f9454e9740ac5
Description: SoC sound support
Package: kmod-spi-bitbang
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2127
Filename: kmod-spi-bitbang_3.18.9-1_ramips_24kec.ipk
Size: 2902
MD5Sum: 35d9794a25b2c3e3457358b5d07ba991
SHA256sum: 52011a4b1bb6722b55ec965e3984596b0b984637a4d21f1dc0d4a59d48249dfb
Description: This package contains the SPI bitbanging library
Package: kmod-spi-dev
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4162
Filename: kmod-spi-dev_3.18.9-1_ramips_24kec.ipk
Size: 4916
MD5Sum: 8d1ab0ac4f590f5a78fbe807e2e449b5
SHA256sum: 3df358309ec6698eb29351234c4dab163340c702890d81e55b5d31db3d0fe7d5
Description: This package contains the user mode SPI device driver
Package: kmod-spi-gpio-custom
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-spi-bitbang, kmod-spi-gpio, kmod-spi-dev
Source: package/kernel/spi-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2500
Filename: kmod-spi-gpio-custom_3.18.9-1_ramips_24kec.ipk
Size: 3273
MD5Sum: 146c7f0ae2fc596c761372ce1f89e7a7
SHA256sum: cb486ff0b4b5b801f5cd5fa20c45e146ec47e1dd87e7f74dea44df0bab8e4f28
Description: Kernel module for register a custom spi-gpio platform device.
Package: kmod-spi-gpio-old
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-spi-bitbang
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2224
Filename: kmod-spi-gpio-old_3.18.9-1_ramips_24kec.ipk
Size: 2994
MD5Sum: 41e0658219f64ae56bdf99811bacf001
SHA256sum: 37dfdf71ba0e95f52d969cff7909758bc49dbf1d6f466e649603887258cd64c7
Description: This package contains the GPIO based bitbanging SPI controller driver
Package: kmod-spi-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-spi-bitbang
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3296
Filename: kmod-spi-gpio_3.18.9-1_ramips_24kec.ipk
Size: 4063
MD5Sum: 93dd178b256093f04e28ab8e23ab5d8d
SHA256sum: 6e2bca43966b3f56a12d24489f995170c3370814d6ee61ced8db780ab3b390b0
Description: This package contains the GPIO-based bitbanging SPI Master
Package: kmod-spi-ks8995
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/spi-ks8995
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2250
Filename: kmod-spi-ks8995_3.18.9-1_ramips_24kec.ipk
Size: 2965
MD5Sum: d3493e0c73256c108cb9bb226843d9c5
SHA256sum: e7875b0b36d74771a7f6972c98aa6ba08091110e6122776c24f2eca38c8f6b78
Description: Kernel module for Micrel/Kendin KS8995 ethernet switch
Package: kmod-stp
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-llc
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 182
Filename: kmod-stp_3.18.9-1_ramips_24kec.ipk
Size: 940
MD5Sum: bdec69c82887607e0d65309f92b831cb
SHA256sum: 7ab94b38ce29d788a133544fed9efa3ff9dba7ed030a3777216d8c0ef65e453b
Description: Kernel module for Ethernet Spanning Tree Protocol support.
Package: kmod-swconfig
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 190
Filename: kmod-swconfig_3.18.9-1_ramips_24kec.ipk
Size: 940
MD5Sum: 4a9ccd7b6bb1a1cc13583c380e57d861
SHA256sum: 01faae7553a995e2482fb792bbff18af65e175b80c01437fef592eac497fa25a
Description: Switch configuration API module
Package: kmod-switch-ip17xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-swconfig
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6097
Filename: kmod-switch-ip17xx_3.18.9-1_ramips_24kec.ipk
Size: 6862
MD5Sum: 868c3b46c3db3dc8ef89a8fdecf4fcce
SHA256sum: cc128c0320616995f17c00fd241c89624a5274866134b4c2954f64a377998da7
Description: IC+ IP175C/IP178C switch support
Package: kmod-switch-rtl8366-smi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-swconfig
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6384
Filename: kmod-switch-rtl8366-smi_3.18.9-1_ramips_24kec.ipk
Size: 7178
MD5Sum: c59839a336a534fd9b17e6c0b5475e27
SHA256sum: e3288f727494a2d7e7a6640a0d0ef8bf81ce56801ff9fe5dcc408b85e4f4364c
Description: Realtek RTL8366 SMI switch interface support
Package: kmod-switch-rtl8366rb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-switch-rtl8366-smi
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5611
Filename: kmod-switch-rtl8366rb_3.18.9-1_ramips_24kec.ipk
Size: 6377
MD5Sum: 2ba7be1cb5cc34dbe3d7be568e4b8977
SHA256sum: e3eaa8f19d5adb9ede8072c2bddf214d41a550311b988d7bdf41de5f605fafa7
Description: Realtek RTL8366RB switch support
Package: kmod-switch-rtl8366s
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-switch-rtl8366-smi
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5059
Filename: kmod-switch-rtl8366s_3.18.9-1_ramips_24kec.ipk
Size: 5818
MD5Sum: 3dc2529924a5f6855bb2790f5420e2cd
SHA256sum: c35934c22cd12e79c21c4005698fad4293129cbec4e800e19101b0c4139d3b4a
Description: Realtek RTL8366S switch support
Package: kmod-tg3
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy, kmod-hwmon-core, kmod-ptp
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-tg3_3.18.9-1_ramips_24kec.ipk
Size: 886
MD5Sum: 9580ad1b0738dd53bc08732f3847b983
SHA256sum: f5bf4db9661b573492819d772041fb001ffaf660dca820afb5ce4bec74b24b4a
Description: Kernel modules for Broadcom Tigon3 Gigabit Ethernet adapters
Package: kmod-trelay
Version: 3.18.9+0.1-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/trelay
Section: kernel
Architecture: ramips_24kec
Installed-Size: 2899
Filename: kmod-trelay_3.18.9+0.1-1_ramips_24kec.ipk
Size: 3781
MD5Sum: 0506053103dd2a6a602aa2e3fd56a391
SHA256sum: 7ef613da134ad5d122fe91684cb3bcc753d33286c614db39d631072f8a537299
Description: trelay relays ethernet packets between two devices (similar to a bridge), but
without any MAC address checks. This makes it possible to bridge client mode
or ad-hoc mode wifi devices to ethernet VLANs, assuming the remote end uses
the same source MAC address as the device that packets are supposed to exit
from.
Package: kmod-tun
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11814
Filename: kmod-tun_3.18.9-1_ramips_24kec.ipk
Size: 12607
MD5Sum: d043054b43b510ececc69080ce5c9ef7
SHA256sum: d637bee0012c41716125637a118f7915dbc0b121a3abeeb74345c4ebf12f214f
Description: Kernel support for the TUN/TAP tunneling device
Package: kmod-udptunnel4
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1515
Filename: kmod-udptunnel4_3.18.9-1_ramips_24kec.ipk
Size: 2282
MD5Sum: 3c274bef99aadfc5d68b575005ba6765
SHA256sum: bafd7754099542bedbfc8002cde4204c6faa17140d7da2acfe4e7778a91a42e1
Description: IPv4 UDP tunneling support
Package: kmod-udptunnel6
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1517
Filename: kmod-udptunnel6_3.18.9-1_ramips_24kec.ipk
Size: 2279
MD5Sum: 74a9af8d6d7354425e5bdf115ab4fe48
SHA256sum: a3fc62458b2b05a80516b0d6da01b3e21f300d3b237027d51cb306003e3427b9
Description: IPv6 UDP tunneling support
Package: kmod-usb-acm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9444
Filename: kmod-usb-acm_3.18.9-1_ramips_24kec.ipk
Size: 10232
MD5Sum: 30a94d853f241689ed1ef9ed0acb6efd
SHA256sum: 8cd8f75105325568e93319eb2ed43f765d701c56af5f2e104aad541799fd50ce
Description: Kernel support for USB ACM devices (modems/isdn controllers)
Package: kmod-usb-atm-cxacru
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10089
Filename: kmod-usb-atm-cxacru_3.18.9-1_ramips_24kec.ipk
Size: 10846
MD5Sum: 3cbd3aac5cbcda52c723e4140a69b08e
SHA256sum: 8daecbbea741d308d88bffe8e3bdd4ddae60a473aa77387030ace1ee41e9043a
Description: Kernel support for cxacru based USB ADSL modems
Package: kmod-usb-atm-speedtouch
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6637
Filename: kmod-usb-atm-speedtouch_3.18.9-1_ramips_24kec.ipk
Size: 7396
MD5Sum: 6afbe03e7724569129f0ae1a29f3094b
SHA256sum: 3ce638bc52f2b889e4f91924c0bc6e6f31ea07efb098f09b91ef9010d93094b0
Description: Kernel support for SpeedTouch USB ADSL modems
Package: kmod-usb-atm-ueagle
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-atm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13714
Filename: kmod-usb-atm-ueagle_3.18.9-1_ramips_24kec.ipk
Size: 14407
MD5Sum: db23ff506dd32d33ab57ce9b86dcb5e7
SHA256sum: c6afd04594223fa2824982cd9b9c96c94179ddcc8b3e05fece1176fa269ca057
Description: Kernel support for Eagle 8051 based USB ADSL modems
Package: kmod-usb-atm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-atm, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8107
Filename: kmod-usb-atm_3.18.9-1_ramips_24kec.ipk
Size: 8874
MD5Sum: bd98723f44dcfdc9f08b914033796206
SHA256sum: 596b08d9ff9a43435dae096dc62f2b0d329174c5acf350bfd48864adefbc617f
Description: Kernel support for USB DSL modems
Package: kmod-usb-audio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-sound-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 63814
Filename: kmod-usb-audio_3.18.9-1_ramips_24kec.ipk
Size: 64253
MD5Sum: f29477445541f6dce94a0e08c78e3651
SHA256sum: 702eb597f78182e0022f2206868d8844fceedb6b88d72fdb842e4aae6bbed16f
Description: Kernel support for USB audio devices
Package: kmod-usb-cm109
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4841
Filename: kmod-usb-cm109_3.18.9-1_ramips_24kec.ipk
Size: 5590
MD5Sum: cfa5bfca7b45aa7b4386565d753cbfc5
SHA256sum: 3ce945d1c0d15d0a543407b1d485fcabdf0448e783f4adf404b6c7f303ba8685
Description: Kernel support for CM109 VOIP phone
Package: kmod-usb-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-nls-base
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 75199
Filename: kmod-usb-core_3.18.9-1_ramips_24kec.ipk
Size: 75654
MD5Sum: 72bdf3a313140e1b9094b94b473f564f
SHA256sum: a60c796d33cee366a6b4262c1adc556d7cfb0ce89568c2a78a59685798630166
Description: Kernel support for USB
Package: kmod-usb-dwc2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 30685
Filename: kmod-usb-dwc2_3.18.9-1_ramips_24kec.ipk
Size: 31383
MD5Sum: 67e94210200bfb967cfa9eb28637510d
SHA256sum: cdd5a745d25a632bb7f4d43d9b32a1dc6037d9e48a1e89e9a85fa64641d0c8de
Description: This driver provides USB Device Controller support for the
Synopsys DesignWare USB OTG Core
Package: kmod-usb-hid
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-hid, kmod-hid-generic, kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15864
Filename: kmod-usb-hid_3.18.9-1_ramips_24kec.ipk
Size: 16635
MD5Sum: 88871e8aae8b5d021fcf07d1c100a272
SHA256sum: 1dda25689949aad21bad6090f22ac44a017913e78a127cef4c1b5118c80f56ed
Description: Kernel support for USB HID devices such as keyboards and mice
Package: kmod-usb-net-asix-ax88179
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy, kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7532
Filename: kmod-usb-net-asix-ax88179_3.18.9-1_ramips_24kec.ipk
Size: 8365
MD5Sum: 44fa21d4746afbde001e70a1740be62f
SHA256sum: 7f8ee913205f40fb8a4aa9ecc44e8f1649553fa617e2d742c2d7529a42530e96
Description: Kernel module for USB-to-Ethernet ASIX AX88179 based USB 3.0/2.0
to Gigabit Ethernet adapters.
Package: kmod-usb-net-asix
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-libphy, kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9807
Filename: kmod-usb-net-asix_3.18.9-1_ramips_24kec.ipk
Size: 10560
MD5Sum: 1bdc50b1f7312f492b2fbf6a65b8bb0b
SHA256sum: f2db8e8c80e1610b1ee084810f083cf53af4be0f125abe33e514b984ae4c8cbc
Description: Kernel module for USB-to-Ethernet Asix convertors
Package: kmod-usb-net-cdc-eem
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2348
Filename: kmod-usb-net-cdc-eem_3.18.9-1_ramips_24kec.ipk
Size: 3091
MD5Sum: 9bcb36d652889b545ddaf74ba0b3a9df
SHA256sum: 1f1ac528d104a5379b0e7e4773dd36500f4337170540e6367d3f3280079400c1
Description: Kernel support for USB CDC EEM
Package: kmod-usb-net-cdc-ether
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3122
Filename: kmod-usb-net-cdc-ether_3.18.9-1_ramips_24kec.ipk
Size: 3890
MD5Sum: 97e79f43547e6a831377d44072cb73de
SHA256sum: 71024a0f04ca74dfa9ac6617cdeebaab236746afdf88c91db99ff0b89d1bc853
Description: Kernel support for USB CDC Ethernet devices
Package: kmod-usb-net-cdc-mbim
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-wdm, kmod-usb-net-cdc-ncm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3789
Filename: kmod-usb-net-cdc-mbim_3.18.9-1_ramips_24kec.ipk
Size: 4567
MD5Sum: 3ae1e6bbd5289d2de23402c98965eba3
SHA256sum: a2cc052229d8956169c1b60677284a88af433bf0d0cf6a40130800a7e1c08812
Description: Kernel module for Option USB High Speed Mobile Devices
Package: kmod-usb-net-cdc-ncm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8690
Filename: kmod-usb-net-cdc-ncm_3.18.9-1_ramips_24kec.ipk
Size: 9453
MD5Sum: 1b72ddb8e1957b8a5faf1fa3f0abb33c
SHA256sum: 7b8291f2fab4ec82ae2fb13938f2a4cb49e7008a8649d55d9f28862f44947431
Description: Kernel support for CDC NCM connections
Package: kmod-usb-net-cdc-subset
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1340
Filename: kmod-usb-net-cdc-subset_3.18.9-1_ramips_24kec.ipk
Size: 2147
MD5Sum: 41e998d5c1bd5e2659ac243073c921e8
SHA256sum: 279f2c39f98b14c3172fff50c555c8019d94299b780e03650da173a7b5756e6f
Description: Kernel support for Simple USB Network Links (CDC Ethernet subset)
Package: kmod-usb-net-dm9601-ether
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3982
Filename: kmod-usb-net-dm9601-ether_3.18.9-1_ramips_24kec.ipk
Size: 4736
MD5Sum: 3383c4c9e4075d9e09ce62453fd30673
SHA256sum: a02b5c7ffec3949a26aaf885d15fffd069cf41a3533c5be3b90bb5d610f7c31b
Description: Kernel support for USB DM9601 devices
Package: kmod-usb-net-hso
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 106
Filename: kmod-usb-net-hso_3.18.9-1_ramips_24kec.ipk
Size: 862
MD5Sum: edecb5466aa76e0a3d31e5f891d3b5bd
SHA256sum: 4a04b49f8a655c90d7aaf6ab97910911ead02eb70921da95236cec09dc66aa5f
Description: Kernel module for Option USB High Speed Mobile Devices
Package: kmod-usb-net-huawei-cdc-ncm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-net-cdc-ncm, kmod-usb-wdm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1634
Filename: kmod-usb-net-huawei-cdc-ncm_3.18.9-1_ramips_24kec.ipk
Size: 2444
MD5Sum: e32fc04395fa099f05aac2544a8f2d5a
SHA256sum: 937bd4247134e0fd18fa782660121686eefc551767807e56900d39411a0fffef
Description: Kernel support for Huawei CDC NCM connections
Package: kmod-usb-net-ipheth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4222
Filename: kmod-usb-net-ipheth_3.18.9-1_ramips_24kec.ipk
Size: 4975
MD5Sum: 942ecce9653d05e22a01cf206074db48
SHA256sum: 15b09c01e48cf960df5dbd31db21b1948ee71ca97cf7f258b74db0563f4e5722
Description: Kernel support for Apple iPhone USB Ethernet driver
Package: kmod-usb-net-kalmia
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2616
Filename: kmod-usb-net-kalmia_3.18.9-1_ramips_24kec.ipk
Size: 3375
MD5Sum: bd2c6cd97235cc2cc691e99d742ffb85
SHA256sum: 0b1183358a5040aa07a3c3da8d9ea9bbb41f92e6b14529e91d04704f6a14d214
Description: Kernel support for Samsung Kalmia based LTE USB modem
Package: kmod-usb-net-kaweth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6638
Filename: kmod-usb-net-kaweth_3.18.9-1_ramips_24kec.ipk
Size: 7425
MD5Sum: 2386a695fde65c5d055bb9e1e77f0275
SHA256sum: 1592c14638dab65b610961a3bc3cd7000fc0ce5d8a2edd0e5f1731780cd7714a
Description: Kernel module for USB-to-Ethernet Kaweth convertors
Package: kmod-usb-net-mcs7830
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3303
Filename: kmod-usb-net-mcs7830_3.18.9-1_ramips_24kec.ipk
Size: 4062
MD5Sum: f14e6b227f7106341c0ba0ed377c9c98
SHA256sum: 50c8aed499f350e2dca7d6abe78e64b55cd2a2190135f12f6e82a142657d0a83
Description: Kernel module for USB-to-Ethernet MCS7830 convertors
Package: kmod-usb-net-pegasus
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9643
Filename: kmod-usb-net-pegasus_3.18.9-1_ramips_24kec.ipk
Size: 10423
MD5Sum: a829ad1f28e07d1570d6901ba1117c36
SHA256sum: 26429efff0debac7b521d9764a2ee1c8318f805daa922eff1e76090ffb5ae7e2
Description: Kernel module for USB-to-Ethernet Pegasus convertors
Package: kmod-usb-net-qmi-wwan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-wdm
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4572
Filename: kmod-usb-net-qmi-wwan_3.18.9-1_ramips_24kec.ipk
Size: 5081
MD5Sum: 943c2b96dc3ff7abe1053473ae24ed08
SHA256sum: 4ba8f74fd6415e13ace4ab21cd7128efd73fbd2b796f908c97f02525a5fa4f69
Description: QMI WWAN driver for Qualcomm MSM based 3G and LTE modems
Package: kmod-usb-net-rndis
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-usb-net-cdc-ether
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4241
Filename: kmod-usb-net-rndis_3.18.9-1_ramips_24kec.ipk
Size: 5004
MD5Sum: 3d69f82abe097271f6762e33a879b1b6
SHA256sum: 8bcf43767f44be1285dbb4e6739a35ce64835eac11b016bac163db83c7709573
Description: Kernel support for RNDIS connections
Package: kmod-usb-net-sierrawireless
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5075
Filename: kmod-usb-net-sierrawireless_3.18.9-1_ramips_24kec.ipk
Size: 5832
MD5Sum: 1749f20f3f982f80cc49d9890fc57fff
SHA256sum: 7a7f61d2a305beebc8e230455a256f46d77b040ecf08a074bae18024a4d50116
Description: Kernel support for Sierra Wireless devices
Package: kmod-usb-net-smsc95xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-net, kmod-lib-crc16
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9597
Filename: kmod-usb-net-smsc95xx_3.18.9-1_ramips_24kec.ipk
Size: 10367
MD5Sum: 61b7f3280afcaa601fae7fee116c7e9e
SHA256sum: 8cf5df509c7fdaf00472cdaaf0dc5db5ba28e4918aaba4e2ebaac4ae22ff1435
Description: Kernel module for SMSC LAN95XX based devices
Package: kmod-usb-net
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-mii, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12206
Filename: kmod-usb-net_3.18.9-1_ramips_24kec.ipk
Size: 12957
MD5Sum: a3ea78fde4422c999080a3d5e1aa0287
SHA256sum: 14265dbbad50bee5e91608b47b41aca4d9c8bba067242e2f04d449e47f591782
Description: Kernel modules for USB-to-Ethernet convertors
Package: kmod-usb-ohci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18916
Filename: kmod-usb-ohci_3.18.9-1_ramips_24kec.ipk
Size: 19664
MD5Sum: 42d3e8490d1c61380931508faa48eb9a
SHA256sum: 0aa1e8719efd58fd0b61694dfc151a5999cecd968cab9c2840ac63eb7b78ee89
Description: Kernel support for USB OHCI controllers
Package: kmod-usb-printer
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6812
Filename: kmod-usb-printer_3.18.9-1_ramips_24kec.ipk
Size: 7607
MD5Sum: 32b8f7fa9711973333fdbf5e7ee5c96a
SHA256sum: 766d04658d095c6b1e684c77305a365bdac250b1e6345592d389c690d7316aa8
Description: Kernel support for USB printers
Package: kmod-usb-serial-ark3116
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4148
Filename: kmod-usb-serial-ark3116_3.18.9-1_ramips_24kec.ipk
Size: 4923
MD5Sum: 788021dbb49f94784be465c33b78acf3
SHA256sum: 1de36152861f99a64fc95062f53de010e8fa886a364e299ab7bb9fa38aa08303
Description: Kernel support for ArkMicroChips ARK3116 USB-to-Serial converters
Package: kmod-usb-serial-belkin
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3397
Filename: kmod-usb-serial-belkin_3.18.9-1_ramips_24kec.ipk
Size: 4166
MD5Sum: 0eb2dabcac2e9d3410a94feb615c0802
SHA256sum: 2108924a7206b5bdcd74f669acce4158a5ff2aced7f3de3d94ed9982af4d5fac
Description: Kernel support for Belkin USB-to-Serial converters
Package: kmod-usb-serial-ch341
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3116
Filename: kmod-usb-serial-ch341_3.18.9-1_ramips_24kec.ipk
Size: 3886
MD5Sum: 2458c11b4eb6f2afce6ca96a7610e26e
SHA256sum: 6164d41a4e8a82ace8b0a1b5c29688b619e914c94f3313f442f6f54fa0ec21f0
Description: Kernel support for Winchiphead CH341 USB-to-Serial converters
Package: kmod-usb-serial-cp210x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3868
Filename: kmod-usb-serial-cp210x_3.18.9-1_ramips_24kec.ipk
Size: 4639
MD5Sum: 683fba2053fb5a96f4d2bcd6a4a98b16
SHA256sum: 98afc77294b48641add1a44c75fbf1234732150cac5a1a3a393878990f203ca4
Description: Kernel support for Silicon Labs cp210x USB-to-Serial converters
Package: kmod-usb-serial-cypress-m8
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5697
Filename: kmod-usb-serial-cypress-m8_3.18.9-1_ramips_24kec.ipk
Size: 6569
MD5Sum: 8887e5afc027ac8d2cef279897c591ef
SHA256sum: 14d1804d261f9948012ff1ced8dc7373d5918051ada5f1f46ca1f1c9e9a0baca
Description: Kernel support for devices with Cypress M8 USB to Serial chip
(for example, the Delorme Earthmate LT-20 GPS)
Supported microcontrollers in the CY4601 family are:
CY7C63741 CY7C63742 CY7C63743 CY7C64013
Package: kmod-usb-serial-ftdi
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 9828
Filename: kmod-usb-serial-ftdi_3.18.9-1_ramips_24kec.ipk
Size: 10585
MD5Sum: 27c48f296ca1d7302e9877e5751b3cc9
SHA256sum: b5e02ec2f72b930d582c92ce83127431827b01438c60379fae21b006edc2e4bc
Description: Kernel support for FTDI USB-to-Serial converters
Package: kmod-usb-serial-ipw
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial, kmod-usb-serial-wwan
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1907
Filename: kmod-usb-serial-ipw_3.18.9-1_ramips_24kec.ipk
Size: 2704
MD5Sum: f094a916ffcdd1eac5575b00a94eaef0
SHA256sum: 736ca2185fe4fdc25ca2417aa5e1a1c296f4394ac62e8375f90f44eacf5560f6
Description: Support for IPWireless 3G devices
Package: kmod-usb-serial-keyspan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 10256
Filename: kmod-usb-serial-keyspan_3.18.9-1_ramips_24kec.ipk
Size: 11020
MD5Sum: f25e70cee9111f5e75d29db8eb3a690c
SHA256sum: 4ebb602a63a78a1af0c2eb8f18935a170c2cdc9047c2b0b7f225b1c9f6336f95
Description: Kernel support for Keyspan USB-to-Serial devices
Package: kmod-usb-serial-mct
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3657
Filename: kmod-usb-serial-mct_3.18.9-1_ramips_24kec.ipk
Size: 4426
MD5Sum: 6b4abd27290f8de8b7d300c4dd6fb386
SHA256sum: 42076144ba69ebea730b1ec38f07d3bf032c3c1055616ef025e05eb93b574150
Description: Kernel support for Magic Control Technology USB-to-Serial converters
Package: kmod-usb-serial-mos7720
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5108
Filename: kmod-usb-serial-mos7720_3.18.9-1_ramips_24kec.ipk
Size: 5871
MD5Sum: 709ed4ee6d71032a90701a21c4ceb5df
SHA256sum: 61716cac757f8b2f8cdadf5efcb9f0cf9dd218e195db859f165fde9bbaea6761
Description: Kernel support for Moschip MOS7720 USB-to-Serial converters
Package: kmod-usb-serial-motorola-phone
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-usb-serial-motorola-phone_3.18.9-1_ramips_24kec.ipk
Size: 860
MD5Sum: 57d1a0d324f02f79ec8b28c02546bbef
SHA256sum: c668e28375b665b235c060ef3319c2a94f0d0b3a53c4a0f7696e49d1be7404a1
Description: Kernel support for Motorola usb phone
Package: kmod-usb-serial-option
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial-wwan, kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5589
Filename: kmod-usb-serial-option_3.18.9-1_ramips_24kec.ipk
Size: 5459
MD5Sum: 2d17e161817c7cc0b689d43fd02c22a9
SHA256sum: 1676ecf573cb59e327a8914194b7aa7ab7f46ece20526712f2b663b67b3b2e84
Description: Kernel support for Option HSDPA modems
Package: kmod-usb-serial-oti6858
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4203
Filename: kmod-usb-serial-oti6858_3.18.9-1_ramips_24kec.ipk
Size: 4983
MD5Sum: eb91e75beee448064bde88e814909977
SHA256sum: c089d45f34785466398876f03279f9ab50716563a236584ba256d648de1c1cd7
Description: Kernel support for Ours Technology OTI6858 USB-to-Serial converters
Package: kmod-usb-serial-pl2303
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4758
Filename: kmod-usb-serial-pl2303_3.18.9-1_ramips_24kec.ipk
Size: 5524
MD5Sum: 445c7fa5e630151eeb3f06d3d40bda73
SHA256sum: bd140eb5dcff11a8bfd06295e79a1d79043710cd11e195aa7094c9b6f1f420fc
Description: Kernel support for Prolific PL2303 USB-to-Serial converters
Package: kmod-usb-serial-qualcomm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial, kmod-usb-serial-wwan
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2147
Filename: kmod-usb-serial-qualcomm_3.18.9-1_ramips_24kec.ipk
Size: 2913
MD5Sum: e0ffa31a61799c7d266a4a9786d6a3d5
SHA256sum: d7645e81e8af35509d7c58dee3800e69e18f034c179a03d6e01aefd4fe30f0ac
Description: Kernel support for Qualcomm USB Serial devices (Gobi)
Package: kmod-usb-serial-sierrawireless
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4318
Filename: kmod-usb-serial-sierrawireless_3.18.9-1_ramips_24kec.ipk
Size: 5078
MD5Sum: 6d5f7eeca4673dc14fdb302b93091e7a
SHA256sum: 194337f37f354f54c5d25a0cd62bf93ddbf856dc8bd1bf6db39e27e74b316730
Description: Kernel support for Sierra Wireless devices
Package: kmod-usb-serial-ti-usb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 7737
Filename: kmod-usb-serial-ti-usb_3.18.9-1_ramips_24kec.ipk
Size: 8512
MD5Sum: 31650334dd790ddaef5bc18a817fb69b
SHA256sum: f4bee2334e47d863d5d949b9936c5173b38408fc9f74f44fcf9d2f2e60a9dfb4
Description: Kernel support for TI USB 3410/5052 devices
Package: kmod-usb-serial-visor
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3811
Filename: kmod-usb-serial-visor_3.18.9-1_ramips_24kec.ipk
Size: 4560
MD5Sum: 6008c1b8d8d40e1caa696802579c08cc
SHA256sum: 87a8e5bbb22077f090c3b195ed17b4aa698d7a9e19cff4022d260f60ca0cfaa1
Description: Kernel support for Handspring Visor PDAs
Package: kmod-usb-serial-wwan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3847
Filename: kmod-usb-serial-wwan_3.18.9-1_ramips_24kec.ipk
Size: 4604
MD5Sum: 70c2b9f8e0ab1ad7f7de1c434c032bc0
SHA256sum: 554ff2835d8c794d2898be8d625965a8e9d28e8a371243efad6e6d550d788959
Description: Kernel support for USB GSM and CDMA modems
Package: kmod-usb-serial
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 13328
Filename: kmod-usb-serial_3.18.9-1_ramips_24kec.ipk
Size: 14087
MD5Sum: afc7e3b53461f9e12856d744177a5fa1
SHA256sum: a5b70381558b3217a02b2be247630f23a115f126173662e72e7bbaa94f2a182b
Description: Kernel support for USB-to-Serial converters
Package: kmod-usb-storage-extras
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-storage
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 29982
Filename: kmod-usb-storage-extras_3.18.9-1_ramips_24kec.ipk
Size: 30794
MD5Sum: 4806be054eccd72dc6e88a92b9ddc859
SHA256sum: cb04494bf5a2a312a7fa811e25bd94b915330258b9752af69db442042ded7ce8
Description: Say Y here if you want to have some more drivers,
such as for SmartMedia card readers
Package: kmod-usb-storage
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-scsi-core, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 21537
Filename: kmod-usb-storage_3.18.9-1_ramips_24kec.ipk
Size: 21975
MD5Sum: b16989d1094174a682b889ab77468c47
SHA256sum: 128fac4655b4c9415f5dd58c3c68136439ec3e8eaa85e20b72575fcc7959bf20
Description: Kernel support for USB Mass Storage devices
Package: kmod-usb-test
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14953
Filename: kmod-usb-test_3.18.9-1_ramips_24kec.ipk
Size: 15675
MD5Sum: a46a7dea1d8f8a5f5805b6cd821cfbc0
SHA256sum: 7ba624443742b7e0d86a5a2a7cdfb831d609bd94afd61d2bbd2d52421435a0ca
Description: Kernel support for testing USB Host Controller software
Package: kmod-usb-uhci
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-usb-uhci_3.18.9-1_ramips_24kec.ipk
Size: 855
MD5Sum: 7e347f57ef42c3330de8677eb1cc0639
SHA256sum: 4a4de2140cc98a09d1ff6cd075290b547ea938ef3f65b50c325f39060ba92b8d
Description: Kernel support for USB UHCI controllers
Package: kmod-usb-wdm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6086
Filename: kmod-usb-wdm_3.18.9-1_ramips_24kec.ipk
Size: 6847
MD5Sum: 3f5c6c926071cd469ff3fac0a394ced5
SHA256sum: 5e289ec66066675925451fb4b17b9ad37cd6aefe3b734a7731020c11e82ac8a7
Description: USB Wireless Device Management support
Package: kmod-usb-yealink
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-input-core, kmod-input-evdev
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5799
Filename: kmod-usb-yealink_3.18.9-1_ramips_24kec.ipk
Size: 6571
MD5Sum: b83fe44016ef683aa36d50b99577bed9
SHA256sum: 607f44d510e4b3aa83581d887599bcd57a6418e6d6bfcdaaf639b886952b7dac
Description: Kernel support for Yealink VOIP phone
Package: kmod-usb2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 24298
Filename: kmod-usb2_3.18.9-1_ramips_24kec.ipk
Size: 25013
MD5Sum: 2bc3a480bc76458aa414e4af5a8a1530
SHA256sum: b06de0000676b8a36e665af2fd34a6a3bb2edb8dee29a34f3708b069d8ec9783
Description: Kernel support for USB2 (EHCI) controllers
Package: kmod-usb3
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 47341
Filename: kmod-usb3_3.18.9-1_ramips_24kec.ipk
Size: 47793
MD5Sum: 8e0b34e977337637300ef5d3f362aee1
SHA256sum: e366d5137ee4ff2c638f926c3eb9016c4723f729cd4b2663aa0db71c2863d29d
Description: Kernel support for USB3 (XHCI) controllers
Package: kmod-usbip-client
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usbip, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8726
Filename: kmod-usbip-client_3.18.9-1_ramips_24kec.ipk
Size: 9494
MD5Sum: fa17b4f022f2b030f8649ca4f48bff8e
SHA256sum: 88a86b4ecdd71bdd847b0c5d2258967e74ba0f6bdcadbe117f2d57614e5e6657
Description: USB-over-IP client driver
Package: kmod-usbip-server
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usbip, kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 8781
Filename: kmod-usbip-server_3.18.9-1_ramips_24kec.ipk
Size: 9553
MD5Sum: 3159f6365affed93ae3c0a854929b3c7
SHA256sum: 428b5f363375c12b79feb3da0de3727ecc220ab6bf9317ef453ea86dc77526df
Description: USB-over-IP host driver
Package: kmod-usbip
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4121
Filename: kmod-usbip_3.18.9-1_ramips_24kec.ipk
Size: 4837
MD5Sum: 4f17c45076bb6e57308d0572f11fb32e
SHA256sum: 9dd993c2a09b6745aeef26b5799fd90f79edb258f6729b6a8cca3c6fc4c678ac
Description: USB-over-IP kernel support
Package: kmod-usbmon
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11895
Filename: kmod-usbmon_3.18.9-1_ramips_24kec.ipk
Size: 12652
MD5Sum: e444b2e5dacf4e9e6457b6b76b02ae0b
SHA256sum: 6c46483b362a245b81fa1d651813600a3224cfa4b118bbcd036a67fd45ab8d07
Description: Kernel support for USB traffic monitoring
Package: kmod-veth
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2766
Filename: kmod-veth_3.18.9-1_ramips_24kec.ipk
Size: 3562
MD5Sum: 14e8206348319e2921507c3771f793e1
SHA256sum: fda84dbaa6c51bae6b31212eb17fa38ca7913e28763223112bcdade92451507f
Description: This device is a local ethernet tunnel. Devices are created in pairs.
When one end receives the packet it appears on its pair and vice
versa.
Package: kmod-video-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 58997
Filename: kmod-video-core_3.18.9-1_ramips_24kec.ipk
Size: 59347
MD5Sum: 66e964fb8189719e1333427fa320cbea
SHA256sum: 488b0691bd867edc5d7f8fdb0dbb2451f944775909956959791d2dbacca7adfc
Description: Kernel modules for Video4Linux support
Package: kmod-video-cpia2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18065
Filename: kmod-video-cpia2_3.18.9-1_ramips_24kec.ipk
Size: 18840
MD5Sum: de83c396eca1fe4acd98b5967233e4c4
SHA256sum: 4c6a8e98ad002d520f031ecf5aa78c041ec628dd3148cebf1442fc3e1c7f663f
Description: Kernel modules for supporting CPIA2 USB based cameras
Package: kmod-video-gspca-conex
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5531
Filename: kmod-video-gspca-conex_3.18.9-1_ramips_24kec.ipk
Size: 6306
MD5Sum: b7b9a029d8bc473fdb3291f08ada6fbf
SHA256sum: 1eedd49d7b83a2104951365bcb52257bc0085a3f4e3938bc175a0bb126696921
Description: The Conexant Camera Driver (conex) kernel module
Package: kmod-video-gspca-core
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-input-core, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14074
Filename: kmod-video-gspca-core_3.18.9-1_ramips_24kec.ipk
Size: 14894
MD5Sum: cb68e4e2dda5e3850561ac1592dd3e04
SHA256sum: 88dba0fd8e358e9b4dce48024ef75058d093672129d2b0c11559e69f52bd5dba
Description: Kernel modules for supporting GSPCA based webcam devices. Note this is just
the core of the driver, please select a submodule that supports your webcam.
Package: kmod-video-gspca-etoms
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4621
Filename: kmod-video-gspca-etoms_3.18.9-1_ramips_24kec.ipk
Size: 5381
MD5Sum: fdbbdec89e80ae8be8a9e555f04cb1ca
SHA256sum: accdeafe41dc5d694b45bf72e2fe6254530c130df019e90788b8a456472179c5
Description: The Etoms USB Camera Driver (etoms) kernel module
Package: kmod-video-gspca-finepix
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2274
Filename: kmod-video-gspca-finepix_3.18.9-1_ramips_24kec.ipk
Size: 3052
MD5Sum: 003631e74d892e29a2d57bb02e1e9fc9
SHA256sum: 852fb37ab3a13274f974ac218f6161dca9fcd3e401e9d98fc605b15685e4e075
Description: The Fujifilm FinePix USB V4L2 driver (finepix) kernel module
Package: kmod-video-gspca-gl860
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14828
Filename: kmod-video-gspca-gl860_3.18.9-1_ramips_24kec.ipk
Size: 15520
MD5Sum: 621ef756ee70ab67808895e9e59808c7
SHA256sum: 84320bc93beb8ff916227292f31a5eba3e86bb450bcfae0580111769ec370443
Description: gl860 webcam support
Package: kmod-video-gspca-jeilinj
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4276
Filename: kmod-video-gspca-jeilinj_3.18.9-1_ramips_24kec.ipk
Size: 5047
MD5Sum: 422eeae692f2d12fb81263b3d5c5281f
SHA256sum: c721e74e3f2719838cd5ae4928ff40b47c0a92119284e79cf5747bb71574f2ac
Description: The JEILINJ USB Camera Driver (jeilinj) kernel module
Package: kmod-video-gspca-konica
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3503
Filename: kmod-video-gspca-konica_3.18.9-1_ramips_24kec.ipk
Size: 4268
MD5Sum: f5fef259a1360d27fd299004a35672ba
SHA256sum: c40f771ae9b210c09652421570e5b6742c264d660425ad0c13096f8526e37376
Description: The Konica USB Camera Driver (konica) kernel module
Package: kmod-video-gspca-m5602
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 15896
Filename: kmod-video-gspca-m5602_3.18.9-1_ramips_24kec.ipk
Size: 16563
MD5Sum: 03b3a6676b26b7b8f5287013f8adead5
SHA256sum: d9ff11d595c2d3228e8d336431b7db60a6d212f553a1c5f8002796ef550e78ee
Description: The ALi USB m5602 Camera Driver (m5602) kernel module
Package: kmod-video-gspca-mars
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3407
Filename: kmod-video-gspca-mars_3.18.9-1_ramips_24kec.ipk
Size: 4170
MD5Sum: b4299bd5345d8de85c01e9bccc8081c8
SHA256sum: 2df38e6fa5a6d650a04aeba588cb73e0a12a71bc4cd24af5beb37268757d756b
Description: The Mars USB Camera Driver (mars) kernel module
Package: kmod-video-gspca-mr97310a
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5448
Filename: kmod-video-gspca-mr97310a_3.18.9-1_ramips_24kec.ipk
Size: 6251
MD5Sum: 21b3b67a5c4b60405fed00b01e3374c2
SHA256sum: 041eb2f0575dcf692b95b025c8ab976424204454641b20f9a9fc1259b301e8dd
Description: The Mars-Semi MR97310A USB Camera Driver (mr97310a) kernel module
Package: kmod-video-gspca-ov519
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 18632
Filename: kmod-video-gspca-ov519_3.18.9-1_ramips_24kec.ipk
Size: 19381
MD5Sum: a6c8694129893113505568a673ec99d7
SHA256sum: ed1ef0c1c1ebdc42a665e27c5ab39c2246f86f890b6b98de8f64ad8daaaaa30f
Description: The OV519 USB Camera Driver (ov519) kernel module
Package: kmod-video-gspca-ov534-9
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6104
Filename: kmod-video-gspca-ov534-9_3.18.9-1_ramips_24kec.ipk
Size: 6880
MD5Sum: ba4817fbc5eee98b40504f12f9844f8b
SHA256sum: 9b36c4728108df438aa9945d0d01a1abf074ad413680ebc3772a191edbb0f241
Description: The OV534-9 USB Camera Driver (ov534_9) kernel module
Package: kmod-video-gspca-ov534
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6870
Filename: kmod-video-gspca-ov534_3.18.9-1_ramips_24kec.ipk
Size: 7690
MD5Sum: 19eddb52a5f6c2c16896aaff8fa1580f
SHA256sum: b1045dbe93d06c5578e5a495cbbf447233391badebadad190292229b8a45c3fa
Description: The OV534 USB Camera Driver (ov534) kernel module
Package: kmod-video-gspca-pac207
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3885
Filename: kmod-video-gspca-pac207_3.18.9-1_ramips_24kec.ipk
Size: 4661
MD5Sum: 209300600f56c1eb0013a8eddf3336cf
SHA256sum: 11b3dd5464de62c14471986cb50de5805e987962f3da1606857bc9ac408b3080
Description: The Pixart PAC207 USB Camera Driver (pac207) kernel module
Package: kmod-video-gspca-pac7311
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4152
Filename: kmod-video-gspca-pac7311_3.18.9-1_ramips_24kec.ipk
Size: 4928
MD5Sum: 15b4b5186ab2b472229b46150d20137b
SHA256sum: 1a4907f10d064dc8047fedbe3c6051c24af5a8a97a48d816e65424453927ee85
Description: The Pixart PAC7311 USB Camera Driver (pac7311) kernel module
Package: kmod-video-gspca-se401
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4459
Filename: kmod-video-gspca-se401_3.18.9-1_ramips_24kec.ipk
Size: 5212
MD5Sum: cb2a0264e337a848216046529d27190b
SHA256sum: 69c7119e69250ef0973ae5f1531dff315f906ffdb91a19d882358219338230b1
Description: The SE401 USB Camera Driver kernel module
Package: kmod-video-gspca-sn9c20x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12658
Filename: kmod-video-gspca-sn9c20x_3.18.9-1_ramips_24kec.ipk
Size: 13408
MD5Sum: 4a5a901b5868960ab6563876138fa5bb
SHA256sum: 3797798b601fe7892e9268c4be0515755c25eab8cbb476e27e247d5fb072ff45
Description: The SN9C20X USB Camera Driver (sn9c20x) kernel module
Package: kmod-video-gspca-sonixb
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6177
Filename: kmod-video-gspca-sonixb_3.18.9-1_ramips_24kec.ipk
Size: 7005
MD5Sum: 20b9368224f9f262d644fe96dc922cb5
SHA256sum: 144abebacd46a97debfcb84f7ade32c71a470658aae557d960f10354edcd3869
Description: The SONIX Bayer USB Camera Driver (sonixb) kernel module
Package: kmod-video-gspca-sonixj
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 12699
Filename: kmod-video-gspca-sonixj_3.18.9-1_ramips_24kec.ipk
Size: 13432
MD5Sum: 730c7b69e309b2d6f01ed04c73ab4ed7
SHA256sum: 789594d46959329c3984b806a710b734178b1e3761884f661373db5bb0999b7b
Description: The SONIX JPEG USB Camera Driver (sonixj) kernel module
Package: kmod-video-gspca-spca500
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5737
Filename: kmod-video-gspca-spca500_3.18.9-1_ramips_24kec.ipk
Size: 6518
MD5Sum: d235a0d2f6929a7a5fa20418854cf927
SHA256sum: ea088cf0756b4dfde9e56b84c230926ceffa130f31e35f7dec80805c574fe913
Description: The SPCA500 USB Camera Driver (spca500) kernel module
Package: kmod-video-gspca-spca501
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4170
Filename: kmod-video-gspca-spca501_3.18.9-1_ramips_24kec.ipk
Size: 4943
MD5Sum: 1f13369e9c114f086377b8e8861486c6
SHA256sum: e56f4c5bcd8aa04e4d57011ba5d8d71d5f4cb2a42b28fcd24827d7e4f80b8b46
Description: The SPCA501 USB Camera Driver (spca501) kernel module
Package: kmod-video-gspca-spca505
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3103
Filename: kmod-video-gspca-spca505_3.18.9-1_ramips_24kec.ipk
Size: 3874
MD5Sum: 575cbf11253fe6e5fd69f54d461028df
SHA256sum: 8a18429e5ffb70326481bcb14011e025ab76b4f78402b05951f9ab31cd94d8b1
Description: The SPCA505 USB Camera Driver (spca505) kernel module
Package: kmod-video-gspca-spca506
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3784
Filename: kmod-video-gspca-spca506_3.18.9-1_ramips_24kec.ipk
Size: 4504
MD5Sum: 6618d6f50ce0eece0bfeda45fe8fad0b
SHA256sum: 31aafd2e5325742bfc2c3cdf92f19d99103172be8065dad5581a0b611a4fb9f4
Description: The SPCA506 USB Camera Driver (spca506) kernel module
Package: kmod-video-gspca-spca508
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3900
Filename: kmod-video-gspca-spca508_3.18.9-1_ramips_24kec.ipk
Size: 4669
MD5Sum: 72e752b43de495169dfce78d12fe3e41
SHA256sum: f1f8cb2e6a3ba113aa990828d988d72d0df528e2355a75cd3c579aeb520df7ef
Description: The SPCA508 USB Camera Driver (spca508) kernel module
Package: kmod-video-gspca-spca561
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 4851
Filename: kmod-video-gspca-spca561_3.18.9-1_ramips_24kec.ipk
Size: 5618
MD5Sum: 3b62599a3535c4cdf06e7bba5fb94cde
SHA256sum: 64afd6e3c6cbfe34550e13c147c9fb1959914ed3c5a3344ddf0a1488797f357b
Description: The SPCA561 USB Camera Driver (spca561) kernel module
Package: kmod-video-gspca-sq905
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3000
Filename: kmod-video-gspca-sq905_3.18.9-1_ramips_24kec.ipk
Size: 3777
MD5Sum: 077755aba9617d4c2d6633ee6bbd0653
SHA256sum: 3affcf05b0da181a96c7eaaffe54ddafc9aca8da5f67800cf2c562c6eca3de3f
Description: The SQ Technologies SQ905 based USB Camera Driver (sq905) kernel module
Package: kmod-video-gspca-sq905c
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2835
Filename: kmod-video-gspca-sq905c_3.18.9-1_ramips_24kec.ipk
Size: 3619
MD5Sum: b09f7a475a3c9ef5518d0a3815fbbfd0
SHA256sum: 313b0da66c3065c803a2234ddef6408966c06a4a94f1b9606b1eeb0bc654e91b
Description: The SQ Technologies SQ905C based USB Camera Driver (sq905c) kernel module
Package: kmod-video-gspca-stk014
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 3618
Filename: kmod-video-gspca-stk014_3.18.9-1_ramips_24kec.ipk
Size: 4399
MD5Sum: 140a011489e3b189560b37f7c6a487f6
SHA256sum: 61fd3cb337ee2bc65092b8e0c394508a90240e905f6d8deb41feb1e95230da63
Description: The Syntek DV4000 (STK014) USB Camera Driver (stk014) kernel module
Package: kmod-video-gspca-stv06xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11246
Filename: kmod-video-gspca-stv06xx_3.18.9-1_ramips_24kec.ipk
Size: 12044
MD5Sum: 4a7289ed6717a566180200efd2355cba
SHA256sum: f6db623968c890af5b3ac12e4142e8a31ba421b565d5cd8b23ac2cb22ae4d1f8
Description: The STV06XX USB Camera Driver (stv06xx) kernel module
Package: kmod-video-gspca-sunplus
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5960
Filename: kmod-video-gspca-sunplus_3.18.9-1_ramips_24kec.ipk
Size: 6755
MD5Sum: 7c50d4fe57b955eea926f672e3f2ca67
SHA256sum: 273e0dcdd80944d46035e4136e15e396a59ee971ecb2dd0b410c08a49e67d88a
Description: The SUNPLUS USB Camera Driver (sunplus) kernel module
Package: kmod-video-gspca-t613
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 6092
Filename: kmod-video-gspca-t613_3.18.9-1_ramips_24kec.ipk
Size: 6876
MD5Sum: 2d1b67bca10d9002ba4c07dad0c24713
SHA256sum: 464c51cf6000ee81255979e15304aef0fd84aa3f1dcc51f9d81573e82b3c295c
Description: The T613 (JPEG Compliance) USB Camera Driver (t613) kernel module
Package: kmod-video-gspca-tv8532
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2251
Filename: kmod-video-gspca-tv8532_3.18.9-1_ramips_24kec.ipk
Size: 3007
MD5Sum: 711a89e51e2303777574079a293da0a2
SHA256sum: ef352e7c99c7341ad6499d32e7c8cfb4404fc2f81d6ed96804806016fb50afbf
Description: The TV8532 USB Camera Driver (tv8532) kernel module
Package: kmod-video-gspca-vc032x
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11000
Filename: kmod-video-gspca-vc032x_3.18.9-1_ramips_24kec.ipk
Size: 11776
MD5Sum: d081b45579c4d61763ee8ad638deea0c
SHA256sum: 968b00415829c7e8d62212d38e62499375bcbe209500770d8d3986c9c3bd625d
Description: The VC032X USB Camera Driver (vc032x) kernel module
Package: kmod-video-gspca-zc3xx
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-gspca-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 14929
Filename: kmod-video-gspca-zc3xx_3.18.9-1_ramips_24kec.ipk
Size: 15673
MD5Sum: 7028d32d5b8c29028b1ca0da8e802fcd
SHA256sum: 68caffbb1ec6d5dab4a23d1f623c227f86f7949ac62fd810653ab79db15e53fd
Description: The ZC3XX USB Camera Driver (zc3xx) kernel module
Package: kmod-video-pwc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-videobuf2, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 22175
Filename: kmod-video-pwc_3.18.9-1_ramips_24kec.ipk
Size: 22908
MD5Sum: 08d1fb54b26deb1d539ac6c50446909a
SHA256sum: b9429ec54d3827c255f6e9b2d22a12289d08d002fe2245eb8a98e7a00b6cee6e
Description: Kernel modules for supporting Philips USB based cameras
Package: kmod-video-sn9c102
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 105
Filename: kmod-video-sn9c102_3.18.9-1_ramips_24kec.ipk
Size: 874
MD5Sum: a382e69d27836a8edd88a2a3d036d6b3
SHA256sum: 0f3209af5c3b4ca0ed39ad216d0b9390423942105a2a9781a44ad2cfaf227a20
Description: Kernel modules for supporting SN9C102 camera chips
Package: kmod-video-uvc
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-video-videobuf2, kmod-video-core, kmod-input-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 38775
Filename: kmod-video-uvc_3.18.9-1_ramips_24kec.ipk
Size: 39490
MD5Sum: 25271f52998d82a1716f2b02afe2f59c
SHA256sum: baed9bd218a64bfbf6d30ec294884a88972c9b7ada74f0d05c105b5932ab08fa
Description: Kernel modules for supporting USB Video Class (UVC) devices
Package: kmod-video-videobuf2
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-video-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 20922
Filename: kmod-video-videobuf2_3.18.9-1_ramips_24kec.ipk
Size: 21677
MD5Sum: 4ca5c9fb598976abe89a9c08d045ba46
SHA256sum: 21f97527ce356bfa5fd690eafee0961bc93a94daccccaa8981ce089eae6e3890
Description: Kernel modules that implements three basic types of media buffers.
Package: kmod-vxlan
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-iptunnel, kmod-udptunnel4, kmod-udptunnel6
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 16743
Filename: kmod-vxlan_3.18.9-1_ramips_24kec.ipk
Size: 17566
MD5Sum: 5ef66717281825670b206b65fea01e20
SHA256sum: 71fba2025a26d09b1237d9d2701b2cb4d2d8fba94cc9cddf02f995506cca7b09
Description: Kernel module for supporting VXLAN in the Kernel.
Requires Kernel 3.12 or newer.
Package: kmod-w1-gpio-custom
Version: 3.18.9-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1, kmod-w1-master-gpio
Source: package/kernel/w1-gpio-custom
Section: kernel
Architecture: ramips_24kec
Installed-Size: 1628
Filename: kmod-w1-gpio-custom_3.18.9-3_ramips_24kec.ipk
Size: 2391
MD5Sum: cb51fe3770f7e702782faac7e70f199a
SHA256sum: 7f84119c546deab41b31a7e0ac18e9021b09a4f92f345dad30d37d3c2230851c
Description: Kernel module to register a custom w1-gpio platform device.
Package: kmod-w1-master-ds2482
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1, kmod-i2c-core
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2490
Filename: kmod-w1-master-ds2482_3.18.9-1_ramips_24kec.ipk
Size: 3305
MD5Sum: d1dd2d6d72f9ba424ee207ce51fc0ce0
SHA256sum: b972d110f360f273c78c5b567215afa445a999428fbc0657e6675aceb83fb79c
Description: Kernel module for the DS2482 i2c 1-wire bus master driver
NOTE: Init with: echo ds2482 0x18 > /sys/bus/i2c/devices/i2c-0/new_device
or use owfs
Package: kmod-w1-master-ds2490
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 5237
Filename: kmod-w1-master-ds2490_3.18.9-1_ramips_24kec.ipk
Size: 6004
MD5Sum: 97c7b8c61c6333ff170892b317c2d0a5
SHA256sum: 17227cfc656a20d5f2a8435ed930a59c353e0cbf365325884b7e7d5224315a10
Description: Kernel module for the DS2490 usb 1-wire bus master driver
Package: kmod-w1-master-gpio
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2133
Filename: kmod-w1-master-gpio_3.18.9-1_ramips_24kec.ipk
Size: 2892
MD5Sum: a1e00eb810a6e23a65526127ff111347
SHA256sum: 4cd3b45853b2082988eb3f9fc93595af53bde037e11b29a6c5484423df3b4f9b
Description: Kernel module for the GPIO 1-wire bus master driver
Package: kmod-w1-slave-ds2413
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1337
Filename: kmod-w1-slave-ds2413_3.18.9-1_ramips_24kec.ipk
Size: 2155
MD5Sum: 80e9b66217dce18e4683fef4f275e8a9
SHA256sum: aa4e6174d16ad8d97ede081a545fbb03a827dd8f5da26883594503ab8fbde9dc
Description: Kernel module for 1-wire DS2413 Dual Channel Addressable Switch support
Package: kmod-w1-slave-ds2431
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2016
Filename: kmod-w1-slave-ds2431_3.18.9-1_ramips_24kec.ipk
Size: 2805
MD5Sum: 63c1e19e222bc11bd7e28c57af566ce7
SHA256sum: 08801723c65f81c598a0ac870fbd5e6977e1baa3118172726a4bb2f6d4083c2a
Description: Kernel module for 1-wire 1kb EEPROM (DS2431)
Package: kmod-w1-slave-ds2433
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1591
Filename: kmod-w1-slave-ds2433_3.18.9-1_ramips_24kec.ipk
Size: 2382
MD5Sum: dcda9e8351b8dce0ffb1e709de976b60
SHA256sum: 39576f01c5ce35c202a6597384c1318f9de4327e6894735480a7b0f4d25adbf3
Description: Kernel module for 1-wire 4kb EEPROM (DS2433)
Package: kmod-w1-slave-ds2760
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 1990
Filename: kmod-w1-slave-ds2760_3.18.9-1_ramips_24kec.ipk
Size: 2757
MD5Sum: 44ab69814d73a04fbade14d304cc60e4
SHA256sum: 619e0f0c65894ec7b7c705ecbe38cdfca88c617274afe440aeab15431a7e6593
Description: Kernel module for 1-wire DS2760 battery monitor chip support
Package: kmod-w1-slave-smem
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 848
Filename: kmod-w1-slave-smem_3.18.9-1_ramips_24kec.ipk
Size: 1641
MD5Sum: 43a426a22740f2473f9d485860cc7bd5
SHA256sum: 65185b92324342750af5290f7c4158804227b605af601bec64352c11520bc338
Description: Kernel module for 1-wire simple 64bit memory rom(ds2401/ds2411/ds1990*)
Package: kmod-w1-slave-therm
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-w1
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 2421
Filename: kmod-w1-slave-therm_3.18.9-1_ramips_24kec.ipk
Size: 3173
MD5Sum: 815166e9804fc421f004ed4f5fd9de39
SHA256sum: 08ef7b1a8baac9c0ebe791145e30dfe6be7adbee06a4b1e0ae7a9f9560b13ebf
Description: Kernel module for 1-wire thermal sensors
Package: kmod-w1
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d)
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11075
Filename: kmod-w1_3.18.9-1_ramips_24kec.ipk
Size: 11857
MD5Sum: 8cecb41314d0abde88793638cfa1ed48
SHA256sum: e8d64ff2c4df8a3578df246be3e1d119dd6a522f78a84f2c4f1bc0c96f79eeca
Description: Kernel module for Dallas's 1-wire support
Package: kmod-zd1211rw
Version: 3.18.9+2015-03-09-3
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-core, kmod-mac80211
Source: package/kernel/mac80211
Section: kernel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39336
Filename: kmod-zd1211rw_3.18.9+2015-03-09-3_ramips_24kec.ipk
Size: 40119
MD5Sum: 773e4b335d21f66f8ccc7f778f8870da
SHA256sum: 2187a77d0155d45f7ebece66e371cc45315f60d9ddf0bf325b3057d72cd7bdb7
Description: Zydas ZD1211 support
Package: kmod-zram
Version: 3.18.9-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-lzo, kmod-lib-lz4
Source: package/kernel/linux
License: GPLv2
Section: kernel
Status: unknown hold not-installed
Architecture: ramips_24kec
Installed-Size: 11976
Filename: kmod-zram_3.18.9-1_ramips_24kec.ipk
Size: 12750
MD5Sum: bb29680cf12cc762d5f036d8da66fc5c
SHA256sum: a9fba60ad60a82e97b00b271cf5021adfb274be35eb333cd8fdd8eafd18a9017
Description: Compressed RAM block device support
Package: ldconfig
Version: 0.9.33.2-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: utils
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8664
Filename: ldconfig_0.9.33.2-1_ramips_24kec.ipk
Size: 9473
MD5Sum: 09ad77f50e6052fabead072723c9752a
SHA256sum: c3b8eac4002e099891a4870b7c9801f177d99368f28af5d3cb3e4cf2a4fe3881
Description: Shared library path configuration
Package: ldd
Version: 0.9.33.2-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: utils
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4788
Filename: ldd_0.9.33.2-1_ramips_24kec.ipk
Size: 5510
MD5Sum: f118fb439f2b74cc5f76ffc70bc73e85
SHA256sum: 1376450639cafe7bfe91d994dae2a71cd83fe7ae7fca330f9b756d4679e80120
Description: LDD trace utility
Package: libatomic
Version: 4.8-linaro-1
Depends: libgcc
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4849
Filename: libatomic_4.8-linaro-1_ramips_24kec.ipk
Size: 5611
MD5Sum: dc1b5ef11ad747a009e02da08360a559
SHA256sum: f5e7f0eb27809139d529fc77285a4b46b7b85c7eb61ba3f37c6bd477f036ec22
Description: Atomic support library
Package: libbfd
Version: 2.24-3
Depends: libc, zlib
Source: package/devel/binutils
License: GPL-3.0+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 388147
Filename: libbfd_2.24-3_ramips_24kec.ipk
Size: 384907
MD5Sum: 95e58780698aa093574a4b96c3e26b8a
SHA256sum: 192ee617fedeeb9b69cd0c22ee17387f028c2e51a15a74b32fa2024333366a6e
Description: libbfd
Package: libblkid
Version: 2.25.2-4
Depends: libc, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 95144
Filename: libblkid_2.25.2-4_ramips_24kec.ipk
Size: 95962
MD5Sum: 13608a2a0449e0eac5a3f571e6141f37
SHA256sum: 05b7872d3543bc4f4b2fb2d18b678d9d239845fa975ffd34f024af59fc3a1566
Description: The libblkid library is used to identify block devices (disks) as to their
content (e.g. filesystem type, partitions) as well as extracting additional
information such as filesystem labels/volume names, partitions, unique
identifiers/serial numbers...
Package: libblobmsg-json
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libjson-c, libubox
Source: package/libs/libubox
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3739
Filename: libblobmsg-json_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 4514
MD5Sum: 8089125af065d01d9c00e1c7e630554e
SHA256sum: 5a1d06091bd7baeaeb4fb0798db20860dc3a6bf91e072ff726a2b45006f074e2
Description: blobmsg <-> json conversion library
Package: libcharset
Version: 1.11.1-1
Depends: libc
Source: package/libs/libiconv-full
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3091
Filename: libcharset_1.11.1-1_ramips_24kec.ipk
Size: 3819
MD5Sum: 0fa69c36e4624c5fd3e3eed4c2aa86ec
SHA256sum: c66678dbe7955fef34e38faebbff9b1d4fcc23675e6a2bea9a885f5a868e678b
Description: Character set conversion library
Package: libconfig
Version: 1.4.9-1
Depends: libc
Source: package/libs/libconfig
License: LGPL-2.1+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15216
Filename: libconfig_1.4.9-1_ramips_24kec.ipk
Size: 16148
MD5Sum: 461fa18e6f1ec3e57bc8b2671a99774b
SHA256sum: f4ed1db239413dba8bb1686cbba561ed6011ca6ac8b94e626f7914757081f146
Description: Libconfig is a simple library for manipulating structured configuration
files. This file format is more compact and more readable than XML. And
unlike XML, it is type-aware, so it is not necessary to do string
parsing in application code.
Libconfig is very compact -- just 38K for the stripped C shared
library (less than one-fourth the size of the expat XML parser library)
and 66K for the stripped C++ shared library. This makes it well-suited
for memory-constrained systems like handheld devices.
Package: libcurl
Version: 7.40.0-3
Depends: libc, libpolarssl
Source: package/network/utils/curl
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 103925
Filename: libcurl_7.40.0-3_ramips_24kec.ipk
Size: 104578
MD5Sum: a733f99a63532137e336c41cb2224e53
SHA256sum: 185c12bccb42932c54d18f051b3adbd12e967521497dc0fa63d527390abbf2aa
Description: A client-side URL transfer library
Package: libcyassl
Version: 3.3.0-1
Depends: libc
Source: package/libs/cyassl
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 76693
Filename: libcyassl_3.3.0-1_ramips_24kec.ipk
Size: 76713
MD5Sum: 9283f249670e0441c365a933622a5fde
SHA256sum: 9cdeade170fb7cfa4246933bc1c49f2096a4889f8f2fdf1addccc6be047796cc
Description: CyaSSL is an SSL library optimized for small footprint, both on disk and for
memory use.
Package: libevent2-core
Version: 2.0.22-1
Depends: libc
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54013
Filename: libevent2-core_2.0.22-1_ramips_24kec.ipk
Size: 55042
MD5Sum: e4fbd6031bafd8373b68794edf5f0403
SHA256sum: 98cb653d681855340d44af1a44bafd3c6d971a5a50a7005b7aca023dd68d8299
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent core shared library for the event,
buffer & utility functions.
Package: libevent2-extra
Version: 2.0.22-1
Depends: libc
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45141
Filename: libevent2-extra_2.0.22-1_ramips_24kec.ipk
Size: 46235
MD5Sum: 901ab857411e8e7df928307fc7837922
SHA256sum: 401b90b858b74d9cced0315c22d51083fc4ac1a732be025173002a52ed0cc941
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent extra shared library for specific
protocols including HTTP, DNS & RPC.
Package: libevent2-openssl
Version: 2.0.22-1
Depends: libc, libopenssl
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7468
Filename: libevent2-openssl_2.0.22-1_ramips_24kec.ipk
Size: 8504
MD5Sum: 2ab58ebe4d9812cfc3e7ba46df62dbce
SHA256sum: 260100a9ac58159ce42ffe4a1ab068948bffb926c2a9c8dd8d803dcef2ff5ab7
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent OpenSSL shared library for encrypted
bufferevents.
Package: libevent2-pthreads
Version: 2.0.22-1
Depends: libc, libpthread
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2167
Filename: libevent2-pthreads_2.0.22-1_ramips_24kec.ipk
Size: 3209
MD5Sum: 2d1b81ac2cc888c8c993ac247dfafe7d
SHA256sum: 6339531ad0d71ffd9d2bfb027f84ec34fc9734a37451f14d0292650482123b33
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent Pthreads shared library for
threading & locking.
Package: libevent2
Version: 2.0.22-1
Depends: libc
Source: package/libs/libevent2
License: BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 95212
Filename: libevent2_2.0.22-1_ramips_24kec.ipk
Size: 96162
MD5Sum: 1fa064b43aae6595a51def9fcb381c97
SHA256sum: 7a3b5a674e72fc08906fd516df4be7b3339ea8d37c4ee78efa3daa9170cc2031
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent shared library historically
containing both the core & extra libraries.
Package: libext2fs
Version: 1.42.4-2
Depends: libc
Source: package/utils/e2fsprogs
Section: libs
Architecture: ramips_24kec
Installed-Size: 116284
Filename: libext2fs_1.42.4-2_ramips_24kec.ipk
Size: 116901
MD5Sum: a5c8a86bcc34f6b26c08bd33032c6779
SHA256sum: de25e2056ebed1b6349e8d096e7c0468d0ca72f381737b68de514f34293c51ea
Description: libext2fs is a library which can access ext2, ext3 and ext4 filesystems.
Package: libfuse
Version: 2.9.3-1
Depends: libc, kmod-fuse, libpthread
Source: package/utils/fuse
License: LGPLv2.1 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 60922
Filename: libfuse_2.9.3-1_ramips_24kec.ipk
Size: 61638
MD5Sum: e51c1826f067e8be16b0a44b0cfe8253
SHA256sum: df9a4bef4760e9fcde5f1ef38cfa3aa2e52e4888b5e1d8b7167dcf3a1d414f01
Description: FUSE (Filesystem in UserSpacE)
This package contains the FUSE shared libraries, needed by other programs.
- libfuse
- libulockmgr
Package: libgcc
Version: 4.8-linaro-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31183
Filename: libgcc_4.8-linaro-1_ramips_24kec.ipk
Size: 31905
MD5Sum: 775ff74999b0b937d1f971738371c975
SHA256sum: 30a847d8bc26943a73d375efb8a85610ad7ed83e96e4b144cea7d2f304b70499
Description: GCC support library
Package: libgmp
Version: 6.0.0-1
Depends: libc
Source: package/libs/gmp
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 206409
Filename: libgmp_6.0.0-1_ramips_24kec.ipk
Size: 207127
MD5Sum: e20248f379a65bc06ca7a5b1095ce1cd
SHA256sum: 3a428f8f7a624a51ea21d323cf061fc94b5b8c8deda5bc12c57b35c3ec5e9e5a
Description: GMP is a free library for arbitrary precision arithmetic, operating on
signed integers, rational numbers, and floating point numbers.
Package: libiconv-full
Version: 1.11.1-1
Depends: libc
Source: package/libs/libiconv-full
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12528
Filename: libiconv-full_1.11.1-1_ramips_24kec.ipk
Size: 13259
MD5Sum: 00708b8ae6d600ce3a838cf1d47550ee
SHA256sum: 5a71fe38e540bbc4306e1658313d5af87d5a42c91823d457ea2be418a7fad188
Description: Character set conversion library
Package: libiconv
Version: 7
Depends: libc
Source: package/libs/libiconv
License: LGPL-2.1
LicenseFiles: LICENSE
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 169
Filename: libiconv_7_ramips_24kec.ipk
Size: 920
MD5Sum: fb94db003a910710052d774745cc84b7
SHA256sum: 161f5f27542cfc3996d2b95ed857c0eb645536ae48dd0b23eaf7d88142ca6090
Description: Tiny drop-in replacement for the GNU Character set conversion library
Package: libintl-full
Version: 0.19.4-1
Depends: libc
Source: package/libs/gettext-full
License: GPL-3.0+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15000
Filename: libintl-full_0.19.4-1_ramips_24kec.ipk
Size: 15698
MD5Sum: 8fcdfe1f4ac0c3f2eb0852918697b0b3
SHA256sum: 8598cba359cdc81c1f4e1203795ebab77eb8adec861ae4b0ee3a81997ab56b1d
Description: GNU Internationalization library
Package: libintl
Version: 2
Depends: libc
Source: package/libs/gettext
License: FSFULLR
LicenseFiles: LICENSE
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167
Filename: libintl_2_ramips_24kec.ipk
Size: 904
MD5Sum: 94efd135d74826d5be05f990c4caf250
SHA256sum: 7fd3928166980643430f7f882625ae1dde87ad37846cd8aa11e559e64884870e
Description: Stub header for the GNU Internationalization library
Package: libip4tc
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 10075
Filename: libip4tc_1.4.21-1_ramips_24kec.ipk
Size: 10759
MD5Sum: 26354a3201980f594dd32eff3e5b8ec7
SHA256sum: 8d23750ec602b759a4fc93fbcdfa0ed0f80b18080c6e2f965cc8fb4807fece45
Description: IPv4 firewall - shared libiptc library
Package: libip6tc
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 10452
Filename: libip6tc_1.4.21-1_ramips_24kec.ipk
Size: 11166
MD5Sum: 42ac7fbb0a44add5a315dc37d10891f1
SHA256sum: b40945eecdafa192fe26979f61ae506a29012afab5daf3e97092a6d287066cb4
Description: IPv6 firewall - shared libiptc library
Package: libiptc
Version: 1.4.21-1
Depends: libc, libip4tc, libip6tc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 1178
Filename: libiptc_1.4.21-1_ramips_24kec.ipk
Size: 1914
MD5Sum: 42788605046726313e21e677883f225d
SHA256sum: 1351c60ce2255e0124bfa2a15080d052d8db3aa39c18396596abf9171d54a513
Description: IPv4/IPv6 firewall - shared libiptc library (compatibility stub)
Package: libiw
Version: 29-5
Depends: libc
Source: package/network/utils/wireless-tools
License: GPL-2.0
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11627
Filename: libiw_29-5_ramips_24kec.ipk
Size: 12408
MD5Sum: 72f0a4e65a7fc0155cdff4cef6a9f300
SHA256sum: 5ac4a64333c5e84410770a06159fb9a2ec9a17cb0a701e410f25e45a935b116a
Description: This package contains a library for manipulating
"Linux Wireless Extensions".
Package: libiwinfo-lua
Version: 2015-01-04-c9fd399316003040825dfbd9700488b621bd990e
Depends: libc, libiwinfo, liblua
Source: package/network/utils/iwinfo
License: GPL-2.0
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5544
Filename: libiwinfo-lua_2015-01-04-c9fd399316003040825dfbd9700488b621bd990e_ramips_24kec.ipk
Size: 6300
MD5Sum: 5634d727cd7b045dcb313cc6562a3d10
SHA256sum: 0cc0adedfe551fdba0173c69524ca571d46c2dcfa38d40bc1a0fb88da73310f3
Description: This is the Lua binding for the iwinfo library. It provides access to all enabled
backends.
Package: libiwinfo
Version: 2015-01-04-c9fd399316003040825dfbd9700488b621bd990e
Depends: libc, libnl-tiny, libuci
Source: package/network/utils/iwinfo
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22584
Filename: libiwinfo_2015-01-04-c9fd399316003040825dfbd9700488b621bd990e_ramips_24kec.ipk
Size: 23410
MD5Sum: 5bff7d51458feeaa8cd3a1aea0687d76
SHA256sum: 5864533dddc15e0e5055efc37ddbde20e35ea3371ec43cd0263c564e5cfe5c09
Description: Wireless information library with consistent interface for proprietary Broadcom,
madwifi, nl80211 and wext driver interfaces.
Package: libjson-c
Version: 0.12-1
Depends: libc
Source: package/libs/libjson-c
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14751
Filename: libjson-c_0.12-1_ramips_24kec.ipk
Size: 15492
MD5Sum: 82d9008795e6e89a696476cb0751b542
SHA256sum: 607d91a77ca809edd383b64bf3c867353cef18c98588a3da53a6573905c6acbe
Description: This package contains a library for javascript object notation backends.
Package: libjson-script
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libubox
Source: package/libs/libubox
License: ISC
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5051
Filename: libjson-script_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 5787
MD5Sum: 1aa953a03dfc1d6a3fa0147aca3ccbe3
SHA256sum: cbc0d89f591ce421b5ceca1f1341d9f92c067e4777fb21692e6f75f7db955d20
Description: Minimalistic JSON based scripting engine
Package: libltdl
Version: 2.4-1
Depends: libc
Source: package/libs/libtool
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 13068
Filename: libltdl_2.4-1_ramips_24kec.ipk
Size: 13773
MD5Sum: ed18e77344f42b0a82fd7852681104b9
SHA256sum: 2e5afffcb8d5f0c0cad2ae2129da9ac81b96e9d091b66e108f00295aace8450e
Description: A generic dynamic object loading library
Package: liblua
Version: 5.1.5-1
Depends: libc
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69736
Filename: liblua_5.1.5-1_ramips_24kec.ipk
Size: 70525
MD5Sum: 461098a0f9d44c13493004d81fe7b304
SHA256sum: 9cc40f0953761a862bbeff5f1e9aa9206d62e5c536caa43aee25f360875d5e41
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua shared libraries, needed by other programs.
Package: liblzo
Version: 2.08-1
Depends: libc
Source: package/libs/lzo
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 35705
Filename: liblzo_2.08-1_ramips_24kec.ipk
Size: 36469
MD5Sum: e6e46672e65c1bdbd63ed57958ce4b89
SHA256sum: 67c72823a98ab514e9bc68180673906b4d53872d5a3d064e03feab2efa6a8c84
Description: LZO is a data compression library which is suitable for data de-/compression
in real-time. This means it favours speed over compression ratio.
Package: libmnl
Version: 1.0.3-2
Depends: libc
Source: package/libs/libmnl
License: LGPL-2.1+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5602
Filename: libmnl_1.0.3-2_ramips_24kec.ipk
Size: 6814
MD5Sum: a838589b6d4f2f67d1aec31a5ece377c
SHA256sum: 73ca61a99a8b0d9ad59847d70a7dd6da0dbf7570ab898ccacc65162f8a1aa334
Description: libmnl is a minimalistic user-space library oriented to Netlink developers.
There are a lot of common tasks in parsing, validating, constructing of
both the Netlink header and TLVs that are repetitive and easy to get wrong.
This library aims to provide simple helpers that allows you to re-use code
and to avoid re-inventing the wheel. The main features of this library are:
.
* Small: the shared library requires around 30KB for an x86-based computer.
.
* Simple: this library avoids complexity and elaborated abstractions that
tend to hide Netlink details.
.
* Easy to use: the library simplifies the work for Netlink-wise developers.
It provides functions to make socket handling, message building, validating,
parsing and sequence tracking, easier.
.
* Easy to re-use: you can use the library to build your own abstraction layer
on top of this library.
.
* Decoupling: the interdependency of the main bricks that compose the library
is reduced, i.e. the library provides many helpers, but the programmer is not
forced to use them.
Package: libmount
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 94413
Filename: libmount_2.25.2-4_ramips_24kec.ipk
Size: 95238
MD5Sum: 27e822df88c42c6dd092f3daca6d4861
SHA256sum: de749aca778c3e9753942f993974cb0b0e86b27bcfe289f311af0932019ef225
Description: The libmount library is used to parse /etc/fstab, /etc/mtab and
/proc/self/mountinfo files, manage the mtab file, evaluate mount options...
Package: libncurses
Version: 5.9-1
Depends: libc, terminfo
Source: package/libs/ncurses
License: MIT
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 120282
Filename: libncurses_5.9-1_ramips_24kec.ipk
Size: 119174
MD5Sum: 7c81f0882911c0c1020e3717d370bc13
SHA256sum: d0e7ba1de38a89811b4ee0be0beb88b9fb1bbeb8086152fb60dc92d00755fb83
Description: Terminal handling library
Package: libncursesw
Version: 5.9-1
Depends: libc
Source: package/libs/ncurses
License: MIT
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 138851
Filename: libncursesw_5.9-1_ramips_24kec.ipk
Size: 137643
MD5Sum: 7f9597df332cde2f8d2a0e5bc25d3404
SHA256sum: 88c9dcf7f06513ea54c20206f3065a7d1b462023cddc0b7e9fb0fa1c3fcb23f6
Description: Terminal handling library (Unicode)
Package: libnetfilter-conntrack
Version: 1.0.3-1
Depends: libc, libnfnetlink, kmod-nf-conntrack-netlink, libmnl
Source: package/libs/libnetfilter-conntrack
License: GPL-2.0+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28808
Filename: libnetfilter-conntrack_1.0.3-1_ramips_24kec.ipk
Size: 29526
MD5Sum: 4b980117385e1cf2a7b97c3a53cd6ff9
SHA256sum: b3d66f0dbff5613934e12af8ab4195fe5b55383c4e870d9fd3fa79f74a04d9ca
Description: libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
Package: libnetfilter-log
Version: 1.0.1-1
Depends: libc, libnfnetlink, kmod-nfnetlink-log, libmnl
Source: package/libs/libnetfilter-log
License: GPL-2.0+
Section: libs
Maintainer: Yousong Zhou <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3685
Filename: libnetfilter-log_1.0.1-1_ramips_24kec.ipk
Size: 4542
MD5Sum: 2a5db710e624d59dce1a09fb7df71436
SHA256sum: ec224b37d56b0d3fc971073bb19b06b5f713c9c9de5a3f0011787713bd3fb929
Description: libnetfilter_log is a userspace library providing interface to packets that
have been logged by the kernel packet filter. It is is part of a system that
deprecates the old syslog/dmesg based packet logging. This library has been
previously known as libnfnetlink_log.
Package: libnettle
Version: 2.7.1-1
Depends: libc, libgmp
Source: package/libs/nettle
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 220161
Filename: libnettle_2.7.1-1_ramips_24kec.ipk
Size: 220289
MD5Sum: 33faf046aca24ff933ee28d85b139d39
SHA256sum: 63481b7faa8e7149f6c9c773551c66f705d585cb69a823aba038c2e12e8cb387
Description: GNU crypto library
Package: libnfnetlink
Version: 1.0.1-1
Depends: libc
Source: package/libs/libnfnetlink
License: GPL-2.0+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8921
Filename: libnfnetlink_1.0.1-1_ramips_24kec.ipk
Size: 9811
MD5Sum: 848217d32118bf07370b0e53a52be0f7
SHA256sum: 1d85519f711a140173983954d9ec69f4c2ce88ef3bc45363352af7fabba6f591
Description: libnfnetlink is is the low-level library for netfilter related kernel/userspace communication.
It provides a generic messaging infrastructure for in-kernel netfilter subsystems
(such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users
and/or management tools in userspace.
Package: libnftnl
Version: 1.0.3-1
Depends: libc, libmnl
Source: package/libs/libnftnl
License: GPL-2.0+
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31586
Filename: libnftnl_1.0.3-1_ramips_24kec.ipk
Size: 32344
MD5Sum: 152286d51d68ebde64a9c7c729fa1334
SHA256sum: 1640c361bf97cecc9ead6525efe981164d97cd06c4f56dcabbfb73fd44384d98
Description: libnftnl is a userspace library providing a low-level netlink
programming interface (API) to the in-kernel nf_tables subsystem.
Package: libnl-tiny
Version: 0.1-4
Depends: libc
Source: package/libs/libnl-tiny
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12999
Filename: libnl-tiny_0.1-4_ramips_24kec.ipk
Size: 13720
MD5Sum: 8c9e60fd9cb86b96899de38d129b7666
SHA256sum: 0785e497a95be6e91fdc567e760dd52622447c2eecd6222eaa020bacf765dffb
Description: This package contains a stripped down version of libnl
Package: libnl
Version: 3.2.21-1
Depends: libc, libpthread
Source: package/libs/libnl
License: LGPL-2.1
Section: libs
Architecture: ramips_24kec
Installed-Size: 149826
Filename: libnl_3.2.21-1_ramips_24kec.ipk
Size: 150013
MD5Sum: c956b68c61f726233390f004a68b8ee5
SHA256sum: 82f15b91fad83208640e355e22aab0273b1d247516618bdc10720f750565dfe0
Description: This package contains a library for applications dealing with netlink sockets
Package: libopcodes
Version: 2.24-3
Depends: libc, libbfd
Source: package/devel/binutils
License: GPL-3.0+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54103
Filename: libopcodes_2.24-3_ramips_24kec.ipk
Size: 48700
MD5Sum: cb037e8b523c135b3222fbe83f039bc2
SHA256sum: ff4339b3b3936e23dbe8fb707cc8bba92452da5140d1419b31ab77e526f22518
Description: libbfd
Package: libopenssl
Version: 1.0.2a-0
Depends: libc, zlib
Source: package/libs/openssl
License: OpenSSL
LicenseFiles: LICENSE
Section: libs
Architecture: ramips_24kec
Installed-Size: 676106
Filename: libopenssl_1.0.2a-0_ramips_24kec.ipk
Size: 670111
MD5Sum: da327b46dc6ed66d23b670770e69edee
SHA256sum: 486595a844fdeca37ec7128ce1a79c2410aa159cca3b19011bd0ae0f2a9797d5
Description: The OpenSSL Project is a collaborative effort to develop a robust,
commercial-grade, full-featured, and Open Source toolkit implementing the Secure
Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well
as a full-strength general purpose cryptography library.
This package contains the OpenSSL shared libraries, needed by other programs.
Package: libpcap
Version: 1.5.3-1
Depends: libc
Source: package/libs/libpcap
License: BSD-3-Clause
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 85254
Filename: libpcap_1.5.3-1_ramips_24kec.ipk
Size: 86014
MD5Sum: c80bfab0f31e97876003767a25246e71
SHA256sum: 818048494f6fe37b673b0c9f7ea04b21ce42c6e68642e8c36d7db885f94d95e8
Description: This package contains a system-independent library for user-level network packet
capture.
Package: libpolarssl
Version: 1.3.10-1
Depends: libc
Source: package/libs/polarssl
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 131518
Filename: libpolarssl_1.3.10-1_ramips_24kec.ipk
Size: 132189
MD5Sum: b1d7c2d957eb2548dad977dd0b108f42
SHA256sum: acfc03a53983a7666f2301030c0144d867dc07e7a1e8f713ff30d83c68cc9fe1
Description: The aim of the PolarSSL project is to provide a quality, open-source
cryptographic library written in C and targeted at embedded systems.
This package contains the PolarSSL library.
Package: libpopt
Version: 1.16-1
Depends: libc
Source: package/libs/popt
License: MIT
Section: libs
Architecture: ramips_24kec
Installed-Size: 18255
Filename: libpopt_1.16-1_ramips_24kec.ipk
Size: 18907
MD5Sum: 7686eccd637d9fadf40b5e4b2232c447
SHA256sum: 324c2aba90b65db4d2e1f33dd37279eee096cab76e06095640ba3999dbc27a7b
Description: A command line option parsing library
Package: libpthread
Version: 0.9.33.2-1
Depends: libgcc
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30288
Filename: libpthread_0.9.33.2-1_ramips_24kec.ipk
Size: 31047
MD5Sum: f612d736dae464cdf4090e6d23b02079
SHA256sum: 3590b1bceb77b517b3f4f880bebb0fdabb1d74dc2ca32832e0fbe0cdae994cef
Description: POSIX thread library
Package: libreadline
Version: 6.3-1
Depends: libc
Source: package/libs/libreadline
License: GPL-3.0
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 124935
Filename: libreadline_6.3-1_ramips_24kec.ipk
Size: 125170
MD5Sum: 18218d4481170cfe43736dcbcd099a5c
SHA256sum: 0856e56a221c819da3931d050d8a98c3a425d0415e1cfbcd8060fd7061933d87
Description: The Readline library provides a set of functions for use by applications
that allow users to edit command lines as they are typed in. Both Emacs
and vi editing modes are available. The Readline library includes
additional functions to maintain a list of previously-entered command
lines, to recall and perhaps reedit those lines, and perform csh-like
history expansion on previous commands.
Package: libroxml
Version: 2.3.0-2
Depends: libc
Source: package/libs/libroxml
License: LGPL-2.1+
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18237
Filename: libroxml_2.3.0-2_ramips_24kec.ipk
Size: 18990
MD5Sum: e15457c241de2e489ba80264954d91c1
SHA256sum: 9323e5817084d9b71e1897e6017792ff48af72db39fa4b124a0340fce3c856bf
Description: Minimum, easy-to-use, C implementation for xml file parsing
Package: librpc
Version: 0.9.32-rc2-0a2179bbc0844928f2a0ec01dba93d9b5d6d41a7
Depends: libc
Source: package/libs/librpc
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32137
Filename: librpc_0.9.32-rc2-0a2179bbc0844928f2a0ec01dba93d9b5d6d41a7_ramips_24kec.ipk
Size: 32930
MD5Sum: 0e4c24eda5ea9fb0aa7c0cc60fa4ac4e
SHA256sum: 1b4a5a2dfd68090296b30ee8c76385373b53cfa06b89550370c93e6bb85adbea
Description: uClibc RPC library
Package: librt
Version: 0.9.33.2-1
Depends: libpthread
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4897
Filename: librt_0.9.33.2-1_ramips_24kec.ipk
Size: 5660
MD5Sum: 758e62884148e9270c6c73c156568940
SHA256sum: e77514bd132cca6989b0f7b7dc40b388c7ee31b3a3fd89d16f487115c4a63676
Description: POSIX.1b RealTime extension library
Package: libsmartcols
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 48442
Filename: libsmartcols_2.25.2-4_ramips_24kec.ipk
Size: 49340
MD5Sum: 92e9c2000ea5f291c5ad3c301e0f6e22
SHA256sum: 1237afec186aa3431248f06d3f79738686b25873cb9d19f1a1bcb10bf4ae6297
Description: The smartcols library is used to print tables and trees in a pretty way.
Package: libsocks
Version: 1.2.2-1
Depends: libc
Source: package/network/utils/dante
License: BSD-4-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 88706
Filename: libsocks_1.2.2-1_ramips_24kec.ipk
Size: 89712
MD5Sum: bbf270f3db587643a931772f1885f82a
SHA256sum: 884d5e5bedd2b1e2eb7f627fa6e29042411566de5c6a123a834765d057889a7a
Description: Dante is a circuit-level firewall/proxy that can be used to provide convenient
and secure network connectivity, requiring only that the server Dante runs on
has external network connectivity. Dante is used daily by Fortune 100 companies
and large international organizations, either as a standard SOCKS server or as
a "reverse proxy".
This package provides the shared libsocks library.
Package: libstdcpp
Version: 4.8-linaro-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 245038
Filename: libstdcpp_4.8-linaro-1_ramips_24kec.ipk
Size: 244468
MD5Sum: c3b8b9b885a4fbea9b48e37d7d784420
SHA256sum: 691541a58b4c4330e9dd4db0a6c37f27d9106bbf7d6ec81bded6be7b0ce2d277
Description: GNU Standard C++ Library v3
Package: libsysfs
Version: 2.1.0-2
Depends: libc
Source: package/libs/sysfsutils
License: LGPL-2.1
LicenseFiles: COPYING cmd/GPL lib/LGPL
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10757
Filename: libsysfs_2.1.0-2_ramips_24kec.ipk
Size: 11566
MD5Sum: a34ffc87acc2689e77d130dc7c174e82
SHA256sum: 919646ecb9728d1ea2d0b476395b72e2af3ef47faf2ec42532cb576abb802047
Description: The library's purpose is to provide a consistant and stable interface for
querying system device information exposed through sysfs.
Package: libthread-db
Version: 0.9.33.2-1
Source: package/libs/toolchain
License: GPL-3.0-with-GCC-exception
Section: libs
Status: unknown hold not-installed
Essential: yes
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7462
Filename: libthread-db_0.9.33.2-1_ramips_24kec.ipk
Size: 8250
MD5Sum: 12b6dee1a95d9b93c508d8f44c9375ce
SHA256sum: 04e7b26bdf4f949c0db4adc8b302e089e298d452f0267be8f2b9816ea9a16ad4
Description: POSIX thread library debugging support
Package: libubox-lua
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc, libubox, liblua
Source: package/libs/libubox
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3664
Filename: libubox-lua_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 4430
MD5Sum: b60683d6fc9e567f630cfff8dc8da653
SHA256sum: 672695b0d282078a301c47ec855b6b9b7f49ddc9daa1ae38fdffaf68a28f228d
Description: Lua binding for the OpenWrt Basic utility library
Package: libubox
Version: 2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812
Depends: libc
Source: package/libs/libubox
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17534
Filename: libubox_2015-02-26.1-2a9edb464215d17c61fdaa6fbd97c99f1f130812_ramips_24kec.ipk
Size: 18313
MD5Sum: 76fedb0b16270a49436b49e445b62713
SHA256sum: 2134bed90316b8aa4b5728f9a85afa918146bfea18395227283ef2fc605b8eb7
Description: Basic utility library
Package: libubus-lua
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubus, liblua
Source: package/system/ubus
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5489
Filename: libubus-lua_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 6266
MD5Sum: d86ce2a95ae7d5e0e3f531f9b8fdc908
SHA256sum: 8f6866ee80efc4ba647bc6b6667657d4e6028b2d69cfd54ccffe0794e34870ca
Description: Lua binding for the OpenWrt RPC client
Package: libubus
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubox
Source: package/system/ubus
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9075
Filename: libubus_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 9818
MD5Sum: cb6cd9d66813f6432097c86e1b924ff9
SHA256sum: 15b1b1e1078e122bcf2f1fb69b63fd26253bb1e873b2ded792d4cb7f6e15d5f1
Description: OpenWrt RPC client library
Package: libuci-lua
Version: 2014-04-11.1-1
Depends: libc, libuci, liblua
Source: package/system/uci
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6089
Filename: libuci-lua_2014-04-11.1-1_ramips_24kec.ipk
Size: 6824
MD5Sum: 68db29daac83216eb39ea3a982022dea
SHA256sum: 70cde6b95b9184863d81d0638aa82d57c5c1719dc728efd3f79428beb1bdabad
Description: Lua plugin for UCI
Package: libuci
Version: 2014-04-11.1-1
Depends: libc, libubox
Source: package/system/uci
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16105
Filename: libuci_2014-04-11.1-1_ramips_24kec.ipk
Size: 16832
MD5Sum: a9bd78d076ab279fe888456524d43de1
SHA256sum: a7d2b9a13311cb424c756482064923f504745f50dc55db8e507d392d4d4f5a65
Description: C library for the Unified Configuration Interface (UCI)
Package: libuclient
Version: 2015-01-19-6c222d0646fa7c07be96d729009916d5af295332
Depends: libc, libubox
Source: package/libs/uclient
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8945
Filename: libuclient_2015-01-19-6c222d0646fa7c07be96d729009916d5af295332_ramips_24kec.ipk
Size: 9687
MD5Sum: 832a6c288924bafe24e3339a0579c1aa
SHA256sum: cbf4222f210d0c69aa6c4129c87f9ff1b2fcf5843a8726f2b7574643089beb53
Description: HTTP/1.1 client library
Package: libusb-1.0
Version: 1.0.19-1
Depends: libc, libpthread, librt
Source: package/libs/libusb
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26231
Filename: libusb-1.0_1.0.19-1_ramips_24kec.ipk
Size: 26964
MD5Sum: 241191c2723ee739e2290b632df29b66
SHA256sum: 07ebc0d43e3e09beb3d531b4fa63de43c0e2698ae53675a09652737706c5426e
Description: libusb is a C library that gives applications easy access to USB devices on
many different operating systems.
Package: libusb-compat
Version: 0.1.4-1
Depends: libc, libusb-1.0
Source: package/libs/libusb-compat
License: LGPL-2.1
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5757
Filename: libusb-compat_0.1.4-1_ramips_24kec.ipk
Size: 6529
MD5Sum: db3236a7fa2da1ba99029e8075446f81
SHA256sum: dc38feef5bd11c13a798f820d78d9287806c2fed1a6aa1cb0356e9c0775a7a38
Description: libusb is a C library that gives applications easy access to USB devices on
many different operating systems.
Package: libustream-cyassl
Version: 2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0
Depends: libc, libubox, libcyassl
Source: package/libs/ustream-ssl
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3261
Filename: libustream-cyassl_2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0_ramips_24kec.ipk
Size: 4044
MD5Sum: 8a05faaf9bacb6cbc3b896ff19885bab
SHA256sum: cc7998ec698d7648d07cc679e69028a853b48919bdc86b3ff20b5ccaa04ae0dd
Description: ustream SSL Library (cyassl)
Package: libustream-openssl
Version: 2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0
Depends: libc, libubox, libopenssl
Source: package/libs/ustream-ssl
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4283
Filename: libustream-openssl_2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0_ramips_24kec.ipk
Size: 5024
MD5Sum: 61026cbd59f1ab87b56288b377626791
SHA256sum: dcc3583031809c8e2eaf448ddfe48f503c22a8b34cca481653166afb9bce93cd
Description: ustream SSL Library (openssl)
Package: libustream-polarssl
Version: 2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0
Depends: libc, libubox, libpolarssl
Source: package/libs/ustream-ssl
License: ISC
Section: libs
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3569
Filename: libustream-polarssl_2014-03-25-fc0b5ec804ee43c532978dd04ab0509c34baefb0_ramips_24kec.ipk
Size: 4309
MD5Sum: 24460df6c626077b6072913e18eaf887
SHA256sum: f1724eddd474cbd7a8cfff46fa7b93e5ba16af776e05718302b7daf736f3f853
Description: ustream SSL Library (polarssl)
Package: libuuid
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
Architecture: ramips_24kec
Installed-Size: 5635
Filename: libuuid_2.25.2-4_ramips_24kec.ipk
Size: 6548
MD5Sum: 63e5142c00e9490143cde4b54d8c585a
SHA256sum: bded7fde2530161760f57fbff7281b2ebc7f56c4e7e5d95ee6b4544b58e54edd
Description: The UUID library is used to generate unique identifiers for objects
that may be accessible beyond the local system. This library
generates UUIDs compatible with those created by the Open Software
Foundation (OSF) Distributed Computing Environment (DCE) utility.
Package: libxtables
Version: 1.4.21-1
Depends: libc
Source: package/network/utils/iptables
License: GPL-2.0
Section: libs
Architecture: ramips_24kec
Installed-Size: 17066
Filename: libxtables_1.4.21-1_ramips_24kec.ipk
Size: 17781
MD5Sum: d03691dd25f414fe10428a89a2a32dc7
SHA256sum: 43db62075b657f07115e211cbcb8bbd7ed6c211cfa50eac400b2418cd0e3ab5c
Description: IPv4/IPv6 firewall - shared xtables library
Package: linux-atm
Version: 2.5.2-5
Depends: libc
Source: package/network/utils/linux-atm
License: GPL-2.0+
Section: libs
Architecture: ramips_24kec
Installed-Size: 16479
Filename: linux-atm_2.5.2-5_ramips_24kec.ipk
Size: 17186
MD5Sum: 2f63dd41c06800d3aa5d09503e19b0a1
SHA256sum: c1c1f9f81da8f41dbf986467a8701f182db8c07950eda010b1c9c7d9637ec987
Description: This package contains a library for accessing the Linux ATM subsystem.
Package: lldpd
Version: 0.7.13-2
Depends: libc, libevent2
Source: package/network/services/lldpd
License: ISC
Section: net
Require-User: lldp=121:lldp=129
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 103108
Filename: lldpd_0.7.13-2_ramips_24kec.ipk
Size: 104021
MD5Sum: 0296dbca9052eb1f3b9377bf075d2f80
SHA256sum: ee49e14e710237c4adf26ff8d703b7d4e69609969b6daa8630d2a05f70bbd492
Description: LLDP (Link Layer Discovery Protocol) is an industry standard protocol designed
to supplant proprietary Link-Layer protocols such as
Extreme's EDP (Extreme Discovery Protocol) and
CDP (Cisco Discovery Protocol).
The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver
Link-Layer notifications to adjacent network devices.
Package: logger
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 8535
Filename: logger_2.25.2-4_ramips_24kec.ipk
Size: 9337
MD5Sum: 968174064f56fa4aee739a97e73cb0ac
SHA256sum: 5fb9a1f0dd55a57c085a03a6071b5d6a46ac2e7eb7a0359d001c469d0d93b100
Description: logger makes entries in the system log, it provides a shell command interface
to the syslog system log module
Package: look
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 3735
Filename: look_2.25.2-4_ramips_24kec.ipk
Size: 4520
MD5Sum: 661b49f95a4cf63449dc56f518892770
SHA256sum: b8966dfbc5601ceed10563fb2574cb3de219090a3b942c5eb6fd68b91cc8ff9b
Description: look utility displays any lines in file which contain string
Package: losetup
Version: 2.25.2-4
Depends: libc, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 24666
Filename: losetup_2.25.2-4_ramips_24kec.ipk
Size: 25469
MD5Sum: 72aa92940866356f6713a5001017cb2f
SHA256sum: 028ac5226be30b6a684d9e12d4c4a2cc0bd8af59bdba537c878ae6e4106aafc2
Description: losetup is used to associate loop devices with regular files or block devices,
to detach loop devices and to query the status of a loop device
Package: lsblk
Version: 2.25.2-4
Depends: libc, libblkid, libmount, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 23527
Filename: lsblk_2.25.2-4_ramips_24kec.ipk
Size: 24302
MD5Sum: a7649de308131359f2f774d030e0533b
SHA256sum: 4ff0c672305f10e914acd94b25e067781b9ae20caf4d561dd35ff3e6a52a90b5
Description: lsblk lists information about all or the specified block devices
Package: lua-examples
Version: 5.1.5-1
Depends: libc, lua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5288
Filename: lua-examples_5.1.5-1_ramips_24kec.ipk
Size: 6146
MD5Sum: 7041ed51c8c3702dba24bfc97463636c
SHA256sum: bf2ec58cdd1d41330992a61a203da87a9f010cc7e5ca538a7add2d9ee4d17136
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains Lua language examples.
Package: lua
Version: 5.1.5-1
Depends: libc, liblua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4754
Filename: lua_5.1.5-1_ramips_24kec.ipk
Size: 5580
MD5Sum: a391a2a0b18b9486ce8b667c3a1ee77d
SHA256sum: f247e17c6e5bfeaff1904b690bd8a134828ac193ba53da54d02c8ab27f0139a3
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua language interpreter.
Package: luac
Version: 5.1.5-1
Depends: libc, liblua
Source: package/utils/lua
License: MIT
LicenseFiles: COPYRIGHT
Section: lang
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5793
Filename: luac_5.1.5-1_ramips_24kec.ipk
Size: 6628
MD5Sum: d523cb1252d9f907c3151970e3895575
SHA256sum: 4bada7f29d9ea9419b19045998b16504a59ffaf05992775bc2e20a4a2ad27d54
Description: Lua is a powerful light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. Lua is free software.
This package contains the Lua language compiler.
Package: maccalc
Version: 1
Depends: libc
Source: package/network/utils/maccalc
License: GPL-2.0
Section: utils
Architecture: ramips_24kec
Installed-Size: 2407
Filename: maccalc_1_ramips_24kec.ipk
Size: 3131
MD5Sum: a75e7e31e6a755963d90b83979b74942
SHA256sum: bb679172e369f1bb11ccb5228cd6e2db793630aa1db78a6275ed0a6301249a56
Description: This package contains a MAC address manipulation utility.
Package: map
Version: 3-2
Depends: libc, kmod-ipv6, kmod-ip6-tunnel, libubox, libubus, iptables-mod-conntrack-extra
Source: package/network/ipv6/map
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6747
Filename: map_3-2_ramips_24kec.ipk
Size: 7626
MD5Sum: 38d91cc6ebe2151dc4e098ca1fec1b1b
SHA256sum: adbf41b1bddcc28d05e7d4c77155066c1a9efc8747816562ab85ed1768f4d2e3
Description: Provides support for MAP-E (draft-ietf-softwire-map) and
Lightweight 4over6 (draft-ietf-softwire-lw4over6) in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: mcookie
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 10062
Filename: mcookie_2.25.2-4_ramips_24kec.ipk
Size: 10847
MD5Sum: 5576730ce82e8e299f62597573adbc5e
SHA256sum: 57144a56c444ee70059a3b3e5c6b124823433e51125cc7920b2b0954a94b64d3
Description: mcookie generates a 128-bit random hexadecimal number for use with the X
authority system
Package: mdadm
Version: 3.2.5-1
Depends: libc
Source: package/utils/mdadm
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128197
Filename: mdadm_3.2.5-1_ramips_24kec.ipk
Size: 128791
MD5Sum: f3b1ea3bcfb39962f3b0bb196d0f2626
SHA256sum: 525cf4dbafb7d57ed772cb55a06be2bdfd9129c1bfe4238b9c91a6fd2b81f447
Description: A tool for managing Linux Software RAID arrays.
Package: mdns
Version: 2014-11-03-a5560f88bb2cddeef0ef11a12e7822b9c19a75a5
Depends: libc, libubox, libubus, libblobmsg-json
Source: package/network/services/mdns
License: LGPL-2.1
Section: net
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14839
Filename: mdns_2014-11-03-a5560f88bb2cddeef0ef11a12e7822b9c19a75a5_ramips_24kec.ipk
Size: 15578
MD5Sum: b6e76fb5b1c5c67a44a6c523ab473766
SHA256sum: 21043c0e1af0f881103a59b5a7a6de957e541678a163f4882b55276bf4d5f8f2
Description: OpenWrt Multicast DNS Daemon
Package: mount-utils
Version: 2.25.2-4
Depends: libc, libmount, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 33748
Filename: mount-utils_2.25.2-4_ramips_24kec.ipk
Size: 34572
MD5Sum: b09274c6162227b4553ddbd1115a0c8b
SHA256sum: de04f6633bf1ee33f5c425fd5139e5269e1f043b7d2f580499307b92dba1b71a
Description: contains: mount, umount, findmnt
Package: mountd
Version: 0.1-6
Depends: libc, uci, kmod-usb-storage, kmod-fs-autofs4
Source: package/system/mountd
License: GPL-2.0
Section: utils
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10579
Filename: mountd_0.1-6_ramips_24kec.ipk
Size: 11367
MD5Sum: 7fd2400e603d65acfa3179ee935509f2
SHA256sum: d3ac5e04d06b891215027f3cd09dadfe8aed458714e225164134ec27dbcb9ac2
Description: openwrt automount daemon
Package: mtd
Version: 20
Depends: libc, libubox
Source: package/system/mtd
License: GPL-2.0+
Section: utils
Architecture: ramips_24kec
Installed-Size: 12538
Filename: mtd_20_ramips_24kec.ipk
Size: 13279
MD5Sum: c6658a7f1a21258b6148db64c512ecc4
SHA256sum: dba206fb44892e7fa53487d0863078750106eeb4f33c3ba2586070578d0a86d2
Description: This package contains an utility useful to upgrade from other firmware or
older OpenWrt releases.
Package: namei
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 8307
Filename: namei_2.25.2-4_ramips_24kec.ipk
Size: 9156
MD5Sum: 0b669bfec03d0b0c9770eba3e378d655
SHA256sum: 1fa8f97ab23eded9cce865452822468de06b8a147f43e39ad3b510f355d6ba5b
Description: namei uses its arguments as pathnames to any type of Unix file (symlinks,
files, directories, and so forth)
Package: netifd
Version: 2015-03-20-2fb3d0e9205e2a4cea38062caefd7251f562866d
Depends: libc, libuci, libnl-tiny, libubus, ubus, ubusd, jshn, libubox
Source: package/network/config/netifd
License: GPL-2.0
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61482
Filename: netifd_2015-03-20-2fb3d0e9205e2a4cea38062caefd7251f562866d_ramips_24kec.ipk
Size: 62197
MD5Sum: 67898f2c720ff22d5eacdcc7ab511e04
SHA256sum: 9bef48a0a7744cce432ee369e86de7146806113f404f8c6354448b1c5974cd76
Description: OpenWrt Network Interface Configuration Daemon
Package: nftables
Version: 0.4+2015-01-13-1
Depends: libc, kmod-nft-core, kmod-nft-nat, libnftnl
Source: package/network/utils/nftables
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100493
Filename: nftables_0.4+2015-01-13-1_ramips_24kec.ipk
Size: 101093
MD5Sum: 9077b886286fb77e5e93cc1efe9635de
SHA256sum: 34c66bc20775476c498eda3986dd572ff00aca33ad19253035bf1de4f6b8cc4b
Description: nftables packet filtering userspace utility
Package: objdump
Version: 2.24-3
Depends: libc, libopcodes
Source: package/devel/binutils
License: GPL-3.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 134842
Filename: objdump_2.24-3_ramips_24kec.ipk
Size: 135406
MD5Sum: 5e6166747110191452adf5fbd6663dca
SHA256sum: 145770760079606f35ea90e0a2a0c86488d7a16f0e020237ce6a7020bec7f7a7
Description: objdump
Package: odhcp6c
Version: 2014-12-10-722226c4f1d45c8bf4ac9189523738abcf7d648f
Depends: libc, kmod-ipv6
Source: package/network/ipv6/odhcp6c
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23133
Filename: odhcp6c_2014-12-10-722226c4f1d45c8bf4ac9189523738abcf7d648f_ramips_24kec.ipk
Size: 23865
MD5Sum: a8de8db04cf1f52272f13152f69af5e2
SHA256sum: 548aa7cb56b99646f187fa95fac7030888600958d397a09416a26184a6be4f8b
Description: Embedded DHCPv6-client for OpenWrt
Package: odhcpd
Version: 2015-03-06-721db56281dba79158470d7f69ccc7577f11fbb6
Depends: libc, libubox, libuci, libubus
Source: package/network/services/odhcpd
License: GPL-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30587
Filename: odhcpd_2015-03-06-721db56281dba79158470d7f69ccc7577f11fbb6_ramips_24kec.ipk
Size: 31231
MD5Sum: e61dce76c0fb9f45572225d80b5f76dd
SHA256sum: db8b2209d49fe3e8efcc7125dfac5ce4693aafa887e24f1d5124c13af24fbad5
Description: odhcpd is a daemon for serving and relaying IP management protocols to
configure clients and downstream routers. It tries to follow the RFC 6204
requirements for IPv6 home routers.
odhcpd provides server services for DHCP, RA, stateless and stateful DHCPv6,
prefix delegation and can be used to relay RA, DHCPv6 and NDP between routed
(non-bridged) interfaces in case no delegated prefixes are available.
Package: om-watchdog
Version: 1-1
Depends: libc
Source: package/kernel/om-watchdog
Section: base
Architecture: ramips_24kec
Installed-Size: 633
Filename: om-watchdog_1-1_ramips_24kec.ipk
Size: 1339
MD5Sum: 642c45fa170a4dcb951dc58e7b867323
SHA256sum: 08cef19a52d94b508cf32fa5083e5726214daa529579cf261be814b3d29846eb
Description: This package contains the hw watchdog script for the OM1P and OM2P device.
Package: openssl-util
Version: 1.0.2a-0
Depends: libc, libopenssl
Source: package/libs/openssl
License: OpenSSL
LicenseFiles: LICENSE
Section: utils
Architecture: ramips_24kec
Installed-Size: 194194
Filename: openssl-util_1.0.2a-0_ramips_24kec.ipk
Size: 194259
MD5Sum: 78a72b71ba1b2727cdad5024ba50f0d7
SHA256sum: f3e32de6cc80b07a42fd571be01ef9a6ad7d26d7fb3a2051101740fd2d70ed04
Description: The OpenSSL Project is a collaborative effort to develop a robust,
commercial-grade, full-featured, and Open Source toolkit implementing the Secure
Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well
as a full-strength general purpose cryptography library.
This package contains the OpenSSL command-line utility.
Package: openvpn-easy-rsa
Version: 2013-01-30-2
Depends: libc, openssl-util
Source: package/network/services/openvpn-easy-rsa
License: GPL-2.0
Section: net
Architecture: ramips_24kec
Installed-Size: 10079
Filename: openvpn-easy-rsa_2013-01-30-2_ramips_24kec.ipk
Size: 10896
MD5Sum: 1c73b6a691eaf072b11a3b1b32eae717
SHA256sum: ff028b5a1480bbffb984f09e974847aa5360c059b5c2fe277c5b23beb6ce967e
Description: Simple shell scripts to manage a Certificate Authority
Package: openvpn-nossl
Version: 2.3.6-3
Depends: libc, kmod-tun, liblzo
Source: package/network/services/openvpn
License: GPL-2.0
Section: net
Maintainer: Mirko Vogt <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80034
Filename: openvpn-nossl_2.3.6-3_ramips_24kec.ipk
Size: 80885
MD5Sum: f8ed733003fd0604f03acb8500f78e7f
SHA256sum: 6fbae3fa8efa0f89ba8cb4828545b0c80a8904bb3a63bdae0ac0bc3b31e438fb
Description: Open source VPN solution using plaintext (no SSL)
Package: openvpn-openssl
Version: 2.3.6-3
Depends: libc, kmod-tun, liblzo, libopenssl
Source: package/network/services/openvpn
License: GPL-2.0
Section: net
Maintainer: Mirko Vogt <[email protected]>
Architecture: ramips_24kec
Installed-Size: 156421
Filename: openvpn-openssl_2.3.6-3_ramips_24kec.ipk
Size: 156790
MD5Sum: abc3fbab1cc9175c4247765a048681d0
SHA256sum: 2ce96b6dd8565232bdee975163fc89712ec5d3e8cc47d61c3d9ad0c7c2c112af
Description: Open source VPN solution using OpenSSL
Package: openvpn-polarssl
Version: 2.3.6-3
Depends: libc, kmod-tun, liblzo, libpolarssl
Source: package/network/services/openvpn
License: GPL-2.0
Section: net
Maintainer: Mirko Vogt <[email protected]>
Architecture: ramips_24kec
Installed-Size: 152730
Filename: openvpn-polarssl_2.3.6-3_ramips_24kec.ipk
Size: 153085
MD5Sum: 77fd232f3f1bb68cb56b335f8d6f1b48
SHA256sum: 3695289d666261ad626ae109b84e6c6bcc202c046d9476fec79f87c17de28c51
Description: Open source VPN solution using PolarSSL
Package: opkg-smime
Version: 9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7
Depends: libc, libopenssl
Source: package/system/opkg
License: GPL-2.0
LicenseFiles: COPYING
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 64788
Filename: opkg-smime_9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7_ramips_24kec.ipk
Size: 65657
MD5Sum: 6a039a4dd852c1db77108235559d2a22
SHA256sum: fe1e284b7e8be1c7f13465fb70a64096385df10fc7a6a332c67f9665ed6831db
Description: Lightweight package management system
opkg is the opkg Package Management System, for handling
installation and removal of packages on a system. It can
recursively follow dependencies and download all packages
necessary to install a particular package.
opkg knows how to install both .ipk and .deb packages.
This package allows the Package index to be verified with S/MIME.
Package: opkg
Version: 9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7
Depends: libc
Source: package/system/opkg
License: GPL-2.0
LicenseFiles: COPYING
Section: base
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56446
Filename: opkg_9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7_ramips_24kec.ipk
Size: 57399
MD5Sum: e233693d667f284bf83e62311a98cf07
SHA256sum: 98d62b3419c1c805e457768e35ce5d96690d76f9ab33de2c70bbbcdae5666e79
Description: Lightweight package management system
opkg is the opkg Package Management System, for handling
installation and removal of packages on a system. It can
recursively follow dependencies and download all packages
necessary to install a particular package.
opkg knows how to install both .ipk and .deb packages.
Package: owipcalc
Version: 3
Depends: libc
Source: package/network/utils/owipcalc
License: Apache-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5493
Filename: owipcalc_3_ramips_24kec.ipk
Size: 6345
MD5Sum: 8eb85c0b46efdae1bfbc784dc1d99543
SHA256sum: 6cf5c1fe932b108b3a914f936da6d9679245f7e580a21110e9c2188a438d19a7
Description: The owipcalc utility supports a number of calculations and tests to work
with ip-address ranges, this is useful for scripts that e.g. need to
partition ipv6-prefixes into small subnets or to calculate address ranges
for dhcp pools.
Package: partx-utils
Version: 2.25.2-4
Depends: libc, libblkid, libsmartcols
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 33595
Filename: partx-utils_2.25.2-4_ramips_24kec.ipk
Size: 34423
MD5Sum: 33c937096116edb96e1e85cb34878a59
SHA256sum: e0fa8108661781826eb501867a35fb9f651a2b6a1989cac9d2e74d4bca28d2a9
Description: contains partx, addpart, delpart
Package: ppp-mod-pppoa
Version: 2.4.7-5
Depends: libc, linux-atm, kmod-pppoa
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7292
Filename: ppp-mod-pppoa_2.4.7-5_ramips_24kec.ipk
Size: 8100
MD5Sum: 293901a77aae3cb637a3f364069cdd8c
SHA256sum: 9dff9081f63b377cc3994e07428f6796901557abefac9e5798a79f23c929beaf
Description: This package contains a PPPoA (PPP over ATM) plugin for ppp.
Package: ppp-mod-pppoe
Version: 2.4.7-5
Depends: libc, kmod-pppoe
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9767
Filename: ppp-mod-pppoe_2.4.7-5_ramips_24kec.ipk
Size: 10528
MD5Sum: 2ec03ab54813bd9c590300753a08b25c
SHA256sum: 9c84a4e88895ad105e28f8ded57f60a2da26fa8527b700212ac7bf10435d9fba
Description: This package contains a PPPoE (PPP over Ethernet) plugin for ppp.
Package: ppp-mod-pppol2tp
Version: 2.4.7-5
Depends: libc, kmod-pppol2tp
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4582
Filename: ppp-mod-pppol2tp_2.4.7-5_ramips_24kec.ipk
Size: 5326
MD5Sum: b8b0745d928ac30cacf929081b3893c7
SHA256sum: 8296b5c4288ca059063b1665f75849f70fe02e1e533eac6b217df8bb4fe0199c
Description: This package contains a PPPoL2TP (PPP over L2TP) plugin for ppp.
Package: ppp-mod-pptp
Version: 2.4.7-5
Depends: libc, kmod-pptp, kmod-mppe, resolveip
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16089
Filename: ppp-mod-pptp_2.4.7-5_ramips_24kec.ipk
Size: 16774
MD5Sum: fb4782edcf305069ba3f6fa4ad72c372
SHA256sum: 9c83ec32e51033579b5d6d739ec771dfe030ade874d774d01030fa5f2830474b
Description: This package contains a PPtP plugin for ppp.
Package: ppp-mod-radius
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21942
Filename: ppp-mod-radius_2.4.7-5_ramips_24kec.ipk
Size: 22771
MD5Sum: d7049765d7c7070d11ad6189a70cd878
SHA256sum: 6c1c66f5aa54f9a1edb815502270f17de31428e59fb3b3608055ccbed2c45c24
Description: This package contains a RADIUS (Remote Authentication Dial-In User Service)
plugin for ppp.
Package: ppp-multilink
Version: 2.4.7-5
Depends: libc, kmod-ppp
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 119193
Filename: ppp-multilink_2.4.7-5_ramips_24kec.ipk
Size: 119725
MD5Sum: 7d2e8bc2de487979c6b19a8965b645a3
SHA256sum: e8488feace825dfd26f90e7f796d04ace38b26c7c07f84520f152327d3fe3de6
Description: PPP daemon (with multilink support)
Package: ppp
Version: 2.4.7-5
Depends: libc, kmod-ppp
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106766
Filename: ppp_2.4.7-5_ramips_24kec.ipk
Size: 107432
MD5Sum: a879860b6b1c0265f74979097e1a8b84
SHA256sum: fc0bfbe2bc923ff6ffaec01409f57ce9483f2e0a6b2c3932e250901627491ddd
Description: This package contains the PPP (Point-to-Point Protocol) daemon.
Package: pppdump
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22026
Filename: pppdump_2.4.7-5_ramips_24kec.ipk
Size: 22743
MD5Sum: 7764aecf7eeead50d3329be9d845c0a6
SHA256sum: 32befa14b40390809d8e2cdc58e2cf8a20b6f0115536cb58d40d3cf21253dc00
Description: This package contains an utility to read PPP record file.
Package: pppstats
Version: 2.4.7-5
Depends: libc
Source: package/network/services/ppp
License: BSD-4-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5001
Filename: pppstats_2.4.7-5_ramips_24kec.ipk
Size: 5727
MD5Sum: 3fa9006c8efe6f5d7c28e5452d73eec7
SHA256sum: 693979dcedcb85be61edc139f4e8c5f35bcf3e09b24a75ebf272c5da473c6723
Description: This package contains an utility to report PPP statistics.
Package: procd
Version: 2015-03-18-0cf744c720c9ed01c2dae25f338d4e96b9db95e3
Depends: libc, ubusd, ubus, libjson-script, ubox, libubox, libubus
Source: package/system/procd
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33770
Filename: procd_2015-03-18-0cf744c720c9ed01c2dae25f338d4e96b9db95e3_ramips_24kec.ipk
Size: 34493
MD5Sum: fbcbbd50d806a6209b9d9606bb6b776c
SHA256sum: 85b8a389acc05ae604d2d976430df67a0f0232481df00a84fcffc3ad70176597
Description: OpenWrt system process manager
Package: px5g-standalone
Version: 2
Depends: libc
Source: package/utils/px5g-standalone
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27187
Filename: px5g-standalone_2_ramips_24kec.ipk
Size: 28032
MD5Sum: b705ff18dbc86c39a2515e7b920c362a
SHA256sum: 0921fce85663735bbfbd1c329cfdc7e33162c4a7b140e35b78d22956c2ff067a
Description: Px5g is a tiny standalone X.509 certificate generator.
It suitable to create key files and certificates in DER
and PEM format for use with stunnel, uhttpd and others.
Package: px5g
Version: 3
Depends: libc, libpolarssl
Source: package/utils/px5g
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4075
Filename: px5g_3_ramips_24kec.ipk
Size: 4841
MD5Sum: b7bf01243390c1952fefe153204c4da0
SHA256sum: 79044006e2a1fda48937c3e864185756e3e2e716bb975b01fcbb0a0b6373a6ae
Description: Px5g is a tiny standalone X.509 certificate generator.
It suitable to create key files and certificates in DER
and PEM format for use with stunnel, uhttpd and others.
Package: qos-scripts
Version: 1.2.1-7
Depends: libc, tc, kmod-sched-core, kmod-sched-connmark, kmod-ifb, iptables, iptables-mod-filter, iptables-mod-ipopt, iptables-mod-conntrack-extra
Source: package/network/config/qos-scripts
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: all
Installed-Size: 6402
Filename: qos-scripts_1.2.1-7_all.ipk
Size: 7306
MD5Sum: 108d32ea06e4e492d6e668c8cf45faaa
SHA256sum: f12fac037a601bdc960d8dc03e35b5fd0c80208fe5d2fb999a596668953d3b93
Description: A set of scripts that abstract QoS configuration into a simple
configuration file supporting stanzas that specify any number of QoS
entries.
Package: r8169-firmware
Version: 2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1
Depends: libc
Source: package/firmware/linux-firmware
Section: firmware
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14594
Filename: r8169-firmware_2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1_ramips_24kec.ipk
Size: 15265
MD5Sum: dca5cda2e1860b9a0155042d60eeeda7
SHA256sum: 56219985793f952d8570db4eedaa9e3ceaf3a7fcb03c24707bdb045f0e8c433f
Description: RealTek r8169 firmware
Package: r8188eu-firmware
Version: 2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1
Depends: libc
Source: package/firmware/linux-firmware
Section: firmware
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8306
Filename: r8188eu-firmware_2014-03-16-f8c22c692bdee57a20b092e647464ff6176df3ed-1_ramips_24kec.ipk
Size: 9080
MD5Sum: f0c218958763ae4598e95a8ef7ee2496
SHA256sum: 24a6081d8cf9af17ed7990b72d097488b0dbdb8c01f082f69745520ee380fac3
Description: RealTek r8188eu firmware
Package: relayd
Version: 2015-03-13-2970ff60bac6b70ecb682779d5c776dc559dc0b9
Depends: libc, libubox
Source: package/network/services/relayd
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10020
Filename: relayd_2015-03-13-2970ff60bac6b70ecb682779d5c776dc559dc0b9_ramips_24kec.ipk
Size: 10805
MD5Sum: b5508d9e3dd447c359b4d070dcad5397
SHA256sum: 6c18b232ea7f6e13c61688f9633c910c423879e90ba2a0871f4cae830aa3f40b
Description: Transparent routing / relay daemon
Package: rename
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 3277
Filename: rename_2.25.2-4_ramips_24kec.ipk
Size: 4100
MD5Sum: 0bf3167a51dfcbdbd68edf9f53326397
SHA256sum: 3de92519e6464873df066c4d3170f4892e68d3fbb1accf837b65bd3efdb41e10
Description: rename will rename the specified files by replacing the first occurrence of
expression in their name by replacement
Package: resize2fs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 19007
Filename: resize2fs_1.42.4-2_ramips_24kec.ipk
Size: 19654
MD5Sum: e135914fc6bd0efccad64d67c6f6d459
SHA256sum: 0dcd204bed9d1701fe79332765a9125c7d6abe1e96ffeea4feff2e0a58a821b3
Description: Ext2 Filesystem resize utility
Package: resolveip
Version: 2
Depends: libc
Source: package/network/utils/resolveip
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1959
Filename: resolveip_2_ramips_24kec.ipk
Size: 2831
MD5Sum: 59af5e9c366078c6b100b46f1444145d
SHA256sum: ab822c5da1f905248109381c3745c464ea7c2467d2cf9ae4c9ec937a22d0b671
Description: This package contains the small resolveip utility which
can be used by scripts to turn host names into numeric
IP addresses. It supports IPv4 and IPv6 resolving and
has a configurable timeout to guarantee a certain maximum
runtime in case of slow or defunct DNS servers.
Package: robocfg
Version: 0.01-1
Depends: libc
Source: package/utils/robocfg
Section: utils
Architecture: ramips_24kec
Installed-Size: 5458
Filename: robocfg_0.01-1_ramips_24kec.ipk
Size: 6144
MD5Sum: da8c90573566954c7a8e23df5cb06b79
SHA256sum: 0ebcb049cbee15ae1f0daa74a85ebe8e5b401f8adb11d5beecb749821a7f6a46
Description: This package contains an utility for configuring the Broadcom BCM5325E/536x
based switches.
Package: rpcd-mod-file
Version: 2015-03-11-361b823e8d670bc122349041294983468ef36845
Depends: libc, libubus, libubox, rpcd
Source: package/system/rpcd
License: ISC
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5221
Filename: rpcd-mod-file_2015-03-11-361b823e8d670bc122349041294983468ef36845_ramips_24kec.ipk
Size: 5987
MD5Sum: ec1053e96e06f8e1063d5e7166f031f3
SHA256sum: f8378a1e0afc4620dfac79cfc12ef7ec3f11da1115b56502b5cfcc73891ebda8
Description: Provides ubus calls for file and directory operations.
Package: rpcd-mod-iwinfo
Version: 2015-03-11-361b823e8d670bc122349041294983468ef36845
Depends: libc, libubus, libubox, rpcd, libiwinfo
Source: package/system/rpcd
License: ISC
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5672
Filename: rpcd-mod-iwinfo_2015-03-11-361b823e8d670bc122349041294983468ef36845_ramips_24kec.ipk
Size: 6470
MD5Sum: 3fd2592d522a69a2b5f26f21d61cbe6e
SHA256sum: 6cfe8ae62b5da4cdb6e610d40cd9e7110593e8d22b17f194034ecccd363d0efb
Description: Provides ubus calls for accessing iwinfo data.
Package: rpcd
Version: 2015-03-11-361b823e8d670bc122349041294983468ef36845
Depends: libc, libubus, libubox, libuci, libblobmsg-json
Source: package/system/rpcd
License: ISC
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18559
Filename: rpcd_2015-03-11-361b823e8d670bc122349041294983468ef36845_ramips_24kec.ipk
Size: 19366
MD5Sum: f06c1ae4ff199a83eb8fcd16bb155693
SHA256sum: cee3010c1314ad1c6393c32b8d5c7dfa4436951f16ebfe9483ecec7895cb9e4e
Description: This package provides the UBUS RPC backend server to expose various
functionality to frontend programs via JSON-RPC.
Package: rssileds
Version: 0.2-1
Depends: libc, libiwinfo
Source: package/network/utils/rssileds
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3646
Filename: rssileds_0.2-1_ramips_24kec.ipk
Size: 4375
MD5Sum: f5215c24ee01885dd77de677ef63216f
SHA256sum: 3c453d0c5b5297ba05856e00b9c7ecc94af487434198897d34c894a7657323c0
Description: A small process written in C to update the signal-strength indicator LEDs
Package: samba36-client
Version: 3.6.25-1
Depends: libc, libreadline, libncurses
Source: package/network/services/samba36
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 428784
Filename: samba36-client_3.6.25-1_ramips_24kec.ipk
Size: 428129
MD5Sum: 5c49b6340d6964ece68c625ec035b416
SHA256sum: 9533abfe63c8f7a1f34edf16bd7bf316acb00d11e1bd7c1a9c092419806c7b58
Description: Samba 3.6 SMB/CIFS client
Package: samba36-server
Version: 3.6.25-1
Depends: libc
Source: package/network/services/samba36
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 901082
Filename: samba36-server_3.6.25-1_ramips_24kec.ipk
Size: 881390
MD5Sum: 36ae7b09c8e89fc116551257648a988b
SHA256sum: 5bcf860a127b7d25fe7628fe0a389b8cfc2703573b4af814ed1d7b116cc1de8e
Description: The Samba software suite is a collection of programs that implements the
SMB protocol for UNIX systems, allowing you to serve files and printers to
Windows, NT, OS/2 and DOS clients. This protocol is sometimes also referred
to as the LanManager or Netbios protocol.
Package: script-utils
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 9448
Filename: script-utils_2.25.2-4_ramips_24kec.ipk
Size: 10217
MD5Sum: 85dc5f178fbe029744f94c4cfe4e5114
SHA256sum: f907b9b6233977a5d40a58105c77d07cb0feb686b53810ebdfa8c963a3767e73
Description: contains: script, scriptreplay
Package: setterm
Version: 2.25.2-4
Depends: libc, libncurses
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 11507
Filename: setterm_2.25.2-4_ramips_24kec.ipk
Size: 12335
MD5Sum: aa71ef932667957b72e9a5a142351909
SHA256sum: b4560d3fed0447ecbdeeeb1c6fe60f91cfe8d98c5d607e50a8abfcacac816a2c
Description: setterm writes to standard output a character string that will invoke the
specified terminal capabilities
Package: sfdisk
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 35612
Filename: sfdisk_2.25.2-4_ramips_24kec.ipk
Size: 36441
MD5Sum: ce1a235abc4fa7d82557e154e432f358
SHA256sum: 9c93b5a4df5ad08a561cb246b70a3cf46accc9d82b8ae47d4dbd3bb66a70f0ad
Description: list the size of a partition, list the partitions on a device, check the
partitions on a device and repartition a device
Package: sockd
Version: 1.2.2-1
Depends: libc
Source: package/network/utils/dante
License: BSD-4-Clause
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105383
Filename: sockd_1.2.2-1_ramips_24kec.ipk
Size: 106189
MD5Sum: f0d7ce1d368e64c0fdd598f27ae96022
SHA256sum: f660f09a92709976fc00157a5def90b0b0a407904d0216391eee4d7c83a47371
Description: Dante is a circuit-level firewall/proxy that can be used to provide convenient
and secure network connectivity, requiring only that the server Dante runs on
has external network connectivity. Dante is used daily by Fortune 100 companies
and large international organizations, either as a standard SOCKS server or as
a "reverse proxy".
This package provides the Dante sockd daemon.
Package: socksify
Version: 1.2.2-1
Depends: libc
Source: package/network/utils/dante
License: BSD-4-Clause
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90026
Filename: socksify_1.2.2-1_ramips_24kec.ipk
Size: 90989
MD5Sum: 9328cc21be0fa5b0bb385942589b4942
SHA256sum: 5df198da40f1641669238265c9218edc298a18e213771954cce0fa222d4330a3
Description: Dante is a circuit-level firewall/proxy that can be used to provide convenient
and secure network connectivity, requiring only that the server Dante runs on
has external network connectivity. Dante is used daily by Fortune 100 companies
and large international organizations, either as a standard SOCKS server or as
a "reverse proxy".
This package provides the Dante socksify client.
Package: spidev-test
Version: 3.18.9-3.18.9
Depends: libc, kmod-spi-dev
Source: package/utils/spidev_test
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2898
Filename: spidev-test_3.18.9-3.18.9_ramips_24kec.ipk
Size: 3638
MD5Sum: ac0ee901473dd125aa07b71d63304929
SHA256sum: cb9b340f9fa69d70b81853469f2a679492220ff5b1284629a2cbda56bdc8a586
Description: SPI testing utility.
Package: ss
Version: 3.19.0-1
Depends: libc, libnl-tiny
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29249
Filename: ss_3.19.0-1_ramips_24kec.ipk
Size: 29931
MD5Sum: eb904f655944ac05a15a3b9ac82f1df9
SHA256sum: f0d47e50029837274c5d14b088d80894a90b2d089357ad413c86f24462996450
Description: Socket statistics utility
Package: strace
Version: 4.8-1
Depends: libc
Source: package/devel/strace
License: BSD-3c
LicenseFiles: COPYRIGHT
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105090
Filename: strace_4.8-1_ramips_24kec.ipk
Size: 100687
MD5Sum: 17cf070ae374c64e04349c839408776b
SHA256sum: 76c04173785231ae7b56abcbdb0832dc0d3600a96b11c94b3758e5f73e03f8c2
Description: A useful diagnostic, instructional, and debugging tool. Allows you to track what
system calls a program makes while it is running.
Package: swap-utils
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 26593
Filename: swap-utils_2.25.2-4_ramips_24kec.ipk
Size: 27278
MD5Sum: 1da1067ae5e1e97b86882337a5514549
SHA256sum: 861d0efd5fd923b05054a2f6a524d05fa31a4a6b6dcc40fc3142190385395478
Description: contains: mkswap, swaplabel
Package: swconfig
Version: 10
Depends: libc, libuci, libnl-tiny
Source: package/network/config/swconfig
License: GPL-2.0
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7955
Filename: swconfig_10_ramips_24kec.ipk
Size: 8726
MD5Sum: 262542d75272b045a3e7ba7c945f121a
SHA256sum: 9c8814bdd4863900f6aa2c3723216d3f3e6c21eba076de34ba0259050c9178c6
Description: Switch configuration utility
Package: sysfsutils
Version: 2.1.0-2
Depends: libc, libsysfs
Source: package/libs/sysfsutils
License: LGPL-2.1
LicenseFiles: COPYING cmd/GPL lib/LGPL
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7091
Filename: sysfsutils_2.1.0-2_ramips_24kec.ipk
Size: 7900
MD5Sum: caf19638b692b9f0ce39b9c985176adf
SHA256sum: 2c601a26cc2e9a3945d4a133da291c67d36ce53a955f21e10778f91cc21456c9
Description: A utility built upon libsysfs that lists devices by bus, class, and topology.
Package: tc
Version: 3.19.0-1
Depends: libc, kmod-sched-core
Source: package/network/utils/iproute2
License: GPL-2.0
Section: net
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 95507
Filename: tc_3.19.0-1_ramips_24kec.ipk
Size: 96187
MD5Sum: 8e05b1efd232dde4f39ad9ac2e825ca4
SHA256sum: a7e63f249056897b7570cdbcaccb9904f66e19ff7aed25de2c779f43e23994ba
Description: Traffic control utility
Package: tcpdump-mini
Version: 4.5.1-4
Depends: libc, libpcap
Source: package/network/utils/tcpdump
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153696
Filename: tcpdump-mini_4.5.1-4_ramips_24kec.ipk
Size: 154350
MD5Sum: 4b172d0c9644d7edf85ec5a783f57602
SHA256sum: 7ee9a80c3b5eadcb7e68a2154e6b9c9881d693a85cc3069295004be1e718a155
Description: Network monitoring and data acquisition tool (minimal version)
Package: tcpdump
Version: 4.5.1-4
Depends: libc, libpcap
Source: package/network/utils/tcpdump
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 293767
Filename: tcpdump_4.5.1-4_ramips_24kec.ipk
Size: 293879
MD5Sum: 281b195a506ce7d0e8ff96fed0284f04
SHA256sum: 41bb129acbdc47a3452969c1a63b4d7d4e97abaf1f97390eb2bbc90c1e7aa529
Description: Network monitoring and data acquisition tool
Package: terminfo
Version: 5.9-1
Depends: libc
Source: package/libs/ncurses
License: MIT
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 5794
Filename: terminfo_5.9-1_ramips_24kec.ipk
Size: 6455
MD5Sum: 645bbf760a1921f8653f778b04928db9
SHA256sum: c58d307cf564f78c443253b48eee87195b37bc062bb975279b944df42433b97b
Description: Terminal Info Database (ncurses)
Package: thc-ipv6-address6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24055
Filename: thc-ipv6-address6_2.7-1_ramips_24kec.ipk
Size: 24727
MD5Sum: 53b3022bc4189f73940cdc4490d1ce35
SHA256sum: df2b6a80488a4176e52dc7f0bc9339509bd5c427814635d201b9cbaff8c63b96
Description: This package contains the address6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-alive6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39222
Filename: thc-ipv6-alive6_2.7-1_ramips_24kec.ipk
Size: 39956
MD5Sum: e6a00c1e934ab0cdb36f11c272f46bb8
SHA256sum: 37fb28ec0293a9cc3468f60f225ee0252e8055e7e3fdd3d2486c14502262b46e
Description: This package contains the alive6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-covert-send6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22675
Filename: thc-ipv6-covert-send6_2.7-1_ramips_24kec.ipk
Size: 23383
MD5Sum: b4401d544f142770d536c1f83cec4796
SHA256sum: 141fad8d0d3865331155b900cfcd8ac01d31b123dd3658c5aafa11caf343c6ac
Description: This package contains the covert_send6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-covert-send6d
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22680
Filename: thc-ipv6-covert-send6d_2.7-1_ramips_24kec.ipk
Size: 23407
MD5Sum: 2230b8b38375236c55db919dbe5ac812
SHA256sum: 34357a2ae68a2da2930042d5cbe6b624cf1e907ced38ae10ea2be64eca3b6323
Description: This package contains the covert_send6d utility of the THC-IPv6 toolkit.
Package: thc-ipv6-denial6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25257
Filename: thc-ipv6-denial6_2.7-1_ramips_24kec.ipk
Size: 25932
MD5Sum: 3ccb7668fd8c6dc9be56d1d86e9528b3
SHA256sum: 413375774f9657ae8a80f030fcc6618017b2be76df6572971ade4638c6d36252
Description: This package contains the denial6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-detect-new-ip6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23536
Filename: thc-ipv6-detect-new-ip6_2.7-1_ramips_24kec.ipk
Size: 24297
MD5Sum: 1b16c7c3ae9a799ccbc5ae67ab4e011f
SHA256sum: a3080b2f129b1b857cd018a1ae6236ade6b8eeae7c7394b9789f0b0b5d550466
Description: This package contains the detect-new-ip6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-detect-sniffer6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24257
Filename: thc-ipv6-detect-sniffer6_2.7-1_ramips_24kec.ipk
Size: 24966
MD5Sum: 4f7a1ceb6d86fb761af46d13ff498511
SHA256sum: 8f9eeddfb83afc5c7d48642f443f7d701798735909405275f7bf6cb0c37d0b05
Description: This package contains the detect_sniffer6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dnsdict6
Version: 2.7-1
Depends: libc, libpcap, libpthread
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 101249
Filename: thc-ipv6-dnsdict6_2.7-1_ramips_24kec.ipk
Size: 87048
MD5Sum: 643adc1cab31aa564b5617e7a57ec49e
SHA256sum: 2e036001ccdff0d8e71ea534f115ec275196fa0ec5789daa4e911b99eabff183
Description: This package contains the dnsdict6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dnsrevenum6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26229
Filename: thc-ipv6-dnsrevenum6_2.7-1_ramips_24kec.ipk
Size: 26938
MD5Sum: 385843c9f0ea38988a96c3604447f9ea
SHA256sum: 8d01120472fd7df56e99128cc14bd1a54181847b4fed6ad2254c19f87a244f7c
Description: This package contains the dnsrevenum6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dos-new-ip6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24206
Filename: thc-ipv6-dos-new-ip6_2.7-1_ramips_24kec.ipk
Size: 24872
MD5Sum: d1562e0c39d6aacdd2b76e726cd2022c
SHA256sum: 615aaf0b512f43fc48b326689f9207d5f3d6ef8afc8594750428dc965f9ff71a
Description: This package contains the dos-new-ip6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-dump-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24875
Filename: thc-ipv6-dump-router6_2.7-1_ramips_24kec.ipk
Size: 25587
MD5Sum: 1cac6acc771ed4bac2ee716e8b2445b6
SHA256sum: 6c23958f6323e5b2e79d3a987bad5c3e0288d46b298216d0e9c02370b27a7f24
Description: This package contains the dump_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-exploit6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25200
Filename: thc-ipv6-exploit6_2.7-1_ramips_24kec.ipk
Size: 25869
MD5Sum: 5dca0f8dacd832cc1745460cd0e568b3
SHA256sum: 1e86ef4fbf6c5ca1eda1113b4a08fd234fbcb8db4e974603f366dcb357c243ac
Description: This package contains the exploit6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-advertise6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24703
Filename: thc-ipv6-fake-advertise6_2.7-1_ramips_24kec.ipk
Size: 25372
MD5Sum: 23c87e68c0c02d887057d5fdddd6c18b
SHA256sum: 44851e908c9432c9da0d5db0eb001d118db4a32559b198c16b8f870822c87e2f
Description: This package contains the fake_advertise6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-dhcps6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25332
Filename: thc-ipv6-fake-dhcps6_2.7-1_ramips_24kec.ipk
Size: 26023
MD5Sum: d39ef92e94ee4b05633741da65fda8e7
SHA256sum: d01d36597a34746f94c34da6076b25c64b73e7c784d00da7f2e9b629a6130732
Description: This package contains the fake_dhcps6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-dns6d
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24199
Filename: thc-ipv6-fake-dns6d_2.7-1_ramips_24kec.ipk
Size: 24855
MD5Sum: 440d5bf3e19a856b08379457a04c82fb
SHA256sum: 7ddc8ef6a3363db8baecac7c08c3314a09e765a9431ac718f96538ffead35bc6
Description: This package contains the fake_dns6d utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-dnsupdate6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23957
Filename: thc-ipv6-fake-dnsupdate6_2.7-1_ramips_24kec.ipk
Size: 24663
MD5Sum: d14b5b114ef2fc2b6b07b56b73af842c
SHA256sum: 270634d87edeb784f1f22f6092c73221eb2543f08542dd05fa781ad21fcb2793
Description: This package contains the fake_dnsupdate6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mipv6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23426
Filename: thc-ipv6-fake-mipv6_2.7-1_ramips_24kec.ipk
Size: 24153
MD5Sum: e68642958802d22cfac58df2fcdb6097
SHA256sum: 0ff24ef567f58f7bca71d0a53d150d00304c6d521bb4b7eb8adf83ca8fac9e2c
Description: This package contains the fake_mipv6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mld26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24930
Filename: thc-ipv6-fake-mld26_2.7-1_ramips_24kec.ipk
Size: 25587
MD5Sum: c1d74a76100365b643cb80a23084dcac
SHA256sum: 67a8778e126c699a7b99f475a9f529b1bd84f54c3c64c4eacece8d472b484f84
Description: This package contains the fake_mld26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mld6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24446
Filename: thc-ipv6-fake-mld6_2.7-1_ramips_24kec.ipk
Size: 25138
MD5Sum: c5c6a7d1eeb414c41d5a47930e1931f0
SHA256sum: 1ece28ec6987bdac83cda0b87fce349f08debd0f6299e8db0f88fa318489fc6c
Description: This package contains the fake_mld6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-mldrouter6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23948
Filename: thc-ipv6-fake-mldrouter6_2.7-1_ramips_24kec.ipk
Size: 24631
MD5Sum: 7d154aedb43996f996fea1fdb308dc0e
SHA256sum: a872e6d580bab0ec29839ad0dc2a58a8aebdce1f3a940ca51637fd5765fa39f7
Description: This package contains the fake_mldrouter6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-router26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28344
Filename: thc-ipv6-fake-router26_2.7-1_ramips_24kec.ipk
Size: 29093
MD5Sum: 858aeff3aac74069a2946cf8639f2f4f
SHA256sum: 7a57f36f9940f7cc453dcf68b18193c9d0c002e001cd20e17947ef1ad7d10f55
Description: This package contains the fake_router26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25195
Filename: thc-ipv6-fake-router6_2.7-1_ramips_24kec.ipk
Size: 25917
MD5Sum: 3a1c439ee34b6c1356461ebb355287e6
SHA256sum: df3611679065eaa610a883d256772ffc59d19457f8739909ffcdfb0fbf4a69d0
Description: This package contains the fake_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fake-solicitate6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24027
Filename: thc-ipv6-fake-solicitate6_2.7-1_ramips_24kec.ipk
Size: 24696
MD5Sum: 17eb1cce73874e640bb4298caa0983d9
SHA256sum: b0573170a2976220ff26792df768500ef6196ccd0302af7ba69e04172811791e
Description: This package contains the fake_solicitate6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-advertise6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23720
Filename: thc-ipv6-flood-advertise6_2.7-1_ramips_24kec.ipk
Size: 24477
MD5Sum: a7f2f51436c9ecc722e5225f7e4a6f73
SHA256sum: fad2df163cfaa38ebf06303a5b201d5c931fbcf0b5d5c2b1cf22732b6393091a
Description: This package contains the flood_advertise6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-dhcpc6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25216
Filename: thc-ipv6-flood-dhcpc6_2.7-1_ramips_24kec.ipk
Size: 25872
MD5Sum: 21f7c63afd5d604d63eb65db5da82862
SHA256sum: 4f4c5faf70f9765d812bc4dd3c806fb599e4f2e719f55f9ac95d2ff7d1da4d14
Description: This package contains the flood_dhcpc6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-mld26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23733
Filename: thc-ipv6-flood-mld26_2.7-1_ramips_24kec.ipk
Size: 24466
MD5Sum: a69408c85a31986b66f30dfa126ba922
SHA256sum: dc54a8592a90547fb29d8ca4782fd9b058b1d93df21dd95862c188eddb28d68c
Description: This package contains the flood_mld26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-mld6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23532
Filename: thc-ipv6-flood-mld6_2.7-1_ramips_24kec.ipk
Size: 24302
MD5Sum: 7fdd25507fb3396aec208fe7aaead067
SHA256sum: 801e45be62a87b6232ed656ffb9e29fac4a7ca86668bcf360921e461d002d4ea
Description: This package contains the flood_mld6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-mldrouter6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23448
Filename: thc-ipv6-flood-mldrouter6_2.7-1_ramips_24kec.ipk
Size: 24175
MD5Sum: 886f11f39e9b03964ff0626909aa6f46
SHA256sum: ca944005b2e115fbc3176da17781c5010893d47b279077dcb1387371c5925e20
Description: This package contains the flood_mldrouter6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-router26
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25324
Filename: thc-ipv6-flood-router26_2.7-1_ramips_24kec.ipk
Size: 26000
MD5Sum: 3e2ffb25221cd4099dc2f0c3c0936a04
SHA256sum: 428ac87279aa02e279faafa256e40c5958677c3e102673a96c0dd7f6bfc441fa
Description: This package contains the flood_router26 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24176
Filename: thc-ipv6-flood-router6_2.7-1_ramips_24kec.ipk
Size: 24837
MD5Sum: 773b677a817b4a5d0d9e35030a761790
SHA256sum: 6ec7a24145366e60ed4d769762145f30a98b7fdd6e93c30e5afcc56f1344e21d
Description: This package contains the flood_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-flood-solicitate6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24050
Filename: thc-ipv6-flood-solicitate6_2.7-1_ramips_24kec.ipk
Size: 24775
MD5Sum: 3f92e0fdf75b046d73b14c10f5377023
SHA256sum: 4e856c1964d221ab66220687abb7c519db32a48def997d85f09291492da5a0da
Description: This package contains the flood_solicitate6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fragmentation6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34512
Filename: thc-ipv6-fragmentation6_2.7-1_ramips_24kec.ipk
Size: 35323
MD5Sum: 1e6ff1558f2fcd10288078eb92cff48b
SHA256sum: e4f36e303ef7e1f8f88946046fdb26689fba8c9ee094e385f45821e06ac6d7e2
Description: This package contains the fragmentation6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fuzz-dhcpc6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29908
Filename: thc-ipv6-fuzz-dhcpc6_2.7-1_ramips_24kec.ipk
Size: 30629
MD5Sum: 633ed7fa2f8f41739d579d87a3d21a84
SHA256sum: 987d909820f7a64e43e2a93ebf50c7a80e9c01b5e6d386d5e197fca024173569
Description: This package contains the fuzz_dhcpc6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fuzz-dhcps6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29433
Filename: thc-ipv6-fuzz-dhcps6_2.7-1_ramips_24kec.ipk
Size: 30119
MD5Sum: 272672aa90791e370e0a0e6701db449a
SHA256sum: a764fa9028db54f35442a863240f509a8989a5231d7de73309109ad2a749bd6d
Description: This package contains the fuzz_dhcps6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-fuzz-ip6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30211
Filename: thc-ipv6-fuzz-ip6_2.7-1_ramips_24kec.ipk
Size: 30931
MD5Sum: 528660850e1e3af21cd4ca620a72cbeb
SHA256sum: 7ec9ef74cabf039aa111c16c7854d16de28b402e81574d8a8d48a117f5bfe956
Description: This package contains the fuzz_ip6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-implementation6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36879
Filename: thc-ipv6-implementation6_2.7-1_ramips_24kec.ipk
Size: 37689
MD5Sum: 974b9123536ef5d2a3f66667ea440c51
SHA256sum: a7f12b9db3b435c28c76ede2b8fed6ec04dc9c72c42bae1e2b8670c9f95e2397
Description: This package contains the implementation6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-implementation6d
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23640
Filename: thc-ipv6-implementation6d_2.7-1_ramips_24kec.ipk
Size: 24389
MD5Sum: b74f1335fddb00b289aba3472a238caf
SHA256sum: 8a3bde6c2da40c34c3ce62af3b4e6708890f4c6094f91e716a7715ebbb31cac0
Description: This package contains the implementation6d utility of the THC-IPv6 toolkit.
Package: thc-ipv6-inverse-lookup6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23718
Filename: thc-ipv6-inverse-lookup6_2.7-1_ramips_24kec.ipk
Size: 24468
MD5Sum: 1b544e1b155d38ee81d22605aba389df
SHA256sum: 429452babfcef834fe94734944186d4baddbcb7cc49f258f235440bdfc4b92db
Description: This package contains the inverse_lookup6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-kill-router6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24654
Filename: thc-ipv6-kill-router6_2.7-1_ramips_24kec.ipk
Size: 25313
MD5Sum: 476c403ab829fe93c916365cb0b42370
SHA256sum: e0cb3d92292589519f104b02c583f35fc8d9ba6cc0b0468d7ca24f7e36487b66
Description: This package contains the kill_router6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-ndpexhaust6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23616
Filename: thc-ipv6-ndpexhaust6_2.7-1_ramips_24kec.ipk
Size: 24384
MD5Sum: 8534bae9875fb86c98896988c67e6e77
SHA256sum: 2db6c328ddc83695f8bb45a31c635efc3493305a29c6684fdc1d441e25f21e59
Description: This package contains the ndpexhaust6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-node-query6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23957
Filename: thc-ipv6-node-query6_2.7-1_ramips_24kec.ipk
Size: 24631
MD5Sum: 2aceacef8e9ac8265dfc0414da918dd4
SHA256sum: 26d50cad62a973173090a342395f1dbe1f62f043b61206d41fce76253456485d
Description: This package contains the node_query6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-parasite6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26406
Filename: thc-ipv6-parasite6_2.7-1_ramips_24kec.ipk
Size: 27110
MD5Sum: 24581821e7a802f45b606c78fd50ec58
SHA256sum: d131ed2b27abc6b823d956f63ed57fd66706b19037f48b1a15e3a552873def38
Description: This package contains the parasite6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-passive-discovery6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24605
Filename: thc-ipv6-passive-discovery6_2.7-1_ramips_24kec.ipk
Size: 25318
MD5Sum: fa0d0207fe812ce7fd74c69e3c6b5ad7
SHA256sum: dc96c77cf5347b83415829f903a2cb238497876915de8a4902b29247f986964e
Description: This package contains the passive_discovery6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-randicmp6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23652
Filename: thc-ipv6-randicmp6_2.7-1_ramips_24kec.ipk
Size: 24369
MD5Sum: 9d227e32d3f4da1d3ff3ff2bbde7b58c
SHA256sum: f85e4379bf023f31779fe6096012a1847f37991dc455ced7751fecc61b4be0f3
Description: This package contains the randicmp6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-redir6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23573
Filename: thc-ipv6-redir6_2.7-1_ramips_24kec.ipk
Size: 24343
MD5Sum: e805b1db65df0d21011996350b275385
SHA256sum: 33ad37ad3542e171c1747bb3a67aa033dd5c3ef77d0d4242be930a96132212a7
Description: This package contains the redir6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-rsmurf6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23223
Filename: thc-ipv6-rsmurf6_2.7-1_ramips_24kec.ipk
Size: 23982
MD5Sum: 1cd6dc5c36c2af908f1e195aabe306d8
SHA256sum: bd5fbb982328f0da090c9d1d6c6878bb2fd7ef736ffb2359d8eadab6987283c1
Description: This package contains the rsmurf6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-sendpees6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22671
Filename: thc-ipv6-sendpees6_2.7-1_ramips_24kec.ipk
Size: 23387
MD5Sum: 8c5d2d96f925638c1f996901512ae1f6
SHA256sum: 39b75d8019d21deb959e48f8004d719659d1676b3294d50f8c9a9f8cdf8119d9
Description: This package contains the sendpees6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-sendpeesmp6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22675
Filename: thc-ipv6-sendpeesmp6_2.7-1_ramips_24kec.ipk
Size: 23367
MD5Sum: 485a4522439761a96340312e9fd5c96c
SHA256sum: ac40af3b495ca856e90888304185a8f6a7ccec931eb36c127ea40aebc8d2a5dc
Description: This package contains the sendpeesmp6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-smurf6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23221
Filename: thc-ipv6-smurf6_2.7-1_ramips_24kec.ipk
Size: 23946
MD5Sum: 210f5c8d4467c2d2af8ae6e37b5a5bed
SHA256sum: 2825b577b390c4e2b2bc991de2b36e7d0aae907014c6fee3c59b39e6b1e8dd8c
Description: This package contains the smurf6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-thcping6
Version: 2.7-1
Depends: libc, libpcap, librt
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28130
Filename: thc-ipv6-thcping6_2.7-1_ramips_24kec.ipk
Size: 28884
MD5Sum: 6d39ee6ad9edc1100355db120f87db27
SHA256sum: 0c3955a1b7b2ba864fac0d2139de9fbfb2e3ece29467db944c2bd06c25221dfb
Description: This package contains the thcping6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-toobig6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23445
Filename: thc-ipv6-toobig6_2.7-1_ramips_24kec.ipk
Size: 24167
MD5Sum: b19bdbaa552261447be63d267839f008
SHA256sum: c8480b0d16cecfb86003e49e3e284e8760bdf6b220cb70c5006e86a56248186d
Description: This package contains the toobig6 utility of the THC-IPv6 toolkit.
Package: thc-ipv6-trace6
Version: 2.7-1
Depends: libc, libpcap
Source: package/network/ipv6/thc-ipv6
License: GPL-3.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28245
Filename: thc-ipv6-trace6_2.7-1_ramips_24kec.ipk
Size: 29031
MD5Sum: 382e85ade571992bba6d3390f11da905
SHA256sum: 3d80ba04ff7e3c13c34a94de2c0760d263982c97da5f2b99033ec4cb3abd3528
Description: This package contains the trace6 utility of the THC-IPv6 toolkit.
Package: trace-cmd-extra
Version: v2.4-1
Depends: libc
Source: package/devel/trace-cmd
License: GPL-2.0
Section: devel
Architecture: ramips_24kec
Installed-Size: 9845
Filename: trace-cmd-extra_v2.4-1_ramips_24kec.ipk
Size: 10484
MD5Sum: 371ad7d3de15658fba2ff22970491293
SHA256sum: 2debea42ddb48121cfb43da28a6617772fb961f6fb13c27f4db6a95be1edad3d
Description: Extra plugins for trace-cmd
Package: trace-cmd
Version: v2.4-1
Depends: libc
Source: package/devel/trace-cmd
License: GPL-2.0
Section: devel
Architecture: ramips_24kec
Installed-Size: 100922
Filename: trace-cmd_v2.4-1_ramips_24kec.ipk
Size: 101640
MD5Sum: 1214197b2c962336b789ea2e29c053f9
SHA256sum: 651471cf12a63deb3db96c62bb128fdb0e2344c69ae19a222aa7df8b7d5cf561
Description: Linux trace command line utility
Package: tune2fs
Version: 1.42.4-2
Depends: libc, e2fsprogs
Source: package/utils/e2fsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 40189
Filename: tune2fs_1.42.4-2_ramips_24kec.ipk
Size: 40876
MD5Sum: cdec09f212ae9aaf2ce02b864e13cac8
SHA256sum: 666caa3fdd580c1a8eff8c8f7c5b5cb3f313b3e5fcbcb79d8eb322f04431e4aa
Description: Ext2 Filesystem tune utility
Package: uboot-envtools
Version: 2014.10-2
Depends: libc
Source: package/boot/uboot-envtools
License: GPL-2.0 GPL-2.0+
LicenseFiles: Licenses/README
Section: utils
Architecture: ramips_24kec
Installed-Size: 15530
Filename: uboot-envtools_2014.10-2_ramips_24kec.ipk
Size: 16240
MD5Sum: 3fd5502b577eff0755417ae7bba65d5a
SHA256sum: 514aceb997d97bfa1f2c4159f4e2c2f55d2222ca1096d9be8a38238c3bfc7be1
Description: This package includes tools to read and modify U-Boot bootloader environment.
Package: ubox
Version: 2015-02-26.1-96aa9306d5cc7ebb804ee27f1a920dbd7ef83c17
Depends: libc, libubox, ubusd, ubus, libubus, libuci
Source: package/system/ubox
License: GPL-2.0
Section: base
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23510
Filename: ubox_2015-02-26.1-96aa9306d5cc7ebb804ee27f1a920dbd7ef83c17_ramips_24kec.ipk
Size: 24047
MD5Sum: 183051c47a648fa12e13dbef204179f0
SHA256sum: 4a33564e9632a66849dffcaa7080f77a445592a443650a21a4bf201e92d060dd
Description: OpenWrt system helper toolbox
Package: ubus
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubus, libblobmsg-json, ubusd
Source: package/system/ubus
License: LGPL-2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4198
Filename: ubus_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 4954
MD5Sum: 29255ea97cadace1fc052f690ca4a577
SHA256sum: 3740ccb31d883cdc92034bb3f573ea47de45cd04b6544a72e2b123c41bc13832
Description: OpenWrt RPC client utility
Package: ubusd
Version: 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
Depends: libc, libubox
Source: package/system/ubus
License: LGPL-2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7733
Filename: ubusd_2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09_ramips_24kec.ipk
Size: 8527
MD5Sum: 12fc77a783ce25bda38ca1ba00a10a1e
SHA256sum: 896b41cb94aaa26fc8595cb4378b92e6c1e982661613839b628efac0459aa7d7
Description: OpenWrt RPC daemon
Package: uci
Version: 2014-04-11.1-1
Depends: libc, libuci
Source: package/system/uci
License: LGPL-2.1
Section: base
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6851
Filename: uci_2014-04-11.1-1_ramips_24kec.ipk
Size: 7641
MD5Sum: f76f0d8843465d933467dc2d2f9a3d3d
SHA256sum: 623923207a83f53b971cfa39bc574b602cf86a6085b3c5b39b9b3462712b200c
Description: Utility for the Unified Configuration Interface (UCI)
Package: uclibcxx
Version: 0.2.4-1
Depends: libc
Source: package/libs/uclibc++
License: LGPL-2.1+
Section: libs
Architecture: ramips_24kec
Installed-Size: 64693
Filename: uclibcxx_0.2.4-1_ramips_24kec.ipk
Size: 65314
MD5Sum: 8884b52c986da98ee1afc6350d64622a
SHA256sum: 0e0ea2445d4c2b3d3f6f2a1dbdc68b26f84c7b0b6531873572c6a67e6cb46a61
Description: C++ library for embedded systems
Package: uclient-fetch
Version: 2015-01-19-6c222d0646fa7c07be96d729009916d5af295332
Depends: libc, libuclient
Source: package/libs/uclient
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3947
Filename: uclient-fetch_2015-01-19-6c222d0646fa7c07be96d729009916d5af295332_ramips_24kec.ipk
Size: 4686
MD5Sum: b4da0d728cc3ceb5276f06496e55910a
SHA256sum: 44c6d85c79d445845702c7deed482f2d4611fa6d148528b9f66a95091eeee4f3
Description: Tiny wget replacement using libuclient
Package: udev
Version: 173-1
Depends: libc, librt
Source: package/system/udev
License: GPL-2.0
Section: base
Maintainer: Geoff Levand <[email protected]>
Architecture: ramips_24kec
Installed-Size: 208965
Filename: udev_173-1_ramips_24kec.ipk
Size: 209403
MD5Sum: 71df29403d135259fd715493448928cd
SHA256sum: 9aa74d6040bd6dcf4da769ee8421803c32988151f3afe9495a637dd86fdba32e
Description: udev allows Linux users to have a dynamic /dev directory and it
provides the ability to have persistent device names.
Package: ugps
Version: 2014-08-01-1c31c99edd9de9dcb403750b04041eccc751ac5e
Depends: libc, libubox, libubus
Source: package/utils/ugps
License: GPL-2.0+
Section: utils
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5300
Filename: ugps_2014-08-01-1c31c99edd9de9dcb403750b04041eccc751ac5e_ramips_24kec.ipk
Size: 6070
MD5Sum: 8feb91507596fb39becced7a7341cd48
SHA256sum: 0c789a37af1065faa6fd18579f559c9fba97d211c5b0d24857a842724dd226d2
Description: OpenWrt GPS Daemon
Package: uhttpd-mod-lua
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, uhttpd, liblua
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3732
Filename: uhttpd-mod-lua_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 4511
MD5Sum: c43fd4a04055d808fb6797fa7c3549b8
SHA256sum: a61501a0922e78c6e8a9359f9756541e364b9642c11314539f991cdd4d023008
Description: The Lua plugin adds a CGI-like Lua runtime interface to uHTTPd.
Package: uhttpd-mod-tls
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, uhttpd, libustream-polarssl
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: uhttpd-mod-tls_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 893
MD5Sum: 1ca1349b4299713309b31f04114999cb
SHA256sum: 83a0b81ee7f1f395940aa53c9cb6534816bd95811d555e4f5c399b745cbb567b
Description: The TLS plugin adds HTTPS support to uHTTPd.
Package: uhttpd-mod-ubus
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, uhttpd, libubus, libblobmsg-json
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6202
Filename: uhttpd-mod-ubus_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 7087
MD5Sum: 39240995d47d421ca0cea62eccfe7bab
SHA256sum: a2e4eec06041db6585e671b5ddbbbfd97f6f741b6a2975c8b7a8280b1a716ad6
Description: The ubus plugin adds a HTTP/JSON RPC proxy for ubus and publishes the
session.* namespace and procedures.
Package: uhttpd
Version: 2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f
Depends: libc, libubox
Source: package/network/services/uhttpd
License: ISC
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21237
Filename: uhttpd_2015-03-11-ae3fe30b6a1d4a45a34b3a896e9a4997c5da500f_ramips_24kec.ipk
Size: 22088
MD5Sum: 0a7085b4dbf4d1e37458ccbb63f83264
SHA256sum: 321a07a5f57980f3f082e26b858b7dbe879463562b2918570376855edca9fdd0
Description: uHTTPd is a tiny single threaded HTTP server with TLS, CGI and Lua
support. It is intended as a drop-in replacement for the Busybox
HTTP daemon.
Package: umbim
Version: 2014-12-10-e195e48623be73d9b6a787d7ede951cb426393a9
Depends: libc, libubox, kmod-usb-net, kmod-usb-net-cdc-mbim, wwan
Source: package/network/utils/umbim
License: GPL-2.0
Section: net
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11735
Filename: umbim_2014-12-10-e195e48623be73d9b6a787d7ede951cb426393a9_ramips_24kec.ipk
Size: 12591
MD5Sum: 881716f2817952b85e995fa5acd5d157
SHA256sum: 84f99273aff8ae6ec2422946df52fe8275a3b64fc45cd5a7b859b25612a6bd6c
Description: umbim is a command line tool for controlling mobile broadband modems using
the MBIM-protocol.
Package: uqmi
Version: 2014-12-03-86bcdb8cca652676a78b2df8b5e3fb27a40c60a4
Depends: libc, libubox, libblobmsg-json, kmod-usb-net, kmod-usb-net-qmi-wwan, wwan
Source: package/network/utils/uqmi
License: GPL-2.0
Section: net
Maintainer: Matti Laakso <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19211
Filename: uqmi_2014-12-03-86bcdb8cca652676a78b2df8b5e3fb27a40c60a4_ramips_24kec.ipk
Size: 20056
MD5Sum: 2f889e376f3d33ec5bd33aed2ed9be39
SHA256sum: 889e52a88d1021c41a6c449d0938f90e4c4c51470d062b9ba7f80e1577c3f4d5
Description: uqmi is a command line tool for controlling mobile broadband modems using
the QMI-protocol.
Package: usb-modeswitch
Version: 2014-08-26-993a9a542791953c4804f7ddbb3a07756738e37a
Depends: libc, libubox, libblobmsg-json, libusb-1.0
Source: package/utils/usbmode
License: GPL-2.0
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11897
Filename: usb-modeswitch_2014-08-26-993a9a542791953c4804f7ddbb3a07756738e37a_ramips_24kec.ipk
Size: 12690
MD5Sum: e64d9232f338f87d42a9da6638e6832c
SHA256sum: 5c24a14c0ec6ec29e99347ecdc9c429fd26531773e48dbe99097a7aad37cd548
Description: USB mode switching utility
Package: usbreset
Version: 4
Depends: libc
Source: package/utils/usbreset
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2834
Filename: usbreset_4_ramips_24kec.ipk
Size: 3637
MD5Sum: ad5191e650b9118e9ace2dd8ff43c516
SHA256sum: 83b57b733b2cbe25bf3c62ee1ce553f43958cf34f7f882d5fe20d6437786494f
Description: This package contains the small usbreset utility which
can be used to send a USB port reset to a USB device -
useful for debugging or to force re-detection of particular
devices.
Package: usbutils
Version: 007-1
Depends: libc, libusb-1.0, zlib, librt, libpthread
Source: package/utils/usbutils
Section: utils
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 206346
Filename: usbutils_007-1_ramips_24kec.ipk
Size: 207213
MD5Sum: bf77b644925981cae3c9af507debb57b
SHA256sum: b964d99d59c20f5121d416aded0488af9b3d766d120f31006cb5192fbf3a41e4
Description: USB devices listing utilities
Package: uuidd
Version: 2.25.2-4
Depends: libc, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 10050
Filename: uuidd_2.25.2-4_ramips_24kec.ipk
Size: 10967
MD5Sum: eb02cad5a6787c4a385b61b3d38a3f67
SHA256sum: 9f8c728677dc56ed41b309828449a66785e042ba3faa060c4d119ef2a9760d42
Description: The uuidd daemon is used by the UUID library to generate universally unique
identifiers (UUIDs), especially time-based UUIDs, in a secure and
guaranteed-unique fashion, even in the face of large numbers of threads
running on different CPUs trying to grab UUIDs.
Package: uuidgen
Version: 2.25.2-4
Depends: libc, libuuid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 2569
Filename: uuidgen_2.25.2-4_ramips_24kec.ipk
Size: 3502
MD5Sum: 31fbadd0cc9a11095eddc97b11433dc9
SHA256sum: c6cc2b60f9d4d0ecf1e19de9cba1b439790b86934d8b21dd428e3cf758b5f32c
Description: The uuidgen program creates (and prints) a new universally unique identifier
(UUID) using the libuuid library. The new UUID can reasonably be considered
unique among all UUIDs created on the local system, and among UUIDs created on
other systems in the past and in the future.
Package: valgrind-cachegrind
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1199197
Filename: valgrind-cachegrind_3.10.0-1_ramips_24kec.ipk
Size: 1196793
MD5Sum: 3347bdd26ce0fa8c87577f239ed74681
SHA256sum: 1b9259154d6c853b7d2808e5876b5692f46e970d21c75b5e7882515724308784
Description: debugging and profiling tools for Linux (cache profiling)
Package: valgrind-callgrind
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1239607
Filename: valgrind-callgrind_3.10.0-1_ramips_24kec.ipk
Size: 1236467
MD5Sum: 40542fb0a94e3ae5b1fdbb4c4b210a20
SHA256sum: 44115c3421a758b392529bb49c260843d20f6ad39fa7a070fa4fadbea1a30a35
Description: debugging and profiling tools for Linux (callgraph profiling)
Package: valgrind-drd
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1218046
Filename: valgrind-drd_3.10.0-1_ramips_24kec.ipk
Size: 1215675
MD5Sum: 621d4a7cec13a3c63bb0d5e64aab6f80
SHA256sum: 5179d644470ba67bbe4e451db6c14af3dbe833c8955ea6de093f2c5e733d88f7
Description: debugging and profiling tools for Linux (thread error detection)
Package: valgrind-helgrind
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1236406
Filename: valgrind-helgrind_3.10.0-1_ramips_24kec.ipk
Size: 1233922
MD5Sum: eb2f4c8dacefe09905f118a99761e39f
SHA256sum: 03dd7c69bee6731f0bd3065888fc4db08f7f547a838de8e3b87812406578fdf1
Description: debugging and profiling tools for Linux (thread debugging)
Package: valgrind-massif
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1189750
Filename: valgrind-massif_3.10.0-1_ramips_24kec.ipk
Size: 1186843
MD5Sum: 9e99b6bbce0c043edeb125ffc02b4c00
SHA256sum: e64aa862f8786a057df7cef4c3963859d1db70c139402d3eb8c8194137e47aac
Description: debugging and profiling tools for Linux (heap profiling)
Package: valgrind-vgdb
Version: 3.10.0-1
Depends: libc, valgrind
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15046
Filename: valgrind-vgdb_3.10.0-1_ramips_24kec.ipk
Size: 15779
MD5Sum: d21414dc7aa4f16cd36ffa6f3ed756c3
SHA256sum: ce7c94d9a46fbadceffad072ce198274e0813670048e6d0b060ee843d141ea60
Description: debugging and profiling tools for Linux (GDB interface)
Package: valgrind
Version: 3.10.0-1
Depends: libc, libpthread, librt
Source: package/devel/valgrind
License: GPL-2.0+
Section: devel
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2433946
Filename: valgrind_3.10.0-1_ramips_24kec.ipk
Size: 2427495
MD5Sum: da6d21f99f5049f3cf7a47b3390e5848
SHA256sum: 1a9b606cdbf225e8e779d80389300b8e6b9f927869391b637f2a5cb0207ab012
Description: Valgrind is an award-winning suite of tools for debugging and
profiling Linux programs. With the tools that come with Valgrind,
you can automatically detect many memory management and threading
bugs, avoiding hours of frustrating bug-hunting, making your
programs more stable. You can also perform detailed profiling,
to speed up and reduce memory use of your programs.
Package: wall
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 9264
Filename: wall_2.25.2-4_ramips_24kec.ipk
Size: 10072
MD5Sum: 8d640ea1aaf264b145efa4b6e96d005f
SHA256sum: 8a6bea14f26de2c628ed10f8a8e85708d12d114fa114f6db650eef7c7b7b8f73
Description: wall sends a message to everybody logged in with their mesg permission
set to yes
Package: whereis
Version: 2.25.2-4
Depends: libc
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 7406
Filename: whereis_2.25.2-4_ramips_24kec.ipk
Size: 8237
MD5Sum: ca97c82f3e5b3d02d942e811a1be74aa
SHA256sum: feda18a33893f1164a4f91289e9252f50ee5160907435e91d37d9130b60b5686
Description: whereis locates source/binary and manuals sections for specified files
Package: wipefs
Version: 2.25.2-4
Depends: libc, libblkid
Source: package/utils/util-linux
License: GPL-2.0
LicenseFiles: COPYING getopt/COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
Architecture: ramips_24kec
Installed-Size: 10018
Filename: wipefs_2.25.2-4_ramips_24kec.ipk
Size: 10845
MD5Sum: 5b90cf298f9aa495f3d9397e6df364c4
SHA256sum: 769c3a63a995d88f796c0730271339491719361aff03de67057ec00ab06447a8
Description: wipefs can erase filesystem, raid or partition table signatures (magic
strings) from the specified device to make the signature invisible for
libblkid.
Package: wireless-tools
Version: 29-5
Depends: libc
Source: package/network/utils/wireless-tools
License: GPL-2.0
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22614
Filename: wireless-tools_29-5_ramips_24kec.ipk
Size: 23351
MD5Sum: a1f45e74b57cb7caca663dcba9002410
SHA256sum: ca4dcc3b33e50fb32064e949ea16ef5f6d3cc73e878e42adf1daec534260c3bc
Description: This package contains a collection of tools for configuring wireless
adapters implementing the "Linux Wireless Extensions".
Package: wpa-cli
Version: 2014-10-25-1
Depends: libc
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27853
Filename: wpa-cli_2014-10-25-1_ramips_24kec.ipk
Size: 28637
MD5Sum: 21121fe280eee258fe20302814793c4f
SHA256sum: 2f4868045e4f1a04d20f6f1d718d9e19471a97810bcfa334d27f793146cc66a3
Description: WPA Supplicant command line interface
Package: wpa-supplicant-mini
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 136071
Filename: wpa-supplicant-mini_2014-10-25-1_ramips_24kec.ipk
Size: 136608
MD5Sum: 33099f4c26b4b22c23b94d9109fd88e6
SHA256sum: 27f0003af4989a3f15e80356c6e75c0792234dada36ad31bf2db7f90949f8d1c
Description: WPA Supplicant (minimal version)
Package: wpa-supplicant-p2p
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 377226
Filename: wpa-supplicant-p2p_2014-10-25-1_ramips_24kec.ipk
Size: 377622
MD5Sum: dfa66f8bb09188e81a5fe338605c1109
SHA256sum: fb34e502166f6cee8043cb2395bc01babbf24d7dff3684620c11d0ccb842a91f
Description: WPA Supplicant (with Wi-Fi P2P support)
Package: wpa-supplicant
Version: 2014-10-25-1
Depends: libc, libnl-tiny
Conflicts: wpad, wpad-mini
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 245416
Filename: wpa-supplicant_2014-10-25-1_ramips_24kec.ipk
Size: 246063
MD5Sum: c5629199648935148c82c2321eba5a73
SHA256sum: 605ca40e9817a26e3f7bdc4d3c4d4b2739f96623cb47b1f8f8cee18752ca5244
Description: WPA Supplicant
Package: wpad-mini
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 224372
Filename: wpad-mini_2014-10-25-1_ramips_24kec.ipk
Size: 224963
MD5Sum: 99263267b09bc33ab7fba9fc5b7cbfea
SHA256sum: 290c2704dd68df518e34203b73dad3cf6a9b2d07c7b379d59dc508ae49d600df
Description: This package contains a minimal IEEE 802.1x/WPA Authenticator and Supplicant (WPA-PSK only).
Package: wpad
Version: 2014-10-25-1
Depends: libc, libnl-tiny, libubus
Source: package/network/services/hostapd
License: BSD-3-Clause
Section: net
Maintainer: Felix Fietkau <[email protected]>
Architecture: ramips_24kec
Installed-Size: 378501
Filename: wpad_2014-10-25-1_ramips_24kec.ipk
Size: 378718
MD5Sum: 7213765425ae105551a28c8cf9ad456c
SHA256sum: ed4f5f432e35dbf2b011867016cf23bc7265acf2f405fc983f0f677edd1bd0c0
Description: This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS
Authenticator and Supplicant
Package: wwan
Version: 2014-07-17-1
Depends: libc
Source: package/network/utils/wwan
License: GPL-2.0
Section: net
Maintainer: John Crispin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11696
Filename: wwan_2014-07-17-1_ramips_24kec.ipk
Size: 11749
MD5Sum: 4e7c8735a8911e8b54d517cebc77d4a4
SHA256sum: a61a513d07c8e806a0ec73329e9e3416ad6b8c99d1f08bdb93ef1ae3e9eeb247
Description: Generic OpenWrt 3G/4G proto handler
Package: xfs-fsck
Version: 3.1.7-1
Depends: libc, libuuid, libpthread, librt
Source: package/utils/xfsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 438387
Filename: xfs-fsck_3.1.7-1_ramips_24kec.ipk
Size: 438802
MD5Sum: 8ebc65c04822e1bc6a7d14d8364f3bbc
SHA256sum: 4a72e93e35a68d609b7f4dd5e1ecf6e6c437f6d7613b27f51d4f61dd1f7a2825
Description: Utilities for checking and repairing XFS filesystems
Package: xfs-growfs
Version: 3.1.7-1
Depends: libc, libuuid, libpthread, librt
Source: package/utils/xfsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 121635
Filename: xfs-growfs_3.1.7-1_ramips_24kec.ipk
Size: 122352
MD5Sum: 7415346631c562fbaf327ddf796e5e3c
SHA256sum: 0c6925e156d4e53051035ce779e34960e085774268e2c36056e819c4b3a4b999
Description: Utility for increasing the size of XFS filesystems
Package: xfs-mkfs
Version: 3.1.7-1
Depends: libc, libuuid, libpthread, librt
Source: package/utils/xfsprogs
Section: utils
Architecture: ramips_24kec
Installed-Size: 140429
Filename: xfs-mkfs_3.1.7-1_ramips_24kec.ipk
Size: 141208
MD5Sum: 631a81c7944365e2993bbac518f3afdb
SHA256sum: f9f9a84bea75e055411a01c4ecc3355611db0bccaf113f3e30fcc3f12dccc481
Description: Utility for creating XFS filesystems
Package: zlib
Version: 1.2.8-1
Depends: libc
Source: package/libs/zlib
License: Zlib
LicenseFiles: README
Section: libs
Architecture: ramips_24kec
Installed-Size: 39487
Filename: zlib_1.2.8-1_ramips_24kec.ipk
Size: 40267
MD5Sum: 0fe682b2c5e08daea6817c1b7db36f41
SHA256sum: cab52adbcf872e7a9781e83c5a1dfe00601af517f07712e29a7705bf0a6ec81b
Description: Library implementing the deflate compression method
Package: zram-swap
Version: 1-2
Depends: libc, kmod-zram, swap-utils, block-mount
Source: package/system/zram-swap
Section: utils
Architecture: all
Installed-Size: 1122
Filename: zram-swap_1-2_all.ipk
Size: 1884
MD5Sum: 92d2fe1bda16b8f849c88f8aaa443eeb
SHA256sum: e0ae701c9355c68bedfdee5fc3036317c6974644a07b85363034a1e1a9b914ef
Description: A script to activate swaping on a compressed zram partition. This
could be used to increase the available memory, by using compressed
memory.
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: freecwmp
Version: 2014-06-12-8f3c163fc85337e63bfa64da3c02f10d1fe3b169
Depends: libc, libcurl, libfreecwmp, libuci, libubox, libubus, libmicroxml, shflags
Source: feeds/management/freecwmp
License: GPL-2.0+
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28651
Filename: freecwmp_2014-06-12-8f3c163fc85337e63bfa64da3c02f10d1fe3b169_ramips_24kec.ipk
Size: 29454
MD5Sum: b3a06c1d48a7a79b18badccd55ae48a5
SHA256sum: 0966a9ace28e8be35c72717f362c95e9c783be2506a4ed9e22e2937c11afcab7
Description: A free client implementation of CWMP (TR-069) protocol
Package: freenetconfd
Version: 2015-02-05-1b72de4d3fe7dd98a6ebdedecad080fe4ae1c07c
Depends: libc, libuci, libubox, libubus, libroxml
Source: feeds/management/freenetconfd
License: GPL-2.0+
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14203
Filename: freenetconfd_2015-02-05-1b72de4d3fe7dd98a6ebdedecad080fe4ae1c07c_ramips_24kec.ipk
Size: 14962
MD5Sum: 0a5aa45eb2177f84837abfcaf8203def
SHA256sum: f1ca3d5d8fd940492cdf6aee2a795d4d042aba67602e9c979f18d7900ce2e3db
Description: netconf server
Package: freesub
Version: 2014-12-03-a1a38e80c6642af723d6aa65f64910dcf27cb3da
Depends: libc, libubox
Source: feeds/management/freesub
License: GPL-2.0+
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2781
Filename: freesub_2014-12-03-a1a38e80c6642af723d6aa65f64910dcf27cb3da_ramips_24kec.ipk
Size: 3564
MD5Sum: a3d3bf02e467a406413f2aeb24001ecc
SHA256sum: f2645515d1c21291f3054de236ad14370f21f32abcf8f838d96ffc1f66b0b307
Description: SSH subsystem helper
Package: libev
Version: 4.15-3
Depends: libc
Source: feeds/management/libev
License: BSD-2-Clause
Section: libs
Architecture: ramips_24kec
Installed-Size: 20053
Filename: libev_4.15-3_ramips_24kec.ipk
Size: 20836
MD5Sum: 0d1c15a55f6456153d61757e5b4c088f
SHA256sum: f0ed236138e7ef30d659da2d167a5148f9f5f0c2604255c276b6704c59f35a52
Description: A full-featured and high-performance event loop that is loosely modelled after
libevent, but without its limitations and bugs.
Package: libfreecwmp
Version: 2014-06-12-d2fdd97d66fde14859c06228a922066d9e8b669b
Depends: libc
Source: feeds/management/libfreecwmp
License: GPL-2.0+
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2284
Filename: libfreecwmp_2014-06-12-d2fdd97d66fde14859c06228a922066d9e8b669b_ramips_24kec.ipk
Size: 3053
MD5Sum: bc462bc25c2af7a78c29ea973df2e436
SHA256sum: 50cd4824393938a6b404692760e235ac2b3d8b305b3689bf98b324c505f7b66e
Description: CWMP library
Package: libmicroxml
Version: 2012-06-11-72965423184f24cc0b963d91c2d1863cdb01b6aa
Depends: libc
Source: feeds/management/libmicroxml
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17588
Filename: libmicroxml_2012-06-11-72965423184f24cc0b963d91c2d1863cdb01b6aa_ramips_24kec.ipk
Size: 18264
MD5Sum: 016642d9f86998945065b28d0c23e6f2
SHA256sum: d14c8af400465457abf9e113dd216db485a7d03d0fb3e4325e9dc9637d899854
Description: A micro sized XML library
Package: libnetconf
Version: 0.9.1-1
Depends: libc, libxml2, zlib, libxslt, libcurl, libssh2
Source: feeds/management/libnetconf
License: BSD-3-Clause
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167414
Filename: libnetconf_0.9.1-1_ramips_24kec.ipk
Size: 168209
MD5Sum: b2afec868b28ffa89fa9b965848b20f5
SHA256sum: be7b5920d0e08b983decccdc8dda72ca7752ad6ee0cceee57c9f80b929f4b89a
Description: libnetconf is the NETCONF library in C intended for building NETCONF clients and servers.
libnetconf provides basic functions to connect NETCONF client and server to each other via
SSH, to send and receive NETCONF messages and to store and work with the configuration data
in a datastore.
Package: libssh
Version: 2014-07-10-59a179950150d0305d6189ce9c126a9a0c5f6ab4
Depends: libc, libpthread, librt, zlib, libopenssl
Source: feeds/management/libssh
License: LGPL-2.1+ BSD-2-Clause
Section: lib
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99589
Filename: libssh_2014-07-10-59a179950150d0305d6189ce9c126a9a0c5f6ab4_ramips_24kec.ipk
Size: 100448
MD5Sum: 3e776ca250d93914db942a68d149df75
SHA256sum: 7a962978a00fade1282e5dd759f2ac4f1cfbc10a240c0975c72797bc3d017c66
Description: libssh is a mulitplatform C library implementing the SSHv2 and SSHv1 protocol
for client and server implementations.
Package: shflags
Version: 2012-06-11_r133-1.0.x
Depends: libc, getopt
Source: feeds/management/shflags
License: LGPL-2.1
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4293
Filename: shflags_2012-06-11_r133-1.0.x_ramips_24kec.ipk
Size: 5029
MD5Sum: 88566e01f4a2a6310fdf925120777ffc
SHA256sum: 42ffadad2ef21a21bf560ef86a4752d951e2ab288085e3f98cceb6a3c10e84d7
Description: command-line flags module for Unix shell scripts
Package: shtool
Version: 2.0.8-1
Depends: libc
Source: feeds/management/shtool
License: GPL-2.0+
Section: utils
Architecture: ramips_24kec
Installed-Size: 32124
Filename: shtool_2.0.8-1_ramips_24kec.ipk
Size: 32939
MD5Sum: 3b2b45e71e94a772f7e125705b689acb
SHA256sum: f32c14c8255c1c1aca947384f61c5edf272b1fbe1a850bf7c6f295bf3c63ecbc
Description: GNU shtool is a compilation of small but very stable and portable shell
scripts into a single shell tool.
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: asterisk11-app-alarmreceiver
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7367
Filename: asterisk11-app-alarmreceiver_11.16.0-4_ramips_24kec.ipk
Size: 8189
MD5Sum: 78dc660f1f70711c0d65161603f03ebd
SHA256sum: a73f8b16e764b3a874ea428b30c50e711af02aec2474aab39ed023dd6db8a884
Description: This package provides support Central Station Alarm receiver for Ademco Contact ID in Asterisk.
Package: asterisk11-app-authenticate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3497
Filename: asterisk11-app-authenticate_11.16.0-4_ramips_24kec.ipk
Size: 4271
MD5Sum: 96bd9390ad57a60fc18780366bda1705
SHA256sum: 1ae404fec6240296da16c6eb70bf55dec1e5b51ae8773fe82dca2bc71f411080
Description: This package provides support Execute arbitrary authenticate commands in Asterisk.
Package: asterisk11-app-chanisavail
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2972
Filename: asterisk11-app-chanisavail_11.16.0-4_ramips_24kec.ipk
Size: 3789
MD5Sum: 69b0ff9e82ee25676210256dfe4f8aee
SHA256sum: dee47079bffe8e52b526718222cc596c814c4bca7b7bfe25c887b1df6b0e5b02
Description: This package provides support support for checking if a channel is available in Asterisk.
Package: asterisk11-app-chanspy
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9822
Filename: asterisk11-app-chanspy_11.16.0-4_ramips_24kec.ipk
Size: 10619
MD5Sum: a4adfeb58af9b28d914fa3d214f5f94d
SHA256sum: d073b65455ba6690b265d5a146b9316712772616908dd886b5b683eb39855725
Description: This package provides support support for listening in on any channel in Asterisk.
Package: asterisk11-app-confbridge
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 55527
Filename: asterisk11-app-confbridge_11.16.0-4_ramips_24kec.ipk
Size: 56240
MD5Sum: ec0c13243ea069d3dc6ca545ff7ec860
SHA256sum: c789a5dc839c669dc2ec40d7c8ad44026934341ccf86ab2c97bcb9448bf07188
Description: This package provides support Software bridge for multi-party audio conferencing in Asterisk.
Package: asterisk11-app-dahdiras
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-chan-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3779
Filename: asterisk11-app-dahdiras_11.16.0-4_ramips_24kec.ipk
Size: 4556
MD5Sum: 2e571ac1d97b82d18d59abc752861fe7
SHA256sum: 5d3317cba2bbb90336de63ab0e4b557d4b9a20d92ff6bcd02353029a810f6346
Description: This package provides support support for executing an ISDN RAS using DAHDI in Asterisk.
Package: asterisk11-app-directed_pickup
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4036
Filename: asterisk11-app-directed_pickup_11.16.0-4_ramips_24kec.ipk
Size: 4811
MD5Sum: 75f816df6422844f48f5cfa36f69c2bd
SHA256sum: 278de53255db8fea95eb9469350daf5039513767844071ab1cc92f29886146c2
Description: This package provides support support for directed call pickup in Asterisk.
Package: asterisk11-app-disa
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5151
Filename: asterisk11-app-disa_11.16.0-4_ramips_24kec.ipk
Size: 5938
MD5Sum: 21bbb73ed5ba0c7d68f50fd39ee97b5e
SHA256sum: bd73cbaa0cb03e73cb555fee47290d1b7e8f56a870d7e50aceff8f3fc365a181
Description: This package provides support Direct Inward System Access in Asterisk.
Package: asterisk11-app-exec
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3506
Filename: asterisk11-app-exec_11.16.0-4_ramips_24kec.ipk
Size: 4275
MD5Sum: 9f9837e14807a634b6201e86297af493
SHA256sum: 0af835d1218c10706090e5b430ea1636a6395a438f047f7bf5f97ed989ac1d00
Description: This package provides support support for application execution in Asterisk.
Package: asterisk11-app-minivm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34025
Filename: asterisk11-app-minivm_11.16.0-4_ramips_24kec.ipk
Size: 34995
MD5Sum: 673f0e7cc85903d93fe4420b8eda14a2
SHA256sum: 0bf0ca8528cd502efe3c4736d4d497499900aad925db7a9782cc82f4be6d8f2e
Description: This package provides support a voicemail system in small building blocks working together based on the Comedian Mail voicemail in Asterisk.
Package: asterisk11-app-mixmonitor
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12546
Filename: asterisk11-app-mixmonitor_11.16.0-4_ramips_24kec.ipk
Size: 13325
MD5Sum: a9520f1a63f93f04b6d0a9c3a33c17cc
SHA256sum: cae80819aafd4fa070209a19881bfbbe0fe023025c714582428185790dd86d04
Description: This package provides support record a call and mix the audio during the recording in Asterisk.
Package: asterisk11-app-originate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3578
Filename: asterisk11-app-originate_11.16.0-4_ramips_24kec.ipk
Size: 4381
MD5Sum: 4539229de0eee7649bb715bacdb6d1e2
SHA256sum: 5ca0546ebce65d75d79b8cde2b73f81a19ba2c0736e42a6d8de78febcfa7b736
Description: This package provides support originating an outbound call and connecting it to a specified extension or application in Asterisk.
Package: asterisk11-app-playtones
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2218
Filename: asterisk11-app-playtones_11.16.0-4_ramips_24kec.ipk
Size: 3023
MD5Sum: baa82bc5f664a11e4c483229c554040d
SHA256sum: db2152a7bcc7179765b93163a74e5a34a19d35eccad774a63210c9abbef2aee8
Description: This package provides support play a tone list in Asterisk.
Package: asterisk11-app-read
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3754
Filename: asterisk11-app-read_11.16.0-4_ramips_24kec.ipk
Size: 4534
MD5Sum: 6b2468d576bb40560bcfd313dbe22efc
SHA256sum: c1919e704f57985a01fdf68d191ad6f783c1dbb52ca5c0979fde744a875e2487
Description: This package provides support a trivial application to read a variable in Asterisk.
Package: asterisk11-app-readexten
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3891
Filename: asterisk11-app-readexten_11.16.0-4_ramips_24kec.ipk
Size: 4684
MD5Sum: 0a6f022732d9a04e0169066996928e5a
SHA256sum: 8597c18bb793b9b6123737fcda156dcbeec02a4bef16bbad000fef5bfa95da5b
Description: This package provides support a trivial application to read an extension into a variable in Asterisk.
Package: asterisk11-app-record
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4955
Filename: asterisk11-app-record_11.16.0-4_ramips_24kec.ipk
Size: 5735
MD5Sum: 318e60258f9f6d1398c2c35fb5b67e6f
SHA256sum: fdb1489077422061bfa903b647d4e7283c3e65d9974a4cc086131cdafdc794dd
Description: This package provides support to record a sound file in Asterisk.
Package: asterisk11-app-sayunixtime
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2549
Filename: asterisk11-app-sayunixtime_11.16.0-4_ramips_24kec.ipk
Size: 3328
MD5Sum: 8d49a264de3d0ebe8d9f1d0d3cf97830
SHA256sum: b3746c2e278d43fae6f8ae77e67c60703d1b4ef70edfe9a362bda4afd8870193
Description: This package provides support an application to say Unix time in Asterisk.
Package: asterisk11-app-senddtmf
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2865
Filename: asterisk11-app-senddtmf_11.16.0-4_ramips_24kec.ipk
Size: 3683
MD5Sum: cdfb8f4fcf33df7a2d4978bc529091a3
SHA256sum: e9329bfcc4e2184f745f4ecf7cb279f9b168983ab6ec42609b35579054436f42
Description: This package provides support Sends arbitrary DTMF digits in Asterisk.
Package: asterisk11-app-sms
Version: 11.16.0-4
Depends: libc, asterisk11, libpopt, libstdcpp
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24926
Filename: asterisk11-app-sms_11.16.0-4_ramips_24kec.ipk
Size: 25706
MD5Sum: be22f9c5ae0e0678a58bcbc62c2d74b0
SHA256sum: f6fb8734827538d1f955af082661ddf3986182c76ade463bdaa10f1d67887067
Description: This package provides support SMS support (ETSI ES 201 912 protocol 1) in Asterisk.
Package: asterisk11-app-stack
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-agi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11690
Filename: asterisk11-app-stack_11.16.0-4_ramips_24kec.ipk
Size: 12464
MD5Sum: 2490d23ac2eba09ad3146b405619ed1c
SHA256sum: a465aaeeb6a768875639a1400dab01a2e83a325d91ceb4b2a9360694e6d7c72d
Description: This package provides support Stack applications Gosub Return etc. in Asterisk.
Package: asterisk11-app-system
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2988
Filename: asterisk11-app-system_11.16.0-4_ramips_24kec.ipk
Size: 3801
MD5Sum: d98590efeedfbde2fd3d509837e93a5d
SHA256sum: bc9f4a7f1fb83038d0d4d29f692ca0831cd11006cbf38e42544c56b1ec74826d
Description: This package provides support support for executing system commands in Asterisk.
Package: asterisk11-app-talkdetect
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4459
Filename: asterisk11-app-talkdetect_11.16.0-4_ramips_24kec.ipk
Size: 5246
MD5Sum: 1d42e3a5b90cc1e50e38ae160f67e87b
SHA256sum: 58386945bb45d97d1ba21d95a46e6cbf3e1317be6f600f8cde2bb89a013c41a4
Description: This package provides support for file playback with audio detect in Asterisk.
Package: asterisk11-app-verbose
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2776
Filename: asterisk11-app-verbose_11.16.0-4_ramips_24kec.ipk
Size: 3584
MD5Sum: e53e2c165da4db93168fa071257df1cd
SHA256sum: aa3d53e9d87cb0a11c1ac24aeed1de383e3ce893feda26bb75470bbd56558242
Description: This package provides support Verbose logging application in Asterisk.
Package: asterisk11-app-waituntil
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2489
Filename: asterisk11-app-waituntil_11.16.0-4_ramips_24kec.ipk
Size: 3308
MD5Sum: 010e3daebc9fb2497b2b5e76201cdbf2
SHA256sum: f4fb8f0921351534ebe4a3caff3145f37b6dffb51963a3a0721dfa7949eb2d2a
Description: This package provides support support sleeping until the given epoch in Asterisk.
Package: asterisk11-app-while
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4350
Filename: asterisk11-app-while_11.16.0-4_ramips_24kec.ipk
Size: 5112
MD5Sum: 600304a664b7eae09cf528e87e86d104
SHA256sum: 3db5ecaf2be46c68d740cb2b45916e69b81e53e4fb37d71ad17b1631da76d6da
Description: This package provides support a while loop implementation in Asterisk.
Package: asterisk11-cdr-csv
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4272
Filename: asterisk11-cdr-csv_11.16.0-4_ramips_24kec.ipk
Size: 5041
MD5Sum: 9ea42a3cc885f5015f73ffb9f04dbca5
SHA256sum: 2ca0a652682392b64ba10c95b52ab43eae57ab46a3ed1186f06f3c64e281ca8b
Description: This package provides support Call Detail Record with CSV support in Asterisk.
Package: asterisk11-cdr-sqlite3
Version: 11.16.0-4
Depends: libc, asterisk11, libsqlite3
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5411
Filename: asterisk11-cdr-sqlite3_11.16.0-4_ramips_24kec.ipk
Size: 6173
MD5Sum: c8eb29f817c96a03feb1f663bfc3896d
SHA256sum: 11e2d700f60dc9db3230acdea13bcbcf4da4f3ba1fe60a7e0d318de1199aee5b
Description: This package provides support Call Detail Record with SQLITE3 support in Asterisk.
Package: asterisk11-cdr
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21787
Filename: asterisk11-cdr_11.16.0-4_ramips_24kec.ipk
Size: 22607
MD5Sum: ea9104cc3654fc604a8e96cf5041b3e5
SHA256sum: 6c3f51add11ab678f88d9df6fe23ecc8db48d504ba46daddf095b4943cc1b982
Description: This package provides support Call Detail Record in Asterisk.
Package: asterisk11-chan-agent
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23577
Filename: asterisk11-chan-agent_11.16.0-4_ramips_24kec.ipk
Size: 24231
MD5Sum: 3d449cbd6df12be38b149d1c3a0168dd
SHA256sum: 4222d37f68bd7f4bb6d269b47680990850a8e2917486084fe640cda84f8ec8bc
Description: This package provides support an implementation of agents proxy channel in Asterisk.
Package: asterisk11-chan-dahdi
Version: 11.16.0-4
Depends: libc, asterisk11, dahdi-tools-libtonezone, kmod-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 132684
Filename: asterisk11-chan-dahdi_11.16.0-4_ramips_24kec.ipk
Size: 133190
MD5Sum: c0ea54848a9f4e69d8423f051b48b0d7
SHA256sum: d2c868e85ea5ea8765f25389c192c6798a2f35db73fed5bd5b737f6ed29b360a
Description: This package provides support DAHDI channel support in Asterisk.
Package: asterisk11-chan-dongle
Version: 1.1r35-3
Depends: libc, asterisk11, libiconv-full, kmod-usb-acm, kmod-usb-serial, kmod-usb-serial-option, libusb-1.0, usb-modeswitch
Source: feeds/telephony/net/asterisk-11.x-chan-dongle
License: GPL-2.0
LicenseFiles: COPYRIGHT.txt LICENSE.txt
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 68716
Filename: asterisk11-chan-dongle_1.1r35-3_ramips_24kec.ipk
Size: 69504
MD5Sum: dbc83e180765dee20ca8472368cec7ef
SHA256sum: 83c8675e78a88852fa7f624b33bffb79c61072094e91d712a1609fdcd04e837e
Description: Asterisk channel driver for Huawei UMTS 3G dongle.
Package: asterisk11-chan-iax2
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-timing-timerfd
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 144831
Filename: asterisk11-chan-iax2_11.16.0-4_ramips_24kec.ipk
Size: 145317
MD5Sum: 4be51bc95be531f3e8c29badbba66c7e
SHA256sum: 931c5e781b85211dc5f5a004948d13f79cca4732504ba60038c58468bcf19d17
Description: This package provides support IAX support in Asterisk.
Package: asterisk11-chan-mgcp
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43172
Filename: asterisk11-chan-mgcp_11.16.0-4_ramips_24kec.ipk
Size: 44006
MD5Sum: 3ae64380615bc4927cebf505db57c900
SHA256sum: 4de77f33864532f99760c0ac9a631aaaeda472494835d890234697308b0f1020
Description: This package provides support the channel chan_mgcp in Asterisk.
Package: asterisk11-chan-motif
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-xmpp
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23099
Filename: asterisk11-chan-motif_11.16.0-4_ramips_24kec.ipk
Size: 23848
MD5Sum: 253e087e504859beacc560131a635361
SHA256sum: b6c34d71711ba756ae71c0d5570bce54831f6fc5599cc3729267c4dd8043a0ef
Description: This package provides support Motif Jingle Channel Driver in Asterisk.
Package: asterisk11-chan-ooh323
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 283875
Filename: asterisk11-chan-ooh323_11.16.0-4_ramips_24kec.ipk
Size: 283715
MD5Sum: f09989325fe2544852ae8b4b72a2c87b
SHA256sum: b510e4792e290ba5e129f5bd8d9c31c7ea004151fb3467317798321684acf985
Description: This package provides support the channel chan_ooh323 in Asterisk.
Package: asterisk11-chan-sccp-b
Version: v4.2-r5845-1
Depends: libc, libltdl, asterisk11
Source: feeds/telephony/net/chan-sccp-b
License: GPL-1.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 345386
Filename: asterisk11-chan-sccp-b_v4.2-r5845-1_ramips_24kec.ipk
Size: 341685
MD5Sum: b6c6b225767ee1773310526c49b24285
SHA256sum: 5d456cdffcb45c2922597cbcdf537c1fcce7acbdc361fbf1925a297c11c73927
Description: SCCP channel provider for asterisk. It delivers extended functionality for SCCP phones over chan_skinny delivered
by asterisk by default.
Package: asterisk11-chan-skinny
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49318
Filename: asterisk11-chan-skinny_11.16.0-4_ramips_24kec.ipk
Size: 50043
MD5Sum: 7b5cc4bc16879cb8b0d6162157c3291e
SHA256sum: 5853e1d03b806351be1e244311344cbc7f6f0e91516ee39191d0e5919e081df7
Description: This package provides support the channel chan_skinny in Asterisk.
Package: asterisk11-chan-unistim
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52468
Filename: asterisk11-chan-unistim_11.16.0-4_ramips_24kec.ipk
Size: 53389
MD5Sum: 77c153eb5e8531afd2ee5a5a2593d1cd
SHA256sum: da181c45a9d5edef6db3fe8d3327444f77cd0ba78a40315bad8d822a18b097b1
Description: This package provides support channel driver for the UNISTIM (Unified Networks IP Stimulus) protocol in Asterisk.
Package: asterisk11-codec-a-mu
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2489
Filename: asterisk11-codec-a-mu_11.16.0-4_ramips_24kec.ipk
Size: 3275
MD5Sum: e1e728a1a575f5a4ebd4dabc4814ea1e
SHA256sum: 7f82dfd4f225ad30d5da5073414a9cfea5ec57f85a2252f78153f9619e14ae22
Description: This package provides support translation between alaw and ulaw codecs in Asterisk.
Package: asterisk11-codec-adpcm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3261
Filename: asterisk11-codec-adpcm_11.16.0-4_ramips_24kec.ipk
Size: 4028
MD5Sum: b76d9a2ffc1864e10377face414d78c2
SHA256sum: b174148fab955473899fb9ac4ce7d49754dfe05e104d001cd2276a360526fc7e
Description: This package provides support ADPCM text in Asterisk.
Package: asterisk11-codec-alaw
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2584
Filename: asterisk11-codec-alaw_11.16.0-4_ramips_24kec.ipk
Size: 3373
MD5Sum: edc91802f0dffbd0757aa75ee3d3a4d0
SHA256sum: c44b1441e6263c914819bf221d69b33ec0f0a08fd0163e7112753a87565ae98c
Description: This package provides support translation between signed linear and alaw codecs in Asterisk.
Package: asterisk11-codec-dahdi
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-chan-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6304
Filename: asterisk11-codec-dahdi_11.16.0-4_ramips_24kec.ipk
Size: 7141
MD5Sum: 432a9b589ac79005c90a521b90502570
SHA256sum: 33689194c9b42aa9bc6c49e9cb1e99d6dd599439bae18127e796c11aa6da1278
Description: This package provides support DAHDI native transcoding support in Asterisk.
Package: asterisk11-codec-g722
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5894
Filename: asterisk11-codec-g722_11.16.0-4_ramips_24kec.ipk
Size: 6707
MD5Sum: 8d0aa8a8eaa86bb28c139a5af7383fcb
SHA256sum: 8b6d5c947833549c7387e0e96174e4a4432729b9e296702a8c54154371ac8d7e
Description: This package provides support a high bit rate 48/56/64Kbps ITU standard codec in Asterisk.
Package: asterisk11-codec-g726
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4502
Filename: asterisk11-codec-g726_11.16.0-4_ramips_24kec.ipk
Size: 5312
MD5Sum: c51ccf8cc3e945838e488c7ed1ca9208
SHA256sum: 9a18dd0992551ab44edd7db64618b6cd07eae8245ca59c16ac64aaaf15ac7190
Description: This package provides support translation between signed linear and ITU G.726-32kbps codecs in Asterisk.
Package: asterisk11-codec-g729
Version: 1.3-1
Depends: libc, bcg729, asterisk11
Source: feeds/telephony/net/asterisk-g72x
License: GPL-3.0
LicenseFiles: README.md
Section: net
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: asterisk11-codec-g729_1.3-1_ramips_24kec.ipk
Size: 4924
MD5Sum: 958bc430c07c8441e11b637a7606d818
SHA256sum: 3d27ad6043e4208512a2a3ee60f22c64b39d017c216e503d969178300e957432
Description: Asterisk G.729 codec based on bcg729 implementation.
Package: asterisk11-codec-gsm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20725
Filename: asterisk11-codec-gsm_11.16.0-4_ramips_24kec.ipk
Size: 21516
MD5Sum: f0f95a0ef72578e10b6b5cb6df42a431
SHA256sum: c0de5225207e9d46f245b4c48374637ec37f32f6d36edd3909d1dada64eb5ca5
Description: This package provides support translate between signed linear and GSM in Asterisk.
Package: asterisk11-codec-ilbc
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31875
Filename: asterisk11-codec-ilbc_11.16.0-4_ramips_24kec.ipk
Size: 32690
MD5Sum: e371bcc16016a5096df95004c6cfc043
SHA256sum: a110a55167f1fd7969c0e70079b0bc936e602f8ec48d468c3504840e4dc9e870
Description: This package provides support translate between signed linear and ILBC in Asterisk.
Package: asterisk11-codec-lpc10
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22326
Filename: asterisk11-codec-lpc10_11.16.0-4_ramips_24kec.ipk
Size: 23058
MD5Sum: bc2ecd1b779a2c2f97c585e48476f8d0
SHA256sum: f4836dd91539341a5f9dd064ae4b7ea84fef9b256ff1f1c436d67fa2ed9649e5
Description: This package provides support translate between signed linear and LPC10 in Asterisk.
Package: asterisk11-codec-resample
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10325
Filename: asterisk11-codec-resample_11.16.0-4_ramips_24kec.ipk
Size: 11120
MD5Sum: 5d1c3ca927ed1b42cd0168b918b4ecfd
SHA256sum: 4a46c8a7316d68e8f68ecfe9428352a672be5575ecf16a60c6485300129f9f6e
Description: This package provides support resample sLinear audio in Asterisk.
Package: asterisk11-curl
Version: 11.16.0-4
Depends: libc, asterisk11, libcurl
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8802
Filename: asterisk11-curl_11.16.0-4_ramips_24kec.ipk
Size: 9592
MD5Sum: f4cc03a215f761ae11ebf71b3ac39cc0
SHA256sum: 8a93ee1e4053aa731323e6ec386b3a96a73aa31c9bfa61ea07bc01516862f6b9
Description: This package provides support CURL support in Asterisk.
Package: asterisk11-format-g726
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3155
Filename: asterisk11-format-g726_11.16.0-4_ramips_24kec.ipk
Size: 3950
MD5Sum: b9f9c7af8f1fae1d6f5df74bcb9ecc6b
SHA256sum: cf51b508906d6a5310c356fd4149563b9b662fec6085d098be950574d021c8fc
Description: This package provides support support for headerless G.726 16/24/32/40kbps data format in Asterisk.
Package: asterisk11-format-g729
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3138
Filename: asterisk11-format-g729_11.16.0-4_ramips_24kec.ipk
Size: 3912
MD5Sum: d62f02be9d0dc4cb39542c8a416b53ae
SHA256sum: 12274a3f75e6d1311eec781608d4276225bf847f382d9cb1a9e516e2d764916c
Description: This package provides support support for raw headerless G729 data in Asterisk.
Package: asterisk11-format-gsm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6051
Filename: asterisk11-format-gsm_11.16.0-4_ramips_24kec.ipk
Size: 6809
MD5Sum: eb13b6aa63f72b78900c49a80c539dd4
SHA256sum: 540965529cd3523166fe1499f0e383ad122323e45c9dac733450bedc85341f86
Description: This package provides support support for GSM format in Asterisk.
Package: asterisk11-format-h263
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3098
Filename: asterisk11-format-h263_11.16.0-4_ramips_24kec.ipk
Size: 3860
MD5Sum: ac6ff5f85fec402bc8401d3d998aeec1
SHA256sum: 6b0710069e26fbcd162daa49e899e230f845a9990ac989a8b7a1509a95f9cf45
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk11-format-h264
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3169
Filename: asterisk11-format-h264_11.16.0-4_ramips_24kec.ipk
Size: 3929
MD5Sum: db64d1789f5e1967839217d48d426e64
SHA256sum: 1018de1bd0569269a33ad8fafe21eecf7b4e11c4877fe2bacbd866a86b247ba6
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk11-format-ilbc
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3124
Filename: asterisk11-format-ilbc_11.16.0-4_ramips_24kec.ipk
Size: 3887
MD5Sum: 9e15bb1282c6d979dfccb5f9e3587f94
SHA256sum: 8488ae62faefc468715aed9142d8abc7fee16550f97e64faa7479c7ca58cff4f
Description: This package provides support support for ILBC format in Asterisk.
Package: asterisk11-format-sln
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3732
Filename: asterisk11-format-sln_11.16.0-4_ramips_24kec.ipk
Size: 4506
MD5Sum: b3f14e436d66310f5cc9e82d470c213c
SHA256sum: 28dd482a9e8c0cfbe3f8e75b2c2d99730e5d1741b8abf7be849f76258b5b92f6
Description: This package provides support support for raw slinear format in Asterisk.
Package: asterisk11-format-vox
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3080
Filename: asterisk11-format-vox_11.16.0-4_ramips_24kec.ipk
Size: 3855
MD5Sum: e03334ea60dfd96b24204fca7b97709a
SHA256sum: b4686462263673b9a450336927636ea7099587d177187b269ae730ee32ce7702
Description: This package provides support support for ADPCM vox format in Asterisk.
Package: asterisk11-format-wav-gsm
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9981
Filename: asterisk11-format-wav-gsm_11.16.0-4_ramips_24kec.ipk
Size: 10795
MD5Sum: 71045ad6b2b1bb86927992bea9dd7c1e
SHA256sum: 1e7afacdcadc6f4cd6635c764eaa00335e3486f03d43b4c738322034b8611fbc
Description: This package provides support support for proprietary Microsoft WAV format (Proprietary GSM) in Asterisk.
Package: asterisk11-format-wav
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5258
Filename: asterisk11-format-wav_11.16.0-4_ramips_24kec.ipk
Size: 6056
MD5Sum: 5bc4665fb684eda3b8e16ce108e3f472
SHA256sum: 5dd7eb9958d1b02118882d5628f18b1133abc19df9fd53dbe8906283b245b7c8
Description: This package provides support support for proprietary Microsoft WAV format (8000hz Signed Linear) in Asterisk.
Package: asterisk11-func-base64
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2775
Filename: asterisk11-func-base64_11.16.0-4_ramips_24kec.ipk
Size: 3567
MD5Sum: 38e19557225d4727e5fc4247615a357d
SHA256sum: 4b4f80bdd66d9f5d3dfe820f6532bbb5ea964ab8d2ae706176aba552e6faa320
Description: This package provides support support of base64 function in Asterisk.
Package: asterisk11-func-blacklist
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2704
Filename: asterisk11-func-blacklist_11.16.0-4_ramips_24kec.ipk
Size: 3533
MD5Sum: 83a027d4f50cda9d82cba9833cd44ed6
SHA256sum: 0a7ea128c3f6dbb92922ac0edfef75f3840e973da070f5e5b5545cdac83fbf10
Description: This package provides support looking up the callerid number and see if it is blacklisted in Asterisk.
Package: asterisk11-func-channel
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7968
Filename: asterisk11-func-channel_11.16.0-4_ramips_24kec.ipk
Size: 8791
MD5Sum: 44cfa367bee86d220dccd8a5658dd4a8
SHA256sum: 49196acb4168d0e0fe4d199317872e213a4424e9abe31245f8e3f83d4685f97d
Description: This package provides support Channel info dialplan function in Asterisk.
Package: asterisk11-func-cut
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4234
Filename: asterisk11-func-cut_11.16.0-4_ramips_24kec.ipk
Size: 4990
MD5Sum: 132743e10d8da948741afab7f64c7e49
SHA256sum: f6113f7f07af619d6b711a6a83f6f8684c228f73d1a46f060195cba6ecac6606
Description: This package provides support CUT function in Asterisk.
Package: asterisk11-func-db
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5065
Filename: asterisk11-func-db_11.16.0-4_ramips_24kec.ipk
Size: 5859
MD5Sum: 3b38139a3aff94c593e1aedbf97d83b8
SHA256sum: 170be4d99defd734ca69e9f1a99a1e64d721b9d9a64d0ceea42665a480e5c4cb
Description: This package provides support functions for interaction with the database in Asterisk.
Package: asterisk11-func-devstate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4033
Filename: asterisk11-func-devstate_11.16.0-4_ramips_24kec.ipk
Size: 4822
MD5Sum: 708379b5a8003c2316c8cc91b604d2a1
SHA256sum: a629a5330d5ed0db971ce2a397c403a2845a52e288d3c7b3547a0fb2df463c7d
Description: This package provides support functions for manually controlled blinky lights in Asterisk.
Package: asterisk11-func-enum
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5258
Filename: asterisk11-func-enum_11.16.0-4_ramips_24kec.ipk
Size: 6063
MD5Sum: f7b10b3232df994bbe71a556c201d86e
SHA256sum: 0b6dc494b55eb911dcab93f00c4fb5db384486ce7f854cd3b21e26570b884b69
Description: This package provides support ENUM in Asterisk.
Package: asterisk11-func-env
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11042
Filename: asterisk11-func-env_11.16.0-4_ramips_24kec.ipk
Size: 11853
MD5Sum: e0b0de08f087e8255f422857b0d9259f
SHA256sum: aee28a6f56b091e8e13df06832045e518c679e647b4b259e03a3dbdef4e9c95c
Description: This package provides support Environment dialplan functions in Asterisk.
Package: asterisk11-func-extstate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2303
Filename: asterisk11-func-extstate_11.16.0-4_ramips_24kec.ipk
Size: 3121
MD5Sum: 767af7b842ecb3635aec8460e4b91e6b
SHA256sum: 3909a841b71e913670880febefde305cb16f1195210fd4bcdc5a638a7f637eff
Description: This package provides support retrieving the state of a hinted extension for dialplan control in Asterisk.
Package: asterisk11-func-global
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4290
Filename: asterisk11-func-global_11.16.0-4_ramips_24kec.ipk
Size: 5071
MD5Sum: fd22ea84468005678cea08d9e23a54bb
SHA256sum: 8cffc477a18dc18ef2de001a672405f8a30dda54f9ed2db1d69382c893a13bb0
Description: This package provides support global variable dialplan functions in Asterisk.
Package: asterisk11-func-groupcount
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3595
Filename: asterisk11-func-groupcount_11.16.0-4_ramips_24kec.ipk
Size: 4386
MD5Sum: e2f8421881b4956490a790725bf89ede
SHA256sum: e1d504df2a20dd0f3d2f59daa073ead9bf0cadc688299d2b0388efa91be5a74d
Description: This package provides support for counting number of channels in the specified group in Asterisk.
Package: asterisk11-func-math
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4485
Filename: asterisk11-func-math_11.16.0-4_ramips_24kec.ipk
Size: 5244
MD5Sum: fbd4ed00dc66995c3247f22d1fb31fdd
SHA256sum: f4d4477ccf36f48d69550b7b4a7efcc507505bfb02e97c0e6ce9f8b8462d5625
Description: This package provides support Math functions in Asterisk.
Package: asterisk11-func-module
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1935
Filename: asterisk11-func-module_11.16.0-4_ramips_24kec.ipk
Size: 2741
MD5Sum: fe24184574dcea43d18f518d25e0f560
SHA256sum: 2401b006d66d5762e6e96e851fbde462dcf75ba900d874c9c06caa130f449b59
Description: This package provides support Simple module check function in Asterisk.
Package: asterisk11-func-shell
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2332
Filename: asterisk11-func-shell_11.16.0-4_ramips_24kec.ipk
Size: 3143
MD5Sum: 57831caf1c46686bde520e0ef1e30dca
SHA256sum: f4c2e1a5a60be4dfa01f16dcdad93b700c674fd26612fcfe0bc5546dd96df64f
Description: This package provides support support for shell execution in Asterisk.
Package: asterisk11-func-uri
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2076
Filename: asterisk11-func-uri_11.16.0-4_ramips_24kec.ipk
Size: 2893
MD5Sum: 6e0d083fafdf85b3a452d58d275fbd93
SHA256sum: f19d84563789600a2bca73d562ce4bba5af23f099ac0840a261423a3486aeb6e
Description: This package provides support Encodes and decodes URI-safe strings in Asterisk.
Package: asterisk11-func-vmcount
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2184
Filename: asterisk11-func-vmcount_11.16.0-4_ramips_24kec.ipk
Size: 2993
MD5Sum: 1a9af80f07777129e6cb1c3b3101d1a6
SHA256sum: 8219f341c99ac79fa16d0f663a1e051580bc992b33d911e15bd512015e19c9bb
Description: This package provides support a vmcount dialplan function in Asterisk.
Package: asterisk11-mysql
Version: 11.16.0-4
Depends: libc, asterisk11, libmysqlclient
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22172
Filename: asterisk11-mysql_11.16.0-4_ramips_24kec.ipk
Size: 22969
MD5Sum: 477db0f00a8b4049d4d3d9e18de9fbac
SHA256sum: 4c9697ab4a350986c8190c54d3dfc86e505ca9b41e455fc76125d7df007612c7
Description: This package provides support MySQL support in Asterisk.
Package: asterisk11-odbc
Version: 11.16.0-4
Depends: libc, asterisk11, libpthread, libc, unixodbc
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 70613
Filename: asterisk11-odbc_11.16.0-4_ramips_24kec.ipk
Size: 71530
MD5Sum: fe033e14b82ac4f09cf3ccae24ac69cc
SHA256sum: ea382e2e3feb13b03bf4f9349d2e710096ccdefb72f0bb7c009c8b0b7cf62865
Description: This package provides support ODBC support in Asterisk.
Package: asterisk11-pbx-ael
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8855
Filename: asterisk11-pbx-ael_11.16.0-4_ramips_24kec.ipk
Size: 9668
MD5Sum: d7690cdb27d99ec34c8f97cd6e50d102
SHA256sum: b35c3b650bc97d1a51c152cdb0687b6ded0856b3c9f0948e6886bec118c5ca5a
Description: This package provides support support for symbolic Asterisk Extension Logic in Asterisk.
Package: asterisk11-pbx-dundi
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52896
Filename: asterisk11-pbx-dundi_11.16.0-4_ramips_24kec.ipk
Size: 53699
MD5Sum: 1324ffbf24715b5dad8b955fc941c435
SHA256sum: 1b7b1518690f45557088bf44e94cb94f54fbef741cfe89d5caa20d5319f00094
Description: This package provides support provides Dundi Lookup service for Asterisk in Asterisk.
Package: asterisk11-pbx-lua
Version: 11.16.0-4
Depends: libc, asterisk11, libpthread, libc, liblua
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12951
Filename: asterisk11-pbx-lua_11.16.0-4_ramips_24kec.ipk
Size: 13802
MD5Sum: c6965dca2a66c6b2510214b633446b57
SHA256sum: 35870fa76c90c2e7e4a353f3607d42da7eea303beab7d7865f23312d2f18a3e2
Description: This package provides support provides Lua resources for Asterisk in Asterisk.
Package: asterisk11-pbx-spool
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9172
Filename: asterisk11-pbx-spool_11.16.0-4_ramips_24kec.ipk
Size: 9965
MD5Sum: 6ec3406424defbff29802b0fff08fe92
SHA256sum: 9342d276221fb29b1028f553bf1c703b480af454f4b25a780031abc348bd3178
Description: This package provides support outgoing call spool support in Asterisk.
Package: asterisk11-pgsql
Version: 11.16.0-4
Depends: libc, asterisk11, libpq
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37747
Filename: asterisk11-pgsql_11.16.0-4_ramips_24kec.ipk
Size: 38692
MD5Sum: f8d69a8c6d6af0ad9945552062d3ed8f
SHA256sum: c6e5024c2261c432f79ea3c985c7997aa71864f500f763e23a4fdeccda441b86
Description: This package provides support PostgreSQL support in Asterisk.
Package: asterisk11-res-ael-share
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41853
Filename: asterisk11-res-ael-share_11.16.0-4_ramips_24kec.ipk
Size: 42640
MD5Sum: 6fa03b9ce7fb8de04ee023aeeea1648b
SHA256sum: c69b104588f43710fdd7a7503e8f312ca44025b2457da3b88b0594bad397188b
Description: This package provides support support for shareable AEL code mainly between internal and external modules in Asterisk.
Package: asterisk11-res-agi
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27954
Filename: asterisk11-res-agi_11.16.0-4_ramips_24kec.ipk
Size: 28694
MD5Sum: dd6f231fb1152555583c966438452985
SHA256sum: b2ce6cf855a3def705d86548ee6d747164b23f02caaea2e3b15d99159eef0bb0
Description: This package provides support Support for the Asterisk Gateway Interface extension in Asterisk.
Package: asterisk11-res-clioriginate
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3872
Filename: asterisk11-res-clioriginate_11.16.0-4_ramips_24kec.ipk
Size: 4638
MD5Sum: 38da3a0feabc4b22acd55ddf8d1e59f2
SHA256sum: f9e19ddd91a13efdf686a2cc86d90bda7b454703fe45d00c0139e49d454034fb
Description: This package provides support Originate calls via the CLI in Asterisk.
Package: asterisk11-res-fax-spandsp
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-fax, libspandsp, libtiff
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10305
Filename: asterisk11-res-fax-spandsp_11.16.0-4_ramips_24kec.ipk
Size: 11128
MD5Sum: 34e300f6c6c962dc578fc9c49bc62f99
SHA256sum: 93f0750627a8d9202392d87d67696822b435b2fcddb0c4360884ee92de61def2
Description: This package provides support Spandsp T.38 and G.711 FAX Resource in Asterisk.
Package: asterisk11-res-fax
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-res-timing-pthread
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31389
Filename: asterisk11-res-fax_11.16.0-4_ramips_24kec.ipk
Size: 32249
MD5Sum: f6d25f7a79a509a261e5a74f82ff6df2
SHA256sum: cac643037e5ff9f5baa98bb7a7387e8ba3ebcc6e4e2ff7d150a4a107e01a8a39
Description: This package provides support Generic FAX resource for FAX technology resource modules in Asterisk.
Package: asterisk11-res-monitor
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8235
Filename: asterisk11-res-monitor_11.16.0-4_ramips_24kec.ipk
Size: 9045
MD5Sum: 7e2c21fe7ffb99bc8900a8eb3c8752bb
SHA256sum: 58e6c52c3c1e9e01eee833463f825dc687e2c7eb807503f9d3e3d6f4df2d22cc
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk11-res-musiconhold
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18539
Filename: asterisk11-res-musiconhold_11.16.0-4_ramips_24kec.ipk
Size: 19331
MD5Sum: 0caf5987f45c419fcb2b20bd7dea8313
SHA256sum: 37e410c38855e8e883cdd759bd142a0cf7994708d60ef0c18e7bd499aca9057b
Description: This package provides support Music On Hold support in Asterisk.
Package: asterisk11-res-phoneprov
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13516
Filename: asterisk11-res-phoneprov_11.16.0-4_ramips_24kec.ipk
Size: 14354
MD5Sum: 5813fc30a614a6ea6d93e5bf5bfb7e4a
SHA256sum: 7494e7d791a4d0b9e40021b472085982412c668dd9cb7f9a42f3459af51c2494
Description: This package provides support Phone provisioning application for the asterisk internal http server in Asterisk.
Package: asterisk11-res-pktccops
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14880
Filename: asterisk11-res-pktccops_11.16.0-4_ramips_24kec.ipk
Size: 15735
MD5Sum: f2b2e6a0636a048af5ade165ae01c59d
SHA256sum: 6f3108acbd062d2855eb393b1018dcda77e6e5f2f843ef72da0bfbb5e9542b64
Description: This package provides support simple client/server model for supporting policy control over QoS signaling protocols in Asterisk.
Package: asterisk11-res-smdi
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17128
Filename: asterisk11-res-smdi_11.16.0-4_ramips_24kec.ipk
Size: 18004
MD5Sum: 06796dc5cd86fd3c054b5f0619be09fb
SHA256sum: 35d1079de48f914ab378bc11cf577e6dd3d096bfbb9d85d5376b9c6995b352fe
Description: This package provides support Simple Message Desk Interface capability in Asterisk.
Package: asterisk11-res-srtp
Version: 11.16.0-4
Depends: libc, asterisk11, libsrtp
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5926
Filename: asterisk11-res-srtp_11.16.0-4_ramips_24kec.ipk
Size: 6715
MD5Sum: 0bae6a13cec2b71a14371d8f157e7b89
SHA256sum: abb5b19ea84c64028787e54f55cd97de0a4b88d9f35d2b2d6f79b0e48312a501
Description: This package provides support Secure RTP in Asterisk.
Package: asterisk11-res-timing-dahdi
Version: 11.16.0-4
Depends: libc, asterisk11, asterisk11-chan-dahdi
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3120
Filename: asterisk11-res-timing-dahdi_11.16.0-4_ramips_24kec.ipk
Size: 3891
MD5Sum: a7e5f696e56d3b8479f156d998198ffc
SHA256sum: 1b2585ea400b078e3caf7d380bfc327d2320f3e30c5b4ab7e7f22beeb90e17e7
Description: This package provides support in Asterisk.
Package: asterisk11-res-timing-pthread
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4857
Filename: asterisk11-res-timing-pthread_11.16.0-4_ramips_24kec.ipk
Size: 5611
MD5Sum: 03700339b147c6aff570c8c3f731dd2f
SHA256sum: 07a0d7c5f0c297e06c3ce6cc6ff3a33fa413a134c23845b2db0edbc34d1334d7
Description: This package provides support in Asterisk.
Package: asterisk11-res-timing-timerfd
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4053
Filename: asterisk11-res-timing-timerfd_11.16.0-4_ramips_24kec.ipk
Size: 4824
MD5Sum: ea20d179568e88cafb401c577c0ea164
SHA256sum: bf96ce1264911884236eef8d40af743b8a58401d15c0398258333c95b6b148f9
Description: This package provides support in Asterisk.
Package: asterisk11-res-xmpp
Version: 11.16.0-4
Depends: libc, asterisk11, libiksemel, libopenssl
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35582
Filename: asterisk11-res-xmpp_11.16.0-4_ramips_24kec.ipk
Size: 36508
MD5Sum: 3b2dceb5ebe3680f9f230e17d8480a8e
SHA256sum: ee2b88d46fb9ab6dea42f199572c920157d58f640c44591bb5d25addd43c838a
Description: This package provides support reference module for interfacting Asterisk directly as a client or component with XMPP server in Asterisk.
Package: asterisk11-sounds
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1392558
Filename: asterisk11-sounds_11.16.0-4_ramips_24kec.ipk
Size: 1393836
MD5Sum: 5d3f6f819f5ae7796299f666d3fb2ab2
SHA256sum: de8662c1541ab31046b07b2e53722f345e6806d537f447c324495bdc8f126890
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
This package provides sounds for Asterisk.
Package: asterisk11-voicemail
Version: 11.16.0-4
Depends: libc, asterisk11
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 613896
Filename: asterisk11-voicemail_11.16.0-4_ramips_24kec.ipk
Size: 614819
MD5Sum: 9f70fc774a3c245490f153c42735821f
SHA256sum: 1712f8242adeb166d6111ce65369d1c9b2efb41922a164befeef1d76dec41821
Description: This package provides support voicemail related modules in Asterisk.
Package: asterisk11
Version: 11.16.0-4
Depends: libc, libopenssl, libncurses, libpopt, libpthread, libsqlite3, librt, libuuid, zlib
Source: feeds/telephony/net/asterisk-11.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1241355
Filename: asterisk11_11.16.0-4_ramips_24kec.ipk
Size: 1239838
MD5Sum: 39305c6e7785e5d517294d1b270bb7ba
SHA256sum: 35dd56e769dea23d891f6078e86b164fe70c18dd5b49466363c4a72f006b3ecc
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
Package: asterisk13-app-alarmreceiver
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7980
Filename: asterisk13-app-alarmreceiver_13.2.0-4_ramips_24kec.ipk
Size: 8792
MD5Sum: 07994d81b239c8fffb091404031bebf7
SHA256sum: cc9ed1c8281408ccb039f66f7dc12e9b845ebaf5b2aa2e00c50834f4d49530c5
Description: This package provides support Central Station Alarm receiver for Ademco Contact ID in Asterisk.
Package: asterisk13-app-authenticate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3467
Filename: asterisk13-app-authenticate_13.2.0-4_ramips_24kec.ipk
Size: 4240
MD5Sum: 94486bba3b38d0a8cd14a3b991580eb7
SHA256sum: 79552d27124d2d2fa0e563abddf8b9426f9754bcb8afc22614f898a1cd47a3db
Description: This package provides support Execute arbitrary authenticate commands in Asterisk.
Package: asterisk13-app-chanisavail
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2959
Filename: asterisk13-app-chanisavail_13.2.0-4_ramips_24kec.ipk
Size: 3778
MD5Sum: 8f716f0b7175ebffdc39c63e67d32de2
SHA256sum: 474b1a400ba4f789a4903ef500edb8eb9325ab7b5458de68ceb120a4a53dbe5b
Description: This package provides support support for checking if a channel is available in Asterisk.
Package: asterisk13-app-chanspy
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10341
Filename: asterisk13-app-chanspy_13.2.0-4_ramips_24kec.ipk
Size: 11157
MD5Sum: 9dedee7b77b045b3ee96913e3da58e50
SHA256sum: 85aa4084701a04d77c3e50c07cd1f1d7256f1f99b0502b7fecfa703e459f51c8
Description: This package provides support support for listening in on any channel in Asterisk.
Package: asterisk13-app-directed_pickup
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4062
Filename: asterisk13-app-directed_pickup_13.2.0-4_ramips_24kec.ipk
Size: 4838
MD5Sum: 3d4034c2f284d42add1f2db34e1021e2
SHA256sum: 2060b5a45d0aebbb86b61db002320d711fd558c403e937b5c199867fecfa24ab
Description: This package provides support support for directed call pickup in Asterisk.
Package: asterisk13-app-disa
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5287
Filename: asterisk13-app-disa_13.2.0-4_ramips_24kec.ipk
Size: 6071
MD5Sum: 37aa6d6a8485e6d4706201eb2e525fbe
SHA256sum: a03b8ff0a16cf8551906cfc1d9921f3d655153a150c973ea28c240046370e245
Description: This package provides support Direct Inward System Access in Asterisk.
Package: asterisk13-app-exec
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3469
Filename: asterisk13-app-exec_13.2.0-4_ramips_24kec.ipk
Size: 4237
MD5Sum: 6baa7831427e870756a967183d19f76c
SHA256sum: be6641ec42d0ae62bef0ddc70d16bfe7b777a6d2a6b94b180141adf1ec264c4d
Description: This package provides support support for application execution in Asterisk.
Package: asterisk13-app-minivm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34043
Filename: asterisk13-app-minivm_13.2.0-4_ramips_24kec.ipk
Size: 34986
MD5Sum: 213583ca9250f8faab5bf0c30d8e02d0
SHA256sum: be722a392fb342bd4bb5320617879eefc1d114b715ef3b911a5452e61e39c1e0
Description: This package provides support a voicemail system in small building blocks working together based on the Comedian Mail voicemail in Asterisk.
Package: asterisk13-app-mixmonitor
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13629
Filename: asterisk13-app-mixmonitor_13.2.0-4_ramips_24kec.ipk
Size: 14399
MD5Sum: 49127c02fa74035a12ff2733ea5b2bfe
SHA256sum: 870e6f64c91c28419ca4981eb2f2f403b3defa8e2d1084409a2c2077dfe7f683
Description: This package provides support record a call and mix the audio during the recording in Asterisk.
Package: asterisk13-app-originate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3642
Filename: asterisk13-app-originate_13.2.0-4_ramips_24kec.ipk
Size: 4441
MD5Sum: 636772d9f61da4dd08f0ca72fc54f6b4
SHA256sum: ea998387806ec9266e37ea7c776249f2c261a3b731f27dd3230ea8b2cd3b5c25
Description: This package provides support originating an outbound call and connecting it to a specified extension or application in Asterisk.
Package: asterisk13-app-playtones
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2203
Filename: asterisk13-app-playtones_13.2.0-4_ramips_24kec.ipk
Size: 3005
MD5Sum: 8a450da8b6ba9c75feaf8aeb1b7b44dd
SHA256sum: ec861262bb9a66c1d4ebe187518f09b80ebf0f2e3d819a3132fd53f96c48719b
Description: This package provides support play a tone list in Asterisk.
Package: asterisk13-app-read
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3749
Filename: asterisk13-app-read_13.2.0-4_ramips_24kec.ipk
Size: 4536
MD5Sum: d474c024066625b1c9088c1b72a44301
SHA256sum: 99a5b45bb2369b8fac287bb655a0b2c13c29f05b5d44c2f66accd66940f6af06
Description: This package provides support a trivial application to read a variable in Asterisk.
Package: asterisk13-app-readexten
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3874
Filename: asterisk13-app-readexten_13.2.0-4_ramips_24kec.ipk
Size: 4655
MD5Sum: fdc9937ea207a3ce65654c91f795a936
SHA256sum: d8ab8fbc0f0f6079c4d7ca9e27295001ec63a5db67c12a72cfc2cd584d96381c
Description: This package provides support a trivial application to read an extension into a variable in Asterisk.
Package: asterisk13-app-record
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4998
Filename: asterisk13-app-record_13.2.0-4_ramips_24kec.ipk
Size: 5768
MD5Sum: e0f8b4727af86ea9ef0bfc157d825464
SHA256sum: d2dab55ebf98e7f4b6855cd6a66490a68baaa9bd2eb90b0def63b1fa80e32064
Description: This package provides support to record a sound file in Asterisk.
Package: asterisk13-app-sayunixtime
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2759
Filename: asterisk13-app-sayunixtime_13.2.0-4_ramips_24kec.ipk
Size: 3538
MD5Sum: 432897d2912d397d338fd09d41e87f59
SHA256sum: 9052e0473680aa70f31f01b5deebb4f8b8bb0033c901fd12c351b769cc1079bc
Description: This package provides support an application to say Unix time in Asterisk.
Package: asterisk13-app-senddtmf
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2984
Filename: asterisk13-app-senddtmf_13.2.0-4_ramips_24kec.ipk
Size: 3803
MD5Sum: dc6d4a673fa2cce7c953728e365e91b2
SHA256sum: 324d21b413627ad925f36bf62d831c5efe3a711eaa74bab4f7131b328fe10bf7
Description: This package provides support Sends arbitrary DTMF digits in Asterisk.
Package: asterisk13-app-sms
Version: 13.2.0-4
Depends: libc, asterisk13, libpopt, libstdcpp
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15837
Filename: asterisk13-app-sms_13.2.0-4_ramips_24kec.ipk
Size: 16624
MD5Sum: f72975f773d2107ad20f844e89607154
SHA256sum: b8842f9a3d9a77faa3ff42b3c306d8e94a109b8ecceec96f5230a2b88255b1eb
Description: This package provides support SMS support (ETSI ES 201 912 protocol 1) in Asterisk.
Package: asterisk13-app-stack
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-agi
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11816
Filename: asterisk13-app-stack_13.2.0-4_ramips_24kec.ipk
Size: 12599
MD5Sum: 36cb95a497a046c3b691fa3b5932971b
SHA256sum: 6ac885aec0b8aa77d795bac8b8e47ac89f661d86239756a3dfe99cf5acb42d56
Description: This package provides support Stack applications Gosub Return etc. in Asterisk.
Package: asterisk13-app-system
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2944
Filename: asterisk13-app-system_13.2.0-4_ramips_24kec.ipk
Size: 3762
MD5Sum: 21fcbc11dd8748c37675d8c6e4067b6c
SHA256sum: 1d419ada472cd68566f5a906352693196539b36fb07cefa2d781108f78505a44
Description: This package provides support support for executing system commands in Asterisk.
Package: asterisk13-app-talkdetect
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4446
Filename: asterisk13-app-talkdetect_13.2.0-4_ramips_24kec.ipk
Size: 5233
MD5Sum: 01930ccf189bf713ceafb1659cf9ce2f
SHA256sum: 5b4fa18a664b77519904e7dd30dcad36ffbe3814d606e7925ab9e51ffc69e29b
Description: This package provides support for file playback with audio detect in Asterisk.
Package: asterisk13-app-verbose
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2774
Filename: asterisk13-app-verbose_13.2.0-4_ramips_24kec.ipk
Size: 3582
MD5Sum: 9e12143a63aca843c00c45bd42e3b641
SHA256sum: 1662fe4ee301fd03b6d4cd92b591e5c889d423552cbc3ef796c8a4980ce73851
Description: This package provides support Verbose logging application in Asterisk.
Package: asterisk13-app-waituntil
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2483
Filename: asterisk13-app-waituntil_13.2.0-4_ramips_24kec.ipk
Size: 3295
MD5Sum: 1da67093739dbc315d3963d5c467db37
SHA256sum: 8962c8c5d542ff62eeb17821e5d1aeaee47f3f0d0d6e59c0962703b35c057d1a
Description: This package provides support support sleeping until the given epoch in Asterisk.
Package: asterisk13-app-while
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4338
Filename: asterisk13-app-while_13.2.0-4_ramips_24kec.ipk
Size: 5103
MD5Sum: 4fc69851cb5adfe02603d7b49c0d23af
SHA256sum: 8945dd87856a2bd4ec38466330e56908ba05d6264c7132d0bb636afb91f26926
Description: This package provides support a while loop implementation in Asterisk.
Package: asterisk13-cdr-csv
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4268
Filename: asterisk13-cdr-csv_13.2.0-4_ramips_24kec.ipk
Size: 5039
MD5Sum: f66835a8a775721c64c04e894e328859
SHA256sum: e3e3d688d18e4f970007f769e01e68a94b9dac7b57e332a72f36b7e119c0e689
Description: This package provides support Call Detail Record with CSV support in Asterisk.
Package: asterisk13-cdr-sqlite3
Version: 13.2.0-4
Depends: libc, asterisk13, libsqlite3
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5327
Filename: asterisk13-cdr-sqlite3_13.2.0-4_ramips_24kec.ipk
Size: 6103
MD5Sum: 04adfebb78336b48be2c20f0b9785ef4
SHA256sum: dbf07afdcb66a840f1b4269b852ee87bea049221f74a6fcac8f6fdb8c6d01704
Description: This package provides support Call Detail Record with SQLITE3 support in Asterisk.
Package: asterisk13-cdr
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21406
Filename: asterisk13-cdr_13.2.0-4_ramips_24kec.ipk
Size: 22216
MD5Sum: c92b8386227cdd528da157b249938a68
SHA256sum: eab480271daa1befa0f46f1ade40e5a2893109c56b298a008fb2c4939d73aff8
Description: This package provides support Call Detail Record in Asterisk.
Package: asterisk13-chan-iax2
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-timing-timerfd
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141115
Filename: asterisk13-chan-iax2_13.2.0-4_ramips_24kec.ipk
Size: 141351
MD5Sum: d3fbdbdc2a719b1332f167fed40a2134
SHA256sum: 462cb1c6de5537f45efb6d96723dfe02a821e709aef4bac66ebbf76472ded605
Description: This package provides support IAX support in Asterisk.
Package: asterisk13-chan-sccp-b
Version: v4.2-r5845-1
Depends: libc, libltdl, asterisk13
Source: feeds/telephony/net/chan-sccp-b
License: GPL-1.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 345373
Filename: asterisk13-chan-sccp-b_v4.2-r5845-1_ramips_24kec.ipk
Size: 341599
MD5Sum: dfc36d535fa5cc32081626ae7d78a331
SHA256sum: e1c8b7483dc06c34a82deeb7de1afb5d22c9c2e8854448e45fa60bd2c9ee0356
Description: SCCP channel provider for asterisk. It delivers extended functionality for SCCP phones over chan_skinny delivered
by asterisk by default.
Package: asterisk13-chan-sip
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 288747
Filename: asterisk13-chan-sip_13.2.0-4_ramips_24kec.ipk
Size: 288515
MD5Sum: 92182628739fde0cd2aa8014312e2861
SHA256sum: 57af24a8a8d9834c933a307d5c1d28e6dbdfb7327d5c2d9bed4590b7dc12c368
Description: This package provides support the channel chan_sip in Asterisk.
Package: asterisk13-chan-skinny
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51828
Filename: asterisk13-chan-skinny_13.2.0-4_ramips_24kec.ipk
Size: 52649
MD5Sum: a7aa5005af477f934b82efca2b42f1de
SHA256sum: 659cf6ed2771c87cd71c29b85211ca73c1ad9602735690684ddd3e2061bc2080
Description: This package provides support the channel chan_skinny in Asterisk.
Package: asterisk13-chan-unistim
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53503
Filename: asterisk13-chan-unistim_13.2.0-4_ramips_24kec.ipk
Size: 54389
MD5Sum: a7a7c6f15ec9ccd842e81b134900ef8c
SHA256sum: 5e266eb9978ee40d4d8ae41b5e660293a41134c54f8cae4a6dc8ca5c83f83a5e
Description: This package provides support channel driver for the UNISTIM (Unified Networks IP Stimulus) protocol in Asterisk.
Package: asterisk13-codec-a-mu
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2380
Filename: asterisk13-codec-a-mu_13.2.0-4_ramips_24kec.ipk
Size: 3197
MD5Sum: 86964cbf58d64558a16f2a057f174ac1
SHA256sum: 4c3b2c30b37190ddeb621efce08d56935ae96675fda5459c4da3ca994dc0cce9
Description: This package provides support translation between alaw and ulaw codecs in Asterisk.
Package: asterisk13-codec-adpcm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3154
Filename: asterisk13-codec-adpcm_13.2.0-4_ramips_24kec.ipk
Size: 3951
MD5Sum: f90eabe36029963ebd70e646c10be5ce
SHA256sum: 3b9dac6a667efac00bcccff024318ffc7e46baeda613f8a5617b6d5f79bf5edb
Description: This package provides support ADPCM text in Asterisk.
Package: asterisk13-codec-alaw
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2480
Filename: asterisk13-codec-alaw_13.2.0-4_ramips_24kec.ipk
Size: 3301
MD5Sum: 2866c5eea8f9155b4348b0beb79df8bc
SHA256sum: 7c67d5bf99959b91aa01287abdd678f4ff0802390ffa380c6051e79fb6321942
Description: This package provides support translation between signed linear and alaw codecs in Asterisk.
Package: asterisk13-codec-g722
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5856
Filename: asterisk13-codec-g722_13.2.0-4_ramips_24kec.ipk
Size: 6665
MD5Sum: fc5c11c2a7f2c390a804c33dc33b5b14
SHA256sum: 47e3030becf2ecd36beeef4fa579c2dbbf8e0793c48f54a5890be198d39ba331
Description: This package provides support a high bit rate 48/56/64Kbps ITU standard codec in Asterisk.
Package: asterisk13-codec-g726
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4454
Filename: asterisk13-codec-g726_13.2.0-4_ramips_24kec.ipk
Size: 5254
MD5Sum: 3ffd2284a2531a69ffec6847ed7ccca1
SHA256sum: e83ace68e22be933b50a079c82b033a23e29edc284eb7a59d454445f825a6840
Description: This package provides support translation between signed linear and ITU G.726-32kbps codecs in Asterisk.
Package: asterisk13-codec-g729
Version: 1.3-1
Depends: libc, bcg729, asterisk13
Source: feeds/telephony/net/asterisk-g72x
License: GPL-3.0
LicenseFiles: README.md
Section: net
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: asterisk13-codec-g729_1.3-1_ramips_24kec.ipk
Size: 4923
MD5Sum: b8be5dda3a7b862a623e09a486267506
SHA256sum: a401eac38ca44e4817a58959d3e8833a5a20e373ae148269c4599e9b4fa52b4e
Description: Asterisk G.729 codec based on bcg729 implementation.
Package: asterisk13-codec-gsm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20704
Filename: asterisk13-codec-gsm_13.2.0-4_ramips_24kec.ipk
Size: 21487
MD5Sum: 3fa88c54972251366e6ff49977ec475a
SHA256sum: 740f67c5299089739a74f13c4cf35592206e920f01ce497d0f272ba2b0e3923f
Description: This package provides support translate between signed linear and GSM in Asterisk.
Package: asterisk13-codec-ilbc
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31854
Filename: asterisk13-codec-ilbc_13.2.0-4_ramips_24kec.ipk
Size: 32655
MD5Sum: 96b5659ed7ece596bc86b4650c3243a3
SHA256sum: a5b0813ded686f22023137d53aaaa742d3b593430560c723298c82b41bf73600
Description: This package provides support translate between signed linear and ILBC in Asterisk.
Package: asterisk13-codec-lpc10
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22203
Filename: asterisk13-codec-lpc10_13.2.0-4_ramips_24kec.ipk
Size: 22971
MD5Sum: dacf4a7874dee57da582a5d45056f58c
SHA256sum: 5ff355644d9096b81a6c195abaf2d101d73b59be693a2c19b9b196d3de86e63e
Description: This package provides support translate between signed linear and LPC10 in Asterisk.
Package: asterisk13-codec-resample
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10308
Filename: asterisk13-codec-resample_13.2.0-4_ramips_24kec.ipk
Size: 11095
MD5Sum: 937eb6173e5c6476ab61e0ff402d9615
SHA256sum: 7dc69fecd2e33366fd00ede229f51488f2be760a2fbc7994563fe5d5f3bf0c0f
Description: This package provides support resample sLinear audio in Asterisk.
Package: asterisk13-codec-ulaw
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2570
Filename: asterisk13-codec-ulaw_13.2.0-4_ramips_24kec.ipk
Size: 3383
MD5Sum: 38b601e21fda56b91c81345f759e044a
SHA256sum: 00beaa437a6e0268ee550bf03ac26eeaa8c511485b1fd02d89e576c859df8297
Description: This package provides support translation between signed linear and ulaw codecs in Asterisk.
Package: asterisk13-curl
Version: 13.2.0-4
Depends: libc, asterisk13, libcurl
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8648
Filename: asterisk13-curl_13.2.0-4_ramips_24kec.ipk
Size: 9444
MD5Sum: 275d544932dd9fb5fd03fcc1b2a42d31
SHA256sum: 26f8bbec1370a4c95e37a20128b4a35694beb4fba1659692f3e7242bd014aed2
Description: This package provides support CURL support in Asterisk.
Package: asterisk13-format-g726
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2975
Filename: asterisk13-format-g726_13.2.0-4_ramips_24kec.ipk
Size: 3761
MD5Sum: 09f24b3145641ba8d100d52a6b593b22
SHA256sum: 68b17aa97e9a091283f9a4ba70cbb69b8f24305b32abdf3a6dce2ab24dd03cba
Description: This package provides support support for headerless G.726 16/24/32/40kbps data format in Asterisk.
Package: asterisk13-format-g729
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2915
Filename: asterisk13-format-g729_13.2.0-4_ramips_24kec.ipk
Size: 3724
MD5Sum: 71b653b65b22d49434e280145824567a
SHA256sum: ab9cb31f7fe4fcd3435a6d67296409825d835e04c02691b92df71b3afcb80262
Description: This package provides support support for raw headerless G729 data in Asterisk.
Package: asterisk13-format-gsm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5874
Filename: asterisk13-format-gsm_13.2.0-4_ramips_24kec.ipk
Size: 6627
MD5Sum: 2134816f93475d263922e36b4044b0a6
SHA256sum: cea224e10648406a82588018e756ee327ed50692b5e7254cccf1429f3ce66dd2
Description: This package provides support support for GSM format in Asterisk.
Package: asterisk13-format-h263
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2816
Filename: asterisk13-format-h263_13.2.0-4_ramips_24kec.ipk
Size: 3619
MD5Sum: c5732f53e40371187cba235f3d1e5c03
SHA256sum: dcda9955d45b76158e1d21737dc0227e0c8c970d47eba1c9b6df203f335ea58c
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk13-format-h264
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2897
Filename: asterisk13-format-h264_13.2.0-4_ramips_24kec.ipk
Size: 3700
MD5Sum: 5f964a6454d95c01d00de424db9ffb13
SHA256sum: 74c93a4198e4ce3e72734672e30f505739459df64733ca027423cdaa9b60c59d
Description: This package provides support support for H264 format in Asterisk.
Package: asterisk13-format-ilbc
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2910
Filename: asterisk13-format-ilbc_13.2.0-4_ramips_24kec.ipk
Size: 3715
MD5Sum: f4bc82b0e9c48ac7f260e334ebf2e847
SHA256sum: 629d5d39cdfdeb18f25f1b5676fcfb8dabf6686405e9fda4189f84934c3c6f8b
Description: This package provides support support for ILBC format in Asterisk.
Package: asterisk13-format-pcm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4590
Filename: asterisk13-format-pcm_13.2.0-4_ramips_24kec.ipk
Size: 5361
MD5Sum: 8c4ed491aa7382e9c1e52f08293bba12
SHA256sum: c8436b2626577cb2154684449b3fa39133da1c2f64960a01afece20ffb8e6f36
Description: This package provides support support for PCM format in Asterisk.
Package: asterisk13-format-sln
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3486
Filename: asterisk13-format-sln_13.2.0-4_ramips_24kec.ipk
Size: 4265
MD5Sum: 429b25f466852e49c607e8c4c7935cd9
SHA256sum: 907673b6f187112d3736d31a5c5251da8481524e0c2cbdde75f91c12c0841705
Description: This package provides support support for raw slinear format in Asterisk.
Package: asterisk13-format-vox
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2842
Filename: asterisk13-format-vox_13.2.0-4_ramips_24kec.ipk
Size: 3647
MD5Sum: 74a324856da216cf276a3264c163b816
SHA256sum: f5d394e16ed9fa276329bb7511915377e99b2412b0331587306f72adfc9495f0
Description: This package provides support support for ADPCM vox format in Asterisk.
Package: asterisk13-format-wav-gsm
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9804
Filename: asterisk13-format-wav-gsm_13.2.0-4_ramips_24kec.ipk
Size: 10614
MD5Sum: 8bc1c4deb21913a9354ae016b860ce34
SHA256sum: 3796af9a5148fc3d118558556249064963b713fe617b7d76d535f1ce80f88747
Description: This package provides support support for proprietary Microsoft WAV format (Proprietary GSM) in Asterisk.
Package: asterisk13-format-wav
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5010
Filename: asterisk13-format-wav_13.2.0-4_ramips_24kec.ipk
Size: 5812
MD5Sum: f09d228fb9ab3aca366fca8570387593
SHA256sum: 3d09c911ac292d03b2a157fad68c75b8e65f4b7f20deab126f9b6764e14e8c55
Description: This package provides support support for proprietary Microsoft WAV format (8000hz Signed Linear) in Asterisk.
Package: asterisk13-func-base64
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2723
Filename: asterisk13-func-base64_13.2.0-4_ramips_24kec.ipk
Size: 3518
MD5Sum: 13a2f11df3a845c3bffc0f7e8ecf3aad
SHA256sum: a4b88db990792c8299315ae05b870006fe8b83de194aed6d385d722d7dc17971
Description: This package provides support support of base64 function in Asterisk.
Package: asterisk13-func-blacklist
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2655
Filename: asterisk13-func-blacklist_13.2.0-4_ramips_24kec.ipk
Size: 3481
MD5Sum: b31678459cf3b458efce14273cc8cdb1
SHA256sum: f9810ba464777232e3f71113d66a6fb41da095ab8a1ab835071145985748ff78
Description: This package provides support looking up the callerid number and see if it is blacklisted in Asterisk.
Package: asterisk13-func-channel
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8326
Filename: asterisk13-func-channel_13.2.0-4_ramips_24kec.ipk
Size: 9131
MD5Sum: 133b6ce7c9cf88fd84d8db2949c58e03
SHA256sum: b409eac5187fff25f55a7d9f324d92808e10915a625ff5221d500b1299a15073
Description: This package provides support Channel info dialplan function in Asterisk.
Package: asterisk13-func-cut
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4172
Filename: asterisk13-func-cut_13.2.0-4_ramips_24kec.ipk
Size: 4925
MD5Sum: 26dfc98645e8e2826493253bf31ec95d
SHA256sum: c990823bd4203173279f294568057c0d1e4e9a615077e2bbe558f972ede1ba7f
Description: This package provides support CUT function in Asterisk.
Package: asterisk13-func-db
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5060
Filename: asterisk13-func-db_13.2.0-4_ramips_24kec.ipk
Size: 5853
MD5Sum: df0423100d2c227954d0f0432ca2a420
SHA256sum: ebda47a4638b95c22814b9a965e782ea7ef4cb3152fc1bfdd04c5406eb0b9817
Description: This package provides support functions for interaction with the database in Asterisk.
Package: asterisk13-func-devstate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4016
Filename: asterisk13-func-devstate_13.2.0-4_ramips_24kec.ipk
Size: 4804
MD5Sum: d1fa512f6e08b26034a6ca6f8268cfa2
SHA256sum: 27a0a682afd50d7f209c931b32688ec587ef1f57f6354842c0a25e67c4b291f1
Description: This package provides support functions for manually controlled blinky lights in Asterisk.
Package: asterisk13-func-enum
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5246
Filename: asterisk13-func-enum_13.2.0-4_ramips_24kec.ipk
Size: 6053
MD5Sum: 807a731f6545256f33e263cc6b8eee88
SHA256sum: 86c3acde95b6a36ecf302835604d89b619d04e7f8c46d598862016ce02e02409
Description: This package provides support ENUM in Asterisk.
Package: asterisk13-func-env
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11031
Filename: asterisk13-func-env_13.2.0-4_ramips_24kec.ipk
Size: 11859
MD5Sum: 3a654176ae705eab899e1c348a4e444f
SHA256sum: b507768c410a4a0c0132185536822abd36baf36d18a49fcfe7cf3bbcaa22ed5d
Description: This package provides support Environment dialplan functions in Asterisk.
Package: asterisk13-func-extstate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2296
Filename: asterisk13-func-extstate_13.2.0-4_ramips_24kec.ipk
Size: 3111
MD5Sum: 0bdf31d6e621c3f290a735feeb642e40
SHA256sum: ce0afdb5f3ab19979c849420e0470fbeccc06a2e4a8cbd52f49412293d0f740f
Description: This package provides support retrieving the state of a hinted extension for dialplan control in Asterisk.
Package: asterisk13-func-global
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4152
Filename: asterisk13-func-global_13.2.0-4_ramips_24kec.ipk
Size: 4929
MD5Sum: 286c4a2dede0ee4bf2f08c6d955d4ef9
SHA256sum: 7cac032664f5a6a59af1a306f35d2d8febc89b7b529fd18ca9ee04a13b92450d
Description: This package provides support global variable dialplan functions in Asterisk.
Package: asterisk13-func-groupcount
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3582
Filename: asterisk13-func-groupcount_13.2.0-4_ramips_24kec.ipk
Size: 4357
MD5Sum: 0d1506edcacfd05feced6cb230c9146a
SHA256sum: 416a77d974267dbd55084290cbe793dda04ec5778b44dc379ed54ad8d371ce4b
Description: This package provides support for counting number of channels in the specified group in Asterisk.
Package: asterisk13-func-math
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4478
Filename: asterisk13-func-math_13.2.0-4_ramips_24kec.ipk
Size: 5224
MD5Sum: e117c4d985fd0dc81e8f6bec7788ad8e
SHA256sum: 11904bd6e900b9e37a5b5503e591a20afc8a61cd357c19b06c5158b50a5230c6
Description: This package provides support Math functions in Asterisk.
Package: asterisk13-func-module
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1936
Filename: asterisk13-func-module_13.2.0-4_ramips_24kec.ipk
Size: 2735
MD5Sum: 7b9b0019cf347d426f0a4f3008bcb29c
SHA256sum: 8e26a6949a1a1376e7f945bd1230831786275b8e903f64c36b52eb59cafdb828
Description: This package provides support Simple module check function in Asterisk.
Package: asterisk13-func-shell
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2317
Filename: asterisk13-func-shell_13.2.0-4_ramips_24kec.ipk
Size: 3117
MD5Sum: cc016ac11c6e8500d8f4dce4d557b12b
SHA256sum: 701035ec37c68b31928a89bf606539a9418f169075ed094954c955280be462a1
Description: This package provides support support for shell execution in Asterisk.
Package: asterisk13-func-uri
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2053
Filename: asterisk13-func-uri_13.2.0-4_ramips_24kec.ipk
Size: 2866
MD5Sum: d485e561ef2733e94f6e8d528d68a442
SHA256sum: 087c7d4f89bfd9d9d2d6fd81d33fd74054b5a28c6347326dfb6c4c63ccff7dc5
Description: This package provides support Encodes and decodes URI-safe strings in Asterisk.
Package: asterisk13-func-vmcount
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2087
Filename: asterisk13-func-vmcount_13.2.0-4_ramips_24kec.ipk
Size: 2894
MD5Sum: 8870f2e408e114040c43bd733a2d2c3d
SHA256sum: 14ba7b7cc2cf6b732fb7d8fbfc2378866f0c97eeb315a78e2f18e7bb4f1b70d2
Description: This package provides support a vmcount dialplan function in Asterisk.
Package: asterisk13-odbc
Version: 13.2.0-4
Depends: libc, asterisk13, libpthread, libc, unixodbc
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69065
Filename: asterisk13-odbc_13.2.0-4_ramips_24kec.ipk
Size: 70002
MD5Sum: 3d360bdd320d0172aedd2560056870c7
SHA256sum: 65f9207802a2b096d4dafa5341353f3f175ae9f233c42d5c26dbac64edb8db33
Description: This package provides support ODBC support in Asterisk.
Package: asterisk13-pbx-ael
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8939
Filename: asterisk13-pbx-ael_13.2.0-4_ramips_24kec.ipk
Size: 9794
MD5Sum: ed93dc3a42c1e138628cb33b2bd5d645
SHA256sum: 0edd00befe188a11e052748fa00648903cfdfe2801e818bf711dd110dd469d76
Description: This package provides support support for symbolic Asterisk Extension Logic in Asterisk.
Package: asterisk13-pbx-dundi
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53410
Filename: asterisk13-pbx-dundi_13.2.0-4_ramips_24kec.ipk
Size: 54237
MD5Sum: 1040ede463d505d33a5b8c8e27a0ddac
SHA256sum: 089967883db3e26297fda615f28b337bf7e2888a95e2e4cb3094fe53d0fd37d2
Description: This package provides support provides Dundi Lookup service for Asterisk in Asterisk.
Package: asterisk13-pbx-spool
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8991
Filename: asterisk13-pbx-spool_13.2.0-4_ramips_24kec.ipk
Size: 9791
MD5Sum: ff7133dc14f5b35973a0751599f8536f
SHA256sum: 6608ccb3d80e685838269ee3ce9200667c75ca208e6d7ec3b4cf9e9667e08eb4
Description: This package provides support outgoing call spool support in Asterisk.
Package: asterisk13-pgsql
Version: 13.2.0-4
Depends: libc, asterisk13, libpq
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37399
Filename: asterisk13-pgsql_13.2.0-4_ramips_24kec.ipk
Size: 38369
MD5Sum: 12113340e2564cd147c1ee2c4a843fcd
SHA256sum: 369437abbcd1c012cc742386ce0c425b501a73f8588cc044336a51a5f03b49b1
Description: This package provides support PostgreSQL support in Asterisk.
Package: asterisk13-pjsip
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-sorcery, libpjsip, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsua, libpjsua2
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 269893
Filename: asterisk13-pjsip_13.2.0-4_ramips_24kec.ipk
Size: 270398
MD5Sum: 342d6d8d1736153db6b60c82aceca073
SHA256sum: 613ce365cf42cc9b762fc381e71f3cb4603d203c3db7d20b265819024557907a
Description: This package provides support the channel pjsip in Asterisk.
Package: asterisk13-res-ael-share
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41877
Filename: asterisk13-res-ael-share_13.2.0-4_ramips_24kec.ipk
Size: 42736
MD5Sum: 3a565fc15f83fb8b74b8abdd84952882
SHA256sum: e28dc7c952eeaad5e54b6e244882690d8822646af0f7b93f1f68b2754432924e
Description: This package provides support support for shareable AEL code mainly between internal and external modules in Asterisk.
Package: asterisk13-res-agi
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28599
Filename: asterisk13-res-agi_13.2.0-4_ramips_24kec.ipk
Size: 29362
MD5Sum: 827584b31fe2ce776032fb2713138c33
SHA256sum: 9699665f802e5290bc614d37e50497501ca94ae30e7b4ed9912fcfd01a9c7cc2
Description: This package provides support Support for the Asterisk Gateway Interface extension in Asterisk.
Package: asterisk13-res-clioriginate
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3809
Filename: asterisk13-res-clioriginate_13.2.0-4_ramips_24kec.ipk
Size: 4580
MD5Sum: bf6403863ae1a8d32c127e2ab34ccb2a
SHA256sum: f7d4e525ed496ca6fbc55d8a76a95948ad70df16ac4856c595af883fed068632
Description: This package provides support Originate calls via the CLI in Asterisk.
Package: asterisk13-res-fax
Version: 13.2.0-4
Depends: libc, asterisk13, asterisk13-res-timing-pthread
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33181
Filename: asterisk13-res-fax_13.2.0-4_ramips_24kec.ipk
Size: 34126
MD5Sum: 4999ec13afca95a4d4811c9a7a3885a8
SHA256sum: f63d8867b30284eb9e7349634fbfdf020baf70ddabc552394f8d89540891574e
Description: This package provides support Generic FAX resource for FAX technology resource modules in Asterisk.
Package: asterisk13-res-http-websocket
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11844
Filename: asterisk13-res-http-websocket_13.2.0-4_ramips_24kec.ipk
Size: 12575
MD5Sum: ca6b9cca8c60f5825c5e0fdbb6c8fd65
SHA256sum: 15211e70cca3e10215e5a05f1301cae63a93080f7c59ded642bca5867ca1ee42
Description: This package provides support in Asterisk.
Package: asterisk13-res-monitor
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8695
Filename: asterisk13-res-monitor_13.2.0-4_ramips_24kec.ipk
Size: 9511
MD5Sum: 3436f0186321cfee662c30ace3389726
SHA256sum: 98970f22dafeb6b5314a2cc52ca6b11d9bb279a031d848ccfd5e8c83f9900f4c
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk13-res-musiconhold
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17846
Filename: asterisk13-res-musiconhold_13.2.0-4_ramips_24kec.ipk
Size: 18672
MD5Sum: 3373a597d4b1906c466fabaafdb6f167
SHA256sum: 32e03d06cbf279b84e0a66ae568a68bc93683666007d1b7deffda3a755a46eb0
Description: This package provides support Music On Hold support in Asterisk.
Package: asterisk13-res-phoneprov
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16932
Filename: asterisk13-res-phoneprov_13.2.0-4_ramips_24kec.ipk
Size: 17822
MD5Sum: 44ce19755e34674df74b189ae11987fe
SHA256sum: 99aefc74b3dd7ae7ecaf2503d4542905fa668ca3c7a860df0cdc2153e38a9f40
Description: This package provides support Phone provisioning application for the asterisk internal http server in Asterisk.
Package: asterisk13-res-rtp-asterisk
Version: 13.2.0-4
Depends: libc, asterisk13, libpjsip, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsua, libpjsua2
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39984
Filename: asterisk13-res-rtp-asterisk_13.2.0-4_ramips_24kec.ipk
Size: 40720
MD5Sum: f4b44c2836f0fb1a686345cb5a472ab7
SHA256sum: 300803ae328a632ce57b0d286fb960c24c75fd9614a2092d3292c8d568552f59
Description: This package provides support in Asterisk.
Package: asterisk13-res-rtp-multicast
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3849
Filename: asterisk13-res-rtp-multicast_13.2.0-4_ramips_24kec.ipk
Size: 4612
MD5Sum: c90897e3d25600d95134250780d5e568
SHA256sum: a50d3f1341de7ea66037c311194a57d341e5fbafaaa633b4a00c5ad930576290
Description: This package provides support in Asterisk.
Package: asterisk13-res-smdi
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14345
Filename: asterisk13-res-smdi_13.2.0-4_ramips_24kec.ipk
Size: 15153
MD5Sum: a867071b6ba3c754835ff2d080c25d39
SHA256sum: 7e6dd8ed58ea36dff94124223d6df7a9bcd2ea0770c6a425cac5f75ed3c268cc
Description: This package provides support Simple Message Desk Interface capability in Asterisk.
Package: asterisk13-res-sorcery
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11842
Filename: asterisk13-res-sorcery_13.2.0-4_ramips_24kec.ipk
Size: 12583
MD5Sum: d154263434dc1da684fa6b8626df5b0c
SHA256sum: e164a3db6571e0c596d6c16230f5cc0a9cdc52c5c32f3b277171ecc31859663f
Description: This package provides support in Asterisk.
Package: asterisk13-res-timing-pthread
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4734
Filename: asterisk13-res-timing-pthread_13.2.0-4_ramips_24kec.ipk
Size: 5490
MD5Sum: 11c6d6cb529934738cf815606baa7e10
SHA256sum: a009e5842886b4ad261f23ac8a26e10b8a7719216cb6779aed7795068659d7b3
Description: This package provides support in Asterisk.
Package: asterisk13-res-timing-timerfd
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3482
Filename: asterisk13-res-timing-timerfd_13.2.0-4_ramips_24kec.ipk
Size: 4241
MD5Sum: e93d80df8b5bc95ce7d4bcf46c32e3b0
SHA256sum: db191f268fb21c2aec33926a7eaf2e168c0350b21c35921c59f88c092026d2b5
Description: This package provides support in Asterisk.
Package: asterisk13-voicemail
Version: 13.2.0-4
Depends: libc, asterisk13
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 612696
Filename: asterisk13-voicemail_13.2.0-4_ramips_24kec.ipk
Size: 613592
MD5Sum: 9ede147fdb06cb0026ec08d5969da2a9
SHA256sum: daa3f355cf38222d63d034000ae9321b40cf680d1202305834c84b6a05614084
Description: This package provides support voicemail related modules in Asterisk.
Package: asterisk13
Version: 13.2.0-4
Depends: libc, jansson, libncurses, libopenssl, libpopt, libsqlite3, libstdcpp, libuuid, libxml2, libxslt, zlib
Source: feeds/telephony/net/asterisk-13.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 906906
Filename: asterisk13_13.2.0-4_ramips_24kec.ipk
Size: 905645
MD5Sum: 63022e84938dd749675d5102b7912fdb
SHA256sum: f7f7bcb382e7299dcc9fa6eb2d2fc14e11b32dddc97a53ad4d08f9138f11ec22
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
Package: asterisk18-app-alarmreceiver
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6886
Filename: asterisk18-app-alarmreceiver_1.8.32.2-3_ramips_24kec.ipk
Size: 7748
MD5Sum: b0bc6b1e164a7c6e22590b2310024827
SHA256sum: 091bd168c9ba09a4d6b13634fbccc8f6ca35ad199cea1e3e2ac2a1dd6c768568
Description: This package provides support Central Station Alarm receiver for Ademco Contact ID in Asterisk.
Package: asterisk18-app-authenticate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3315
Filename: asterisk18-app-authenticate_1.8.32.2-3_ramips_24kec.ipk
Size: 4106
MD5Sum: 866a0653ea2a98472b23f06de7ed1c17
SHA256sum: aed8d25cba015cdc320029ffd7071fbff18683eec9e5164de614d653a604ce80
Description: This package provides support Execute arbitrary authenticate commands in Asterisk.
Package: asterisk18-app-chanisavail
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2863
Filename: asterisk18-app-chanisavail_1.8.32.2-3_ramips_24kec.ipk
Size: 3682
MD5Sum: 1a5ebddfb030f0226b29cb4a7f5344c1
SHA256sum: d3ed33ca1ba154e221f82893991aa92aa8762e0777848f63039d7526a60e8664
Description: This package provides support support for checking if a channel is available in Asterisk.
Package: asterisk18-app-chanspy
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9276
Filename: asterisk18-app-chanspy_1.8.32.2-3_ramips_24kec.ipk
Size: 10066
MD5Sum: ec6da22079758d219b75c7dea86df94d
SHA256sum: 849f20f6b3c1296c3022b61db9b10f06905b1f7d7bd54d834b0de5abc71fd4f8
Description: This package provides support support for listening in on any channel in Asterisk.
Package: asterisk18-app-directed_pickup
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3950
Filename: asterisk18-app-directed_pickup_1.8.32.2-3_ramips_24kec.ipk
Size: 4724
MD5Sum: 48fa6838f947f306e4d416fa93d9f02b
SHA256sum: 481b291bc72578a123fb911c699083b6f1fecc11646459414555420ea45da307
Description: This package provides support support for directed call pickup in Asterisk.
Package: asterisk18-app-disa
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4891
Filename: asterisk18-app-disa_1.8.32.2-3_ramips_24kec.ipk
Size: 5679
MD5Sum: 729000682e4c3d586043f3d26d4d234c
SHA256sum: 35715c2044db1963979e5a26bd2ae65009e6cd8cb5ea22b0803ca6bcb0f696a1
Description: This package provides support Direct Inward System Access in Asterisk.
Package: asterisk18-app-exec
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3239
Filename: asterisk18-app-exec_1.8.32.2-3_ramips_24kec.ipk
Size: 3998
MD5Sum: 8de19faf7afc8ea1a4825cd059b0b7c0
SHA256sum: d92822e74248ef5bfa866cde2a6cb9bd9b03f189a9662b721b95a2ae56023882
Description: This package provides support support for application execution in Asterisk.
Package: asterisk18-app-minivm
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32731
Filename: asterisk18-app-minivm_1.8.32.2-3_ramips_24kec.ipk
Size: 33667
MD5Sum: 8753845b7c0b059c2f7280d302ba920e
SHA256sum: fde8b5b5adf255e25f927172895433e0ae6de721c23e1369a8bc60870e3d7282
Description: This package provides support a voicemail system in small building blocks working together based on the Comedian Mail voicemail in Asterisk.
Package: asterisk18-app-mixmonitor
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7330
Filename: asterisk18-app-mixmonitor_1.8.32.2-3_ramips_24kec.ipk
Size: 8155
MD5Sum: 1971f32d6f9dbc6c2e2e53717e5ac2e6
SHA256sum: 285107df4c0f9fc5cbd3b79e6565dd636bf2ccd2263820028dcc5d302de26baa
Description: This package provides support record a call and mix the audio during the recording in Asterisk.
Package: asterisk18-app-originate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3129
Filename: asterisk18-app-originate_1.8.32.2-3_ramips_24kec.ipk
Size: 3970
MD5Sum: d748617e1ea9b5695e1c6618f7f10ada
SHA256sum: d6676589566e73cc7f4340d33b9347944666b368c6075ced5d714519ec0f41be
Description: This package provides support originating an outbound call and connecting it to a specified extension or application in Asterisk.
Package: asterisk18-app-playtones
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2095
Filename: asterisk18-app-playtones_1.8.32.2-3_ramips_24kec.ipk
Size: 2900
MD5Sum: 51212454b260c3c42135aa737b89f95c
SHA256sum: d21eb797d565f7379eda863eb7151c9b93d0df2475082454c5f33e679027a61b
Description: This package provides support play a tone list in Asterisk.
Package: asterisk18-app-read
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3672
Filename: asterisk18-app-read_1.8.32.2-3_ramips_24kec.ipk
Size: 4447
MD5Sum: 320c6b1bd8d99995064261a6fdbff4bc
SHA256sum: 43b24b7107f59e89425e808f9ffdafbd846a6ac3feee01b7aba6ba6c22466bf0
Description: This package provides support a trivial application to read a variable in Asterisk.
Package: asterisk18-app-readexten
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4127
Filename: asterisk18-app-readexten_1.8.32.2-3_ramips_24kec.ipk
Size: 4925
MD5Sum: f329709e8cce10f31bca9f4fcff639e8
SHA256sum: d575282cf3930a4873e83b0659c23f3c1585ecbe261fabd54fd5139b551de49c
Description: This package provides support a trivial application to read an extension into a variable in Asterisk.
Package: asterisk18-app-record
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4569
Filename: asterisk18-app-record_1.8.32.2-3_ramips_24kec.ipk
Size: 5344
MD5Sum: 26a07b4e1cbb916b9e774fee572cd45b
SHA256sum: cfd522e65c0480cbbb9ffd22db8f694198dfeb819c6611e145c13f71d1dd57d3
Description: This package provides support to record a sound file in Asterisk.
Package: asterisk18-app-sayunixtime
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2204
Filename: asterisk18-app-sayunixtime_1.8.32.2-3_ramips_24kec.ipk
Size: 3011
MD5Sum: 1fac89155ed9adbd0215e7e9f1d773f7
SHA256sum: 08f7f315038ec86e319da46d8ddea120dfe1a7931d627d74bfb0ade0ea76aa55
Description: This package provides support an application to say Unix time in Asterisk.
Package: asterisk18-app-senddtmf
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2760
Filename: asterisk18-app-senddtmf_1.8.32.2-3_ramips_24kec.ipk
Size: 3579
MD5Sum: 78275820eba74888757da80c6a05f753
SHA256sum: e98d91b7c62f9009e881e945778f4c14e5058e14d3553534a7d3c3b3c8f73810
Description: This package provides support Sends arbitrary DTMF digits in Asterisk.
Package: asterisk18-app-setcallerid
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2092
Filename: asterisk18-app-setcallerid_1.8.32.2-3_ramips_24kec.ipk
Size: 2898
MD5Sum: edbc997b6077ec5e5f98189694a9f3d6
SHA256sum: a3de9d9f268496137c25a1cd527dd1e88cabc419083ccf618ac383c3b3565be9
Description: This package provides support Support for setting callerid in Asterisk.
Package: asterisk18-app-sms
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpopt, libstdcpp
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24780
Filename: asterisk18-app-sms_1.8.32.2-3_ramips_24kec.ipk
Size: 25560
MD5Sum: 09d0019889f7e56a43790c9cbaf7a151
SHA256sum: 7f9e5a82a3bd30ce6fd6f0888f0729999c00bf7b0a2316c5411369d5ff5d5740
Description: This package provides support SMS support (ETSI ES 201 912 protocol 1) in Asterisk.
Package: asterisk18-app-stack
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-agi
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10900
Filename: asterisk18-app-stack_1.8.32.2-3_ramips_24kec.ipk
Size: 11736
MD5Sum: d3ca49faddbb225be27f68e80603f19e
SHA256sum: 5cefeda5264d7caf9c827507be2c62d420c6205a7416ff1856d321140c2c8d4c
Description: This package provides support stack applications Gosub Return etc. in Asterisk.
Package: asterisk18-app-system
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2598
Filename: asterisk18-app-system_1.8.32.2-3_ramips_24kec.ipk
Size: 3402
MD5Sum: a5331af28aeec8c90b5b777a327ab6ce
SHA256sum: 15ff05967f4b8bf006e5eaa96a002f832e6d4f5ac6f3caada66ccb1aafa8ef5c
Description: This package provides support support for executing system commands in Asterisk.
Package: asterisk18-app-talkdetect
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3980
Filename: asterisk18-app-talkdetect_1.8.32.2-3_ramips_24kec.ipk
Size: 4749
MD5Sum: f6ecf95c400e1c5b30053ec4082c28da
SHA256sum: de16480a5578560bdcd4d7934e69a2d30f17491b15394f95dd629e4c8e86e47f
Description: This package provides support for file playback with audio detect in Asterisk.
Package: asterisk18-app-verbose
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2680
Filename: asterisk18-app-verbose_1.8.32.2-3_ramips_24kec.ipk
Size: 3498
MD5Sum: b010fac399fd661464e45a468c732267
SHA256sum: d0a64d93045d955f2d056ba41f817613fdaa737b65cec2fe699089c878cc26c7
Description: This package provides support Verbose logging application in Asterisk.
Package: asterisk18-app-waituntil
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2353
Filename: asterisk18-app-waituntil_1.8.32.2-3_ramips_24kec.ipk
Size: 3176
MD5Sum: 16582515790f716f51cbfb83552492fa
SHA256sum: a124512b22c5c870b5c9d3f1ce00222dbc0a49cb802d14f2580c45e696a6c4da
Description: This package provides support support sleeping until the given epoch in Asterisk.
Package: asterisk18-app-while
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4149
Filename: asterisk18-app-while_1.8.32.2-3_ramips_24kec.ipk
Size: 4920
MD5Sum: 606660a78105410971286f658f84ae60
SHA256sum: 94583f18136bad1699c05d21c071954e0c8560254a8169fd5d7c1aa97c0d7e44
Description: This package provides support a while loop implementation in Asterisk.
Package: asterisk18-cdr-csv
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4352
Filename: asterisk18-cdr-csv_1.8.32.2-3_ramips_24kec.ipk
Size: 5137
MD5Sum: 9399c28846a3a28e216ffe699618a0e2
SHA256sum: 351e0b7dd0d412a231936a9c8f559e47ec2b9cfbe39feba8c2bfcfb3884dd6e3
Description: This package provides support Call Detail Record with CSV support in Asterisk.
Package: asterisk18-cdr
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20680
Filename: asterisk18-cdr_1.8.32.2-3_ramips_24kec.ipk
Size: 21510
MD5Sum: 1fa7a666df6ca534f18a8be5eeed8b7f
SHA256sum: 23d83f86e357ca0c7748989b69a9268c4805e66741cb8e26b9ee171ea5c393c4
Description: This package provides support Call Detail Record in Asterisk.
Package: asterisk18-chan-agent
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21850
Filename: asterisk18-chan-agent_1.8.32.2-3_ramips_24kec.ipk
Size: 22608
MD5Sum: a7e918f571f5b29285076384c40071f6
SHA256sum: 2831d1201e11c9335d139e736c24f7abf83978eafd704922e7659a131b4c9c0a
Description: This package provides support An implementation of agents proxy channel in Asterisk.
Package: asterisk18-chan-gtalk
Version: 1.8.32.2-3
Depends: libc, asterisk18, libiksemel
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58885
Filename: asterisk18-chan-gtalk_1.8.32.2-3_ramips_24kec.ipk
Size: 59768
MD5Sum: fa83c70b49c2447017ef236b6ae9e4ed
SHA256sum: 60969669a6a97514169c72bd1360d92ee0e15b9e7b9523b2e2ce11b852a1a4d0
Description: This package provides support An implementation of chan_gtalk and res_jabber for GTalk support in Asterisk.
Package: asterisk18-chan-iax2
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-timing-timerfd
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 133631
Filename: asterisk18-chan-iax2_1.8.32.2-3_ramips_24kec.ipk
Size: 133954
MD5Sum: 47ca8c5ea9ccb24357f4cc745ffe9ad6
SHA256sum: 4197d8d8ba1a94e26f01df395513852e196a7585585b8a8f0a94b8825deae51e
Description: This package provides support An implementation of IAX2 channel in Asterisk.
Package: asterisk18-chan-local
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11312
Filename: asterisk18-chan-local_1.8.32.2-3_ramips_24kec.ipk
Size: 12128
MD5Sum: a293b83293518f5bafdca1851118f01e
SHA256sum: e148422f7ec8d5ac6751e76884ba5c50bd33991741706174b20a30c6781f4fd8
Description: This package provides support An implementation of local proxy channel in Asterisk.
Package: asterisk18-chan-mgcp
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41917
Filename: asterisk18-chan-mgcp_1.8.32.2-3_ramips_24kec.ipk
Size: 42769
MD5Sum: ea59fe6a840ab857a19173067f6edd70
SHA256sum: 7e2e6aa1fcd711be7872f49c723b59746d3457ad2b2a673a4b5a53369a462bfc
Description: This package provides support the channel chan_mgcp in Asterisk.
Package: asterisk18-chan-ooh323
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 273107
Filename: asterisk18-chan-ooh323_1.8.32.2-3_ramips_24kec.ipk
Size: 273054
MD5Sum: 1cec052ccc21ef04cfc73eb32bd0b032
SHA256sum: cf5bfb3707b14774290729c7835818ad52f4e9bd448d177072ec4ca4a2a8fb81
Description: This package provides support the channel chan_ooh323 in Asterisk.
Package: asterisk18-chan-sccp-b
Version: v4.2-r5845-1
Depends: libc, libltdl, asterisk18
Source: feeds/telephony/net/chan-sccp-b
License: GPL-1.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 345383
Filename: asterisk18-chan-sccp-b_v4.2-r5845-1_ramips_24kec.ipk
Size: 341628
MD5Sum: 56eb9e25544584b81fe5fb25564b65d3
SHA256sum: 301eab847a86eb7b8021b181b32235b336f92dfa01e5e6ede92175b99e84923c
Description: SCCP channel provider for asterisk. It delivers extended functionality for SCCP phones over chan_skinny delivered
by asterisk by default.
Package: asterisk18-chan-skinny
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49488
Filename: asterisk18-chan-skinny_1.8.32.2-3_ramips_24kec.ipk
Size: 50364
MD5Sum: 54235f9a2e591a53c891d422a7c80dd7
SHA256sum: aaa08f7693afac19549f73ac97e50704cd3ec9f999b98ba0d9d97c9987673fc7
Description: This package provides support the channel chan_skinny in Asterisk.
Package: asterisk18-codec-a-mu
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2217
Filename: asterisk18-codec-a-mu_1.8.32.2-3_ramips_24kec.ipk
Size: 3041
MD5Sum: a467c3f0aae6edc04d321b064f1044cb
SHA256sum: 250fa77f4f6c155289f0a9ae32e94b68b511d8fd3253965ba448303f952bd0dc
Description: This package provides support translation between alaw and ulaw codecs in Asterisk.
Package: asterisk18-codec-alaw
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2340
Filename: asterisk18-codec-alaw_1.8.32.2-3_ramips_24kec.ipk
Size: 3165
MD5Sum: 1e43a79639bbc9ecc63abde3051ac7c0
SHA256sum: d89ce88bf023dc1728b84d01f45772c018b932718217aa37887d29c81c875e96
Description: This package provides support translation between signed linear and alaw codecs in Asterisk.
Package: asterisk18-codec-g722
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5672
Filename: asterisk18-codec-g722_1.8.32.2-3_ramips_24kec.ipk
Size: 6478
MD5Sum: 223f9ffc9fcb9d8b64962a2e8fea11d8
SHA256sum: df329a56e970929c74f65792ccd05c9adaf384e5d3062f7397e7b1ceb105de13
Description: This package provides support a high bit rate 48/56/64Kbps ITU standard codec in Asterisk.
Package: asterisk18-codec-g726
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4266
Filename: asterisk18-codec-g726_1.8.32.2-3_ramips_24kec.ipk
Size: 5064
MD5Sum: cd27e6c24bb92ac79bb5838cd70d47c4
SHA256sum: ed5b7291f03f26590dc250c558ef0e837c617cead067cf134bbade3b843ab4f4
Description: This package provides support translation between signed linear and ITU G.726-32kbps codecs in Asterisk.
Package: asterisk18-codec-g729
Version: 1.3-1
Depends: libc, bcg729, asterisk18
Source: feeds/telephony/net/asterisk-g72x
License: GPL-3.0
LicenseFiles: README.md
Section: net
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: asterisk18-codec-g729_1.3-1_ramips_24kec.ipk
Size: 4926
MD5Sum: a53e81c82830d71e5d9f72c0a4d9ef46
SHA256sum: 307575a7904d08dca113788841dbdba37f54ff4f007b19216dd3f89f992a10de
Description: Asterisk G.729 codec based on bcg729 implementation.
Package: asterisk18-curl
Version: 1.8.32.2-3
Depends: libc, asterisk18, libcurl
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8076
Filename: asterisk18-curl_1.8.32.2-3_ramips_24kec.ipk
Size: 8871
MD5Sum: de12a8776ad8b4e7e4a74b62ea6e708a
SHA256sum: 125faf38b433db61ae7739bd4a16d8a3d9436a3a17c275edeb7b3f82b8b85058
Description: This package provides support CURL support in Asterisk.
Package: asterisk18-format-g726
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3026
Filename: asterisk18-format-g726_1.8.32.2-3_ramips_24kec.ipk
Size: 3817
MD5Sum: 3f17e520e7911b6e3c02c188d8111c60
SHA256sum: 05caa04115d5335a311c118ab3dde2c5fe1ec1c3c5590535de38d46d8b161f1a
Description: This package provides support support for headerless G.726 16/24/32/40kbps data format in Asterisk.
Package: asterisk18-format-g729
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2945
Filename: asterisk18-format-g729_1.8.32.2-3_ramips_24kec.ipk
Size: 3762
MD5Sum: 0b7912d3513dd7fc5d85d3724e9dd817
SHA256sum: c6b9a9aa2e5510199a0050deb605a2a4e5d4363d3784f4b4e11fa2f044ef9019
Description: This package provides support support for raw headerless G729 data in Asterisk.
Package: asterisk18-format-sln16
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2896
Filename: asterisk18-format-sln16_1.8.32.2-3_ramips_24kec.ipk
Size: 3708
MD5Sum: 7ea67016bfa076964fcc1a2f4702400f
SHA256sum: bee7d17b17cb7f90ce9922851b9cabae9c46bba42ae234eb7b3432a5e8416e47
Description: This package provides support support for raw slinear 16 format in Asterisk.
Package: asterisk18-format-sln
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2882
Filename: asterisk18-format-sln_1.8.32.2-3_ramips_24kec.ipk
Size: 3690
MD5Sum: 2354d117cbb68d51446ce8dfba5bb611
SHA256sum: a2e8fbc3f79347b2b4a9992050efeb2e815eb3719266772dbd360a6c96ba3b22
Description: This package provides support support for raw slinear format in Asterisk.
Package: asterisk18-func-base64
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2442
Filename: asterisk18-func-base64_1.8.32.2-3_ramips_24kec.ipk
Size: 3242
MD5Sum: ed15df878265cef2a0eaba73e6af7481
SHA256sum: 622f2625bd5148dbf599bad3b247a4b074cca3102dc6edbdda6ac66b55354a98
Description: This package provides support support of base64 function in Asterisk.
Package: asterisk18-func-blacklist
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2343
Filename: asterisk18-func-blacklist_1.8.32.2-3_ramips_24kec.ipk
Size: 3171
MD5Sum: c98618e3f35c394344a65f55fdbc5828
SHA256sum: 519f7e63a8335c945426e803a458c2c8d8f67079c6ccfefa6ae097635e0bec82
Description: This package provides support looking up the callerid number and see if it is blacklisted in Asterisk.
Package: asterisk18-func-channel
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6634
Filename: asterisk18-func-channel_1.8.32.2-3_ramips_24kec.ipk
Size: 7444
MD5Sum: 4c34580a415b7d3c13861199dd71d1c6
SHA256sum: 7c07cad36cdcdf27eb746b5817cfeaf78388a98286330bde07c964d4576fb872
Description: This package provides support Channel info dialplan function in Asterisk.
Package: asterisk18-func-cut
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3877
Filename: asterisk18-func-cut_1.8.32.2-3_ramips_24kec.ipk
Size: 4637
MD5Sum: 00afb0ae889a6be7c00c6f72064c151a
SHA256sum: 7f33f7182282c39d7b7af93d35c7505c165d7e8ac0c0671b8a889a90cced43cc
Description: This package provides support CUT function in Asterisk.
Package: asterisk18-func-db
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4522
Filename: asterisk18-func-db_1.8.32.2-3_ramips_24kec.ipk
Size: 5320
MD5Sum: cf1ca9f7073da5f0b6e39768f0e68617
SHA256sum: 2e0fee86fbfc0bc465c4bbf73429ced7eacb4aa091c67e559cc05dbc4e825ba9
Description: This package provides support functions for interaction with the database in Asterisk.
Package: asterisk18-func-devstate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3918
Filename: asterisk18-func-devstate_1.8.32.2-3_ramips_24kec.ipk
Size: 4715
MD5Sum: 82ea1c2a3491c0d662a4fabb75327b2f
SHA256sum: fdc0deac68c6217a4349dd4df75ebed075527e3252ebb88f554a0ad96c863159
Description: This package provides support functions for manually controlled blinky lights in Asterisk.
Package: asterisk18-func-enum
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4904
Filename: asterisk18-func-enum_1.8.32.2-3_ramips_24kec.ipk
Size: 5710
MD5Sum: ceb4ac107793bf7c793ea475131a585f
SHA256sum: f8ecd6ac20c808690c5f335282f02f695aa55600768b0cd55834f38fede427ef
Description: This package provides support ENUM in Asterisk.
Package: asterisk18-func-env
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10910
Filename: asterisk18-func-env_1.8.32.2-3_ramips_24kec.ipk
Size: 11736
MD5Sum: 05ee3db8daf016ac2cfa27073e932c91
SHA256sum: fc065d2ac71464c6330f44023f0de533e6e5cce469161d893b1b2f6ca09b481f
Description: This package provides support Environment dialplan functions in Asterisk.
Package: asterisk18-func-extstate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2223
Filename: asterisk18-func-extstate_1.8.32.2-3_ramips_24kec.ipk
Size: 3061
MD5Sum: 7e1afab917774054930074360e22b09a
SHA256sum: f5eb61c340c2e29d3e57afee672567fae4c758b1cd51341af87ac67ef841fd5a
Description: This package provides support retrieving the state of a hinted extension for dialplan control in Asterisk.
Package: asterisk18-func-global
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3885
Filename: asterisk18-func-global_1.8.32.2-3_ramips_24kec.ipk
Size: 4669
MD5Sum: 864eb7310117ed66e646ccb82127e257
SHA256sum: 54023983e9e84018ab5c0b142e712efc5f26d1a138e253fdaa9bbd0b503b6d55
Description: This package provides support global variable dialplan functions in Asterisk.
Package: asterisk18-func-groupcount
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3360
Filename: asterisk18-func-groupcount_1.8.32.2-3_ramips_24kec.ipk
Size: 4156
MD5Sum: fac5cb61641205f8e57e8a310a66e573
SHA256sum: 23fc3195023a24d05b77b7ff26ad6a5e5f4b53809a9197e096fac790c5164acd
Description: This package provides support for counting number of channels in the specified group in Asterisk.
Package: asterisk18-func-math
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4311
Filename: asterisk18-func-math_1.8.32.2-3_ramips_24kec.ipk
Size: 5076
MD5Sum: f0b51f9df0d07a56dc54268d4387de51
SHA256sum: 5dce0770733c2d4e4e7e727294df86e223b72d2ce398f76324243a55cece6be7
Description: This package provides support Math functions in Asterisk.
Package: asterisk18-func-module
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1829
Filename: asterisk18-func-module_1.8.32.2-3_ramips_24kec.ipk
Size: 2633
MD5Sum: 96f837a726a28f1ba3a051adc5e61bd6
SHA256sum: bc31e3119d4be499c2803c928198373c5f4fb93d24233beb9d9ea7780b59f3ee
Description: This package provides support Simple module check function in Asterisk.
Package: asterisk18-func-shell
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2233
Filename: asterisk18-func-shell_1.8.32.2-3_ramips_24kec.ipk
Size: 3038
MD5Sum: d845dbf7f52659dfbc316afacd251c09
SHA256sum: dd3df1f53a541577a720246e4281bfe5362f2be5139fa77c4a3fe3b6fe364e35
Description: This package provides support support for shell execution in Asterisk.
Package: asterisk18-func-uri
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1938
Filename: asterisk18-func-uri_1.8.32.2-3_ramips_24kec.ipk
Size: 2758
MD5Sum: 6beb2d09e133a1ce2d98c4bed6a28d2d
SHA256sum: 2380e85f966f70b551223149c047b6cbaf9aff823cfeb94f28de2e67e8a27004
Description: This package provides support Encodes and decodes URI-safe strings in Asterisk.
Package: asterisk18-func-vmcount
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2088
Filename: asterisk18-func-vmcount_1.8.32.2-3_ramips_24kec.ipk
Size: 2894
MD5Sum: 30358fa06afd9711b5425e08166bb792
SHA256sum: 8da2de9abcb93e73971994f0193f9fd816fcc4f6d43c79f40d9bf9eb950ed340
Description: This package provides support a vmcount dialplan function in Asterisk.
Package: asterisk18-mysql
Version: 1.8.32.2-3
Depends: libc, asterisk18, libmysqlclient
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20034
Filename: asterisk18-mysql_1.8.32.2-3_ramips_24kec.ipk
Size: 20854
MD5Sum: da36197c9be6c1419cccdbcd042cb6e4
SHA256sum: db29814620b9782043513ab960b48204f2fcc1c39b6adffc4d04322fea5028a3
Description: This package provides support MySQL support in Asterisk.
Package: asterisk18-odbc
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpthread, libc, unixodbc
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 65686
Filename: asterisk18-odbc_1.8.32.2-3_ramips_24kec.ipk
Size: 66504
MD5Sum: f8d6a008295e35196465e732e552c23c
SHA256sum: 1e02cd45068c8f2b3ac2ffb06e0aa85cee90dcac1408703b1739bf66fe1cfd49
Description: This package provides support ODBC support in Asterisk.
Package: asterisk18-pbx-ael
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8758
Filename: asterisk18-pbx-ael_1.8.32.2-3_ramips_24kec.ipk
Size: 9579
MD5Sum: e6727e7d0d65c221da7ca5fd44205c86
SHA256sum: f9ecfd02eb423bcc35369ae75ad0d8933919e3d38611cb09ec8df440430623e5
Description: This package provides support support for symbolic Asterisk Extension Logic in Asterisk.
Package: asterisk18-pbx-dundi
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49891
Filename: asterisk18-pbx-dundi_1.8.32.2-3_ramips_24kec.ipk
Size: 50745
MD5Sum: 2885eff8dab34837787ea1e165cf5378
SHA256sum: 0fc216e58e970465def36c72e9432efb21c7e46d717772d6f2fdbd3712ac9973
Description: This package provides support provides Dundi Lookup service for Asterisk in Asterisk.
Package: asterisk18-pbx-lua
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpthread, libc, liblua
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11955
Filename: asterisk18-pbx-lua_1.8.32.2-3_ramips_24kec.ipk
Size: 12793
MD5Sum: f585fe9fc8816b0a822110f1773144e5
SHA256sum: 2773b17e6fa6b0d8a1dac09f466eb8e2161107454e7cf8e907f6558949934182
Description: This package provides support provides Lua resources for Asterisk in Asterisk.
Package: asterisk18-pbx-spool
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8673
Filename: asterisk18-pbx-spool_1.8.32.2-3_ramips_24kec.ipk
Size: 9469
MD5Sum: 686ca70e6571f0756a0cf13b175d61f3
SHA256sum: 719211ea30986c4176519867977b2012efb97bb1a6b2e6c5ce5a695292bb0ac6
Description: This package provides support Outgoing call spool support in Asterisk.
Package: asterisk18-pgsql
Version: 1.8.32.2-3
Depends: libc, asterisk18, libpq
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32854
Filename: asterisk18-pgsql_1.8.32.2-3_ramips_24kec.ipk
Size: 33753
MD5Sum: 873c02b5ca2b06739dfadeca73f0d06f
SHA256sum: 533ea9e80cb43b238717aac1e909710a00ba070b3256e09c72f963f44a26f5e4
Description: This package provides support PostgreSQL support in Asterisk.
Package: asterisk18-res-ael-share
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41548
Filename: asterisk18-res-ael-share_1.8.32.2-3_ramips_24kec.ipk
Size: 42448
MD5Sum: 728836511995198dadf2fc83955aeaf8
SHA256sum: b84fbb9fe35353f5a4e95f07e2520c0dd85819b6830476cd008ad3c331856447
Description: This package provides support support for shareable AEL code mainly between internal and external modules in Asterisk.
Package: asterisk18-res-agi
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25813
Filename: asterisk18-res-agi_1.8.32.2-3_ramips_24kec.ipk
Size: 26531
MD5Sum: f1a26bd9db7af27bd4ee031f2829559e
SHA256sum: 7b8c3abb384c7fad2a4c3da6bedcb7f7a492f64b7ae556aded6b72e1dbd02eb0
Description: This package provides support support for the Asterisk Gateway Interface extension in Asterisk.
Package: asterisk18-res-clioriginate
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3615
Filename: asterisk18-res-clioriginate_1.8.32.2-3_ramips_24kec.ipk
Size: 4388
MD5Sum: 1fc13871f99edcff8db4ddeb013ce8ba
SHA256sum: 8d2ccfe07ea5ba5d2dec42ca62d891d59cd47ceb986ca76b2bb6a662835a678b
Description: This package provides support Originate calls via the CLI in Asterisk.
Package: asterisk18-res-crypto
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6966
Filename: asterisk18-res-crypto_1.8.32.2-3_ramips_24kec.ipk
Size: 7805
MD5Sum: b158c1fdd088b84690436e2a8fce79ba
SHA256sum: ff1dcf479b37894939e7d5b14c15ac0d151a187a4fcf3990c1933782dcb234e2
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk18-res-fax-spandsp
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-fax, libspandsp, libtiff
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7587
Filename: asterisk18-res-fax-spandsp_1.8.32.2-3_ramips_24kec.ipk
Size: 8403
MD5Sum: 6398fbc1c6168c07a7ec27af2133f7a2
SHA256sum: 0c1ac89b18cd21fb6ac1df87d47deea6c8282eebdc2b53b910ac42a477af9a31
Description: This package provides support Spandsp T.38 and G.711 FAX Resource in Asterisk.
Package: asterisk18-res-fax
Version: 1.8.32.2-3
Depends: libc, asterisk18, asterisk18-res-timing-pthread
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24284
Filename: asterisk18-res-fax_1.8.32.2-3_ramips_24kec.ipk
Size: 25105
MD5Sum: 6ccca05f534d1299c342bea5e45a62e3
SHA256sum: e580cac9e770685f186cd7250de842cdb6bef2326c77fa61825431ed82d4ed92
Description: This package provides support Generic FAX resource for FAX technology resource modules in Asterisk.
Package: asterisk18-res-monitor
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7545
Filename: asterisk18-res-monitor_1.8.32.2-3_ramips_24kec.ipk
Size: 8346
MD5Sum: 7a3c4df9b60b9fe586c138f0a2c3cb28
SHA256sum: dd52012419cc6f2a3b159f991300900c9bda747436c5951c160cebc6bbde303b
Description: This package provides support Cryptographic Signature capability in Asterisk.
Package: asterisk18-res-musiconhold
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17291
Filename: asterisk18-res-musiconhold_1.8.32.2-3_ramips_24kec.ipk
Size: 18091
MD5Sum: d11adcf1a13812e9f7d77f02f03bef29
SHA256sum: 6b5f5f8368e0bdde22e77dac487c4df72d2de2b07e0e308ca4151f4a64868c40
Description: This package provides support Music On Hold support in Asterisk.
Package: asterisk18-res-phoneprov
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12897
Filename: asterisk18-res-phoneprov_1.8.32.2-3_ramips_24kec.ipk
Size: 13772
MD5Sum: f6ea0dea90f4b2dd53805651c4e28ec7
SHA256sum: f0c97f87820b57a04bffa423e6e0a724f08fed98ba9a8e74d71c0c7f3f68b813
Description: This package provides support Phone provisioning application for the asterisk internal http server in Asterisk.
Package: asterisk18-res-pktccops
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14400
Filename: asterisk18-res-pktccops_1.8.32.2-3_ramips_24kec.ipk
Size: 15268
MD5Sum: cef4cee569b7bb19e2c3a9584ecd417b
SHA256sum: 2ec2b0530811ff51495508ec592cf046bafdaefcb0e347ad942465260cbf46ac
Description: This package provides support simple client/server model for supporting policy control over QoS signaling protocols in Asterisk.
Package: asterisk18-res-smdi
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16572
Filename: asterisk18-res-smdi_1.8.32.2-3_ramips_24kec.ipk
Size: 17458
MD5Sum: f731e2924901a8f9e9863eb5c58f593e
SHA256sum: af6ca1fad6be6ca196c0d0e95039516db68433e20e076df97c8f24ebf63e8a5b
Description: This package provides support Simple Message Desk Interface capability in Asterisk.
Package: asterisk18-res-srtp
Version: 1.8.32.2-3
Depends: libc, asterisk18, libsrtp
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5605
Filename: asterisk18-res-srtp_1.8.32.2-3_ramips_24kec.ipk
Size: 6390
MD5Sum: 9bad92e8d6ef577dbedec59e2a1cd97b
SHA256sum: 6ca7ce6df67c065530ceb84b24636307559f2734382a218be490a8af02ae5773
Description: This package provides support Secure RTP in Asterisk.
Package: asterisk18-res-timing-pthread
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4743
Filename: asterisk18-res-timing-pthread_1.8.32.2-3_ramips_24kec.ipk
Size: 5501
MD5Sum: f57eedc552b275cfb1b105ef8eccd5df
SHA256sum: 2fe19e042456a4fca41ad85ecb1513edf476f226648cd7cd51586475616ad5c0
Description: This package provides support in Asterisk.
Package: asterisk18-res-timing-timerfd
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4043
Filename: asterisk18-res-timing-timerfd_1.8.32.2-3_ramips_24kec.ipk
Size: 4808
MD5Sum: e14e25d3051e3b0e204030a377398b8e
SHA256sum: 2a633765d978c265b809d45a1493f100f11c56bbb914a3fb8104e08eb606dc6f
Description: This package provides support in Asterisk.
Package: asterisk18-sounds
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1392553
Filename: asterisk18-sounds_1.8.32.2-3_ramips_24kec.ipk
Size: 1393833
MD5Sum: be105fee38c84ccbeecf353cdbe5b929
SHA256sum: 676e3a1ac4f56c5490591cbccf1727a84201aa8a350d36a56441e1d1a383230f
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
This package provides sounds for Asterisk.
Package: asterisk18-voicemail
Version: 1.8.32.2-3
Depends: libc, asterisk18
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 601921
Filename: asterisk18-voicemail_1.8.32.2-3_ramips_24kec.ipk
Size: 602809
MD5Sum: 2b8d8f5fdfad67f6a6b23dde1da65e2e
SHA256sum: 78ea1cdab84f2439b4d00d95b14e60dc4b65fa597da8041f7815043e3529b31b
Description: This package provides support voicemail related modules in Asterisk.
Package: asterisk18
Version: 1.8.32.2-3
Depends: libc, libopenssl, libncurses, libpopt, libpthread, zlib
Source: feeds/telephony/net/asterisk-1.8.x
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1041211
Filename: asterisk18_1.8.32.2-3_ramips_24kec.ipk
Size: 1040832
MD5Sum: cc3de3917ac1789c3ff1aa92a693448f
SHA256sum: b9e2b45232030b70573c9561cf2656d7ff4c079afad2b1c70dc3836a9bf33cc8
Description: Asterisk is a complete PBX in software. It provides all of the features
you would expect from a PBX and more. Asterisk does voice over IP in three
protocols, and can interoperate with almost all standards-based telephony
equipment using relatively inexpensive hardware.
Package: baresip-mod-alsa
Version: 0.4.12-2
Depends: libc, baresip, alsa-lib
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3376
Filename: baresip-mod-alsa_0.4.12-2_ramips_24kec.ipk
Size: 4130
MD5Sum: 249c93db1ae5b780e767909af9301d5e
SHA256sum: f23b80661b27beac2996775a27283c66cc5274c26fc8d8b8e637129ace544b33
Description: baresip ALSA audio driver module
Package: baresip-mod-avcodec
Version: 0.4.12-2
Depends: libc, baresip, libffmpeg-full
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7365
Filename: baresip-mod-avcodec_0.4.12-2_ramips_24kec.ipk
Size: 8186
MD5Sum: 142367e8f38d4a4fbf28eb1e6ae92ba9
SHA256sum: 080cb670479b23aaa4a091a1ffc1c2a630a5fadfdd98f82f7ba0be8fcadf7c5e
Description: baresip FFmpeg video codecs module
Package: baresip-mod-avformat
Version: 0.4.12-2
Depends: libc, baresip, libffmpeg-full
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3209
Filename: baresip-mod-avformat_0.4.12-2_ramips_24kec.ipk
Size: 3965
MD5Sum: 34ad683b19f2edd5f354f18cce4ce9ca
SHA256sum: 671fd4dd82214b2542c6c622fee76902161962133d028a88f688256118dcb4ba
Description: baresip FFmpeg video source module
Package: baresip-mod-cons
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2515
Filename: baresip-mod-cons_0.4.12-2_ramips_24kec.ipk
Size: 3278
MD5Sum: 909f666cfc0cd45a4f8b7b17a0101bd1
SHA256sum: de7587b27f5551b4a922cf096f0c35eed6b8e4559a098fa09652dc3ccf5d4ef0
Description: baresip console UI module
Package: baresip-mod-evdev
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6853
Filename: baresip-mod-evdev_0.4.12-2_ramips_24kec.ipk
Size: 7596
MD5Sum: 13dfa3488e5fd9a148ed653430a121bd
SHA256sum: 16981248467de04029b8695add5edfd70d79df69c521aa0f42fe3063fd119197
Description: baresip input event device UI module
Package: baresip-mod-g711
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1695
Filename: baresip-mod-g711_0.4.12-2_ramips_24kec.ipk
Size: 2466
MD5Sum: 08c3d61a9dd5c10dbc445f2af3865d14
SHA256sum: 649fdf6f0d710dae64d70855239cbbe752d5af746b68262925b16cc3c4d0fc4c
Description: baresip G.711 audio codec module
Package: baresip-mod-g722
Version: 0.4.12-2
Depends: libc, baresip, libspandsp
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1690
Filename: baresip-mod-g722_0.4.12-2_ramips_24kec.ipk
Size: 2472
MD5Sum: eb906480c8efc2e50ab4f02f0dc61bfa
SHA256sum: a26f1d7b8ca1c4f17889ee9c4cff62e3c106f7d51118ce2440495c2840ea7f09
Description: baresip G.722 audio codec module
Package: baresip-mod-oss
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2713
Filename: baresip-mod-oss_0.4.12-2_ramips_24kec.ipk
Size: 3490
MD5Sum: 7dda0c8e2e01b64c57c9ba0d47008825
SHA256sum: 9b73751220a6d63658b24160e635b36d77502003ba01af696ccd798223c04a41
Description: baresip OSS audio driver module
Package: baresip-mod-speex
Version: 0.4.12-2
Depends: libc, baresip, libspeex
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3993
Filename: baresip-mod-speex_0.4.12-2_ramips_24kec.ipk
Size: 4712
MD5Sum: 71733de3d8b431809ee2afee6f8f9b0d
SHA256sum: 5e42956d24f9f2c2041008904fbde9ab4f7d7ef98c8a30b88f7928a598a74507
Description: baresip Speex audio codec module
Package: baresip-mod-stdio
Version: 0.4.12-2
Depends: libc, baresip
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2112
Filename: baresip-mod-stdio_0.4.12-2_ramips_24kec.ipk
Size: 2889
MD5Sum: 7dcf837a67bc600642af0273fb3936ca
SHA256sum: 36a3c0692a0151adc1bd56826c912d9f1643e82274aa3f6f09e20f026980685b
Description: baresip standard I/O UI module
Package: baresip-mod-uuid
Version: 0.4.12-2
Depends: libc, baresip, libuuid
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1929
Filename: baresip-mod-uuid_0.4.12-2_ramips_24kec.ipk
Size: 2707
MD5Sum: 102fa180a4a14baa7a1aae75c7628c51
SHA256sum: 91499bf0472cafcd89ac2f776cb4ffb2be3295c7fbf4f105cd4a6ee2456f828f
Description: baresip UUID module
Package: baresip-mod-v4l2
Version: 0.4.12-2
Depends: libc, baresip, libv4l
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3773
Filename: baresip-mod-v4l2_0.4.12-2_ramips_24kec.ipk
Size: 4519
MD5Sum: 9105ea0b1e7d173da39a74a1cef503d0
SHA256sum: cd49cc7e46eb91d48fc42e4b51286190398a457406b1e5cd22dcf50710ac1fa5
Description: baresip Video4Linux2 video source module
Package: baresip-mod-v4l
Version: 0.4.12-2
Depends: libc, baresip, libv4l
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2532
Filename: baresip-mod-v4l_0.4.12-2_ramips_24kec.ipk
Size: 3312
MD5Sum: 7c6027785f4e447bfa0fba6259925b52
SHA256sum: 3274a9ee3356c387c96d904b786a38a6abcc1c92c55e26ba88927779ffb87ccb
Description: baresip Video4Linux video source module
Package: baresip
Version: 0.4.12-2
Depends: libc, libre, librem, libpthread
Source: feeds/telephony/net/baresip
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 209006
Filename: baresip_0.4.12-2_ramips_24kec.ipk
Size: 209726
MD5Sum: 8482dff89d8eeb20062cec52aece3d7b
SHA256sum: ebdd3fc570b7a7147c11bb729502235d3f0c8a79a8b138980b4c3797438a06b6
Description: Portable and modular SIP User-Agent with A/V support
Package: bcg729
Version: 1.0.0-1
Depends: libc
Source: feeds/telephony/libs/bcg729
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Alex Samorukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23192
Filename: bcg729_1.0.0-1_ramips_24kec.ipk
Size: 24097
MD5Sum: eac61feb3a12fb249ce0c37ce237f8d9
SHA256sum: 85e28de092c9770aa4745a539761b8625b10cc44f3ce6fbe77f2fc4667c7b473
Description: Bcg729 is a software G729A encoder and decoder library written in C, developed
by Belledonne Communications, the company supporting the Linphone project.
It was written from scratch and is NOT a derivative work of ITU reference
source code in any kind.
Package: dahdi-cfg
Version: 2.10.0.1-1
Depends: libc, kmod-dahdi, libpthread
Source: feeds/telephony/libs/dahdi-tools
License: GPL-2.0
LicenseFiles: LICENSE
Section: utils
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34742
Filename: dahdi-cfg_2.10.0.1-1_ramips_24kec.ipk
Size: 35403
MD5Sum: 6dcb6e8af76cf490eb875d958678940e
SHA256sum: 5a06da4e51b2e922e008fc26a40f8772f9ccc636c1b6f3311bc66c55762e3371
Description: DAHDI tools dahdi_cfg, dahdi_scan and fxotune
Package: dahdi-monitor
Version: 2.10.0.1-1
Depends: libc, kmod-dahdi
Source: feeds/telephony/libs/dahdi-tools
License: GPL-2.0
LicenseFiles: LICENSE
Section: utils
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10310
Filename: dahdi-monitor_2.10.0.1-1_ramips_24kec.ipk
Size: 11110
MD5Sum: 4b94b46b75ccdccc7b513e08cf7ac201
SHA256sum: 6392d1a9542b78d830790179f7d6a28fd6e47cc50c2cda880c87a9a030eb7d8a
Description: DAHDI tools dahdi_monitor, dahdi_speed and dahdi_test
Package: dahdi-tools-libtonezone
Version: 2.10.0.1-1
Depends: libc, kmod-dahdi
Source: feeds/telephony/libs/dahdi-tools
License: GPL-2.0
LicenseFiles: LICENSE
Section: libs
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9838
Filename: dahdi-tools-libtonezone_2.10.0.1-1_ramips_24kec.ipk
Size: 10500
MD5Sum: c54dde64e98592a79fc7b16594fb5818
SHA256sum: 1c2dea19457bd51c7c8b2c34a444bfd83d846e2dedfa266e6d059cf05704fce9
Description: DAHDI tonezone library
Package: kamailio3-mod-acc
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20388
Filename: kamailio3-mod-acc_3.3.7-9_ramips_24kec.ipk
Size: 21173
MD5Sum: 88daf926a765ac60c6c33f905bcce85e
SHA256sum: 0115e1c3e317cd9b6736c47c3778dbe978a0431c278250ae220de5950cda798c
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-alias-db
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-db-sqlite
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4866
Filename: kamailio3-mod-alias-db_3.3.7-9_ramips_24kec.ipk
Size: 5638
MD5Sum: c36c00cd6d2987bbd2bf022bf89f6ad3
SHA256sum: 4f91e0909c5f124713611069974dfee95ab2819d325b2e4c56d009a5f3fa995f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-auth-db
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-auth, kamailio3-mod-db-sqlite
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8514
Filename: kamailio3-mod-auth-db_3.3.7-9_ramips_24kec.ipk
Size: 9315
MD5Sum: c154e8835f0cac58368a39ad3c5235ae
SHA256sum: c7a3a57f7920b71a026beffd93485d8fd5b7237abe7c517caab19e8437664728
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-auth-diameter
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17687
Filename: kamailio3-mod-auth-diameter_3.3.7-9_ramips_24kec.ipk
Size: 18502
MD5Sum: b0b0d3c37fdb51f3caa86ee6753b3f9b
SHA256sum: c7b9e6d71e896e48e81d69db8b0d3a0fd09f052f3514e0bd00fd9716b3275e4f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-auth
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18777
Filename: kamailio3-mod-auth_3.3.7-9_ramips_24kec.ipk
Size: 19583
MD5Sum: 2aef4321dc259f306c3955ec9b4b4658
SHA256sum: c8ebc64337c2fc871643e1fd5fc686f79c30c6684a9a7a65dc9079da7929bc85
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-avpops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29261
Filename: kamailio3-mod-avpops_3.3.7-9_ramips_24kec.ipk
Size: 30002
MD5Sum: cfe4668251f2d32cb4801bd4df739f87
SHA256sum: 1dea6c6414b9fb3615bb8397f4a0ab3ecb821c919b531f48b33bd651fd56f635
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-benchmark
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6350
Filename: kamailio3-mod-benchmark_3.3.7-9_ramips_24kec.ipk
Size: 7158
MD5Sum: 6bcb0daf270839dc7516b54629d9f689
SHA256sum: 21160ebe99af1339dcc4b8fc0e5ea10af89562146d82f29aba10fe9d1e1bfe8d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-cfg-db
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-db-sqlite
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6649
Filename: kamailio3-mod-cfg-db_3.3.7-9_ramips_24kec.ipk
Size: 7452
MD5Sum: 75edd1d340c37b7c3a3667a3f62ea4ed
SHA256sum: fe2bdc47b2e2d4c5d06d5d84db3a9f2cdfc5e962301bebfdf262f2fe19ba83e9
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-cfg-rpc
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4707
Filename: kamailio3-mod-cfg-rpc_3.3.7-9_ramips_24kec.ipk
Size: 5478
MD5Sum: 84ef833a8bf498fcd257ad0356fe8fae
SHA256sum: 67574585e996757e2f9482da48d5f9cfc6746b54d1f22f367102bf41afabf008
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-cfgutils
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9438
Filename: kamailio3-mod-cfgutils_3.3.7-9_ramips_24kec.ipk
Size: 10229
MD5Sum: 6027d1fc8364a5d1a0da81edfb89dc2a
SHA256sum: 2ae06241b6a6fe2f03dad54231b1fc417aede0debd5a6f094628408621a39972
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ctl
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37455
Filename: kamailio3-mod-ctl_3.3.7-9_ramips_24kec.ipk
Size: 38284
MD5Sum: 5c795d6a8db4395398b3af9fc9fd6a79
SHA256sum: 3d4d281ebc8ce8d1ccf285136a86c5b67e0b54d857c318511fe88bfa49f1e89f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-flatstore
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12119
Filename: kamailio3-mod-db-flatstore_3.3.7-9_ramips_24kec.ipk
Size: 12921
MD5Sum: a3efd415b0de8883f8b85e48a817805e
SHA256sum: c2c249d404d306e36eac2d58b51a96f71ad46da8ad599964d8f766ee36602cf9
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-mysql
Version: 3.3.7-9
Depends: libc, kamailio3, libmysqlclient
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27460
Filename: kamailio3-mod-db-mysql_3.3.7-9_ramips_24kec.ipk
Size: 28275
MD5Sum: e6338ece3caac0f923918319f1cd9c9d
SHA256sum: e5dc77286d63c39f75e743d53be2e33b95e7ad855d3c1f625805c0246f599a05
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-postgres
Version: 3.3.7-9
Depends: libc, kamailio3, libpq
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34468
Filename: kamailio3-mod-db-postgres_3.3.7-9_ramips_24kec.ipk
Size: 35346
MD5Sum: 16e50aceafaeabbe40b5bebd4d43a940
SHA256sum: f613fe89d03a9c5aded6979f410e39167f47d963db9f28fe00000683130e8911
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-sqlite
Version: 3.3.7-9
Depends: libc, kamailio3, libsqlite3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11883
Filename: kamailio3-mod-db-sqlite_3.3.7-9_ramips_24kec.ipk
Size: 12650
MD5Sum: 87c193e9a89cc1fba595b88462d713a4
SHA256sum: a73edd8230eb75a56370075061db6cdbff38ea5c16d59ae52b9ee81f41b1fedb
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-text
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26335
Filename: kamailio3-mod-db-text_3.3.7-9_ramips_24kec.ipk
Size: 27033
MD5Sum: b080d8f3b08102afae9acefced1da93a
SHA256sum: 6e0561bed44551e23d5727d62c45e1631aa53bccb539f9d84a4c33ee0e4869c3
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-db-unixodbc
Version: 3.3.7-9
Depends: libc, kamailio3, unixodbc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13470
Filename: kamailio3-mod-db-unixodbc_3.3.7-9_ramips_24kec.ipk
Size: 14247
MD5Sum: 2ed7e9db0d03083a981cb7487868aac0
SHA256sum: c7774642b024eeb2f810bd95077caa13d3543503e7a4c2b729182d59436699e7
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-dialog
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-rr, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62869
Filename: kamailio3-mod-dialog_3.3.7-9_ramips_24kec.ipk
Size: 63677
MD5Sum: f7e1c5ae97343741d1d7f2c2af10a6c0
SHA256sum: f7a162347d8adb57295c4e275556f12453f56f0c5afe30c4e7f0d7284578ef6b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-dialplan
Version: 3.3.7-9
Depends: libc, kamailio3, libpcre
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18705
Filename: kamailio3-mod-dialplan_3.3.7-9_ramips_24kec.ipk
Size: 19473
MD5Sum: 53755534d702c6ad7bf0a0dc88b9af9f
SHA256sum: 537272063589939c4bd179025369ce6126f18c9fc0e6b4f9a6cb32648ae33f96
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-dispatcher
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10571
Filename: kamailio3-mod-dispatcher_3.3.7-9_ramips_24kec.ipk
Size: 11337
MD5Sum: 0984c34fc652b5edea57f83e329f5de8
SHA256sum: 0fa454c5e2208ee59030fd2e2f3e566c7f2e658ecedfcf94b5a8c4551a09a3e1
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-diversion
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2728
Filename: kamailio3-mod-diversion_3.3.7-9_ramips_24kec.ipk
Size: 3512
MD5Sum: c6f21444082054c9bb71640536109566
SHA256sum: f54e75ccdb9d1befded59f02b446f52ece9849672ffb336392ca8b1d87d24005
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-domain
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11819
Filename: kamailio3-mod-domain_3.3.7-9_ramips_24kec.ipk
Size: 12582
MD5Sum: b15d7e316cce2562e6a3e09facdea4da
SHA256sum: a2ebc5ac22d9bf98a324b60b0686f106f01b8504d535de9df21838b6bcf91641
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-domainpolicy
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13970
Filename: kamailio3-mod-domainpolicy_3.3.7-9_ramips_24kec.ipk
Size: 14764
MD5Sum: 6a7c74a76bdd656c0ccb8bb451822a7f
SHA256sum: a58f2172aca6bec0773bbb9dc9385e06ea5d796f53ea810cf9481c9c2aab69fa
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-drouting
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28053
Filename: kamailio3-mod-drouting_3.3.7-9_ramips_24kec.ipk
Size: 28835
MD5Sum: f1c1663484eed4ce979a1a649547c828
SHA256sum: 74aef8f5bb099650ad5af9c6ca4f4f4beac6894c34d19f3df4bbb83f2639a67a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-enum
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11260
Filename: kamailio3-mod-enum_3.3.7-9_ramips_24kec.ipk
Size: 11966
MD5Sum: a9a99244c1f547facb1ceee2af75d53f
SHA256sum: 7e8e3f9ac03295bfbccfdad0939e74fa0da6cd6122bbe37f4652c7eaf9074cc1
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-exec
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12073
Filename: kamailio3-mod-exec_3.3.7-9_ramips_24kec.ipk
Size: 12867
MD5Sum: 4cfa8f8a98e0d99b15047c4739995105
SHA256sum: 96e14043c3b44e3c11d6f72b54b1db4510b06c95689edad5b8c5fb2877acb667
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-group
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7725
Filename: kamailio3-mod-group_3.3.7-9_ramips_24kec.ipk
Size: 8517
MD5Sum: f367123a886ae4db63dbf56ddba554ca
SHA256sum: c24d597ecd397344140b280163d58284a5741d340f2deea3732f0817c8abd3fc
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-h350
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-ldap, libopenldap
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7327
Filename: kamailio3-mod-h350_3.3.7-9_ramips_24kec.ipk
Size: 8133
MD5Sum: dcd56c7125735cad27f59b7620b7101e
SHA256sum: 1e2352e0bdbe12c90c75369ab5f2240289479325f79f9b3c9b7ca908e4ac0798
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-htable
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21321
Filename: kamailio3-mod-htable_3.3.7-9_ramips_24kec.ipk
Size: 22061
MD5Sum: 3db6384de0db2733273f40626c3185d9
SHA256sum: 125818115a24b5ef964b5429684663a641deb7dcf7546ad361b1983d51d70193
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-imc
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-db-mysql, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22277
Filename: kamailio3-mod-imc_3.3.7-9_ramips_24kec.ipk
Size: 23023
MD5Sum: 56da95b6f66c54fead99555fbda03f53
SHA256sum: 23dc00e3c81031ec417af8eb86ce8ead23e9931853879c4c3958542811e892c3
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ipops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12864
Filename: kamailio3-mod-ipops_3.3.7-9_ramips_24kec.ipk
Size: 13609
MD5Sum: 948bc11ac9e6656b918cf22cf11c5ec4
SHA256sum: 617302bc00c730404cf360c8541ebbe35283cda19375990d05f3a6f58d8d55ae
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-kex
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12747
Filename: kamailio3-mod-kex_3.3.7-9_ramips_24kec.ipk
Size: 13538
MD5Sum: 5910da2ca87fc70105f2c740dbc378c0
SHA256sum: 1928b04578d589a2030e8e10b99cb1cf9c6df53d54d252e73b4388b775109dff
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-lcr
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm, libpcre
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29425
Filename: kamailio3-mod-lcr_3.3.7-9_ramips_24kec.ipk
Size: 30175
MD5Sum: 1aa09307c565b4b3e58a845eeb1afaae
SHA256sum: f6c5949c3e2dc022c88571a6273714117d2ec836640b340712b0964ff998bd89
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ldap
Version: 3.3.7-9
Depends: libc, kamailio3, libopenldap
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16461
Filename: kamailio3-mod-ldap_3.3.7-9_ramips_24kec.ipk
Size: 17284
MD5Sum: 56d44506d6f3be26b31f0744e8212c06
SHA256sum: 8f32500fda0387cb5509c5397ab86df0c5520bb258bd3dffd0e7ec1caeec9032
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-maxfwd
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4789
Filename: kamailio3-mod-maxfwd_3.3.7-9_ramips_24kec.ipk
Size: 5539
MD5Sum: c3f6647f6d2a088b5b8a987704a8467c
SHA256sum: c7669f030464c89655af8b4ae2bc4596927b1731b6815c0b76590d0833cfe047
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mediaproxy
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18804
Filename: kamailio3-mod-mediaproxy_3.3.7-9_ramips_24kec.ipk
Size: 19565
MD5Sum: 50eb63528a5cb98d1a13dab81ecd0f45
SHA256sum: ef705f331aade8c1b937d8ff7e93ae4aed5fa32bd98424d7369be72d75b54711
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mi-datagram
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17805
Filename: kamailio3-mod-mi-datagram_3.3.7-9_ramips_24kec.ipk
Size: 18614
MD5Sum: 3a27b85477c7f861d44775d7b1d4be24
SHA256sum: eb42e7b15805aeb4859ac121277ba1e3c28f1889ea048839b484d78c0aaaea1a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mi-fifo
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14304
Filename: kamailio3-mod-mi-fifo_3.3.7-9_ramips_24kec.ipk
Size: 15046
MD5Sum: 40d608ae3a3b70db3e45ae465641c4be
SHA256sum: e999213cc86f5780049de297ec8ec6bdaa545161b44ff8a4cb22c7a1a829de9d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-mi-rpc
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6244
Filename: kamailio3-mod-mi-rpc_3.3.7-9_ramips_24kec.ipk
Size: 7050
MD5Sum: 9b28568b4b97de3eb81bad9009a17b83
SHA256sum: 3745ff5a57d49eeb4b5c50cabd2ca298304432657819c00e3f165208f6c98191
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-msilo
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21136
Filename: kamailio3-mod-msilo_3.3.7-9_ramips_24kec.ipk
Size: 21904
MD5Sum: 5e980b1154620db2ebe0a206a368b95c
SHA256sum: 9cbf3ab3d5f77e45831eb25b0789bd6a249fb501ff8c11feb371eafb4c9b16ad
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-nat-traversal
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog, kamailio3-mod-sl, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17323
Filename: kamailio3-mod-nat-traversal_3.3.7-9_ramips_24kec.ipk
Size: 18080
MD5Sum: c9e4b831eab405f4eb9b0430ede4d283
SHA256sum: 343dc5d845354a025a3e44dc18288c7cb73e49793ae44527b430c99862762bcc
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-nathelper
Version: 3.3.7-9
Depends: libc, kamailio3, rtpproxy
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21421
Filename: kamailio3-mod-nathelper_3.3.7-9_ramips_24kec.ipk
Size: 22165
MD5Sum: 2a0a14d844fc77a5ea35589d0919f652
SHA256sum: 73068bf850a61a74bfb83d032c8761c4d53593f444403afff12272f74ffa6ea7
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-path
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-rr
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5015
Filename: kamailio3-mod-path_3.3.7-9_ramips_24kec.ipk
Size: 5779
MD5Sum: 772ec88ccce56fa07a3ba263865288a0
SHA256sum: 0abebbaaff9c75e686018aad7317b165e1eec3b04e7efa4acc15c0b519d78c97
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pdt
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13213
Filename: kamailio3-mod-pdt_3.3.7-9_ramips_24kec.ipk
Size: 13972
MD5Sum: 124ba0d904236bf944f06338a85a8918
SHA256sum: 9a57df4ddd4bb01b4cec614bdf9acdda53f32593520ce9329ccd112f2f640859
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-permissions
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27924
Filename: kamailio3-mod-permissions_3.3.7-9_ramips_24kec.ipk
Size: 28666
MD5Sum: dc4eb72773462ca03e79263a868b45f4
SHA256sum: f373c2bee7251a8a6a86f752be2cf29e66e3c9d97a309f20355af49381c36d1c
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pike
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10525
Filename: kamailio3-mod-pike_3.3.7-9_ramips_24kec.ipk
Size: 11286
MD5Sum: ec8d5fdbbb9ee8e865b6bb426e5a36db
SHA256sum: e44964c98e6a2907aa4e31b3d6ba389ac8f08b0889698e39cef39aadae875316
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence-dialoginfo
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6955
Filename: kamailio3-mod-presence-dialoginfo_3.3.7-9_ramips_24kec.ipk
Size: 7748
MD5Sum: df693b5b7eb9fb4f347047fa671cab34
SHA256sum: 30431754ad6e9f9d2644bde5132622dec79bcf4f6976ecab91815e9d66aff6d3
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence-mwi
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3329
Filename: kamailio3-mod-presence-mwi_3.3.7-9_ramips_24kec.ipk
Size: 4080
MD5Sum: fe591385cff5ffef414c2635df531fa7
SHA256sum: c0f2057ea8467ae9b43cbe56c71f0402466d266bbd1a9b257036fa20bef955e8
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence-xml
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-xcap-client
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21270
Filename: kamailio3-mod-presence-xml_3.3.7-9_ramips_24kec.ipk
Size: 22096
MD5Sum: 881877c3cbdd8fc106a3b7546b67bcda
SHA256sum: e87f8fccd08cfa232c519a85a1c381025b803360d3d108c8f4da823ea6a50b6b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-presence
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl, kamailio3-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84692
Filename: kamailio3-mod-presence_3.3.7-9_ramips_24kec.ipk
Size: 85428
MD5Sum: a2687136bf579f0fddef5c6fdc6ac5bb
SHA256sum: 81681c346be18758a9e0b8f2d6b2b1d93fff2bb05b4d18fc5789bbbbe2d6ca43
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-bla
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-pua, kamailio3-mod-usrloc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7086
Filename: kamailio3-mod-pua-bla_3.3.7-9_ramips_24kec.ipk
Size: 7888
MD5Sum: e30ffc933e6add1534ffced4894f060f
SHA256sum: 8d19080fa15843d1c53fb352d3f464dfae032a4644c3d8aea30aa6cbb2b08eef
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-dialoginfo
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog, kamailio3-mod-pua
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10057
Filename: kamailio3-mod-pua-dialoginfo_3.3.7-9_ramips_24kec.ipk
Size: 10825
MD5Sum: 14c8a3a274c6ac5c1066d9f17587af19
SHA256sum: 443689542b6b680c5728fb4bd40f89d5a829a9741427e7688b4d58996e1819d8
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-mi
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-pua
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6492
Filename: kamailio3-mod-pua-mi_3.3.7-9_ramips_24kec.ipk
Size: 7289
MD5Sum: 2e6a5fb135527af943e9f19277c8bb18
SHA256sum: 54aa010e65e96dac51c60f62aa5fe0d5236d904e7e818785afac8ad7b80dbbfc
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-usrloc
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-pua, kamailio3-mod-usrloc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6791
Filename: kamailio3-mod-pua-usrloc_3.3.7-9_ramips_24kec.ipk
Size: 7582
MD5Sum: 9b42597f8f9155ed1f695ac2dbcacfac
SHA256sum: b2e50aed9439518b0e593434e91e775bcddd1c507c04e5159fcc1b936adc921d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua-xmpp
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-pua, kamailio3-mod-xmpp
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17786
Filename: kamailio3-mod-pua-xmpp_3.3.7-9_ramips_24kec.ipk
Size: 18567
MD5Sum: eefd566eb16921b5a6c6fe234669cfb0
SHA256sum: a49fb585f2a144d0feba4383f5b236e4e7c98e7a631efb37eceaaf546512dbef
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pua
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45862
Filename: kamailio3-mod-pua_3.3.7-9_ramips_24kec.ipk
Size: 46691
MD5Sum: c9a4e2f902b4c399ca211aa654572af1
SHA256sum: 3ad42b080f195a2a37ce4a454d91fedc5197c812b8a21243d177b8b0cbdc8b55
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-pv
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51411
Filename: kamailio3-mod-pv_3.3.7-9_ramips_24kec.ipk
Size: 52186
MD5Sum: 32454ffe4d9faa33f317a150bd401543
SHA256sum: c4ff4422e32ea047f98463d6bbbf29a69a61b1f14dc0b0a3988ceef33b1368b2
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-qos
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14682
Filename: kamailio3-mod-qos_3.3.7-9_ramips_24kec.ipk
Size: 15456
MD5Sum: 43b78af7fa506c3a967fced18e1a266a
SHA256sum: eae6cd5030a283fb53514c6426d45bb1393be6bb98c0661e8955540265bf3817
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-ratelimit
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14072
Filename: kamailio3-mod-ratelimit_3.3.7-9_ramips_24kec.ipk
Size: 14824
MD5Sum: b2081b7b170eae61ab3e386ea66d0423
SHA256sum: a73d203c961c66ca3a607b4ad2dc3d359558e86ef0e002c8d607e864b24826e2
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-regex
Version: 3.3.7-9
Depends: libc, kamailio3, libpcre
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8288
Filename: kamailio3-mod-regex_3.3.7-9_ramips_24kec.ipk
Size: 9096
MD5Sum: 5636bc92cfd7a6c520c0adaac8b162d0
SHA256sum: a49c0403f8bc06de7e71fce999605255834fe456ea0fe5c88ba9ab525fb02d3f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-registrar
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-usrloc
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28166
Filename: kamailio3-mod-registrar_3.3.7-9_ramips_24kec.ipk
Size: 28947
MD5Sum: 467d505715f94540d084ad0bc0cc6007
SHA256sum: 98035503b0d9374b8c1f6cb10d1af70ace759f80708b01d52e2ff71782ec7b3f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rls
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-presence, kamailio3-mod-pua, kamailio3-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53753
Filename: kamailio3-mod-rls_3.3.7-9_ramips_24kec.ipk
Size: 54550
MD5Sum: a261474bbe816f1148bb516ff4d75a8e
SHA256sum: aa21811d3d6b2905869e9a5a237d05b7edb72b46e6cd96a7cd2350c8fdf2f55a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rr
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15829
Filename: kamailio3-mod-rr_3.3.7-9_ramips_24kec.ipk
Size: 16575
MD5Sum: 267011fea0de17568a25d55ba1883845
SHA256sum: 5bdf8433edef7663d02b3bbb582484bb4b9ff0fd69e2e6f39b54a539c8e66af6
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rtimer
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4174
Filename: kamailio3-mod-rtimer_3.3.7-9_ramips_24kec.ipk
Size: 4931
MD5Sum: 629919dbc41f3dc2a370c3491bdf999c
SHA256sum: 18f2a42d422399926f479ee057c0a6528c51e444f859fdc7890288a2ac978d6a
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-rtpproxy
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24286
Filename: kamailio3-mod-rtpproxy_3.3.7-9_ramips_24kec.ipk
Size: 25066
MD5Sum: b50af62b95f24d27e3795454a9e64d30
SHA256sum: a464e1f6a62bc74dc77f136106eefd2647861e62d0e950255dcc7fd914fd7673
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sanity
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10911
Filename: kamailio3-mod-sanity_3.3.7-9_ramips_24kec.ipk
Size: 11707
MD5Sum: 508a0895e628a54efeb45b0c2f0a536a
SHA256sum: b225a44587f81f6a0b5033b6b9b54ba3bc4a66498fd8cb6f1b0402b691b44bae
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sipcapture
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17841
Filename: kamailio3-mod-sipcapture_3.3.7-9_ramips_24kec.ipk
Size: 18654
MD5Sum: 5650452bdf248eb7c1ca0ce71e9d2cc2
SHA256sum: f8df5d8dc8d9654d91861854adbb7c4fe083786351796cb5ed23b74f6b5e8604
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-siptrace
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18465
Filename: kamailio3-mod-siptrace_3.3.7-9_ramips_24kec.ipk
Size: 19253
MD5Sum: fbd5e5508ab25f274ac74dd60fd0f9ec
SHA256sum: 46f6f298fefbc081b6f667046d2b5ef8292085d082d5535cf1b8045fe15c70c5
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-siputils
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20827
Filename: kamailio3-mod-siputils_3.3.7-9_ramips_24kec.ipk
Size: 21617
MD5Sum: c94f648f4f98fb0598d2b53424b364fa
SHA256sum: 110520ea33f52b947e248f91c993755152a73eec69714b0e579e259efe52e90b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sl
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12012
Filename: kamailio3-mod-sl_3.3.7-9_ramips_24kec.ipk
Size: 12789
MD5Sum: 81c3d20aa2b1fd3e27043fcbb39da058
SHA256sum: 26671538210635ab6d908590413d324e6d1855b469245fddb64fcb0fb6648eba
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sms
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28078
Filename: kamailio3-mod-sms_3.3.7-9_ramips_24kec.ipk
Size: 28877
MD5Sum: 36376f30f0ecb1a149344e62096ba3bb
SHA256sum: 208b76ba0f72594744d8f45ab7b2482e8006e66a6645f659fb79a23424c942ee
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-speeddial
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4940
Filename: kamailio3-mod-speeddial_3.3.7-9_ramips_24kec.ipk
Size: 5700
MD5Sum: 39961d2cf730f6e644de63e15b281181
SHA256sum: 5c1e2bade9a6aa283860200d30e0df170d3d8dce77163dafa1af5c8b4e314487
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sqlops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13947
Filename: kamailio3-mod-sqlops_3.3.7-9_ramips_24kec.ipk
Size: 14703
MD5Sum: be37b9055b6371747f487b07ee104c9f
SHA256sum: 96a8f9217f86a018d7215045ef235fa25e365cd6af63a7a1bb70592dcdd5b809
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-sst
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-dialog, kamailio3-mod-sl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9750
Filename: kamailio3-mod-sst_3.3.7-9_ramips_24kec.ipk
Size: 10521
MD5Sum: 56583f91a2d02aa89b0a2f111d652e1a
SHA256sum: b94f40042e448cfc834a6a49211e2cbfcbef06342e39effb99462d6a81a37c58
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-statistics
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4121
Filename: kamailio3-mod-statistics_3.3.7-9_ramips_24kec.ipk
Size: 4880
MD5Sum: ca651a8cf2452ccf7e8c71b107ddefb7
SHA256sum: 60c2b5561addd12c0a39ba073070697b5e4efcf2518c19ec535a23f2b8e21fcf
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-textops
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21356
Filename: kamailio3-mod-textops_3.3.7-9_ramips_24kec.ipk
Size: 22128
MD5Sum: 78eaa8d3c6c79df5d43f6f7398a69f9a
SHA256sum: 621e6722ccd1acea8200389d47cb80795689700365e5e6b7919e80812f3670fd
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-tls
Version: 3.3.7-9
Depends: libc, kamailio3, libopenssl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54641
Filename: kamailio3-mod-tls_3.3.7-9_ramips_24kec.ipk
Size: 55357
MD5Sum: 8910ceef25240269ebeaba1a487b8b4c
SHA256sum: cff18df5b4ee07bb50429516d68734042607e469790cc21efcdd1459122e626f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-tm
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128793
Filename: kamailio3-mod-tm_3.3.7-9_ramips_24kec.ipk
Size: 129482
MD5Sum: 10cb77c49b36e8817e2bfb41f3327e9a
SHA256sum: 9b261ec78fec40c66853797eea11e8a1c9f0ba3d2e68d02eb508a8327128c185
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-tmx
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14658
Filename: kamailio3-mod-tmx_3.3.7-9_ramips_24kec.ipk
Size: 15387
MD5Sum: 901c424e22e93e88ad082c708c71cb11
SHA256sum: 317fd0f44c310325a33ed087a0044d6349239f409e45f47e54ddc57466da167f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-uac-redirect
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7716
Filename: kamailio3-mod-uac-redirect_3.3.7-9_ramips_24kec.ipk
Size: 8509
MD5Sum: 3c33b1028bd41601c1042896af33bf4d
SHA256sum: 8dc6f3544dbc5b66b41ddd0377ab6529888d5965b5843fa90522a3e3376eef3b
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-uac
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31731
Filename: kamailio3-mod-uac_3.3.7-9_ramips_24kec.ipk
Size: 32490
MD5Sum: 1880b914cad3e73f3233d506cf6994d4
SHA256sum: a887559cb8d4fb70eca70caadccdeeb762d15895bec9072d3b433494caf2df20
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-uri-db
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5581
Filename: kamailio3-mod-uri-db_3.3.7-9_ramips_24kec.ipk
Size: 6300
MD5Sum: 729740c01d172520b1aede23d3817b7b
SHA256sum: 63cdddeac1ea3fc5571f41bdb06108aa9fb875d9cec64e3cc4a35ef4186b1333
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-userblacklist
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9412
Filename: kamailio3-mod-userblacklist_3.3.7-9_ramips_24kec.ipk
Size: 10190
MD5Sum: f8dd90c858087b24d8d5665ddb57c094
SHA256sum: 6e758599e4babe25c981eddd3f8a442bb68a22916b62f77ce20b104351fd092d
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-usrloc
Version: 3.3.7-9
Depends: libc, kamailio3, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89471
Filename: kamailio3-mod-usrloc_3.3.7-9_ramips_24kec.ipk
Size: 90242
MD5Sum: 5942b48f5aabf733b3de21679c276d7c
SHA256sum: 76ebb5eb9b197c18b5f6a9677878b27de6dfa1526692b93c9c3c7196780d18e0
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-utils
Version: 3.3.7-9
Depends: libc, kamailio3, libcurl, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16987
Filename: kamailio3-mod-utils_3.3.7-9_ramips_24kec.ipk
Size: 17779
MD5Sum: 78907416fc4e74669eeb5e81161deecb
SHA256sum: 7ee86d531beea2c5d51bac5160548be8632b6588df941278291806800f48842f
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xcap-client
Version: 3.3.7-9
Depends: libc, kamailio3, libcurl
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10426
Filename: kamailio3-mod-xcap-client_3.3.7-9_ramips_24kec.ipk
Size: 11181
MD5Sum: 81bf3aee99cdc150b5feedf86ce7580d
SHA256sum: dc12fbfe74e2de8832e126f53530140e78fe768c81af2952a08b5586b598d1fe
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xlog
Version: 3.3.7-9
Depends: libc, kamailio3
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7225
Filename: kamailio3-mod-xlog_3.3.7-9_ramips_24kec.ipk
Size: 8019
MD5Sum: 51662c95e045635a56e82304e52caa9a
SHA256sum: c4400877fe8a9a91a55d91e19423370c48a87dbd8bf267d696db43fccd4979a0
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xmlrpc
Version: 3.3.7-9
Depends: libc, kamailio3, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17784
Filename: kamailio3-mod-xmlrpc_3.3.7-9_ramips_24kec.ipk
Size: 18589
MD5Sum: 0e3dd5e421a5a6fdafc7b8c0b958da9e
SHA256sum: 7d3dbc6c6318f1a245b3623f56ce8c516288901a5512d1f381a0b4a358c49e4c
Description: This package provides support for in Kamailio.
Package: kamailio3-mod-xmpp
Version: 3.3.7-9
Depends: libc, kamailio3, kamailio3-mod-tm, libexpat, libxml2
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45798
Filename: kamailio3-mod-xmpp_3.3.7-9_ramips_24kec.ipk
Size: 46624
MD5Sum: b3834ec01462c8ba3e73abc7078155e1
SHA256sum: f2c930b20aae7e7e302fa108e54953e94b6d4feea031f4543037a474345fc097
Description: This package provides support for in Kamailio.
Package: kamailio3
Version: 3.3.7-9
Depends: libc, libncurses, libpthread, libreadline
Source: feeds/telephony/net/kamailio-3.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 832706
Filename: kamailio3_3.3.7-9_ramips_24kec.ipk
Size: 833128
MD5Sum: 6c2fef650f8376eaec09fb61972df531
SHA256sum: 06ece740e622f7c4f709d9c215a2005c357c3adab5c91035e13b9985077822ab
Description: Mature and flexible open source SIP server, v3.3.7
Package: kamailio4-mod-acc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32480
Filename: kamailio4-mod-acc_4.2.3-2_ramips_24kec.ipk
Size: 33277
MD5Sum: 266a0d6f2dc1e3e6179003e33910bb0e
SHA256sum: 7f8fbaf1fd785c313c3e8a5f2651af1142190ba5725dc835028b8024413ddda7
Description: kamailio4 Accounting module
Package: kamailio4-mod-alias-db
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-db-sqlite
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6049
Filename: kamailio4-mod-alias-db_4.2.3-2_ramips_24kec.ipk
Size: 6811
MD5Sum: dc045c1a10d528a5da1cfd3b946ce6c4
SHA256sum: 3f374af5d845aeb87c3e95b2670520929451dc5d39d18e24ea66f1eee9f00b45
Description: kamailio4 Database-backend aliases module
Package: kamailio4-mod-auth-db
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-auth, kamailio4-mod-db-sqlite
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14139
Filename: kamailio4-mod-auth-db_4.2.3-2_ramips_24kec.ipk
Size: 14868
MD5Sum: 4fbe805b9a501b8bf520ec9cf768d9ef
SHA256sum: 1046c780bc873eb28b222fa92346edb86a2650b9705307b946ef4e31a3845e98
Description: kamailio4 Database-backend authentication module
Package: kamailio4-mod-auth-diameter
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24242
Filename: kamailio4-mod-auth-diameter_4.2.3-2_ramips_24kec.ipk
Size: 24942
MD5Sum: 20911bb0183dca12ba2486b03f497fd0
SHA256sum: cb649416f0de27c16878e5204342f55ceb5312cc007167862dc42392739c8a14
Description: kamailio4 Diameter-backend authentication module
Package: kamailio4-mod-auth
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27126
Filename: kamailio4-mod-auth_4.2.3-2_ramips_24kec.ipk
Size: 27871
MD5Sum: f87a833b269fa36a727ffdf5828e1412
SHA256sum: e8b3aa3a7c8d025dcef7142afd655fc0eab08daa9b25cd6b279bc63899028b5b
Description: kamailio4 Authentication Framework module
Package: kamailio4-mod-avpops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43544
Filename: kamailio4-mod-avpops_4.2.3-2_ramips_24kec.ipk
Size: 44329
MD5Sum: 353d66d7c32b4a91de53c54a89a4dc24
SHA256sum: 18f82618c813cc2c109ad01405d2c848100c635280b25194c41a9b792e1b556f
Description: kamailio4 AVP operation module
Package: kamailio4-mod-benchmark
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7810
Filename: kamailio4-mod-benchmark_4.2.3-2_ramips_24kec.ipk
Size: 8572
MD5Sum: 2745f753807c6ca726d42ab85e67c777
SHA256sum: 851e8322e2771086fde60d0d49382a5524f4f92e7dd584bd88868b4a25c580b3
Description: kamailio4 Config benchmark module
Package: kamailio4-mod-cfg-db
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-db-sqlite
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9164
Filename: kamailio4-mod-cfg-db_4.2.3-2_ramips_24kec.ipk
Size: 9977
MD5Sum: 9e29d8b0f8a21c5a0152104ef2af1e15
SHA256sum: a9633a9ad6d538c55df081153ff28af264d52e75784b8ab63acdec8f2b8cf7ed
Description: kamailio4 Load core and module parameters from database module
Package: kamailio4-mod-cfg-rpc
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4982
Filename: kamailio4-mod-cfg-rpc_4.2.3-2_ramips_24kec.ipk
Size: 5774
MD5Sum: 4f25901875e4fdb2970a18d36080f627
SHA256sum: bc57c503950ae453c0af5a8b406b150e57f784c8683fb8e34e45744ea28f316d
Description: kamailio4 Update core and module parameters at runtime via RPC interface module
Package: kamailio4-mod-cfgutils
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12546
Filename: kamailio4-mod-cfgutils_4.2.3-2_ramips_24kec.ipk
Size: 13296
MD5Sum: 401d7cfb7735d31cfa511047f06a36c6
SHA256sum: 2c23021951ff8f55d0dd45d4cfaa5525dd09df75d83c1de035f7526f91b2b4a5
Description: kamailio4 Config utilities module
Package: kamailio4-mod-cnxcc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35666
Filename: kamailio4-mod-cnxcc_4.2.3-2_ramips_24kec.ipk
Size: 36456
MD5Sum: 852c49080b0829d05ac842bff11ef869
SHA256sum: bae295b2095db601b1676b05584719220aaed2b67ec861bcc9f0f809976d75fe
Description: kamailio4 Limit call duration module
Package: kamailio4-mod-corex
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12680
Filename: kamailio4-mod-corex_4.2.3-2_ramips_24kec.ipk
Size: 13402
MD5Sum: 820476859ac80046038fd976fea752bb
SHA256sum: 4fba5dbe2ace7536054c5e910c4ef07745481e894a7325df5a9323a6e3ae4585
Description: kamailio4 Legacy functions module
Package: kamailio4-mod-ctl
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52200
Filename: kamailio4-mod-ctl_4.2.3-2_ramips_24kec.ipk
Size: 52983
MD5Sum: af75d741e1075b7dd6e0a10a83aede81
SHA256sum: 437b7e1b0f499408a895a20713c647a20a97a9211a126d27478ed8a446533586
Description: kamailio4 BINRPC transport interface module
Package: kamailio4-mod-db-flatstore
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16612
Filename: kamailio4-mod-db-flatstore_4.2.3-2_ramips_24kec.ipk
Size: 17427
MD5Sum: 9f9fa95850c2e75948bedd9b97037cfb
SHA256sum: 6a27f9584d5902e80f7d7db014b00787d257e07427259c09af085dcfc2ff4747
Description: kamailio4 Fast writing-only text database-backed module
Package: kamailio4-mod-db-mysql
Version: 4.2.3-2
Depends: libc, kamailio4, libmysqlclient
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41737
Filename: kamailio4-mod-db-mysql_4.2.3-2_ramips_24kec.ipk
Size: 42606
MD5Sum: 32d5e65bf24174d123e94e6022fa490d
SHA256sum: e1e2867cc3807da78fc713091e436ce91d8dfadbdce1c727bc0f320f150089f6
Description: kamailio4 MySQL database-backend module
Package: kamailio4-mod-db-postgres
Version: 4.2.3-2
Depends: libc, kamailio4, libpq
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50928
Filename: kamailio4-mod-db-postgres_4.2.3-2_ramips_24kec.ipk
Size: 51799
MD5Sum: 06c68a5a8e652cc57328de2314889bbf
SHA256sum: 4a037bc61976e38af3c6af285e193435db31ca587a1e226d191410c7a47a5d01
Description: kamailio4 PostgreSQL Database-backend module
Package: kamailio4-mod-db-sqlite
Version: 4.2.3-2
Depends: libc, kamailio4, libsqlite3
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14823
Filename: kamailio4-mod-db-sqlite_4.2.3-2_ramips_24kec.ipk
Size: 15539
MD5Sum: a82aa68658122d886294b7cf8cf1865e
SHA256sum: 52a0d9f0cb6225a350752cf647036cac84fe1b42b28cc31793fec57e7b81aa71
Description: kamailio4 Sqlite DB support module
Package: kamailio4-mod-db-text
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34538
Filename: kamailio4-mod-db-text_4.2.3-2_ramips_24kec.ipk
Size: 35319
MD5Sum: 4c88db38b9a2def293d5648dfea9226a
SHA256sum: 161f0283b46a02f6acdbc7169f9b769bdf598a671269f2e47b6782259381f1e6
Description: kamailio4 Text database-backend module
Package: kamailio4-mod-db-unixodbc
Version: 4.2.3-2
Depends: libc, kamailio4, unixodbc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20857
Filename: kamailio4-mod-db-unixodbc_4.2.3-2_ramips_24kec.ipk
Size: 21643
MD5Sum: e9b7b44d78f5b6d87ed6ff06aba31095
SHA256sum: 17bf5ff87c5e9686a93bba7290eae277cc4ea1e3fef1ec8e87fabca55ecbaf97
Description: kamailio4 UnixODBC Database-backend module
Package: kamailio4-mod-debugger
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22614
Filename: kamailio4-mod-debugger_4.2.3-2_ramips_24kec.ipk
Size: 23382
MD5Sum: 1d77c6369273399c0fce454253c7abc1
SHA256sum: c2accd33190e01d55dc1de6c39c425f48df8ec8f8e45d7769924edb153832a6a
Description: kamailio4 Interactive config file debugger module
Package: kamailio4-mod-dialog-ng
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93097
Filename: kamailio4-mod-dialog-ng_4.2.3-2_ramips_24kec.ipk
Size: 93820
MD5Sum: df504de71657ea9ae82a6750eb2ec6ce
SHA256sum: 5170dfe868a340d06fc25695b087d30a2e021e3a75dada64fd69a0635d09bdd5
Description: kamailio4 Dialog support module
Package: kamailio4-mod-dialog
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 102293
Filename: kamailio4-mod-dialog_4.2.3-2_ramips_24kec.ipk
Size: 103110
MD5Sum: 2ce301b38e84499219c6bb89dae9a275
SHA256sum: e4a302792a5c7e7e484fced402729a30aac3b813a1f7ee01dbe7435048d33c8b
Description: kamailio4 Dialog support module
Package: kamailio4-mod-dialplan
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28583
Filename: kamailio4-mod-dialplan_4.2.3-2_ramips_24kec.ipk
Size: 29334
MD5Sum: 4293375b7c10361058cc2a51731e358a
SHA256sum: b72447dbedf7a14270684e680115c0f17b091261ec3d56aa927d7bd70239e533
Description: kamailio4 Dialplan management module
Package: kamailio4-mod-dispatcher
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46251
Filename: kamailio4-mod-dispatcher_4.2.3-2_ramips_24kec.ipk
Size: 47042
MD5Sum: d3862d1327f91d392da310a21f40c012
SHA256sum: 338c70a54c87632b832a9872d1eaf606d1e80baaf980c07119a01a20cefe85e1
Description: kamailio4 Dispatcher module
Package: kamailio4-mod-diversion
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3523
Filename: kamailio4-mod-diversion_4.2.3-2_ramips_24kec.ipk
Size: 4261
MD5Sum: e00b24c3ac9bc73b8c2411b0efa0ec88
SHA256sum: 61614a1cf3172d233339d4abe607466cad716760424df19a01813435c1e9326c
Description: kamailio4 Diversion header insertion module
Package: kamailio4-mod-domain
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15917
Filename: kamailio4-mod-domain_4.2.3-2_ramips_24kec.ipk
Size: 16652
MD5Sum: 5090cceb86381c430753516dd35007aa
SHA256sum: 6787368f043fbaa3ca5db9b9b362df8a1c5e9f592979fd3dcf9658590f1401b0
Description: kamailio4 Multi-domain support module
Package: kamailio4-mod-domainpolicy
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20353
Filename: kamailio4-mod-domainpolicy_4.2.3-2_ramips_24kec.ipk
Size: 21106
MD5Sum: 41a5f681c9bec87bde4e2d36e3b07211
SHA256sum: a00779d012b03b8c418063c1aef7863385b40b83792db11cf205868c38912ef9
Description: kamailio4 Domain policy module
Package: kamailio4-mod-drouting
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39103
Filename: kamailio4-mod-drouting_4.2.3-2_ramips_24kec.ipk
Size: 39914
MD5Sum: 42fdbd85186f15623202a04b26b10151
SHA256sum: 6d2f78fc7120ca6be55da45ae58a6e905596d74c2fd14421b531f63a12b2b93f
Description: kamailio4 Dynamic routing module module
Package: kamailio4-mod-enum
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14671
Filename: kamailio4-mod-enum_4.2.3-2_ramips_24kec.ipk
Size: 15413
MD5Sum: fdcedff8779e9a0721d12e823c999fa8
SHA256sum: d52981e09ffe97dbbf37bbda1445d86711d8975458d826c389121e30d12fc4f8
Description: kamailio4 ENUM lookup module
Package: kamailio4-mod-exec
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16935
Filename: kamailio4-mod-exec_4.2.3-2_ramips_24kec.ipk
Size: 17710
MD5Sum: 4fd89131019af56fe1e8c3385b789086
SHA256sum: cdf9d2f53f4ae3ae665f5f45d053267dc80c8f926043e30e1ddaec137d60d415
Description: kamailio4 External exec module
Package: kamailio4-mod-group
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10384
Filename: kamailio4-mod-group_4.2.3-2_ramips_24kec.ipk
Size: 11161
MD5Sum: 6b06f5868be067bf247a0300009a22e0
SHA256sum: bb3e8eee9edca39709f9f08f5e807934eff73d4fd16f676e3052ee33c612bf11
Description: kamailio4 Database-backend user-groups module
Package: kamailio4-mod-h350
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-ldap, libopenldap
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9860
Filename: kamailio4-mod-h350_4.2.3-2_ramips_24kec.ipk
Size: 10637
MD5Sum: fae62b30bd6d1493160cb33a73e6a47a
SHA256sum: e90287a423ac92fdca90b2eb17f8fc0428ee96abc83a341349803a8f19e96dbb
Description: kamailio4 H.350 module
Package: kamailio4-mod-htable
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43768
Filename: kamailio4-mod-htable_4.2.3-2_ramips_24kec.ipk
Size: 44547
MD5Sum: b72f2faed08b1d60a17024024e1ad3fb
SHA256sum: ceabdce7b00d9d47538cea994e3ba7a68c8f3d1616c00e6010ac1a58f4fc88e2
Description: kamailio4 Hash Table module
Package: kamailio4-mod-imc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-db-mysql, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32379
Filename: kamailio4-mod-imc_4.2.3-2_ramips_24kec.ipk
Size: 33069
MD5Sum: bff7c3acc84369bdf7b7fc6da4ac3f07
SHA256sum: 1bcb52be70d95580bff66c80025fce4e1ec244238e8bce4586cbd69de3a3ce29
Description: kamailio4 IM conferencing module
Package: kamailio4-mod-ipops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25421
Filename: kamailio4-mod-ipops_4.2.3-2_ramips_24kec.ipk
Size: 26123
MD5Sum: aaa3668db8f3a91dfb752166ceaa4212
SHA256sum: bcb5d0b5b186608639a0e35647eeb0d02968fad2911621b7aac918445a82db16
Description: kamailio4 IP and IPv6 operations module
Package: kamailio4-mod-json
Version: 4.2.3-2
Depends: libc, kamailio4, libjson-c
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3521
Filename: kamailio4-mod-json_4.2.3-2_ramips_24kec.ipk
Size: 4279
MD5Sum: b5747bed8723fe381efc75f38ad9a41e
SHA256sum: d57e0ab4c61c5b96a0c692f2ecd5559798f4137606d189f56fafc363750adbd8
Description: kamailio4 Access to JSON document attributes module
Package: kamailio4-mod-kex
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15454
Filename: kamailio4-mod-kex_4.2.3-2_ramips_24kec.ipk
Size: 16143
MD5Sum: 17b4105e4cf8c90760edcc14003d99ef
SHA256sum: 7083a900af8710b189407ef6e08305942e736018bfc3696cc9b5f7f2fb627603
Description: kamailio4 Core extensions module
Package: kamailio4-mod-lcr
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm, libpcre
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43007
Filename: kamailio4-mod-lcr_4.2.3-2_ramips_24kec.ipk
Size: 43807
MD5Sum: 55682678e78ebd9fb2af5c49cba6c1bb
SHA256sum: 531dbd4c9f345c1b867557f6c9eca985b563366f2b359efcb2de9e2c0ecdf626
Description: kamailio4 Least Cost Routing module
Package: kamailio4-mod-ldap
Version: 4.2.3-2
Depends: libc, kamailio4, libopenldap
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21503
Filename: kamailio4-mod-ldap_4.2.3-2_ramips_24kec.ipk
Size: 22216
MD5Sum: 9d36a2b6d89dacdc6352085355d13d0f
SHA256sum: b28588534e9af163c2f34055a47d1c32c4357f5710e05b0de05d48617ee86267
Description: kamailio4 LDAP connector module
Package: kamailio4-mod-maxfwd
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5900
Filename: kamailio4-mod-maxfwd_4.2.3-2_ramips_24kec.ipk
Size: 6658
MD5Sum: f6460c42ee318b502ca22d7a3a4e5ac4
SHA256sum: e9b85712f147b0486a53f09ccf756132658cb26fa1793ca52f1dae5b01215fe9
Description: kamailio4 Max-Forward processor module
Package: kamailio4-mod-mediaproxy
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24192
Filename: kamailio4-mod-mediaproxy_4.2.3-2_ramips_24kec.ipk
Size: 24914
MD5Sum: 669542eb817d34975370abe610a3c3e6
SHA256sum: d1a7f5f8160026b32d4222a3e1af3cbe1594ab85bcb4ea67fe30325a163d6a02
Description: kamailio4 Automatic NAT traversal module
Package: kamailio4-mod-mi-datagram
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27772
Filename: kamailio4-mod-mi-datagram_4.2.3-2_ramips_24kec.ipk
Size: 28543
MD5Sum: d0a6a0afb0b9c2d9951e5d9c6b213f27
SHA256sum: b7873d9716c5c489506a37121b52f902a54a1231c1ed60f5ccf96e868d818322
Description: kamailio4 Datagram support for Management Interface module
Package: kamailio4-mod-mi-fifo
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21275
Filename: kamailio4-mod-mi-fifo_4.2.3-2_ramips_24kec.ipk
Size: 22028
MD5Sum: 738a0c9100964e45263afbb009a72ac7
SHA256sum: 0e7532b0e54d77e4c22033d684f60ae5eea21c78f8b4a2b16c6d180ba406d460
Description: kamailio4 FIFO support for Management Interface module
Package: kamailio4-mod-mi-rpc
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7743
Filename: kamailio4-mod-mi-rpc_4.2.3-2_ramips_24kec.ipk
Size: 8523
MD5Sum: d362f791b1a0d2b812525823e43de4e1
SHA256sum: d9dd5f41200112662e7d082cc44cb2e16adc0fd0132b5e220a82b73c3551d04c
Description: kamailio4 RPC support for Management Interface module
Package: kamailio4-mod-msilo
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29168
Filename: kamailio4-mod-msilo_4.2.3-2_ramips_24kec.ipk
Size: 29943
MD5Sum: c955b9008fd0cde27d9a9c40bee2f8e6
SHA256sum: 357a4217bf6e450130c8196ae962e7ad1cb2815d04e9c98c8f4506e728831012
Description: kamailio4 SIP message silo module
Package: kamailio4-mod-msrp
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tls
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32154
Filename: kamailio4-mod-msrp_4.2.3-2_ramips_24kec.ipk
Size: 32918
MD5Sum: dbbd90fb92fe976376f9da4b1e34cc8a
SHA256sum: 1c065c18685accd0dd3748c6dc2cc7fbdaf30464bc9c11de6e8cd4163a1084ef
Description: kamailio4 MSRP routing engine module
Package: kamailio4-mod-nat-traversal
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog, kamailio4-mod-sl, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22050
Filename: kamailio4-mod-nat-traversal_4.2.3-2_ramips_24kec.ipk
Size: 22819
MD5Sum: 5139d6e4399a9e393c4a1b9aaa1c53db
SHA256sum: 7238facda4f746dccf13fda94903d4aaaa54f6de9d7c97574bb8ec2b0830b5e1
Description: kamailio4 NAT traversal module
Package: kamailio4-mod-nathelper
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35764
Filename: kamailio4-mod-nathelper_4.2.3-2_ramips_24kec.ipk
Size: 36587
MD5Sum: e360442deb0486769ae6a7d522ca4546
SHA256sum: d227a1d3c2015f1027135cfa57afbb88807d8fc4d51fcab41591ef5099031c79
Description: kamailio4 NAT helper module
Package: kamailio4-mod-path
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7026
Filename: kamailio4-mod-path_4.2.3-2_ramips_24kec.ipk
Size: 7789
MD5Sum: f6cdf510ec9d4d3e31a1f959734a32c4
SHA256sum: 7c6a93b47b5b814cbc2186bf63dabae983dc308d7fd948edfdc8d568deb57ecb
Description: kamailio4 SIP path insertion module
Package: kamailio4-mod-pdt
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19165
Filename: kamailio4-mod-pdt_4.2.3-2_ramips_24kec.ipk
Size: 19928
MD5Sum: d1a6851884362d7aa4e86cc3c3fa7eb1
SHA256sum: e8c1b5cf10ab71fb46f635089af500ef415aec8efbf74b14ed9e9d5cdbd3decd
Description: kamailio4 Prefix-to-Domain translator module
Package: kamailio4-mod-permissions
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43087
Filename: kamailio4-mod-permissions_4.2.3-2_ramips_24kec.ipk
Size: 43877
MD5Sum: ea434468038037b6ce7bf903082c24c2
SHA256sum: 308f5ac43c79cfc3befdf94f24b141f989e1132a2d8619a65dc1f394944538cc
Description: kamailio4 Permissions control module
Package: kamailio4-mod-pike
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19858
Filename: kamailio4-mod-pike_4.2.3-2_ramips_24kec.ipk
Size: 20628
MD5Sum: 31253dbb46b2d9e7fe2b29214db5522d
SHA256sum: 8e1515df37b5eca97bb9747a474062a51e40edb752b4a8ee6db677f5fa14723e
Description: kamailio4 Flood detector module
Package: kamailio4-mod-presence-dialoginfo
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11983
Filename: kamailio4-mod-presence-dialoginfo_4.2.3-2_ramips_24kec.ipk
Size: 12737
MD5Sum: ec9dd5ef9e11ce0f72d11907f4868614
SHA256sum: 587c0e38602a7d0d5600e2e1f3f2e1df5e4bcf2a80c13b0f61e541b7b960ac79
Description: kamailio4 Dialog Event presence module
Package: kamailio4-mod-presence-mwi
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3930
Filename: kamailio4-mod-presence-mwi_4.2.3-2_ramips_24kec.ipk
Size: 4678
MD5Sum: 04f68b3942b537106cdab944e1fdd75c
SHA256sum: dcdd630cd6689870ea53c7de72be34ced4d2207ca0c184e5dfbeb34d0795c98b
Description: kamailio4 Message Waiting Indication presence module
Package: kamailio4-mod-presence-xml
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-xcap-client
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30053
Filename: kamailio4-mod-presence-xml_4.2.3-2_ramips_24kec.ipk
Size: 30786
MD5Sum: db0434302dd1214511a24c7f4a25736d
SHA256sum: 612fab9be0873c58fe12eb43ca9942ff4363dca7f1af532fced9f26fc25b633b
Description: kamailio4 XCAP presence module
Package: kamailio4-mod-presence
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl, kamailio4-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123686
Filename: kamailio4-mod-presence_4.2.3-2_ramips_24kec.ipk
Size: 124358
MD5Sum: e35be283e453446fd43c380207c14f05
SHA256sum: 3f3d75698ec9573c721e973df1813900e7e5864a33574a663eb66b37003ea741
Description: kamailio4 Presence server module
Package: kamailio4-mod-pua-bla
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-pua, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9467
Filename: kamailio4-mod-pua-bla_4.2.3-2_ramips_24kec.ipk
Size: 10259
MD5Sum: e3fb2ddd928e612a66ca135a0d1e75a4
SHA256sum: 07f9ef6a0cf401ad05422216e3da3a61bf796d0f1a20a686627367ee754b5072
Description: kamailio4 Bridged Line Appearence PUA module
Package: kamailio4-mod-pua-dialoginfo
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog, kamailio4-mod-pua
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13569
Filename: kamailio4-mod-pua-dialoginfo_4.2.3-2_ramips_24kec.ipk
Size: 14329
MD5Sum: 4ba8eeee9cc936b0e83fcd19db56aafe
SHA256sum: c15b5f94bc64545da69b6966862365d86b342da3d3f849a4b762a557ebf3a1d9
Description: kamailio4 Dialog Event PUA module
Package: kamailio4-mod-pua-mi
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-pua
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8804
Filename: kamailio4-mod-pua-mi_4.2.3-2_ramips_24kec.ipk
Size: 9592
MD5Sum: cbbd1431b5ad1317e3d8a730a6a8518e
SHA256sum: ab4d4d7718c9ff7d1fbc716d9d7959f4cee6b9f32a4684737edbea5240b64b38
Description: kamailio4 PUA Management Interface module
Package: kamailio4-mod-pua-usrloc
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-pua, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9029
Filename: kamailio4-mod-pua-usrloc_4.2.3-2_ramips_24kec.ipk
Size: 9789
MD5Sum: 959b98e163a9410fbcf457701ccc6472
SHA256sum: bfb80e29084ea70283755c92f43dc074c4ab501e56ec7a1608d6008dc9c94b15
Description: kamailio4 PUA User Location module
Package: kamailio4-mod-pua-xmpp
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-pua, kamailio4-mod-xmpp
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25904
Filename: kamailio4-mod-pua-xmpp_4.2.3-2_ramips_24kec.ipk
Size: 26643
MD5Sum: 58511733dffe2905e73e7e206648d01d
SHA256sum: be7e9675191d7e552ad1f13aaa9f8026dd1cc3d155d5c7f4dfc478423cfdb9a9
Description: kamailio4 PUA XMPP module
Package: kamailio4-mod-pua
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67477
Filename: kamailio4-mod-pua_4.2.3-2_ramips_24kec.ipk
Size: 68176
MD5Sum: eb718dc5ea032bf4b6fa30abce0d8455
SHA256sum: 635bae8a6cbda6d546565bacb5067af131ab79df305443063ad4ed9f204c3e64
Description: kamailio4 Presence User Agent module
Package: kamailio4-mod-pv
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78995
Filename: kamailio4-mod-pv_4.2.3-2_ramips_24kec.ipk
Size: 79708
MD5Sum: 3efa50feade66388084eccb3844e3216
SHA256sum: c7335fddba00495d976cf764dacf0514f7136d93afc84990638a6d60197e83a5
Description: kamailio4 Pseudo-Variables module
Package: kamailio4-mod-qos
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22049
Filename: kamailio4-mod-qos_4.2.3-2_ramips_24kec.ipk
Size: 22805
MD5Sum: 5644a52efe0b6b0dc55a83b34d22c6a1
SHA256sum: ed0ce09e3b0287c2eec9318308b437c3b8a27349181578a206232985103035d0
Description: kamailio4 QoS control module
Package: kamailio4-mod-ratelimit
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19017
Filename: kamailio4-mod-ratelimit_4.2.3-2_ramips_24kec.ipk
Size: 19787
MD5Sum: 71db88d73cc41985a70743a5a66dcc72
SHA256sum: 5368711d5a9e40ba31c7bdd8cac0116b7353404595107eb03274ed75b5d065ef
Description: kamailio4 Traffic shapping module
Package: kamailio4-mod-regex
Version: 4.2.3-2
Depends: libc, kamailio4, libpcre
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12150
Filename: kamailio4-mod-regex_4.2.3-2_ramips_24kec.ipk
Size: 12880
MD5Sum: d7264da8afd709e3e765dfea2dd33beb
SHA256sum: 4bd0a8b234b9366142cd6319364a22104108bdd15da28994920ca75b9c8654ad
Description: kamailio4 Regular Expression module
Package: kamailio4-mod-registrar
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-usrloc
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45177
Filename: kamailio4-mod-registrar_4.2.3-2_ramips_24kec.ipk
Size: 45978
MD5Sum: 13da9d6141771382bc1b0385dc8b2224
SHA256sum: 38d06d93f6be5c735abe8cf32c43ce3fd5cbf0615b7e75abba5d11d95f9c0fa7
Description: kamailio4 SIP Registrar module
Package: kamailio4-mod-rls
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-presence, kamailio4-mod-pua, kamailio4-mod-tm, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80071
Filename: kamailio4-mod-rls_4.2.3-2_ramips_24kec.ipk
Size: 80811
MD5Sum: 73b4fd8d90d72129ef19fc5eaa2ed215
SHA256sum: 80762d417888e9f85b4e0e4ae74a1eeeb42420105b04d6885a7c900ad43e2515
Description: kamailio4 Resource List Server module
Package: kamailio4-mod-rr
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27709
Filename: kamailio4-mod-rr_4.2.3-2_ramips_24kec.ipk
Size: 28471
MD5Sum: 111621ec1e22097b42f76968362ebd02
SHA256sum: d77931d18a028851f75cb2f10324e2b02a334ba7ea2aa1c8b34a85b23e34b8b7
Description: kamailio4 Record-Route and Route module
Package: kamailio4-mod-rtimer
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5088
Filename: kamailio4-mod-rtimer_4.2.3-2_ramips_24kec.ipk
Size: 5823
MD5Sum: 9033f9bc24acbda786aa243c56f551f6
SHA256sum: 2f96f39b99427938b5ebd6bd93a7a608594128a5a96da3b50f76fa8d6f33fb66
Description: kamailio4 Routing Timer module
Package: kamailio4-mod-rtpengine
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34855
Filename: kamailio4-mod-rtpengine_4.2.3-2_ramips_24kec.ipk
Size: 35661
MD5Sum: 4fc78a2b7be405679139d0ce021e3f62
SHA256sum: 8cfeb23bc2c5526741392e3e666ccd11ae15c424241f8633ef1a6af051e72635
Description: kamailio4 RTP engine module
Package: kamailio4-mod-rtpproxy
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39270
Filename: kamailio4-mod-rtpproxy_4.2.3-2_ramips_24kec.ipk
Size: 40117
MD5Sum: 146cedf27b4377cdd21f8ad6fdaabbbd
SHA256sum: ac7cde6ad00f4d9a483354b85238760670c73952ffab03068e7afe39e7b70ea8
Description: kamailio4 RTP proxy module
Package: kamailio4-mod-sanity
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14800
Filename: kamailio4-mod-sanity_4.2.3-2_ramips_24kec.ipk
Size: 15527
MD5Sum: 5fa285d72cae98a989480892698dbc67
SHA256sum: 9c91b198f656ac11ef88d0aba46c07c82d0145dee0abf9999b67909eed3a3e5f
Description: kamailio4 SIP sanity checks module
Package: kamailio4-mod-sipcapture
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37119
Filename: kamailio4-mod-sipcapture_4.2.3-2_ramips_24kec.ipk
Size: 37962
MD5Sum: 0eb031d8b6db4fea85d0892d7e35d487
SHA256sum: 67d00a1d5623aef1515f271460e239cf8060ae88fce7bf4ba4477251783fd559
Description: kamailio4 SIP capture module
Package: kamailio4-mod-siptrace
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27016
Filename: kamailio4-mod-siptrace_4.2.3-2_ramips_24kec.ipk
Size: 27766
MD5Sum: 7d9061395bf977f33574a2de96296cfb
SHA256sum: c88a62f2da94cc5f2172a88b1d352db37cb92fb549db82e8308eb7fd1d5c35db
Description: kamailio4 SIP trace module
Package: kamailio4-mod-siputils
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30172
Filename: kamailio4-mod-siputils_4.2.3-2_ramips_24kec.ipk
Size: 30896
MD5Sum: 744070980bf0802dad12e0b6b1ec18f6
SHA256sum: dfaa1e2c971b6cae5155e2a8285ec28aa6f11e550cb1e465401360c9be361c10
Description: kamailio4 SIP utilities module
Package: kamailio4-mod-sl
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18232
Filename: kamailio4-mod-sl_4.2.3-2_ramips_24kec.ipk
Size: 18954
MD5Sum: f3c8bdf2d2e184e60d4ddc2236e1ab99
SHA256sum: fb22b44ef585f4d665d0b8a05e0af1ac1b76b597b4958156f772088085455914
Description: kamailio4 Stateless replier module
Package: kamailio4-mod-sms
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37436
Filename: kamailio4-mod-sms_4.2.3-2_ramips_24kec.ipk
Size: 38278
MD5Sum: f0ea7a96b0d34e5c61ab41f3562fe0fe
SHA256sum: 9b15c5ddb17306a5e61f9791b0f856611013807aaa870c4173908de8cc4c97f4
Description: kamailio4 SIP-to-SMS IM gateway module
Package: kamailio4-mod-speeddial
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6069
Filename: kamailio4-mod-speeddial_4.2.3-2_ramips_24kec.ipk
Size: 6821
MD5Sum: 5781da1480c1af6ef09ad5f78ad29d6f
SHA256sum: ddb9bde24ed3baa7651f85d99320aac148cf8b004544e3fb8302cb7db097457a
Description: kamailio4 Per-user speed-dial controller module
Package: kamailio4-mod-sqlops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18940
Filename: kamailio4-mod-sqlops_4.2.3-2_ramips_24kec.ipk
Size: 19729
MD5Sum: 0ec7664c28236aef82fccb0e7dff12e9
SHA256sum: 6a9a47aee70d7609eaf7e42c5a11388eaebd83848204a559194b4f215a8f07c2
Description: kamailio4 SQL operations module
Package: kamailio4-mod-sst
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-dialog, kamailio4-mod-sl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13679
Filename: kamailio4-mod-sst_4.2.3-2_ramips_24kec.ipk
Size: 14437
MD5Sum: 9ba5571789d6840e95a566c40f0331b0
SHA256sum: b9d5fb49eec636df1a270ee57c7e9b23bffbba28e8b9068617a04eebb545836a
Description: kamailio4 SIP Session Timer module
Package: kamailio4-mod-statistics
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5608
Filename: kamailio4-mod-statistics_4.2.3-2_ramips_24kec.ipk
Size: 6364
MD5Sum: ccbae5977ec691805018d4d8e9ad50c9
SHA256sum: 022627d93f06b7d308de9e1f7d414d9eccf89c6b6f827eab4128dac8eb605ba5
Description: kamailio4 Script statistics module
Package: kamailio4-mod-stun
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8738
Filename: kamailio4-mod-stun_4.2.3-2_ramips_24kec.ipk
Size: 9509
MD5Sum: c23d1b75304046f0120ee76e2797237b
SHA256sum: af44298c10aa67c9cd33e9069bf1fd4e65608488ee28b42a6f8cb8de1ef3949f
Description: kamailio4 STUN server support module
Package: kamailio4-mod-textops
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37305
Filename: kamailio4-mod-textops_4.2.3-2_ramips_24kec.ipk
Size: 38141
MD5Sum: bfa0438e9f4760c5981216be29963f7c
SHA256sum: 2c86b95a1ae03a8cd842fc4b498a42caa7da30e15557fdd4ea9f258915ca4a30
Description: kamailio4 Text operations module
Package: kamailio4-mod-tls
Version: 4.2.3-2
Depends: libc, kamailio4, libopenssl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78713
Filename: kamailio4-mod-tls_4.2.3-2_ramips_24kec.ipk
Size: 79378
MD5Sum: 251b1e18f771d665a5274162e5a0892d
SHA256sum: 4cdcb8afc69024cf8bbade8de01a383769ab84d7b451b625f6f7f72b190574ce
Description: kamailio4 TLS operations module
Package: kamailio4-mod-tm
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197208
Filename: kamailio4-mod-tm_4.2.3-2_ramips_24kec.ipk
Size: 197737
MD5Sum: 24eff0986ee676f90e0eeeb7850eec38
SHA256sum: 869d0fae8b1827fffcb4eee157949db336f3f813198fb97d7f5b9dc3b649022f
Description: kamailio4 Transaction module
Package: kamailio4-mod-tmx
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24956
Filename: kamailio4-mod-tmx_4.2.3-2_ramips_24kec.ipk
Size: 25692
MD5Sum: 24824e3cb3d0c7da31bc1df4a59e7d13
SHA256sum: 71b8a71bf602a1b233ee2229a5142102a3375088b46433a4b1a0da2a01c4da2e
Description: kamailio4 Transaction module extensions module
Package: kamailio4-mod-topoh
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-rr
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21619
Filename: kamailio4-mod-topoh_4.2.3-2_ramips_24kec.ipk
Size: 22334
MD5Sum: 5b217a34c3918acf502b514d6cf5ae69
SHA256sum: dcbfd98f71a7a5745058747c6b29dacd479a6c755ce1ba8f87348948658490b7
Description: kamailio4 Topology hiding module
Package: kamailio4-mod-uac-redirect
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10798
Filename: kamailio4-mod-uac-redirect_4.2.3-2_ramips_24kec.ipk
Size: 11583
MD5Sum: 0be83694e3ee2c4b6543a71da384732a
SHA256sum: 79f8ef6dbb8542443343e4bc1119edb1a4df1530a8d5e7e39e66fa5fcaf146a3
Description: kamailio4 User Agent Client redirection module
Package: kamailio4-mod-uac
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54868
Filename: kamailio4-mod-uac_4.2.3-2_ramips_24kec.ipk
Size: 55628
MD5Sum: e0f72f2bfe183bbe9245be7a0f76b588
SHA256sum: dc1cb7e24e18a0f8c7a425ba908b77aa5e1b1ab86cf03afd147d04f5708f6baf
Description: kamailio4 User Agent Client module
Package: kamailio4-mod-uri-db
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6992
Filename: kamailio4-mod-uri-db_4.2.3-2_ramips_24kec.ipk
Size: 7773
MD5Sum: d81fb93ec5593f8407ee8c0ec16eeefc
SHA256sum: a1291c02bc79a941915014a030b3bd5eca05b0f26d4fc36c17b3654eb4877003
Description: kamailio4 Database-backend SIP URI checking module
Package: kamailio4-mod-userblacklist
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12917
Filename: kamailio4-mod-userblacklist_4.2.3-2_ramips_24kec.ipk
Size: 13649
MD5Sum: b5cd809fca2ce45baa0e57b2ecf269fe
SHA256sum: b228277b8f82735119c9c5467e4463f7475091f25cf4e5d5bd94fa2c836cd834
Description: kamailio4 User blacklists module
Package: kamailio4-mod-usrloc
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58519
Filename: kamailio4-mod-usrloc_4.2.3-2_ramips_24kec.ipk
Size: 59303
MD5Sum: f65e9eafbdd641b98b588db41750cd54
SHA256sum: b5adef9206c5697c5af0372759a9d3445749998773d6e199bf19f1f50db4ec3f
Description: kamailio4 User location module
Package: kamailio4-mod-utils
Version: 4.2.3-2
Depends: libc, kamailio4, libcurl, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24404
Filename: kamailio4-mod-utils_4.2.3-2_ramips_24kec.ipk
Size: 25099
MD5Sum: 2b071f51670c31d410293c5ea2a274c5
SHA256sum: c35325af0fe353f0aeed627c466f73ef2680538b6849c929f02733e8579b2cd6
Description: kamailio4 Misc utilities module
Package: kamailio4-mod-xcap-client
Version: 4.2.3-2
Depends: libc, kamailio4, libcurl
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13779
Filename: kamailio4-mod-xcap-client_4.2.3-2_ramips_24kec.ipk
Size: 14500
MD5Sum: b11edba5eccfd833b9cb0efab8cb590d
SHA256sum: 94f0d9da4e7ad3bfc728be867534278ca9e7d74e0e28ba8060b801481c3f188f
Description: kamailio4 XCAP Client module
Package: kamailio4-mod-xlog
Version: 4.2.3-2
Depends: libc, kamailio4
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8500
Filename: kamailio4-mod-xlog_4.2.3-2_ramips_24kec.ipk
Size: 9256
MD5Sum: 56c67290d040b6205644ffcc73d8dc69
SHA256sum: c7c480926c5813b68aa572b78b96e17b3da06ebb400c29d511f3e54ea647a850
Description: kamailio4 Advanced logger module
Package: kamailio4-mod-xmlrpc
Version: 4.2.3-2
Depends: libc, kamailio4, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22630
Filename: kamailio4-mod-xmlrpc_4.2.3-2_ramips_24kec.ipk
Size: 23354
MD5Sum: 9db9e6800649cd2bb644cb8b7b366252
SHA256sum: 7ac71af20e4086f47ccba3276245c3275a82f83f49b14ad96854cbd5fee2fc84
Description: kamailio4 XML RPC module module
Package: kamailio4-mod-xmpp
Version: 4.2.3-2
Depends: libc, kamailio4, kamailio4-mod-tm, libexpat
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34674
Filename: kamailio4-mod-xmpp_4.2.3-2_ramips_24kec.ipk
Size: 35524
MD5Sum: 28d4fbff6ad410d0da75536f1978e64c
SHA256sum: 5fac543de6f938ef46ea24dfb3246a7ef2a5eb9aa44e80aff910cb1362cd715e
Description: kamailio4 SIP-to-XMPP Gateway module
Package: kamailio4
Version: 4.2.3-2
Depends: libc, libncurses, libpthread, libreadline, libxml2
Source: feeds/telephony/net/kamailio-4.x
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1091475
Filename: kamailio4_4.2.3-2_ramips_24kec.ipk
Size: 1091625
MD5Sum: b5a849f9803ce25fe2b9a33dc7636dba
SHA256sum: b6210ff7b17c76e8a7dedfceaf21d69c94e4cb78d096ace359c84ba1fddbc43d
Description: Mature and flexible open source SIP server, v4.2.3
Package: kmod-dahdi-echocan-oslec
Version: 3.18.9+2.10.0.1-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-dahdi
Source: feeds/telephony/libs/dahdi-linux
License: GPL-2.0
LicenseFiles: LICENSE
Section: kernel
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3681
Filename: kmod-dahdi-echocan-oslec_3.18.9+2.10.0.1-1_ramips_24kec.ipk
Size: 4498
MD5Sum: cec2e3ec1f5d2aca91f121cc65d511ce
SHA256sum: 5d0bdddeda471b70a0ea28617baa3ee0b4e42a11695ec146f316014cf3b23bce
Description: This package contains DAHDI OSLEC echo canceller support.
Package: kmod-dahdi
Version: 3.18.9+2.10.0.1-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-lib-crc-ccitt
Source: feeds/telephony/libs/dahdi-linux
License: GPL-2.0
LicenseFiles: LICENSE
Section: kernel
Maintainer: Vittorio Gambaletta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56208
Filename: kmod-dahdi_3.18.9+2.10.0.1-1_ramips_24kec.ipk
Size: 56809
MD5Sum: f2504b1354aac3afbfab8cec9e8cb5dc
SHA256sum: 52245b97804634a8c30c0275e864cdbc22de54077f1013ad97ae6e6d26f57e68
Description: This package contains DAHDI basic infrastructure.
Package: libiksemel
Version: 1.4-1
Depends: libc, libgnutls, libtasn1, libgcrypt, libgpg-error
Source: feeds/telephony/libs/iksemel
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19313
Filename: libiksemel_1.4-1_ramips_24kec.ipk
Size: 20244
MD5Sum: cefcee38c9b7939a8b5ef025b986376e
SHA256sum: 75f7f2effa22d254c491ea677b7f95fa0c4b9af8652ed7b4f3a020b85b9f3d3a
Description: Iksemel is an XML parser library mainly designed for Jabber applications.
It provides SAX, DOM, and special Jabber stream APIs. Library is coded
in ANSI C except the network code (which is POSIX compatible), thus
highly portable.
Package: libortp
Version: 0.23.0-1
Depends: libc, libpthread, librt
Source: feeds/telephony/libs/ortp
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49329
Filename: libortp_0.23.0-1_ramips_24kec.ipk
Size: 50152
MD5Sum: 9b537848cdd90e7074e680a0e7a7e645
SHA256sum: afe80cd264e0fe4d5a2726361acac6d83c727dba2ff1d8f38c178f0227eb0240
Description: Real-time Transport Protocol (RTP) library
Package: libosip2
Version: 4.1.0-1
Depends: libc, librt
Source: feeds/telephony/libs/libosip2
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 59247
Filename: libosip2_4.1.0-1_ramips_24kec.ipk
Size: 60068
MD5Sum: 4016456c9a48559a22b5b11c8b5f9db2
SHA256sum: 24285c32424e728eebcb6a122bdaab73834f81d9a8d2e2bb6c0578c72280d906
Description: GNU oSIP library, a Session Initiation Protocol (SIP) implementation.
Package: libpj
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, librt
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93904
Filename: libpj_2.3-1_ramips_24kec.ipk
Size: 94678
MD5Sum: c75be6d9175e2cdfe7fdf51c369f2dad
SHA256sum: 7ca182ba4b29dab9ee0aec1ff803db7f00770f15c4a72c7e5b82c4d4ea2089eb
Description: libpj library
Package: libpjlib-util
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, librt
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 125152
Filename: libpjlib-util_2.3-1_ramips_24kec.ipk
Size: 125736
MD5Sum: 9e29d829fde1e9e9218f7cb7f7b86ef0
SHA256sum: 810d9f51228bdf64c406bcb1be003d4f1038849b20983a008161e197654d432e
Description: libpjlib-util library
Package: libpjmedia
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjnath, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 229690
Filename: libpjmedia_2.3-1_ramips_24kec.ipk
Size: 229998
MD5Sum: c8004548587011d260cdbe4bcd4494e2
SHA256sum: 3b29b48b4e07edb8cd1d08ea21dfe1033a55e302a792eddaba30ead6fd779bea
Description: libpjmedia library
Package: libpjnath
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, librt
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 114320
Filename: libpjnath_2.3-1_ramips_24kec.ipk
Size: 114771
MD5Sum: fa8b6c52fa090c656bf76a92e79ed291
SHA256sum: 8d5c701d03befc75e98c00a459d3a4d6ddade574c803f7f3f18c5e023c924992
Description: libpjnath library
Package: libpjsip-simple
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjsip, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51279
Filename: libpjsip-simple_2.3-1_ramips_24kec.ipk
Size: 51343
MD5Sum: 1b142e027d4c906ac18f9304a41fc863
SHA256sum: e2af434c59a834dadd040833d6d2b979a0e0643f356919757d08fd3e48828386
Description: libpjsip-simple library
Package: libpjsip-ua
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjmedia, libpjsip-simple, libpjsip, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 72388
Filename: libpjsip-ua_2.3-1_ramips_24kec.ipk
Size: 73215
MD5Sum: 7ea4155b97889a7dd088bcd787d46820
SHA256sum: ceee518b18b9cd5303aa283e464d3855c11016277f8093c10f5ba331658ef122
Description: libpjsip-ua library
Package: libpjsip
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 187870
Filename: libpjsip_2.3-1_ramips_24kec.ipk
Size: 188335
MD5Sum: d2a323cdc4759a5253705af01fc8e025
SHA256sum: 193298f970b530e45ca214ef19c25b9951a4225738ab4fa4474e566e287b5e6a
Description: libpjsip library
Package: libpjsua2
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsip, libresample, librt, libspeex, libsrtp, libpjsua
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 182309
Filename: libpjsua2_2.3-1_ramips_24kec.ipk
Size: 182952
MD5Sum: d9e73139c9240c5405ec1045ec8050ed
SHA256sum: a707eb407fd8be0e1eaa6c390c8751e3f6994d4f4db2a8045607eced696b0170
Description: libpjsua2 library
Package: libpjsua
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread, libpj, libpjlib-util, libpjmedia, libpjnath, libpjsip-simple, libpjsip-ua, libpjsip, libresample, librt, libspeex, libsrtp
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 178672
Filename: libpjsua_2.3-1_ramips_24kec.ipk
Size: 179125
MD5Sum: 1a6d13f796ad0ce9abea157dc921ff68
SHA256sum: 3f310595eb3d24e8dac38cc6662908ccd8c3e75fe0411a3b29b8bdb57a1040ed
Description: libpjsua library
Package: libre
Version: 0.4.11-1
Depends: libc, libopenssl, libpthread
Source: feeds/telephony/libs/re
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 148319
Filename: libre_0.4.11-1_ramips_24kec.ipk
Size: 148997
MD5Sum: f10e506c72db46aea20593d84330b1cd
SHA256sum: 3e03654a03f09f45127b09eb1360046a349dca532b48503304baac8f58907b76
Description: Generic library for real-time communications with async IO support
Package: librem
Version: 0.4.6-1
Depends: libc, libre, libpthread
Source: feeds/telephony/libs/rem
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17845
Filename: librem_0.4.6-1_ramips_24kec.ipk
Size: 18634
MD5Sum: b1872fd4f354fb5d500714832079eeb6
SHA256sum: 3e6fec385b55837bcae45f84d189eb597eefa345a711085adeed36e22ee3dc03
Description: Audio and video processing media library
Package: libresample
Version: 2.3-1
Depends: libc, libuuid, libstdcpp, libpthread
Source: feeds/telephony/libs/pjproject
License: GPL-2.0
LicenseFiles: COPYING
Section: lib
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34982
Filename: libresample_2.3-1_ramips_24kec.ipk
Size: 35837
MD5Sum: e0415ec2a488e2a24b66177ac4c5f3bb
SHA256sum: b67600cf6772285954340c6c90b24ea8b78db3bc606690c9e517ae89a0d9e9ec
Description: libresample library
Package: libspandsp
Version: 0.0.6-2
Depends: libc, libtiff
Source: feeds/telephony/libs/spandsp
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 273751
Filename: libspandsp_0.0.6-2_ramips_24kec.ipk
Size: 273260
MD5Sum: 87a45cc05bb2641141d4ff3cb475b2ed
SHA256sum: 5c9d665ab24f136ae424663df8169fca8f1b79d6ddfea6d74ef63f3fe48b10e9
Description: spandsp library
Package: libsrtp
Version: 1.4.4-1
Depends: libc
Source: feeds/telephony/libs/libsrtp
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31459
Filename: libsrtp_1.4.4-1_ramips_24kec.ipk
Size: 31425
MD5Sum: 078393ebab194cd18cd8c05bcbd32a10
SHA256sum: 7b09c8f99f7b1d8167f821e79e6a831193328727573a5c132825c50aea999034
Description: Open-source implementation of the Secure Real-time Transport
Protocol (SRTP) originally authored by Cisco Systems, Inc.
It is available under a BSD-style license.
Package: miax
Version: 1.4-2
Depends: libc, libpthread
Source: feeds/telephony/net/miax
License: GPL-2.0
LicenseFiles: COPYING LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 32863
Filename: miax_1.4-2_ramips_24kec.ipk
Size: 33652
MD5Sum: e41455012ff1e64f45b7dbe765314edc
SHA256sum: 51be74161fa5d10f147ec63de48d8a8a666e51d60ebb2442a9bc5d3b112e891f
Description: miax is a console iax (asterisk) client, it can work with
a soundcard as a normal voip phone, taking input/output from
keyboard or analog/gsm/isdn modem.
Package: pcapsipdump
Version: 0.2-1
Depends: libc, libpcap, uclibcxx
Source: feeds/telephony/net/pcapsipdump
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Architecture: ramips_24kec
Installed-Size: 6916
Filename: pcapsipdump_0.2-1_ramips_24kec.ipk
Size: 7796
MD5Sum: c6748ec666a80e12a511ae758d04262b
SHA256sum: 3c11aa755b87bc9c4e32b30202c5027b7e98214692ea524c574c0d8d71eea961
Description: pcapsipdump is a tool for dumping SIP sessions (+RTP traffic, if available) to disk in a
fashion similar to "tcpdump -w" (format is exactly the same), but one file per sip session
(even if there is thousands of concurrect SIP sessions).
Package: restund-mod-mysql
Version: 0.4.11-1
Depends: libc, restund, libmysqlclient
Source: feeds/telephony/net/restund
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2648
Filename: restund-mod-mysql_0.4.11-1_ramips_24kec.ipk
Size: 3443
MD5Sum: 36c6a08d7833d0c3e8da38b62527232f
SHA256sum: 8e6f4d4284d35a9d3729acab68155a6d4763e9ee77315fba3e7a5b4a789fb4bc
Description: restund MySQL database backend module
Package: restund
Version: 0.4.11-1
Depends: libc, libre, libpthread
Source: feeds/telephony/net/restund
License: BSD-3-Clause
LicenseFiles: docs/COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27167
Filename: restund_0.4.11-1_ramips_24kec.ipk
Size: 27951
MD5Sum: 41f8a047c58025cd770f32b69953b85f
SHA256sum: e54f5815c40f9723db5e56b4f0f4bf297667d1bea0a42d869f924b8ae6f8125f
Description: Modular STUN/TURN server
Package: rtpproxy
Version: 1.2.1-2
Depends: libc, libpthread
Source: feeds/telephony/net/rtpproxy
License: BSD-2-Clause
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 25596
Filename: rtpproxy_1.2.1-2_ramips_24kec.ipk
Size: 26289
MD5Sum: d3578fc7e79dff5eab38334a2315d308
SHA256sum: 4ff5f5853eb9dbd94d21fe1b3184f42946242d94cdfd0c61ec47abd8137b735e
Description: RTP (Realtime Transport Protocol) proxy
Package: sipp
Version: 3.3.990-1
Depends: libc, libncurses, libpthread, uclibcxx
Source: feeds/telephony/net/sipp
License: GPL-2.0+ BSD-3-Clause Zlib
LicenseFiles: LICENSE.txt
Section: net
Architecture: ramips_24kec
Installed-Size: 144239
Filename: sipp_3.3.990-1_ramips_24kec.ipk
Size: 144970
MD5Sum: 0154c5428c10df10ea9bec70453bf3ca
SHA256sum: ff78c006f01d00927bc579cc1d829fa313f31fe717d6e8bc8a0d75575e07f436
Description: SIPp is a free Open Source test tool / traffic generator for the SIP
protocol. It includes a few basic SipStone user agent scenarios (UAC and
UAS) and establishes and releases multiple calls with the INVITE and BYE
methods.
Package: siproxd-mod-defaulttarget
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2302
Filename: siproxd-mod-defaulttarget_0.8.1-4_ramips_24kec.ipk
Size: 3038
MD5Sum: 9320fcf95efa7273c8fe2d6e5aa0b5b1
SHA256sum: 680c59d6849cf7b4d646cfb10b0fa5afe8d28a378136ed53fb2b4a655e51caca
Description: siproxd defaulttarget plugin
Package: siproxd-mod-demo
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 1668
Filename: siproxd-mod-demo_0.8.1-4_ramips_24kec.ipk
Size: 2387
MD5Sum: 9c779585fc30943ed6bdc7efae61fd15
SHA256sum: 97b52f06b9c1880838ba7d2a551aea72e467d63d90445cbd3c016362056dadfb
Description: siproxd demo plugin
Package: siproxd-mod-fix_bogus_via
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2308
Filename: siproxd-mod-fix_bogus_via_0.8.1-4_ramips_24kec.ipk
Size: 3042
MD5Sum: af8446144e8316bd241c68d0fb442ba0
SHA256sum: 2ae7f4f55d3e0184ce7f1a97b0423e3ae8031a6f8eb0a5b2e3cb4dd0f2277854
Description: siproxd fix_bogus_via plugin
Package: siproxd-mod-logcall
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 1852
Filename: siproxd-mod-logcall_0.8.1-4_ramips_24kec.ipk
Size: 2576
MD5Sum: b4a6ad1484dba7094b8e6f14ea6238d4
SHA256sum: 454956f356a774fc4a05a6b2350a9c1718db5728ce8e1de47761bcf5008571e1
Description: siproxd logcall plugin
Package: siproxd-mod-prefix
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2869
Filename: siproxd-mod-prefix_0.8.1-4_ramips_24kec.ipk
Size: 3607
MD5Sum: a849ae9f59753f51158f56ef2849caa0
SHA256sum: f57bcad652a6975b5c664c51cc6d31afc807c044c408c9ce86c1bed8afa97396
Description: siproxd prefix plugin
Package: siproxd-mod-regex
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 4153
Filename: siproxd-mod-regex_0.8.1-4_ramips_24kec.ipk
Size: 4839
MD5Sum: f2cbf3648c40d608c44550a0a5ed2375
SHA256sum: 65d9305ca95002b860daacbfbfe44f9c17486a7b57f67d6022f50ec99db9342c
Description: siproxd regex plugin
Package: siproxd-mod-shortdial
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 2770
Filename: siproxd-mod-shortdial_0.8.1-4_ramips_24kec.ipk
Size: 3507
MD5Sum: 2777f6a048ab35f3ae47bdc6a59e2b84
SHA256sum: 4924d2958f5a24010fc7938a217130ea06c60a88c6b35c2b6d6467aed0a148dc
Description: siproxd shortdial plugin
Package: siproxd-mod-stun
Version: 0.8.1-4
Depends: libc, siproxd
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 3402
Filename: siproxd-mod-stun_0.8.1-4_ramips_24kec.ipk
Size: 4125
MD5Sum: 2c24dc03aa99217fb740e9f237295b54
SHA256sum: e56d58a458e88b947100118a39fe69ee5460524bb19f7cdbb7b5bd85fcd2f103
Description: siproxd stun plugin
Package: siproxd
Version: 0.8.1-4
Depends: libc, libltdl, libpthread, libosip2
Source: feeds/telephony/net/siproxd
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 49852
Filename: siproxd_0.8.1-4_ramips_24kec.ipk
Size: 50465
MD5Sum: 9eb5416051a0742edf1c331c3e7043ad
SHA256sum: 795b80785311fb54a487a82c48acb753b71173616c5ff645896e29deca9acac6
Description: Siproxd is a proxy/masquerading daemon for the SIP protocol.
Package: sipsak
Version: 0.9.6-1-4
Depends: libc, libopenssl
Source: feeds/telephony/net/sipsak
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 25970
Filename: sipsak_0.9.6-1-4_ramips_24kec.ipk
Size: 26644
MD5Sum: 0f8cea61eebb885667123118a9f12a4e
SHA256sum: 72f8372586bead45e95a12a346c8c5914b87128f82447b8f89294e11e691fb10
Description: SIP (Session Initiation Protocol) stress and diagnostics utility
Package: yate-mod-accfile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7688
Filename: yate-mod-accfile_5.4.2-1-4_ramips_24kec.ipk
Size: 8479
MD5Sum: 867a3f2a4e08b535c658457de45c4889
SHA256sum: 36ca8e7fa4c9b0b88a83090ec72701143d76cb0256ce462678c403515ed1cc38
Description: SIP or H.323 client (from file) module for yate
Package: yate-mod-alsachan
Version: 5.4.2-1-4
Depends: libc, yate, alsa-lib
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12136
Filename: yate-mod-alsachan_5.4.2-1-4_ramips_24kec.ipk
Size: 12903
MD5Sum: 1ce83dd01968f0f1f9bd60a8a597923e
SHA256sum: 48a18743837809a47fb435155fc58b5a040eb9efd171abef639c17172301085b
Description: ALSA Sound Channel module for yate
Package: yate-mod-analog
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32687
Filename: yate-mod-analog_5.4.2-1-4_ramips_24kec.ipk
Size: 33501
MD5Sum: 197ec878862c5804b7358717ac31d76d
SHA256sum: 36665d6047a8c7f024ad285ad04e35bcb870b7cefbf151700ddadd76b430b323
Description: Analog (e.g. POTS) Channel module for yate
Package: yate-mod-analogdetect
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18550
Filename: yate-mod-analogdetect_5.4.2-1-4_ramips_24kec.ipk
Size: 19293
MD5Sum: bce624c200ea47c5c444a3b888276b35
SHA256sum: 4a1dc6133abf3ee3699658107b54a38b99fa310d8a3debc6712b78696b4154d7
Description: Analog Data Detector module for yate
Package: yate-mod-analyzer
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12909
Filename: yate-mod-analyzer_5.4.2-1-4_ramips_24kec.ipk
Size: 13668
MD5Sum: b63a0166715fbd1de1c1e55f213f52f7
SHA256sum: adf89841cfbf22d1d5f585f474269fb6f91f97f4fe880b1b1977a8adb1276bab
Description: Test Call Generator and AQ Analyzer module for yate
Package: yate-mod-cache
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22150
Filename: yate-mod-cache_5.4.2-1-4_ramips_24kec.ipk
Size: 22922
MD5Sum: 99e680449e8b9c88c096f847a6dc19ca
SHA256sum: b62b8683eeddb71ff27e3664e6a06b8fc97bf3e9a7eaafa96ef741ccf683e3aa
Description: CNAM and LNP memory caches module for yate
Package: yate-mod-callcounters
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6267
Filename: yate-mod-callcounters_5.4.2-1-4_ramips_24kec.ipk
Size: 7067
MD5Sum: 926e7b246e91917c7741e75e9fdf83b9
SHA256sum: 1a36c8fe2c743ea9fa24de9900ad756a2c2dfab055a3730195db28311c7180d9
Description: Count Active Call Legs module for yate
Package: yate-mod-callfork
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14208
Filename: yate-mod-callfork_5.4.2-1-4_ramips_24kec.ipk
Size: 14942
MD5Sum: 2c1b2ba013055fa3a697fbbd5a9cbcb4
SHA256sum: 2ba4d976f71142baea79e15604bbb39065938e595435d1abfb0d699f2cc5af4d
Description: Call Forker module for yate
Package: yate-mod-callgen
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12916
Filename: yate-mod-callgen_5.4.2-1-4_ramips_24kec.ipk
Size: 13661
MD5Sum: d32631babaa6546ac928e887bf7b3021
SHA256sum: 45d0cd0e79ba67d374d66d48351a30c6e7d1471f64313605f9b90e2f8c6b664a
Description: Call Generator module for yate
Package: yate-mod-ccongestion
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5821
Filename: yate-mod-ccongestion_5.4.2-1-4_ramips_24kec.ipk
Size: 6589
MD5Sum: ef485dac7d9f0034c64127cfb1d17f4d
SHA256sum: cfa73d0a14a35288f2037ac2ade92b606982e5261af6abc75e2a16a46ef299cd
Description: Accept Status from Installed Engine Monitors module for yate
Package: yate-mod-cdrbuild
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15461
Filename: yate-mod-cdrbuild_5.4.2-1-4_ramips_24kec.ipk
Size: 16166
MD5Sum: eace3ed5eebf74c2c39db5cf441eb466
SHA256sum: 196f7a9788e23de23887c8c990fa3527efb12dfe984d4e93ce07c0781f9ac6c2
Description: Call Detail Record Builder module for yate
Package: yate-mod-cdrcombine
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6562
Filename: yate-mod-cdrcombine_5.4.2-1-4_ramips_24kec.ipk
Size: 7370
MD5Sum: d600a1ad1f2ef9ba260ecf1b12821da0
SHA256sum: 48c31eb8ad034b0911867151672561fac8ad46bee4ac9f203a4a0a4dcc5f354d
Description: Call Detail Records per call instead of per call leg module for yate
Package: yate-mod-cdrfile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5307
Filename: yate-mod-cdrfile_5.4.2-1-4_ramips_24kec.ipk
Size: 6063
MD5Sum: 58c76fc30a1e39e638b26ac034800153
SHA256sum: 52ad0da9623c6f0115f0d797f7456d6df382f8812bbc73a725210f389ae243bd
Description: Call Detail Record to File module for yate
Package: yate-mod-ciscosm
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21551
Filename: yate-mod-ciscosm_5.4.2-1-4_ramips_24kec.ipk
Size: 22262
MD5Sum: f1299d0a331692f5cf34842cc4b21274
SHA256sum: d6357efd445b9d2b5636129c35f5b726e89cf076f6104a1ebc7c01040e8ff06d
Description: SS7 Support module for yate
Package: yate-mod-clustering
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7128
Filename: yate-mod-clustering_5.4.2-1-4_ramips_24kec.ipk
Size: 7901
MD5Sum: ee31e93e532aa17f7d3741f0f6792990
SHA256sum: 0e3adecab72d8f6a3d283d2973430a5758c940deb07dc86d40d3e456476eb792
Description: Clustering Server Support module for yate
Package: yate-mod-conference
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18860
Filename: yate-mod-conference_5.4.2-1-4_ramips_24kec.ipk
Size: 19640
MD5Sum: 4075d5685a586146a94959eff1f00596
SHA256sum: 42d55bdd47a5532eaf48697c94d999fb177cf5573907ca339517ab0721af0c9a
Description: Conference Room Mixer module for yate
Package: yate-mod-cpuload
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11927
Filename: yate-mod-cpuload_5.4.2-1-4_ramips_24kec.ipk
Size: 12716
MD5Sum: b9aeb5f580ca105f5ad9294c7bfa671f
SHA256sum: e68e193666483df6d939127a23b3c0c936686f0a24fb1770284ad765125d7a99
Description: Monitor CPU load and Inform Yate module for yate
Package: yate-mod-dbpbx
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9532
Filename: yate-mod-dbpbx_5.4.2-1-4_ramips_24kec.ipk
Size: 10335
MD5Sum: 7fe084ccd0ad132ee76b3c6f3f810d36
SHA256sum: 4705db19a430bdb940962692c5f407829ba17d0e89de5a212b157ac074a3eaab
Description: PBX IVR and Multi-routing from Database module for yate
Package: yate-mod-dbwave
Version: 5.4.2-1-4
Depends: libc, yate, yate-mod-wavefile
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5896
Filename: yate-mod-dbwave_5.4.2-1-4_ramips_24kec.ipk
Size: 6663
MD5Sum: b4298dbbf503f2a335a1061c0ff14333
SHA256sum: 5e57013c93fff41a9f9756212f3021879e33a88e49c3b1b27c100f657d63924d
Description: Wav Media for DB Storage module for yate
Package: yate-mod-dumbchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5807
Filename: yate-mod-dumbchan_5.4.2-1-4_ramips_24kec.ipk
Size: 6556
MD5Sum: c71e09ae39e7f41dfe20adf8b7ca148f
SHA256sum: 3602c51c3a1cbdd25bd97f6dc7eeb286fbb620e8990e317f5573bcdacb12efc4
Description: Dummy Channel module for yate
Package: yate-mod-enumroute
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7918
Filename: yate-mod-enumroute_5.4.2-1-4_ramips_24kec.ipk
Size: 8697
MD5Sum: b4a87d1523b09438d8c090b3aab61b47
SHA256sum: 7ec227a443f0d64e917fc5e88ae5d775a5bb7c5601cbd3f37427ef8840174c98
Description: ENUM Routing module for yate
Package: yate-mod-eventlogs
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5675
Filename: yate-mod-eventlogs_5.4.2-1-4_ramips_24kec.ipk
Size: 6438
MD5Sum: f478425d94d33ea692b3f7e418af2b0d
SHA256sum: b5a16189830a5e6d4d65932f3c5b880821f319842f0b27ccce64c4334fd256b5
Description: Write events and alarms to log files module for yate
Package: yate-mod-extmodule
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25363
Filename: yate-mod-extmodule_5.4.2-1-4_ramips_24kec.ipk
Size: 26096
MD5Sum: a47fd837118c39e8bf180f76633f3cc9
SHA256sum: 3ac4d436d5dfc1e0c2d3e3e9ecc67477ebfab795feb490ff79449fc5cc4da0c4
Description: External Module Handler module for yate
Package: yate-mod-faxchan
Version: 5.4.2-1-4
Depends: libc, yate, libspandsp
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14881
Filename: yate-mod-faxchan_5.4.2-1-4_ramips_24kec.ipk
Size: 15638
MD5Sum: cfec9e83edb24139ee653e708c201b05
SHA256sum: 57ad914fe31712fd364bd4e6c5c72470e5ca5229ab56786a1d533ee2863d8ce5
Description: Spandsp Fax Channel module for yate
Package: yate-mod-filetransfer
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19910
Filename: yate-mod-filetransfer_5.4.2-1-4_ramips_24kec.ipk
Size: 20643
MD5Sum: e145f046c26a8c4e4d6398ce5d5a8d96
SHA256sum: be9a8d48ce615cd3fb8c0e37b5dd0594b8b026f4cbec1ae4053671f81792bb59
Description: File Transfer Driver module for yate
Package: yate-mod-gvoice
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6808
Filename: yate-mod-gvoice_5.4.2-1-4_ramips_24kec.ipk
Size: 7579
MD5Sum: eca4492d78b2dbb7137213ad7d8c835b
SHA256sum: 2d28cc8017d5d7f65d24d1994e3e2cc21bfd92db8336c6383c963a965d765327
Description: Google Voice support module for yate
Package: yate-mod-heartbeat
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8041
Filename: yate-mod-heartbeat_5.4.2-1-4_ramips_24kec.ipk
Size: 8827
MD5Sum: 17d4cc6660de075db7315d3bd8fff175
SHA256sum: 190ac4814df02a7a57822ef8edcc8d88a2137b8aa6bb3cd381e62ce9ce15fe3d
Description: Linux-HA compatible heartbeat module for yate
Package: yate-mod-ilbccodec
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 56642
Filename: yate-mod-ilbccodec_5.4.2-1-4_ramips_24kec.ipk
Size: 57403
MD5Sum: e942a0fcb92394e05ea41361776c91f3
SHA256sum: 5b2ed11af37ab11142f79ae6ba521116e8d8956f6ca5cae0d9dbd65256412122
Description: iLBC Codec module for yate
Package: yate-mod-ilbcwebrtc
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39830
Filename: yate-mod-ilbcwebrtc_5.4.2-1-4_ramips_24kec.ipk
Size: 40660
MD5Sum: 8fc33d16b54302ac58684e1b48b4d198
SHA256sum: 06a7fa7b5028476273a106c854530532dc783f4f4607be4cecc03811aade5709
Description: iLBC Codec from the WebRTC project module for yate
Package: yate-mod-isaccodec
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 131200
Filename: yate-mod-isaccodec_5.4.2-1-4_ramips_24kec.ipk
Size: 131926
MD5Sum: 7da5d0e54a50206777b8263df8cffe8f
SHA256sum: bccf730efc5b1ec4c9c348edf5e564ebf637de5b381a1ce5001d3922db8f9874
Description: internet Speech Audio Codec module for yate
Package: yate-mod-isupmangler
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12365
Filename: yate-mod-isupmangler_5.4.2-1-4_ramips_24kec.ipk
Size: 13160
MD5Sum: b8a7b12562472e2a688f59dd528297ed
SHA256sum: 8e14f6c11d49e802ab7e229044684b5fec85574a0bd4dee2d1f7287754870a11
Description: ISUP parameter mangling in a STP module for yate
Package: yate-mod-jabberclient
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42414
Filename: yate-mod-jabberclient_5.4.2-1-4_ramips_24kec.ipk
Size: 43231
MD5Sum: 4f7abec1f0dd1cdbebc0d35dc8bf9ea6
SHA256sum: d8df82e0a59ab4726de06775d704082b17b2f0e87a49848e79af6a6fa282d839
Description: Jabber Client module for yate
Package: yate-mod-jabberserver
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52822
Filename: yate-mod-jabberserver_5.4.2-1-4_ramips_24kec.ipk
Size: 53617
MD5Sum: 2bc36c45cd2b5c1b7172301d1c65a082
SHA256sum: 61e233914e1ee0c2d4b2fe6b6a77868c9d7f8b5cdab1d95212d57b783839ec54
Description: Jabber Server module for yate
Package: yate-mod-javascript
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53890
Filename: yate-mod-javascript_5.4.2-1-4_ramips_24kec.ipk
Size: 54609
MD5Sum: e626e2714395f63be1f6750f82019da0
SHA256sum: d4c54b736c2df97fdc126ccef573259c8baf19caca378d4f644eaf50cbf76a21
Description: Routing using the embedded Javascript language module for yate
Package: yate-mod-jbfeatures
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15311
Filename: yate-mod-jbfeatures_5.4.2-1-4_ramips_24kec.ipk
Size: 16065
MD5Sum: 0db74fcfc9e64480cd2345324d3e3921
SHA256sum: 1968b70f144abdca1bd3fc81849fe78ffd53050fb4d33734eba3989d7627f3b4
Description: Jabber Server Features module for yate
Package: yate-mod-lateroute
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5919
Filename: yate-mod-lateroute_5.4.2-1-4_ramips_24kec.ipk
Size: 6671
MD5Sum: 780210c86d348ec3e1492d94c64ed6a8
SHA256sum: b7a22ab5078206690aebf1d3251ad6bb5523768f58dad6249f83fa82ca0347bd
Description: Last Chance Routing module for yate
Package: yate-mod-mgcpca
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49925
Filename: yate-mod-mgcpca_5.4.2-1-4_ramips_24kec.ipk
Size: 50757
MD5Sum: e8654a04d37bd0ea431d7f14e4637548
SHA256sum: e12377b2aed982b9eb9a6bf761b328802a6ee10b020f607ca7126312fd4ff523
Description: Media Gateway Control Protocol Agent module for yate
Package: yate-mod-mgcpgw
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33957
Filename: yate-mod-mgcpgw_5.4.2-1-4_ramips_24kec.ipk
Size: 34810
MD5Sum: 794dce7e6072c223537dda2e4378927e
SHA256sum: 1c9a57781f414a9803c89b15e206930f0a593988d4af343f3cf0da3e8e986719
Description: Media Gateway Control Protocol Gateway module for yate
Package: yate-mod-moh
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10374
Filename: yate-mod-moh_5.4.2-1-4_ramips_24kec.ipk
Size: 11127
MD5Sum: dd98fd3639be993f28ffd6bd7aea4c53
SHA256sum: f44d48dae56b2f3f38bd2ee2acc33bca85a0cfa07924f6b1e4084f835e4278e8
Description: On Hold (music) Generator module for yate
Package: yate-mod-monitoring
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32010
Filename: yate-mod-monitoring_5.4.2-1-4_ramips_24kec.ipk
Size: 32568
MD5Sum: 16722c7f5049a45d07a78daeef5725c2
SHA256sum: ea44a90a2ef3b63fac05b07bceb743f1fee6ca4bd717eb643cf93eef63b98dba
Description: Monitoring/gathering Information module for yate
Package: yate-mod-mrcpspeech
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8495
Filename: yate-mod-mrcpspeech_5.4.2-1-4_ramips_24kec.ipk
Size: 9311
MD5Sum: ba47c143644e5f9c2adb54b8ea4fdd65
SHA256sum: 9f27260e77e2dfe5fec45bf9a20c86696ef11e020588fb18b511605d98007972
Description: MRCP v2 Voice/Tone Detector and Synthesizer module for yate
Package: yate-mod-msgsniff
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6690
Filename: yate-mod-msgsniff_5.4.2-1-4_ramips_24kec.ipk
Size: 7477
MD5Sum: 841f7d74b0dcd817f8b7576b0f49119e
SHA256sum: 1e06923b838b92f34ddea4e05421f80e8a006ad387a6fe0e9fc9434dc09a6db3
Description: Sample Message Sniffer module for yate
Package: yate-mod-mux
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12689
Filename: yate-mod-mux_5.4.2-1-4_ramips_24kec.ipk
Size: 13460
MD5Sum: e1859fadbf7426cdc6056ebb4bf2542c
SHA256sum: 8b9ce92bb9561c4092c31cd0f893c79f90d2c0b756df9f6a10d9e3986fc7140b
Description: Data Multiplexor module for yate
Package: yate-mod-mysqldb
Version: 5.4.2-1-4
Depends: libc, yate, libmysqlclient-r
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12151
Filename: yate-mod-mysqldb_5.4.2-1-4_ramips_24kec.ipk
Size: 12939
MD5Sum: 34370d4228da5d6a992adf8c2fa74ac7
SHA256sum: ca16b484d17b1d1dc8b8771aa77b21004d706ba3ef37e13b14f8ae6c823df3df
Description: MySQL Backend DB module for yate
Package: yate-mod-openssl
Version: 5.4.2-1-4
Depends: libc, yate, libopenssl
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12552
Filename: yate-mod-openssl_5.4.2-1-4_ramips_24kec.ipk
Size: 13322
MD5Sum: d5149c6804ba98e6a4fbd1920297dfc8
SHA256sum: 2035b2801dbb03e818b21c6ada8bc6e82ab6b50a4a4ea5324e41df231e624468
Description: Encrypted transport (OpenSSL) module for yate
Package: yate-mod-osschan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10876
Filename: yate-mod-osschan_5.4.2-1-4_ramips_24kec.ipk
Size: 11632
MD5Sum: 6fb98c5159a2f210698cd36329b6fbd3
SHA256sum: fca5f974d74e24eba31ba17e2633519220d4e3845f3dd3d94d3242ad56738be3
Description: OSS Sound Channel module for yate
Package: yate-mod-park
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6275
Filename: yate-mod-park_5.4.2-1-4_ramips_24kec.ipk
Size: 7013
MD5Sum: a90e5d5cfba90cb40b4c38661b7f4b48
SHA256sum: bb42040815aba87cdf762806ff156721360bbb2c807ad4fd4561568baf1e98df
Description: Call Parking module for yate
Package: yate-mod-pbx
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7162
Filename: yate-mod-pbx_5.4.2-1-4_ramips_24kec.ipk
Size: 7951
MD5Sum: a9b687f4b46bdf9e77a627cf16c07663
SHA256sum: 8ffd967853b6314ebd39bab0313dca912734191060072038e9c0585298995e93
Description: PBX Message Handlers module for yate
Package: yate-mod-pbxassist
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21702
Filename: yate-mod-pbxassist_5.4.2-1-4_ramips_24kec.ipk
Size: 22487
MD5Sum: abb7581ad9bce84967ad3333b5486fcf
SHA256sum: 1bb9ce404a7a107a3943a3d9ebfc6032d165821a0338a9504371868f9eb29931
Description: Full featured PBX and IVR module for yate
Package: yate-mod-pgsqldb
Version: 5.4.2-1-4
Depends: libc, yate, libpq
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11425
Filename: yate-mod-pgsqldb_5.4.2-1-4_ramips_24kec.ipk
Size: 12203
MD5Sum: 8618b770c14a0ca96acb152f65f6220f
SHA256sum: 83e656d640f7dde0b1287831eeebba62ebec3575d8d53961fd8b099b8f029a8a
Description: PostgrestSQL Backend DB module for yate
Package: yate-mod-presence
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11409
Filename: yate-mod-presence_5.4.2-1-4_ramips_24kec.ipk
Size: 12169
MD5Sum: 362d56ec78a31791d75e3bb106ed7e1f
SHA256sum: 849038a1dcee5dbbc52107d2caa5ccb4fb613d4946fa9836b472a8fc84e7ff45
Description: Presence module for yate
Package: yate-mod-queues
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12286
Filename: yate-mod-queues_5.4.2-1-4_ramips_24kec.ipk
Size: 13074
MD5Sum: 0c3ed733655b95c28b2e5b6692bc0448
SHA256sum: 8a07bdc71cfb0bb2916b8d1505276bd04fb10e50f961e2b519cb7360293efccf
Description: Call Distribution and Queues from Database module for yate
Package: yate-mod-queuesnotify
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11585
Filename: yate-mod-queuesnotify_5.4.2-1-4_ramips_24kec.ipk
Size: 12378
MD5Sum: dbd7c23e0a4bf46d2d1b046eb3545276
SHA256sum: 3249fd0dffb0911b6bb7cfd464dde2a3ad330e3281f426dee0132f8d16f9b8b9
Description: Notify when queued call status changes module for yate
Package: yate-mod-regexroute
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19365
Filename: yate-mod-regexroute_5.4.2-1-4_ramips_24kec.ipk
Size: 20175
MD5Sum: 3e3e1efba49c76ebc29ebd8416c9e35c
SHA256sum: 78b836725cfa70ec9bb15ac028428730b14277d59b0cff1518a11ff5e0347c70
Description: Regular Expression Based Routing module for yate
Package: yate-mod-regfile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10224
Filename: yate-mod-regfile_5.4.2-1-4_ramips_24kec.ipk
Size: 10979
MD5Sum: 73d39aced536750fefd5204b8f27739f
SHA256sum: 918b0da23f5b80f25323683fe320065d40fd1389faee38970ddcdfa0e581f52a
Description: Registration based on users in file module for yate
Package: yate-mod-register
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18452
Filename: yate-mod-register_5.4.2-1-4_ramips_24kec.ipk
Size: 19255
MD5Sum: f311c4259fd6be540185977510229596
SHA256sum: 0525fff5287ed34854d2a64cc7297f9e419092973d88a4a3cb7267079ca4f9b7
Description: Call Detail Record to a database module for yate
Package: yate-mod-rmanager
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22656
Filename: yate-mod-rmanager_5.4.2-1-4_ramips_24kec.ipk
Size: 23384
MD5Sum: 7d7ebcb0c46e0f571130552211d85bca
SHA256sum: 56fb02eb52e9bc3bd1b8152e139c7bc2c77473a7d45e5c5512ecd11af5187635
Description: Yate Remote Management module for yate
Package: yate-mod-sigtransport
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20714
Filename: yate-mod-sigtransport_5.4.2-1-4_ramips_24kec.ipk
Size: 21459
MD5Sum: ed829ab27d91a62d4d674d5a99acc6fd
SHA256sum: 165e2d0c855a61c4c98fcc39574d840e769b0798c2335321f76b72f49d377204
Description: SIGTRAN (SS7 over IP) connection provider module for yate
Package: yate-mod-sip_cnam_lnp
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9854
Filename: yate-mod-sip_cnam_lnp_5.4.2-1-4_ramips_24kec.ipk
Size: 10608
MD5Sum: aca0e1dcc12a1fff5aa4e5e0b5432214
SHA256sum: a4df9c4575478214842bdcfc97b6fdc6e0b71ab16225ae8386f08b080cff7c95
Description: Query CNAM and LNP databases using SIP INVITE module for yate
Package: yate-mod-sipfeatures
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10488
Filename: yate-mod-sipfeatures_5.4.2-1-4_ramips_24kec.ipk
Size: 11274
MD5Sum: 2123a717daae2ee5fd2dd1766e83fd22
SHA256sum: a106031669ff71e571907cadd1e42b6dacf0ab0bfc23c9d6870ab2d87595a0d7
Description: SIP Features (SUBSCRIBE/NOTIFY) module for yate
Package: yate-mod-speexcodec
Version: 5.4.2-1-4
Depends: libc, yate, libspeex
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5931
Filename: yate-mod-speexcodec_5.4.2-1-4_ramips_24kec.ipk
Size: 6672
MD5Sum: a5e2a83fd4e8195f8902a3c715ae7c0f
SHA256sum: 70ecf3babd748a37711bb2722153ddb0ad4292de2289d1a6a1bf5fa0e7c5f03a
Description: Speex Codec module for yate
Package: yate-mod-subscription
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26417
Filename: yate-mod-subscription_5.4.2-1-4_ramips_24kec.ipk
Size: 27190
MD5Sum: eb547998579227a7189cadd1788d16ec
SHA256sum: 8cfbb6654f501207693c381ff34193b2c16cda0e4dd2f6d8fbc36a6807b70ad7
Description: Subcription handler and presence notifier module for yate
Package: yate-mod-tonedetect
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10416
Filename: yate-mod-tonedetect_5.4.2-1-4_ramips_24kec.ipk
Size: 11169
MD5Sum: 73e8964f42417d5eb13e8795e3204669
SHA256sum: 9ca7febc40ee44346fff42e07a10728359442350463fb6c04fa7e48f317e3542
Description: Detectors for Various Tones module for yate
Package: yate-mod-tonegen
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21185
Filename: yate-mod-tonegen_5.4.2-1-4_ramips_24kec.ipk
Size: 21926
MD5Sum: 83efe6b1d6e9271aec3f0fc72cee824a
SHA256sum: b26e538a3d3550032bf8215ab06b99548fb17bded138c9e2fa16db75ad191eb0
Description: Tones Generator module for yate
Package: yate-mod-users
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8616
Filename: yate-mod-users_5.4.2-1-4_ramips_24kec.ipk
Size: 9390
MD5Sum: f3c35c46cbc16bd78d04a366d961d47d
SHA256sum: 3d6ecd9f478ef1ad298944e3fd7ebd1f9e57c8bd8f7fe2f6e4e9aac6104cefce
Description: Users module for yate
Package: yate-mod-wavefile
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18406
Filename: yate-mod-wavefile_5.4.2-1-4_ramips_24kec.ipk
Size: 19185
MD5Sum: 528e36c2f6113de6592676f0e554d5e1
SHA256sum: 190a7b5dca1795815fcb33f426180da45e6915b9d55eba67a73f7d43649a96a4
Description: Wav file Record and Playback module for yate
Package: yate-mod-yiaxchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78929
Filename: yate-mod-yiaxchan_5.4.2-1-4_ramips_24kec.ipk
Size: 79646
MD5Sum: 2f5a6f9e268b43a889b421762edb5a89
SHA256sum: ac6c0d1a8ccf8c5c37c2f50af87d771f8f0d257de069e2223c5895f3fb7aee25
Description: IAX Channel module for yate
Package: yate-mod-yjinglechan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51475
Filename: yate-mod-yjinglechan_5.4.2-1-4_ramips_24kec.ipk
Size: 52305
MD5Sum: f96e1dae7b4445f6063aab8f88c64452
SHA256sum: b26e436dc1605887f1c4a3add3b1849628367836fa772bc7ab8a409803ae0856
Description: Jingle Channel module for yate
Package: yate-mod-yradius
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21076
Filename: yate-mod-yradius_5.4.2-1-4_ramips_24kec.ipk
Size: 21726
MD5Sum: 5cefd19dcf11125b3ee26dc5687f0a3d
SHA256sum: 5a8cb3e7475b0e2bda578bb931d2978b8a888f77137391e43c8a9a2ab2e280ae
Description: RADIUS Client module for yate
Package: yate-mod-yrtpchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47724
Filename: yate-mod-yrtpchan_5.4.2-1-4_ramips_24kec.ipk
Size: 48600
MD5Sum: fd17bb0f839bd1b76ea76474b96b7841
SHA256sum: f2206989b4f155c7a70fa5b637adfed0982f96dfab5b28777f67ced22fd7301a
Description: RTP Channel and Other Data Helper module for yate
Package: yate-mod-ysigchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61751
Filename: yate-mod-ysigchan_5.4.2-1-4_ramips_24kec.ipk
Size: 62377
MD5Sum: 4989ee70e3dcd2e8f41943d161e498ed
SHA256sum: 4212337dc3dca1a3b3cbe3196f5e4f4c1f3fad6ff299b15d2b2fb875c1f97f3a
Description: SS7/ISDN Protocols - Yate Signalling Library module for yate
Package: yate-mod-ysipchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 134509
Filename: yate-mod-ysipchan_5.4.2-1-4_ramips_24kec.ipk
Size: 135175
MD5Sum: 0676e4ae6da98d44dac245c0ad1c4f72
SHA256sum: 12f624bb3bd149e3e861bb08bbc19de59fcd68bdeceee651f1708a9a466e4714
Description: SIP Channel module for yate
Package: yate-mod-ysnmpagent
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71372
Filename: yate-mod-ysnmpagent_5.4.2-1-4_ramips_24kec.ipk
Size: 72067
MD5Sum: 92383a5b70fbd896027568ef2083dea0
SHA256sum: f3dc654ff71c96151074cb4ff9abb059a4becf43ef4bcbdb3a813bc85e95919c
Description: SNMP Protocol Agent module for yate
Package: yate-mod-ysockschan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29631
Filename: yate-mod-ysockschan_5.4.2-1-4_ramips_24kec.ipk
Size: 30350
MD5Sum: 0e5b823324e176a2ced47b3c526175d9
SHA256sum: 82affb89d03de0c295b49a7a6bd97a141f400dea76d19c15b3b48eef890070e1
Description: SOCKS Channel module for yate
Package: yate-mod-ystunchan
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10992
Filename: yate-mod-ystunchan_5.4.2-1-4_ramips_24kec.ipk
Size: 11746
MD5Sum: 0566fae3f63ea7f0ca053a1fffaccb56
SHA256sum: d2e8e957fc3b93ec25589eaa8e4f2667f39772d4cf65170fb62162f59fe2fec5
Description: STUN Support module for yate
Package: yate-mod-zlibcompress
Version: 5.4.2-1-4
Depends: libc, yate, zlib
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7482
Filename: yate-mod-zlibcompress_5.4.2-1-4_ramips_24kec.ipk
Size: 8266
MD5Sum: b1e3974c40e4a394185cbeca2182dac5
SHA256sum: 66cf61ac48668fb824117275983f1da898f4786f20ae06d721e84d88fc9027ae
Description: Zlib Compression module for yate
Package: yate-scripts-perl
Version: 5.4.2-1-4
Depends: libc, yate, yate-mod-extmodule, perl
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8594
Filename: yate-scripts-perl_5.4.2-1-4_ramips_24kec.ipk
Size: 9381
MD5Sum: 8ae4998e53ad3f3dd9e88e500772418b
SHA256sum: 79fe60a8b93f0e48e7e78ba925edeb3c250138099d09cb614f019d3df2b2519c
Description: Perl module for Yate
Package: yate-sounds
Version: 5.4.2-1-4
Depends: libc, yate
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141109
Filename: yate-sounds_5.4.2-1-4_ramips_24kec.ipk
Size: 140044
MD5Sum: 15e2175c22f3555d05139043ebeb2ab3
SHA256sum: 62b0f62a445d99541bb7c3ae30cb85e4e3b503a7d4d9257a119585f9f0506796
Description: Sounds for Yate
Package: yate
Version: 5.4.2-1-4
Depends: libc, libpthread, uclibcxx
Source: feeds/telephony/net/yate
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 962417
Filename: yate_5.4.2-1-4_ramips_24kec.ipk
Size: 960267
MD5Sum: 0f95b2bcea340bcf0891b99ca204c753
SHA256sum: 0077cafe3e405d92d0d11c9dc06f88e4df5e48186d830ed2b9e19119765551ea
Description: Yet Another Telephony Engine
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Package: acl
Version: 20140812-1
Depends: libc, libacl
Source: feeds/packages/utils/acl
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17950
Filename: acl_20140812-1_ramips_24kec.ipk
Size: 18738
MD5Sum: 4ff92d56a1059479561e76b1acf13454
SHA256sum: 2115fb35216deb054c4b7e0f5cddd44acce895e9473f79ae9c0a0132c3243758
Description: Access control list support
This package provides ACL manipulation utilities
- chacl
- getfacl
- setfacl
Package: aiccu
Version: 20070115-12
Depends: libc, libpthread, ip, kmod-sit, kmod-tun
Source: feeds/packages/ipv6/aiccu
License: BSD-3-Clause
LicenseFiles: doc/LICENSE
Section: net
Maintainer: Ondrej Caletka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25664
Filename: aiccu_20070115-12_ramips_24kec.ipk
Size: 26368
MD5Sum: 1b618607b6f13f9bca5de282e5b3b3de
SHA256sum: d3ad76d898dae91a6ee28f105a7fc4a98e939eb8bdcaa021dd20ddc0fb95b75a
Description: SixXS Automatic IPv6 Connectivity Client Utility
Package: aircrack-ng
Version: 1.2-rc1-1
Depends: libc, libpcap, libpthread, libopenssl, libnl, wireless-tools, ethtool
Source: feeds/packages/net/aircrack-ng
License: GPLv2
Section: net
Maintainer: Rick Farina <[email protected]>
Architecture: ramips_24kec
Installed-Size: 396368
Filename: aircrack-ng_1.2-rc1-1_ramips_24kec.ipk
Size: 396283
MD5Sum: a6cabae2d4279b168c63c383a2c1059d
SHA256sum: 69961c30d8fe2472744b640295aa35ed173d3cfd6f2aa880619da3a3f0b1e2b8
Description: WLAN tools for breaking 802.11 WEP/WPA keys
Package: alpine-nossl
Version: 2.20-1
Depends: libc, libopenssl, libncurses, libpthread, libpam
Source: feeds/packages/mail/alpine
License: Apache-2.0
LicenseFiles: LICENSE
Section: mail
Maintainer: Antti Seppälä <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1622282
Filename: alpine-nossl_2.20-1_ramips_24kec.ipk
Size: 1621805
MD5Sum: 0305b1556b04403e1111c0ec1b3fe164
SHA256sum: 936ad89c3b9ffe8c3ee19eb11b81cadb5fdf8b69eb8cdc9300d1545d1f52bd8f
Description: Alpine (Alternatively Licenced Program for Internet News and Email) is a
free software email client developed at the University of Washington.
It is suitable for both the inexperienced email user as well as for
the most demanding power user.
This package is built without OpenSSL support.
Package: alpine
Version: 2.20-1
Depends: libc, libopenssl, libncurses, libpthread, libpam, libcrypto, libopenssl
Source: feeds/packages/mail/alpine
License: Apache-2.0
LicenseFiles: LICENSE
Section: mail
Maintainer: Antti Seppälä <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1653259
Filename: alpine_2.20-1_ramips_24kec.ipk
Size: 1652137
MD5Sum: 8de6803ca4bb5fa807e1219b32a01fbf
SHA256sum: 0f0d178529a054533c8c5595dfec6f97267866224b725525deaa047a079e289a
Description: Alpine (Alternatively Licenced Program for Internet News and Email) is a
free software email client developed at the University of Washington.
It is suitable for both the inexperienced email user as well as for
the most demanding power user.
This package is built with OpenSSL support.
Package: alsa-lib
Version: 1.0.28-1
Depends: libc, kmod-sound-core, libpthread, librt
Source: feeds/packages/libs/alsa-lib
License: LGPLv2.1 GPLv2
LicenseFiles: COPYING aserver/COPYING
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 287001
Filename: alsa-lib_1.0.28-1_ramips_24kec.ipk
Size: 285313
MD5Sum: 5a218d39d51c9dc3af899ec31df7bbc7
SHA256sum: 56ad882882fd91d78f0b95900367628fbe7742c24658ab95a03371bc52c86a79
Description: This is the library package for alsa, needed by some userspace programs.
You must have enabled the ALSA support in the kernel.
Package: alsa-utils-seq
Version: 1.0.28-2
Depends: libc, alsa-lib, libpthread
Source: feeds/packages/utils/alsa-utils
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29019
Filename: alsa-utils-seq_1.0.28-2_ramips_24kec.ipk
Size: 29617
MD5Sum: d6a049d5c74c3ba2e8ffcb7c34be9113
SHA256sum: 9f4b69752b203d781617e49870e9685b0527c802ee5c38459143c6a8c0ef4a33
Description: ALSA sequencer utilities
Package: alsa-utils-tests
Version: 1.0.28-2
Depends: libc, alsa-lib, libpthread
Source: feeds/packages/utils/alsa-utils
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 896870
Filename: alsa-utils-tests_1.0.28-2_ramips_24kec.ipk
Size: 897480
MD5Sum: 880a71850998dd3a64d60515df92777b
SHA256sum: 0d0638c5b453fc721c8494ac52310980e564a35231db8ed4a1c78cb778ab2b75
Description: ALSA utilities test data (adds ~1.3M to image)
Package: alsa-utils
Version: 1.0.28-2
Depends: libc, alsa-lib, libncurses, libpthread
Source: feeds/packages/utils/alsa-utils
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 124411
Filename: alsa-utils_1.0.28-2_ramips_24kec.ipk
Size: 124098
MD5Sum: bb5df36edac975760fdab94ab1c88418
SHA256sum: 9bfc8a1883523109b2c0004178b51d1bb89692072ea7e3e56218f10651027efa
Description: ALSA (Advanced Linux Sound Architecture) utilities
Package: announce
Version: 1.0.1-1
Depends: libc, libpthread
Source: feeds/packages/net/announce
License: BSD-3-Clause
LicenseFiles: src/LICENSE.txt
Section: net
Maintainer: Simon Peter <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9295
Filename: announce_1.0.1-1_ramips_24kec.ipk
Size: 10131
MD5Sum: 0b666ca6c59493255b73a6016119d27f
SHA256sum: bd97daddf961607f57d6c9ce1cd34880b0daca5e7afb03ea97c911ee65f25a85
Description: Announce services on the network with Zeroconf/Bonjour.
This announces services such as ssh, sftp, and http running on the local machine
to the network.
Package: apache-icons
Version: 2.2.29-1
Depends: libc, apache
Source: feeds/packages/net/apache
License: Apache License
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71456
Filename: apache-icons_2.2.29-1_ramips_24kec.ipk
Size: 72403
MD5Sum: 155792df1c95bfd25794e20288dd79cf
SHA256sum: 5ccac334f5e42c72869062a3f501dd180a1cede58ee2eb32bd3ba2d26dcb3a99
Description: The Apache Web Server is a powerful and flexible HTTP/1.1 compliant
web server. Originally designed as a replacement for the NCSA HTTP
Server, it has grown to be the most popular web server on the Internet.
.
This package contains the icons from Apache.
Package: apache
Version: 2.2.29-1
Depends: libc, libapr, libaprutil, libpcre, libopenssl, unixodbc
Source: feeds/packages/net/apache
License: Apache License
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 456650
Filename: apache_2.2.29-1_ramips_24kec.ipk
Size: 458044
MD5Sum: a9338c4cb1de67b83b062777bc8a9c1a
SHA256sum: 04a77e1c42f0b517fff7b00f24d7e73fe043ecbf4f48da2b760cdbc0df384f4e
Description: The Apache Web Server is a powerful and flexible HTTP/1.1 compliant
web server. Originally designed as a replacement for the NCSA HTTP
Server, it has grown to be the most popular web server on the Internet.
.
This package contains the Apache web server and utility programs.
.
Take care that you don't include apache at the moment into your image
please select it only as module because busybox will override
/usr/sbin/httpd. It'll be solved soon. If you need to include this
package in the image anyway, remove httpd from busybox
(Base system --> Configuration --> Networking Utilities --> httpd).
Also you should take care for the initscripts, apache's httpd isn't
compatible with the one from busybox, so if you want to use apache
for running your webif, you'll need to change the parameters in the
scripts and configure the rest in /etc/httpd.conf.
Package: apcupsd-cgi
Version: 3.14.13-4
Depends: libc, libpthread, libgd
Source: feeds/packages/net/apcupsd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23208
Filename: apcupsd-cgi_3.14.13-4_ramips_24kec.ipk
Size: 23869
MD5Sum: dc362ca84cef41b990c59803c4ff45d2
SHA256sum: b67557e79fcd16405eb35f026f6fb5e6d3130cee53a630873d9be98cfc8bef0e
Description: UPS control software CGI module
Package: apcupsd
Version: 3.14.13-4
Depends: libc, libpthread, libusb-compat
Source: feeds/packages/net/apcupsd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 218333
Filename: apcupsd_3.14.13-4_ramips_24kec.ipk
Size: 218825
MD5Sum: 9e854ef4f233ebd5cca87a6bc6f54067
SHA256sum: db06c67637dbf56850bdfe9dc0667544d8f96c048304ef175ec5610326fbe4c5
Description: UPS control software
Package: aria2
Version: 1.18.7-1
Depends: libc, zlib, libstdcpp, libopenssl
Source: feeds/packages/net/aria2
License: GPLv2
LicenseFiles: COPYING
Section: net
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 586246
Filename: aria2_1.18.7-1_ramips_24kec.ipk
Size: 585816
MD5Sum: 93c3e6a5e3e75db3790704bc2bd85dcf
SHA256sum: 305de8237d05b4d9da4c439390035b28c90dae0b52721d12cd73651222aa881d
Description: aria2 is a lightweight multi-protocol & multi-source command-line download
utility
Package: attr
Version: 20150220-1
Depends: libc, libattr
Source: feeds/packages/utils/attr
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12530
Filename: attr_20150220-1_ramips_24kec.ipk
Size: 13312
MD5Sum: aecec1636f439dbc451f22dd5943cb86
SHA256sum: f6f8b72a6cb8434f8dd5554f99abae488ab2e7a7398887463c5a73b7cff7da73
Description: Extended attributes support
This package provides xattr manipulation utilities
- attr
- getfattr
- setfattr
Package: avahi-autoipd
Version: 0.6.31-11
Depends: libc, libdaemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14179
Filename: avahi-autoipd_0.6.31-11_ramips_24kec.ipk
Size: 15350
MD5Sum: ddfb1dcb8edb1a19d965ad0426dc121e
SHA256sum: 7a23c7628b52132634268b182f15323d37d5dfed3683c741152f7e6e86af5aef
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package implements IPv4LL, "Dynamic Configuration of IPv4 Link-Local
Addresses" (IETF RFC3927), a protocol for automatic IP address configuration
from the link-local 169.254.0.0/16 range without the need for a central
server. It is primarily intended to be used in ad-hoc networks which lack a
DHCP server.
Package: avahi-daemon-service-http
Version: 0.6.31-11
Depends: libc, avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 386
Filename: avahi-daemon-service-http_0.6.31-11_ramips_24kec.ipk
Size: 1466
MD5Sum: 9242b894cd2c14601e700dc03ce78046
SHA256sum: 78ebefaea9ba305f458ce5e77c018f5c9cd49db7c5f5da8d7293ce5e19d2b703
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains the service definition for announcing HTTP service.
Package: avahi-daemon-service-ssh
Version: 0.6.31-11
Depends: libc, avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 365
Filename: avahi-daemon-service-ssh_0.6.31-11_ramips_24kec.ipk
Size: 1447
MD5Sum: 342a10a4dc48f75b7a9ddc3c8db475ea
SHA256sum: eb4c11faf5bd3494be24bec67dcc78816de0edc40ce3318376101ace436ecf82
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains the service definition for announcing SSH service.
Package: avahi-dbus-daemon
Version: 0.6.31-11
Depends: libc, libavahi-dbus-support, libexpat, librt, libdaemon
Provides: avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34933
Filename: avahi-dbus-daemon_0.6.31-11_ramips_24kec.ipk
Size: 35988
MD5Sum: 1abe62b25f57310ea6d4304f66087d29
SHA256sum: 49da1bae7c7164a1fd7e080874d655546851af261926cb74f52804fe65a5058b
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains an mDNS/DNS-SD daemon.
Package: avahi-dnsconfd
Version: 0.6.31-11
Depends: libc, libavahi, libdaemon, libpthread
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7016
Filename: avahi-dnsconfd_0.6.31-11_ramips_24kec.ipk
Size: 8175
MD5Sum: f98ed3bf6654518905f780f2ed2e2bba
SHA256sum: efce9a96501f438a323ecce528f56ab7fe99bdaabd08175a36a01684b72943bd
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains a Unicast DNS server from mDNS/DNS-SD configuration
daemon, which may be used to configure conventional DNS servers using mDNS
in a DHCP-like fashion. Especially useful on IPv6.
Package: avahi-nodbus-daemon
Version: 0.6.31-11
Depends: libc, libavahi-nodbus-support, libexpat, librt, libdaemon
Provides: avahi-daemon
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20740
Filename: avahi-nodbus-daemon_0.6.31-11_ramips_24kec.ipk
Size: 21786
MD5Sum: e1800975e38a189f8bee2387967b38dc
SHA256sum: e2bcc769e2497100abda63d9fcff0fe8a92622c3b9b78c9a84fb8b4320c81c0e
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This package contains an mDNS/DNS-SD daemon.
Package: avahi-utils
Version: 0.6.31-11
Depends: libc, libavahi-client, libgdbm
Source: feeds/packages/libs/avahi
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28497
Filename: avahi-utils_0.6.31-11_ramips_24kec.ipk
Size: 29397
MD5Sum: 93fb71cad80daa4e98c34f98cba3b247
SHA256sum: 5c6a620e6a68945bb181e8e9ef78faf348e9ceaf870831afd7dbb858c8fde545
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This packages installs the following avahi utility programs:
avahi-browse, avahi-publish, avahi-resolve, avahi-set-host-name.
It also automatically adds the required libavahi-client package.
For more information please see the avahi documentation.
Package: bash
Version: 4.3.33-1
Depends: libc, libncurses
Source: feeds/packages/utils/bash
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 347336
Filename: bash_4.3.33-1_ramips_24kec.ipk
Size: 348097
MD5Sum: e0d69c0e390ac8cc49db6a1de00682f7
SHA256sum: d07a59d2a60c973462d11cc8fa68101487cbbecc1787640ecba93b132aa9b256
Description: Bash is an sh-compatible command language interpreter that executes
commands read from the standard input or from a file. Bash also
incorporates useful features from the Korn and C shells (ksh and csh).
Package: bcp38
Version: 4-1
Depends: libc, ipset
Source: feeds/packages/net/bcp38
Section: net
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1855
Filename: bcp38_4-1_ramips_24kec.ipk
Size: 2735
MD5Sum: 8cab4a5593ebfbc69453f5a00ca34759
SHA256sum: 4f735c0c607b649787d9a846a8870b6aff789d8d08ebbc0f02925143ecadbc2e
Description: bcp38 implements IETF BCP38 for home routers. See https://tools.ietf.org/html/bcp38.
Package: bind-check
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14164
Filename: bind-check_9.9.6-P1-2_ramips_24kec.ipk
Size: 14900
MD5Sum: fcd3b7f0873a752e66381c7ec657a1d2
SHA256sum: ac20fcff476b1ef31ac89089a1f5ca47e50a506ae18871cc2409dd86594f33b3
Description: bind administration tools (named-checkconf and named-checkzone only)
Package: bind-client
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19298
Filename: bind-client_9.9.6-P1-2_ramips_24kec.ipk
Size: 20044
MD5Sum: 3bc19e6ec98e25b123ebf59e01cc389c
SHA256sum: 464261cb6d9654887a65a2511ef5f75fb52e7a031406992376f98606590bda97
Description: bind dynamic DNS client
Package: bind-dig
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36206
Filename: bind-dig_9.9.6-P1-2_ramips_24kec.ipk
Size: 37010
MD5Sum: 6062d261f0a08a25f9d4cf8d25ecb132
SHA256sum: 9f9c259199363f296a60102e7aa112efa3f1d1ea85f2112561323d8312ddd7dd
Description: bind DNS excavation tool
Package: bind-dnssec
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 59324
Filename: bind-dnssec_9.9.6-P1-2_ramips_24kec.ipk
Size: 59941
MD5Sum: 73070e34985d5ff50441d13f2a32329d
SHA256sum: fc3f3c1ca48f68fd1e905958cde0a17e6415eee1da9edca82667df747bb7a81e
Description: bind administration tools (dnssec-keygen and dnssec-signzone only)
Package: bind-host
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30882
Filename: bind-host_9.9.6-P1-2_ramips_24kec.ipk
Size: 31595
MD5Sum: d968bbe1ed8b53a97fef48b67395f232
SHA256sum: afd20c6f557757050cac508a0bae7f7b05183d57b644e586d1d53fe8e28a96da
Description: bind simple DNS client
Package: bind-libs
Version: 9.9.6-P1-2
Depends: libc, libopenssl
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: libs
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 807869
Filename: bind-libs_9.9.6-P1-2_ramips_24kec.ipk
Size: 806705
MD5Sum: 4f7549f6e94b31cc5abe854cf27f06f0
SHA256sum: df08d15ba47d4d49aab75517abc991150c94579cdd7f5905db4fef30fa2e7c71
Description: bind shared libraries
Package: bind-rndc
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14438
Filename: bind-rndc_9.9.6-P1-2_ramips_24kec.ipk
Size: 15211
MD5Sum: 55b41f08b9e26855a6a4546879bbe30a
SHA256sum: fc40f440a8a3b14c57a83a5e2d2e2540b71148ef66cce82514ffe2771c49f814
Description: bind administration tools (rndc and rndc-confgen only)
Package: bind-server
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 193909
Filename: bind-server_9.9.6-P1-2_ramips_24kec.ipk
Size: 193175
MD5Sum: c152462d213463c45f2001312680c4ef
SHA256sum: 8f4ba6506ae84ffad4b0c0d3976653ec25996a516e7a6ca4fd2ec5734dd6bc91
Description: bind DNS server
Package: bind-tools
Version: 9.9.6-P1-2
Depends: libc, bind-libs
Source: feeds/packages/net/bind
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153184
Filename: bind-tools_9.9.6-P1-2_ramips_24kec.ipk
Size: 153686
MD5Sum: 8680aa8da9c21af0b1df040dd9f89eb1
SHA256sum: 8f249a0899438e46c49440e4d9291084772ce38ce02ca80920ff9145f1c059df
Description: bind administration tools (all)
Package: bluelog-live
Version: 1.1.2-1
Depends: libc, bluez-libs, kmod-bluetooth, bluelog
Source: feeds/packages/utils/bluelog
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31225
Filename: bluelog-live_1.1.2-1_ramips_24kec.ipk
Size: 32240
MD5Sum: 84c04b20a0a94f03a6683c5bc7d22130
SHA256sum: 9d72e104cf4bdbb32c561f8d474d84b93579b5aa4e943e0e56e2b2440c887459
Description: Bluelog is a simple Bluetooth scanner designed to tell you how many
discoverable devices there are in an area as quickly as possible. It is
intended to be used as a site survey tool, identifying the number of possible
Bluetooth targets there are in the surrounding environment.
This package contains the files for "Bluelog Live", an optional mode of
Bluelog which creates a real-time webpage of discovered Bluetooth devices.
Package: bluelog
Version: 1.1.2-1
Depends: libc, bluez-libs, kmod-bluetooth
Source: feeds/packages/utils/bluelog
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10656
Filename: bluelog_1.1.2-1_ramips_24kec.ipk
Size: 11561
MD5Sum: 9e6d7177701d710cb6fc08c82c281a80
SHA256sum: ec9589bf31de23f53d6526632d040129d2f48a5a3645cc681d289033d2be8bfb
Description: Bluelog is a simple Bluetooth scanner designed to tell you how many
discoverable devices there are in an area as quickly as possible. It is
intended to be used as a site survey tool, identifying the number of possible
Bluetooth targets there are in the surrounding environment.
Package: bluez-libs
Version: 5.28-1
Depends: libc, libpthread
Source: feeds/packages/utils/bluez
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41167
Filename: bluez-libs_5.28-1_ramips_24kec.ipk
Size: 41788
MD5Sum: 1af2f03e8dd927f43b41f6f44e10b640
SHA256sum: 1237b1e78f368db22e754f4993d69e6a7b953caad6139cc768d00dadb1f3c60b
Description: Bluetooth library
Package: bluez-utils
Version: 5.28-1
Depends: libc, bluez-libs, libpthread, dbus, glib2, libical, libncurses, libreadline
Source: feeds/packages/utils/bluez
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 652358
Filename: bluez-utils_5.28-1_ramips_24kec.ipk
Size: 652165
MD5Sum: eb83f2d9f0af02b3b62b8657ec8ab934
SHA256sum: 45574894d9346e22fa1145e4ec7757d0c8fad651afaf34e333dbe1b3b30a5533
Description: Bluetooth utilities
Package: bmon
Version: 3.5-1
Depends: libc, libncursesw, libnl, confuse
Source: feeds/packages/net/bmon
License: MIT
Section: net
Maintainer: Baptiste Jonglez <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33508
Filename: bmon_3.5-1_ramips_24kec.ipk
Size: 34142
MD5Sum: 677783dec3a7bc0e84e46b9493e97296
SHA256sum: f67e08858afc19dcd951957fea4776bb67f4c9e96f901ab39e26b5ffb345d0f5
Description: bmon is a portable bandwidth monitor
and rate estimator running on various
operating systems. It supports various
input methods for different architectures.
Package: bogofilter
Version: 1.2.4-3
Depends: libc, libdb47
Source: feeds/packages/mail/bogofilter
License: GPLv2
LicenseFiles: COPYING
Section: mail
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 305760
Filename: bogofilter_1.2.4-3_ramips_24kec.ipk
Size: 305852
MD5Sum: b9e55a41b0d0eccc78c8a236295058a8
SHA256sum: d20af169812b42213a9e8a820941d173d0d334e7a3ddab3f6cf116600f8739f6
Description: Bogofilter is a fast Bayesian spam filter
Package: boost-atomic
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1580
Filename: boost-atomic_1_57_0-3_ramips_24kec.ipk
Size: 2435
MD5Sum: aedb470ca8e1ca98424c344cf3f3daf0
SHA256sum: aa07c742e4f0a4e3a846a6b28f298abb436d6602ddb406f8a38d7f957d967365
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost atomic library.
Package: boost-chrono
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7663
Filename: boost-chrono_1_57_0-3_ramips_24kec.ipk
Size: 8530
MD5Sum: ee4bd539fc995ca801a563835e2a5595
SHA256sum: 5cf8935c40bfda3f2459e25e7111c0c281fe51771ef09d14a3e135dd20d554a7
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost chrono library.
Package: boost-container
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19991
Filename: boost-container_1_57_0-3_ramips_24kec.ipk
Size: 20821
MD5Sum: db9b316000ecb5756271403b8b0f31cb
SHA256sum: db9ab6530bef220d8c3610abee07625a91855d3c6fc5f9ef463dba41d87d6e06
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost container library.
Package: boost-context
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1407
Filename: boost-context_1_57_0-3_ramips_24kec.ipk
Size: 2245
MD5Sum: f078eb9a8cb9d854031597693e8dec97
SHA256sum: 707d577e97b8b2568a112c07796829daff6ebd71f54641708fa8209b6e10babd
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost context library.
Package: boost-coroutine
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system, boost-chrono, boost-context, boost-thread
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10309
Filename: boost-coroutine_1_57_0-3_ramips_24kec.ipk
Size: 11178
MD5Sum: a455b5ba74cd925f8d70f6c7298f7c2d
SHA256sum: 89c4bf216d8cd6afcb36c460a04c7c5d2f17cea745452c5b4d1dec3b0e8ea1a5
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost coroutine library.
Package: boost-date_time
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13931
Filename: boost-date_time_1_57_0-3_ramips_24kec.ipk
Size: 14752
MD5Sum: 6a66633aabac234369242770055c149c
SHA256sum: 53eaa8dd1c429c0a391d62205d1e8a75ed194870a8b9cc2ed39b752d8d506145
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost date_time library.
Package: boost-filesystem
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27630
Filename: boost-filesystem_1_57_0-3_ramips_24kec.ipk
Size: 28502
MD5Sum: aad3a226b3c789ce6cfcb3c7e6c9a7da
SHA256sum: 41befe53d6067416cd95f0cf4af687f12931d1deeb708a44729fc20d7e9e47a4
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost filesystem library.
Package: boost-graph
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-regex
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87085
Filename: boost-graph_1_57_0-3_ramips_24kec.ipk
Size: 87896
MD5Sum: 4ce434c43d0fff0ea1f0fca1766440ef
SHA256sum: 2a289af27123c5ad75e29906bce54cd5c501853f766b8ee28f257c458b29f986
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost graph library.
Package: boost-iostreams
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, zlib
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20033
Filename: boost-iostreams_1_57_0-3_ramips_24kec.ipk
Size: 20892
MD5Sum: d4f5b26e7b8e3e9b54a4c6cc2955fe5b
SHA256sum: ea4dd73e9b60e44f4a6bc6227d77990eec1520e3b0c57ccbfa9325ec0d4a900f
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost iostreams library.
Package: boost-libs
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-atomic, boost-chrono, boost-container, boost-context, boost-coroutine, boost-date_time, boost-filesystem, boost-graph, boost-iostreams, boost-locale, boost-log, boost-math, boost-program_options, boost-random, boost-python, boost-regex, boost-serialization, boost-signals, boost-system, boost-thread, boost-timer, boost-wave
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 104
Filename: boost-libs_1_57_0-3_ramips_24kec.ipk
Size: 1085
MD5Sum: 64dac48350c045e80a83f43eca712070
SHA256sum: f2760391ca20a0a0d5fbe12e83fbf5c0e794d4df41655e621cf29dde2754b070
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This meta package contains only dependencies to the other libraries from
the boost libraries collection.
Package: boost-locale
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 124627
Filename: boost-locale_1_57_0-3_ramips_24kec.ipk
Size: 125181
MD5Sum: cc95fe36dbffe92880645f9d556a6e2b
SHA256sum: 0db04a0e17e5dd0ff5f6e1b4a3803f5c17c360ec079e2348dfd33df69ab4cfd8
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost locale library.
Package: boost-log
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system, boost-chrono, boost-date_time, boost-thread, boost-filesystem, boost-regex
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 418681
Filename: boost-log_1_57_0-3_ramips_24kec.ipk
Size: 418337
MD5Sum: 129829bfb7be537a5159f6aee0811503
SHA256sum: 4127e9745c59160f24168f54cd79513f41118451dd852426877a9dc66b2f1540
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost log library.
Package: boost-math
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 332918
Filename: boost-math_1_57_0-3_ramips_24kec.ipk
Size: 332697
MD5Sum: 314e4d12c3428ce3098fa809303092d0
SHA256sum: b6f3bd20f71a3d74761b915418662112e1da3781004b920e8f5b6b07eaa87e08
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost math library.
Package: boost-program_options
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 92906
Filename: boost-program_options_1_57_0-3_ramips_24kec.ipk
Size: 93659
MD5Sum: f1677c284dcd09369237055a31eaaafb
SHA256sum: 86da563744c5a19fcebad20f8019685801a7ea6d4ec83ba6a62f328693cd6870
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost program_options library.
Package: boost-python
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, python
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87368
Filename: boost-python_1_57_0-3_ramips_24kec.ipk
Size: 88173
MD5Sum: 64e0ba34459844ce9bf7c184320b22eb
SHA256sum: 3ed77f6e257119be2a43b42901d416d0643beceac7722b55a450adc1d7eb9d28
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost python library.
Package: boost-random
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6419
Filename: boost-random_1_57_0-3_ramips_24kec.ipk
Size: 7283
MD5Sum: e60fe4c40df9ae4e8c1150f3bcaf05a3
SHA256sum: e2c8de7ff050f9e1e6ab739515bf538f85a7de9c65ff495a7e47b292ae935bd7
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost random library.
Package: boost-regex
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243017
Filename: boost-regex_1_57_0-3_ramips_24kec.ipk
Size: 243405
MD5Sum: 9385be644bab80284a0809ae4cf331b0
SHA256sum: 86fbe186b22d0c9af1d3051781aca1a7404130229a4138270bdec94ddff53ab3
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost regex library.
Package: boost-serialization
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 75625
Filename: boost-serialization_1_57_0-3_ramips_24kec.ipk
Size: 76458
MD5Sum: 6980e387ed1bf9d2033eef2326c51f9d
SHA256sum: 4376d80a1888a89e39c4e4aa3e879ba2b3ced9caa8cfb24092ecfd6ae7c40c18
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost serialization library.
Package: boost-signals
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22078
Filename: boost-signals_1_57_0-3_ramips_24kec.ipk
Size: 22917
MD5Sum: 4505c01d926e2853d549c2c0365630b1
SHA256sum: dab6a4bf0af739e8db78aef514dc1a63bde0e035e24ef9781b83ed9ab5f92afb
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost signals library.
Package: boost-system
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3809
Filename: boost-system_1_57_0-3_ramips_24kec.ipk
Size: 4622
MD5Sum: 7424b13bd0289f941a1bcb43e703c888
SHA256sum: 150dd4c689a918352864eb9365bab1c042f1eea7726a42771ceaf3847e292090
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost system library.
Package: boost-test
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167513
Filename: boost-test_1_57_0-3_ramips_24kec.ipk
Size: 168170
MD5Sum: 2739c809368135a741cbe347026cafa5
SHA256sum: f2a856c07c5ce5e4b591dcac725a92e0c3a9c6b31fa58bd0474826e86442ecae
Description: Boost C++ source library (test)
Package: boost-thread
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-system, boost-chrono, boost-atomic
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37170
Filename: boost-thread_1_57_0-3_ramips_24kec.ipk
Size: 38113
MD5Sum: 2a6530a9b58594b249359de27631cafc
SHA256sum: a233fe9e0fc47e8644156ac87556155f49aeeee44f866baf9d1f4fc52a731590
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost thread library.
Package: boost-timer
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-chrono
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4733
Filename: boost-timer_1_57_0-3_ramips_24kec.ipk
Size: 5545
MD5Sum: 909d064576b595c83ff1703cba37f966
SHA256sum: 6463c3b84a87fdd1975a6c6990e2b757cf520f0197a2b0871b9cf0dc5a43d586
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost timer library.
Package: boost-wave
Version: 1_57_0-3
Depends: libc, libstdcpp, libpthread, librt, boost-date_time, boost-thread, boost-filesystem
Source: feeds/packages/libs/boost
License: Boost Software License <http://www.boost.org/users/license.html>
Section: libs
Maintainer: Carlos M. Ferreira <[email protected]>
Architecture: ramips_24kec
Installed-Size: 188765
Filename: boost-wave_1_57_0-3_ramips_24kec.ipk
Size: 188846
MD5Sum: 5d5dfc56222db6464dadd42f7ad9395b
SHA256sum: 8ba403c8655a633011fdf68067be856c0a24b76bc95b33127ae055d9b3661437
Description: Boost provides free peer-reviewed portable C++ source libraries
.
This package contains the Boost wave library.
Package: btrfs-progs
Version: 3.17.3-2
Depends: libc, libattr, libuuid, zlib, libext2fs, libblkid, liblzo, libpthread
Source: feeds/packages/utils/btrfs-progs
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1597448
Filename: btrfs-progs_3.17.3-2_ramips_24kec.ipk
Size: 1592780
MD5Sum: fedb6ff0d54b332f926bc036174e8608
SHA256sum: c535698e0dedb63b3d30eaf83e116887e77ced635c5ab21ef0a010a121dbf8be
Description: Btrfs is a new copy on write filesystem for Linux aimed at implementing
advanced features while focusing on fault tolerance, repair and easy
administration. Initially developed by Oracle, Btrfs is licensed under the
GPL and open for contribution from anyone.
Package: bwm-ng
Version: 0.6-1
Depends: libc
Source: feeds/packages/net/bwm-ng
License: GPL2-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12584
Filename: bwm-ng_0.6-1_ramips_24kec.ipk
Size: 13371
MD5Sum: b720a22d7484b937d7775e1f2b731dd0
SHA256sum: 1417ec7288531ec6d39a4c0f7702979e55d245bf0fb21ee7e608cf2ddd5d2ad5
Description: Bandwidth Monitor NG is a small and simple console-based live
network and disk io bandwidth monitor.
Package: bzip2
Version: 1.0.6-1
Depends: libc, libbz2
Source: feeds/packages/utils/bzip2
License: BZIP2
LicenseFiles: LICENSE
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12429
Filename: bzip2_1.0.6-1_ramips_24kec.ipk
Size: 13223
MD5Sum: 654aecc0dd1a92507f36741f349c2423
SHA256sum: e9c66d562096fd95ab8041beee0df26309a17ca86e2275fbfdfebf8b6f272cf6
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This package provides the binary.
Package: ccid
Version: 1.4.18-1
Depends: libc, libusb-1.0, libpcsclite
Source: feeds/packages/utils/ccid
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37581
Filename: ccid_1.4.18-1_ramips_24kec.ipk
Size: 38490
MD5Sum: 0bd01e69581f68585df7f733893197e8
SHA256sum: dfc4e47202f8d575988a71c7681ae59f72478c235ecaa1fae942b98fb721a948
Description: Generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD
(Integrated Circuit(s) Card Devices).
Package: ccrypt
Version: 1.10-2
Depends: libc
Source: feeds/packages/utils/ccrypt
License: GPLv2+
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22374
Filename: ccrypt_1.10-2_ramips_24kec.ipk
Size: 22551
MD5Sum: ba97738546381a1242b421dbb2400a09
SHA256sum: e18361eaaecf62c65a2959b0c8356c4b787ea0686f662102a83d4d5c24d23386
Description: ccrypt is a utility for encrypting and decrypting files and streams
Package: certtool
Version: 3.3.13-3
Depends: libc, libgnutls
Source: feeds/packages/libs/gnutls
Section: utils
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86663
Filename: certtool_3.3.13-3_ramips_24kec.ipk
Size: 87500
MD5Sum: 181b9228983470fbcef4ce8c14eefd76
SHA256sum: d758f3802f1b1a9da2ae3ee5553787bb397978731cb58a732a0e38b1619e2a8f
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS certtool utility.
Package: check
Version: 0.9.14-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/check
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17521
Filename: check_0.9.14-1_ramips_24kec.ipk
Size: 18461
MD5Sum: 5285ea997f47258a1dfacbc558e2607f
SHA256sum: bbaccc468f649a6d528cdc863c9d257c0f47d6feecba2e7c68f8490199b6c2ac
Description: Check features a simple interface for defining unit tests, putting little in
the way of the developer. Tests are run in a separate address space, so Check
can catch both assertion failures and code errors that cause segmentation
faults or other signals. The output from unit tests can be used within source
code editors and IDEs.
Package: cmdpad
Version: 0.0.3-3
Depends: libc
Source: feeds/packages/utils/cmdpad
License: MIT
LicenseFiles: doc/COPYING
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7153
Filename: cmdpad_0.0.3-3_ramips_24kec.ipk
Size: 8187
MD5Sum: 6afd2b751190abec300a84dec49f45b1
SHA256sum: ff5e3b3e5997c0a06cb8206d26ad536755abecfc823e0491129880d0a6ca1e29
Description: cmdpad - execute commands when a key is pressed, released or hold down.
Should be started from /etc/rc or /etc/rc.local. To run it as deamon you
need to start it with '&'. All logs are printed to standard out and standard
error (to write the log to disk use cmdpad > /var/log/cmdpad). Cmdpad
searches for /etc/cmdpad.conf and load the key bindings. Then wait for
key event and check each command to see if it should be run.
Package: collectd-mod-apache
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5584
Filename: collectd-mod-apache_5.4.2-1_ramips_24kec.ipk
Size: 6324
MD5Sum: 11fd35dc7992ee69d447c28fa409becc
SHA256sum: 2ad8cee170a1cded9ab5b0f2ec6dce7164edd99fe50b16e4b6f708d90960eb49
Description: apache status input plugin
Package: collectd-mod-apcups
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4147
Filename: collectd-mod-apcups_5.4.2-1_ramips_24kec.ipk
Size: 4849
MD5Sum: 007b982c2f4754cb4bdc05617e3a28ec
SHA256sum: 4774f5c2afe89078400abbaefc736f6a3f7b7eebd653939d7cbfdfc8a867ef4d
Description: apcups status input plugin
Package: collectd-mod-ascent
Version: 5.4.2-1
Depends: libc, collectd, libcurl, libxml2
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5256
Filename: collectd-mod-ascent_5.4.2-1_ramips_24kec.ipk
Size: 5965
MD5Sum: a091aedb6f1ab5c619d2b189f2f7daf5
SHA256sum: 7cedae57e75bec095a080a1cb3436c6b93fd585945c704dd9fe6a8aa980bcd45
Description: ascent status input plugin
Package: collectd-mod-bind
Version: 5.4.2-1
Depends: libc, collectd, libcurl, libxml2
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8492
Filename: collectd-mod-bind_5.4.2-1_ramips_24kec.ipk
Size: 9159
MD5Sum: 0047c16bac8953d250fec8a78fe88d3e
SHA256sum: db14af3facfb7e54fc63942181b2502abe5f5397dbf2e04b5c6eadcd7641b311
Description: BIND server/zone input plugin
Package: collectd-mod-conntrack
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1867
Filename: collectd-mod-conntrack_5.4.2-1_ramips_24kec.ipk
Size: 2615
MD5Sum: 9e1115abce4d80a51f618886ce4800d5
SHA256sum: abfd39d94ffe9e13c1f83056dda0fd9099347774c00d05ef0b8d6f293bd1e6bb
Description: connection tracking table size input plugin
Package: collectd-mod-contextswitch
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2082
Filename: collectd-mod-contextswitch_5.4.2-1_ramips_24kec.ipk
Size: 2828
MD5Sum: c19b3a2f9336b9f0db489d29746f3b07
SHA256sum: a340186605299637ae3ba63535a4b00f779adcef7c183c2d47bc474a206df890
Description: context switch input plugin
Package: collectd-mod-cpu
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2379
Filename: collectd-mod-cpu_5.4.2-1_ramips_24kec.ipk
Size: 3114
MD5Sum: 14932afb40a5dc75f798acc3ec50acd5
SHA256sum: 44566471b668629c241d5c367a8071002f1d7b61f104842729df0ff1cbb5edc3
Description: CPU input plugin
Package: collectd-mod-csv
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3626
Filename: collectd-mod-csv_5.4.2-1_ramips_24kec.ipk
Size: 4323
MD5Sum: dedb356e35a8a61d2405b7857dc41950
SHA256sum: e61b995ecea026cb68565e7bf73451dec64563bf61dd3304be48153e92766447
Description: CSV output plugin
Package: collectd-mod-curl
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5245
Filename: collectd-mod-curl_5.4.2-1_ramips_24kec.ipk
Size: 5958
MD5Sum: 2a888682081b66857e542374f41a7c18
SHA256sum: cdff126bae94c6ae3c8c3464e1d81b70721772eb8394b0699ee3facebbd16227
Description: cURL input plugin
Package: collectd-mod-df
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5912
Filename: collectd-mod-df_5.4.2-1_ramips_24kec.ipk
Size: 6636
MD5Sum: f02836e14929181ffd2af8a0c2785a88
SHA256sum: ca4f821574912e4837329a1ab86a76ff56b3fb23f95f5d119af9ad1b57fec9dc
Description: disk space input plugin
Package: collectd-mod-disk
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4022
Filename: collectd-mod-disk_5.4.2-1_ramips_24kec.ipk
Size: 4728
MD5Sum: bbeea078988063f3eaff3b97c6382461
SHA256sum: b5506a4cdbf1601a6e1692fbf8527b055da3ff62aea15868f7e93df3ae4d2e95
Description: disk usage/timing input plugin
Package: collectd-mod-dns
Version: 5.4.2-1
Depends: libc, collectd, libpcap
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8109
Filename: collectd-mod-dns_5.4.2-1_ramips_24kec.ipk
Size: 8881
MD5Sum: c703771f75ed2bd37b31889a74f6bcbc
SHA256sum: ccece03a8c77566cc168db632cb4e993d7eb8a6d9b574ff65e21417126e29233
Description: DNS traffic input plugin
Package: collectd-mod-email
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5449
Filename: collectd-mod-email_5.4.2-1_ramips_24kec.ipk
Size: 6159
MD5Sum: 6a37f621881c02ba2bb6dbf565096cfe
SHA256sum: e2a753a6aa6dc793a6369961e7ef22e56c6a88a83c2926b13b881bcad08387f1
Description: email output plugin
Package: collectd-mod-exec
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8759
Filename: collectd-mod-exec_5.4.2-1_ramips_24kec.ipk
Size: 9487
MD5Sum: 0559199fb3cf1a0e7889b639c9219ca9
SHA256sum: 76b2d9530ce5f79ac6348fe08bbb35ecb65f79ab04801d686fba7fd911996ff0
Description: process exec input plugin
Package: collectd-mod-filecount
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4276
Filename: collectd-mod-filecount_5.4.2-1_ramips_24kec.ipk
Size: 4978
MD5Sum: adaf8806c60406ab8433040bd4125350
SHA256sum: dbae7e7887c428ff5ae7fc0ca9be3a632f58c95c3f9aa38577cd54e31258be28
Description: file count input plugin
Package: collectd-mod-fscache
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2202
Filename: collectd-mod-fscache_5.4.2-1_ramips_24kec.ipk
Size: 2960
MD5Sum: d8c632cdbb510a47cba8e1b73f733c2e
SHA256sum: 1fc37f686b942ce0be97316bb0cbd312c5029d9a021231451452ec33fc75d97f
Description: file-system based caching framework input plugin
Package: collectd-mod-interface
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2245
Filename: collectd-mod-interface_5.4.2-1_ramips_24kec.ipk
Size: 2992
MD5Sum: 1c31c0eeedd796e10c54426591e562c2
SHA256sum: 43be0692f27357a7e37fa36477118a928b878921bdb8dae05f4c67a16952e057
Description: network interfaces input plugin
Package: collectd-mod-iptables
Version: 5.4.2-1
Depends: libc, collectd, iptables, libiptc
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3426
Filename: collectd-mod-iptables_5.4.2-1_ramips_24kec.ipk
Size: 4137
MD5Sum: 8b74e8efcb0a61f6aa9becb53b6938ff
SHA256sum: a12201c94966b78eb4705462906f07b5f6f33d113b33e90424f5ed35bd14702b
Description: iptables status input plugin
Package: collectd-mod-irq
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2533
Filename: collectd-mod-irq_5.4.2-1_ramips_24kec.ipk
Size: 3267
MD5Sum: 762e7387613900b0c47abb83584e06dc
SHA256sum: 38fc36ba9e210ca492b8c3446bfdecbe1ce3d233968a3858a21d6863816246b0
Description: interrupt usage input plugin
Package: collectd-mod-iwinfo
Version: 5.4.2-1
Depends: libc, collectd, libiwinfo
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2764
Filename: collectd-mod-iwinfo_5.4.2-1_ramips_24kec.ipk
Size: 3507
MD5Sum: 6aae35267b9d5e7845947606b40cb0cd
SHA256sum: 91e9a861510955a1bf954a24684476dde2d02edc5684dfc9bddfd393954c0bd2
Description: libiwinfo wireless statistics plugin
Package: collectd-mod-load
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1978
Filename: collectd-mod-load_5.4.2-1_ramips_24kec.ipk
Size: 2725
MD5Sum: c8257198427b452a651e3fe6789c865a
SHA256sum: 65ed7eef2d21149dab8b357a7be5869d2481746e7b35c06449fd8f994c9a138b
Description: system load input plugin
Package: collectd-mod-logfile
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3085
Filename: collectd-mod-logfile_5.4.2-1_ramips_24kec.ipk
Size: 3829
MD5Sum: 2db704c944b1d49a1585b881f91a6216
SHA256sum: 6b397b894ecc9ee9e863e2e9c0eb082ae5d3eaee6cb9869525f6c78a75ae1e86
Description: log files output plugin
Package: collectd-mod-madwifi
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7609
Filename: collectd-mod-madwifi_5.4.2-1_ramips_24kec.ipk
Size: 8295
MD5Sum: 7319dadbf7c3d62dfdb83b4d813886dd
SHA256sum: 648b67a1c74eb5aa1e4e5ccc96621cc957e0402f527929c428cfc80f5a5bae44
Description: MadWifi status input plugin
Package: collectd-mod-memory
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2425
Filename: collectd-mod-memory_5.4.2-1_ramips_24kec.ipk
Size: 3179
MD5Sum: e3235ae5a6948dd05b3a65f4df630aa5
SHA256sum: 7a4e7cb11983bbb9fdcc010129858a9345e5ae85a1962bcfda57701b2e2e6122
Description: physical memory usage input plugin
Package: collectd-mod-modbus
Version: 5.4.2-1
Depends: libc, collectd, libmodbus
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5587
Filename: collectd-mod-modbus_5.4.2-1_ramips_24kec.ipk
Size: 6313
MD5Sum: ad9fdc54d3149e39e59090ef85bd4305
SHA256sum: 8c14fbf09394e4ba3358d042c0d6a3bed94e4eb428f79f9c8c50004f2da3df04
Description: read variables through libmodbus plugin
Package: collectd-mod-network
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13704
Filename: collectd-mod-network_5.4.2-1_ramips_24kec.ipk
Size: 14394
MD5Sum: 36a10dcd8b351954f344d9f56b900498
SHA256sum: 26a4445faa32cc81e173adf790fb083667d9204fe66ed13207ec8eb1ad951d66
Description: network input/output plugin
Package: collectd-mod-nginx
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3571
Filename: collectd-mod-nginx_5.4.2-1_ramips_24kec.ipk
Size: 4280
MD5Sum: 0bfa5fbf8810679b3e5ea93bdc86529a
SHA256sum: 296619725c4faa8c6e88265767ec0cfabbce3a8938fa92e87ecc192ad47a3fa3
Description: nginx status input plugin
Package: collectd-mod-ntpd
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6075
Filename: collectd-mod-ntpd_5.4.2-1_ramips_24kec.ipk
Size: 6778
MD5Sum: 331249bc2739ebc7a9de963a9a68454f
SHA256sum: 38d18e88878076435525b750cb353b7824ca086941a44bdb239b7955260bf946
Description: NTP daemon status input plugin
Package: collectd-mod-olsrd
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4971
Filename: collectd-mod-olsrd_5.4.2-1_ramips_24kec.ipk
Size: 5682
MD5Sum: 2124a5717e2ce8daf00bf05b8732eaed
SHA256sum: 3af1d97b64bbcf1c772428e2a121a3b1e41e148d1b92b4f34688021fc221610b
Description: OLSRd status input plugin
Package: collectd-mod-openvpn
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4844
Filename: collectd-mod-openvpn_5.4.2-1_ramips_24kec.ipk
Size: 5569
MD5Sum: b49895098bce98603646f36f96813695
SHA256sum: c0a8e819bf3f805246fd2cddf800924572e2e04967a684049ff3c9a12d72a3b4
Description: OpenVPN traffic/compression input plugin
Package: collectd-mod-ping
Version: 5.4.2-1
Depends: libc, collectd, liboping
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5412
Filename: collectd-mod-ping_5.4.2-1_ramips_24kec.ipk
Size: 6124
MD5Sum: b7ac79462265bf38c84856eb3174a349
SHA256sum: fb797b5fea6d49fd8fa7a8ef305332f5c2438e4641aae1e5cfba4bacd8c5f223
Description: ping status input plugin
Package: collectd-mod-postgresql
Version: 5.4.2-1
Depends: libc, collectd, libpq
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13367
Filename: collectd-mod-postgresql_5.4.2-1_ramips_24kec.ipk
Size: 14096
MD5Sum: 8aca3e9d93973abb75624ced56b6186b
SHA256sum: e6d0ac8cbdc5def3a53eac0a6bb149c33c3fb4b6d38498955fd55c42932825ea
Description: PostgreSQL status input plugin
Package: collectd-mod-powerdns
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7351
Filename: collectd-mod-powerdns_5.4.2-1_ramips_24kec.ipk
Size: 8091
MD5Sum: cc7eaaf7edc3211219f4714175f69f93
SHA256sum: 6e996ddcf48780bd0090ce7afc65d432e212b8e9ae18274429bf30926845554a
Description: PowerDNS server status input plugin
Package: collectd-mod-processes
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6978
Filename: collectd-mod-processes_5.4.2-1_ramips_24kec.ipk
Size: 7747
MD5Sum: 9aa02dfffd845b7af1c8f6ec917a5aac
SHA256sum: 284ddc70b820f1d636143af5f2acec61b26685c110b17446b6db8348c7c2b09f
Description: process status input plugin
Package: collectd-mod-protocols
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2946
Filename: collectd-mod-protocols_5.4.2-1_ramips_24kec.ipk
Size: 3691
MD5Sum: 5533e19dae0adb9f676a2cd5469fbc5d
SHA256sum: 439ef451dcae951dd3fe558bd6a3071746a22a5997387f66183cc908d169c87f
Description: network protocols input plugin
Package: collectd-mod-rrdtool
Version: 5.4.2-1
Depends: libc, collectd, librrd1
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11084
Filename: collectd-mod-rrdtool_5.4.2-1_ramips_24kec.ipk
Size: 11789
MD5Sum: 59c7afc875df0a8f0fe4fc283cbee097
SHA256sum: 4c11672db2362253ff5ab7522c07634b448db7812cf45391b80958504b5c420d
Description: RRDtool output plugin
Package: collectd-mod-sensors
Version: 5.4.2-1
Depends: libc, collectd, libsensors
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3347
Filename: collectd-mod-sensors_5.4.2-1_ramips_24kec.ipk
Size: 4044
MD5Sum: b83a8a07113ff59af9a23959974b17e9
SHA256sum: 9bf47bce4d3746de642996990a96b8e407a5d047e9215dc3e4bbbd29f9c2526b
Description: lm_sensors input plugin
Package: collectd-mod-snmp
Version: 5.4.2-1
Depends: libc, collectd, libnetsnmp
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8885
Filename: collectd-mod-snmp_5.4.2-1_ramips_24kec.ipk
Size: 9630
MD5Sum: d9a7fc1c7a161073cdccef97bfa7ea2f
SHA256sum: 729ff2023137ec0a4bccaaef3f992fc312922b34f1708844cb25d032c85b6c29
Description: SNMP input plugin
Package: collectd-mod-syslog
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2249
Filename: collectd-mod-syslog_5.4.2-1_ramips_24kec.ipk
Size: 2990
MD5Sum: b969c54484840482194dafb7a91a47bf
SHA256sum: 5aef3bff268a486bfde043eb818e7004971a9df70c113f007e08d241cc4c7066
Description: syslog output plugin
Package: collectd-mod-table
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5239
Filename: collectd-mod-table_5.4.2-1_ramips_24kec.ipk
Size: 5943
MD5Sum: 98f07af5880d8570fb8b93cc1edc1019
SHA256sum: 4591c6c9b13a30214fe104f6308a7640a4c7cd96b32d607797d6a10bd6bacdbf
Description: table-like structured file input plugin
Package: collectd-mod-tail
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3103
Filename: collectd-mod-tail_5.4.2-1_ramips_24kec.ipk
Size: 3836
MD5Sum: c429abe1be2f1ece60ef3a13b5706acd
SHA256sum: 5bd44eccf018bd6361bd1687691534a15779265cb8e5a154c0b8e97feb050f7f
Description: tail input plugin
Package: collectd-mod-tcpconns
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4278
Filename: collectd-mod-tcpconns_5.4.2-1_ramips_24kec.ipk
Size: 4980
MD5Sum: f8d0ba339fb5cca93533b87295fd98fb
SHA256sum: 4eea0cfc5f11c409c97c38bd9019ddc52cbaa1fe60ae3ef6ec3cade91ea5fc38
Description: TCP connection tracking input plugin
Package: collectd-mod-teamspeak2
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5286
Filename: collectd-mod-teamspeak2_5.4.2-1_ramips_24kec.ipk
Size: 6008
MD5Sum: 8a960753c365751bb3e013efdc027245
SHA256sum: 94047a07b176d8bd2fa5dfd63835d52b5ce25c25c4a160096ff4ea22836ad70a
Description: TeamSpeak2 input plugin
Package: collectd-mod-ted
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3480
Filename: collectd-mod-ted_5.4.2-1_ramips_24kec.ipk
Size: 4175
MD5Sum: e4afec73ed64a2cda81ec26ae8d7fdcc
SHA256sum: a5f80ae140ecdbb7fdbd6843624457fb0004f6224e9a76b8d377b4d5fc7df4ff
Description: The Energy Detective input plugin
Package: collectd-mod-thermal
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3490
Filename: collectd-mod-thermal_5.4.2-1_ramips_24kec.ipk
Size: 4197
MD5Sum: ae305c7da9d4a8ca0a6cfd1ef9bd24b5
SHA256sum: 9b18643b41db5417d31ef601a5582c438edb59f8d9879470b7df0beff9e91960
Description: system temperatures input plugin
Package: collectd-mod-unixsock
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8689
Filename: collectd-mod-unixsock_5.4.2-1_ramips_24kec.ipk
Size: 9443
MD5Sum: b07e0588568ecffab577f9bfbb261893
SHA256sum: 8d1fed6560d69f42ff23e4d0de25b7a1f58ce06bf6e82bd7d6393115b84c795b
Description: unix socket output plugin
Package: collectd-mod-uptime
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2177
Filename: collectd-mod-uptime_5.4.2-1_ramips_24kec.ipk
Size: 2911
MD5Sum: 6c18a4d5515d9552b69c6f08b02cafa7
SHA256sum: eb93e4ec2d55460c320184d08433ba3df7aedbdaf5da4dd96ff4d2f2bda4b448
Description: uptime status input plugin
Package: collectd-mod-users
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1761
Filename: collectd-mod-users_5.4.2-1_ramips_24kec.ipk
Size: 2500
MD5Sum: db3f69428eb77530ff214622a285eea3
SHA256sum: a1d26339d99e0faa59b843b64ddf22a019414cf6f9c0c470accaf8eb87fdc710
Description: user logged in status input plugin
Package: collectd-mod-vmem
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2988
Filename: collectd-mod-vmem_5.4.2-1_ramips_24kec.ipk
Size: 3737
MD5Sum: a1adad2ec893e87edb53cb967ed18ca2
SHA256sum: 5c9a651539483a6827370dc816fe26604c19e4f43aa4976837de02cb10880811
Description: virtual memory usage input plugin
Package: collectd-mod-wireless
Version: 5.4.2-1
Depends: libc, collectd
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2714
Filename: collectd-mod-wireless_5.4.2-1_ramips_24kec.ipk
Size: 3453
MD5Sum: a04049dcf1f67b4c673cedb3266fa147
SHA256sum: fa997cdcdf00980644bc83cb76a57095fa88d60a3219295fbe379665ef762960
Description: wireless status input plugin
Package: collectd-mod-write-http
Version: 5.4.2-1
Depends: libc, collectd, libcurl
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7251
Filename: collectd-mod-write-http_5.4.2-1_ramips_24kec.ipk
Size: 8019
MD5Sum: 09d3fec6f1ad28cf49a75f1fdeeebd05
SHA256sum: c78967e5fd41c796099808112c9365fcd3315ee1a44f7affa2086e0becc2d324
Description: HTTP POST output plugin
Package: collectd
Version: 5.4.2-1
Depends: libc, libpthread, zlib, libltdl, libip4tc
Source: feeds/packages/utils/collectd
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58124
Filename: collectd_5.4.2-1_ramips_24kec.ipk
Size: 59011
MD5Sum: 27494e7c3c07f8e44f047d494aa5e88c
SHA256sum: 0d9971aaad5bc6acf76274cbc6c6d803a1d86a55e80d72f63b1cbfac3343e2e6
Description: collectd is a small daemon which collects system information periodically
and provides mechanismns to store the values in a variety of ways.
Package: confuse
Version: 2.7-1
Depends: libc
Source: feeds/packages/libs/confuse
License: ISC
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15711
Filename: confuse_2.7-1_ramips_24kec.ipk
Size: 16749
MD5Sum: f4be04c28a9973b27dca4092ff926d0e
SHA256sum: 8fdb0be5372bb66d4c4befb2775af46488789321cea4285882ffc242665fa036
Description: libConfuse is a configuration file parser library, licensed under the
terms of the ISC license, and written in C. It supports sections and
(lists of) values (strings, integers, floats, booleans or other
sections), as well as some other features (such as single/double-quoted
strings, environment variable expansion, functions and nested include
statements). It makes it very easy to add configuration file capability
to a program using a simple API.
The goal of libConfuse is not to be the configuration file parser
library with a gazillion of features. Instead, it aims to be easy to use
and quick to integrate with your code. libConfuse was called libcfg
before, but was changed to not confuse with other similar libraries.
Package: convbin
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 288846
Filename: convbin_2.4.2_p9_ramips_24kec.ipk
Size: 289092
MD5Sum: 40331635692d65f167e9fd8a3c60848d
SHA256sum: d8d6a888bc984e86ab79f0f3fc9fc9479616016f0ec7b8ab8d4ad59338003e1a
Description: RINEX Converter
Package: coova-chilli
Version: 1.3.0+20141128-1
Depends: libc, kmod-tun, librt
Source: feeds/packages/net/coova-chilli
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Imre Kaloz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 225163
Filename: coova-chilli_1.3.0+20141128-1_ramips_24kec.ipk
Size: 225716
MD5Sum: c48ab0b76f8319c0958ea542c4f55c99
SHA256sum: cbe02da75c2a6023b2400ec9f7f498c957ec621c809d51e437f9beab60ddd729
Description: CoovaChilli is an open source access controller for wireless LAN
access points and is based on ChilliSpot. It is used for authenticating
users of a wireless (or wired) LAN. It supports web based login (UAM)
which is today's standard for public HotSpots and it supports Wireless
Protected Access (WPA) which is the standard of the future.
Authentication, authorization and accounting (AAA) is handled by your
favorite radius server.
Package: coreutils-base64
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15272
Filename: coreutils-base64_8.23-1_ramips_24kec.ipk
Size: 16015
MD5Sum: a1f1406a3f366dc29104b4af69190bbf
SHA256sum: d2173552cfdef9e53a437cb160eab3c247c87bcb5cd54f463fd10313b55b60a4
Description: Full version of standard GNU base64 utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-basename
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12000
Filename: coreutils-basename_8.23-1_ramips_24kec.ipk
Size: 12800
MD5Sum: 69c7c5ee9453b4daedf0132bbe592790
SHA256sum: 6e1cc9d27bd952869ed1ccb359495509da5f4aad26101a9bc86c294d68045c35
Description: Full version of standard GNU basename utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cat
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18559
Filename: coreutils-cat_8.23-1_ramips_24kec.ipk
Size: 19369
MD5Sum: ba9f8c7cbcc9e97be9a4779e9f6cf1a0
SHA256sum: 466db783bef097373f60246c3587d3c7203395f9d2333bb10d9f4c778762658a
Description: Full version of standard GNU cat utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chcon
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24129
Filename: coreutils-chcon_8.23-1_ramips_24kec.ipk
Size: 24859
MD5Sum: 7c32bed6d431e8728c3bc9ba533d5748
SHA256sum: 5a7f386f2b5631026c7a4eaba34d18d9a982354503796f81c674c6025b2e9976
Description: Full version of standard GNU chcon utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chgrp
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26191
Filename: coreutils-chgrp_8.23-1_ramips_24kec.ipk
Size: 26911
MD5Sum: 1df714d7edc7ed16d3956cf5d7daf5f1
SHA256sum: 3ef6177be4178ee208e10190bd2c084ac74fbb84822c8e5ff027dc5840254d20
Description: Full version of standard GNU chgrp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chmod
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23263
Filename: coreutils-chmod_8.23-1_ramips_24kec.ipk
Size: 23977
MD5Sum: bb81535475bf8be9fb4deb67e8ceb7fd
SHA256sum: dda566c66b1de047136e0ed92e351dcb9a5c821b61ea5ec14f847df33d69f94b
Description: Full version of standard GNU chmod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chown
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27023
Filename: coreutils-chown_8.23-1_ramips_24kec.ipk
Size: 27810
MD5Sum: 8d4f1120ab7c64b2d5872df446b84fa6
SHA256sum: 91c2748944b5d4cfa84b94d36bd061272ebce6f78f1e5987350d254f6332ce24
Description: Full version of standard GNU chown utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-chroot
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14879
Filename: coreutils-chroot_8.23-1_ramips_24kec.ipk
Size: 15627
MD5Sum: ecdbd7d874ac247e591ec9fadb0bff11
SHA256sum: 2a84044d26780ff2559ac025813b93bb54e22cbdbb5e14b2dfa227808f11f9bb
Description: Full version of standard GNU chroot utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cksum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13547
Filename: coreutils-cksum_8.23-1_ramips_24kec.ipk
Size: 14328
MD5Sum: 59b1ae17f546d38c8b28cb18ba777f99
SHA256sum: fc81c3ed18a795ba265aad15bc2f94af5b35cffbb7af20686993b16cc982416b
Description: Full version of standard GNU cksum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-comm
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14134
Filename: coreutils-comm_8.23-1_ramips_24kec.ipk
Size: 14877
MD5Sum: 665e2121b122b8ce77f36fed272f859b
SHA256sum: ab924d10de53c53caa53bc5fcaab5d4fe309e465bd4319ae8731f21653d5c884
Description: Full version of standard GNU comm utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cp
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43822
Filename: coreutils-cp_8.23-1_ramips_24kec.ipk
Size: 44625
MD5Sum: 6ad6002c89811d1bf54fa7b3a702795c
SHA256sum: 4e416f37840b7610a92ca1faa0bedd8a6629ffb595a90955ea974a7c94ec36d4
Description: Full version of standard GNU cp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-csplit
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47913
Filename: coreutils-csplit_8.23-1_ramips_24kec.ipk
Size: 48760
MD5Sum: f7d5cef62b8e1fc0b884333e19f5ebd4
SHA256sum: dd7c996869ad361e9164036ac518319f4fecd532d3be4e393d0cfb6616ef4ffa
Description: Full version of standard GNU csplit utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-cut
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15531
Filename: coreutils-cut_8.23-1_ramips_24kec.ipk
Size: 16282
MD5Sum: e47fdb546fe9ec16d7614b2e746ef9a1
SHA256sum: ba4acd5426cd9ed039981c17edb95ab70db537f680d917ac05a7c028650dfbd1
Description: Full version of standard GNU cut utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-date
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27586
Filename: coreutils-date_8.23-1_ramips_24kec.ipk
Size: 28389
MD5Sum: bd17acc62aaca03e517dfbb75d3ca41a
SHA256sum: 446621b3511369811299bc8a7e658fc9ab69af74cd31b012a8dd0d0d2ef4517d
Description: Full version of standard GNU date utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dd
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26132
Filename: coreutils-dd_8.23-1_ramips_24kec.ipk
Size: 26860
MD5Sum: bbd6cca5ed0ced2547d0277310555a73
SHA256sum: e9de07090d02eeb43f5f4cbe9e9a117259096d9c461db2f9d1c1b2df2e0fca3e
Description: Full version of standard GNU dd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dir
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52126
Filename: coreutils-dir_8.23-1_ramips_24kec.ipk
Size: 52932
MD5Sum: 8af40da28495ff37780462f79578cbc3
SHA256sum: 2ffe073241be427826a8016267252c68075d6200199dfbd25c6da3241b46b3e2
Description: Full version of standard GNU dir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dircolors
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16204
Filename: coreutils-dircolors_8.23-1_ramips_24kec.ipk
Size: 16987
MD5Sum: 29230e6e8cec7c654e6b342cfa23a87b
SHA256sum: 5dc13b42bc3a32a79f5effaa97995b9a56afe3cb0082e4dcecaf7c29692dd21e
Description: Full version of standard GNU dircolors utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-dirname
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11742
Filename: coreutils-dirname_8.23-1_ramips_24kec.ipk
Size: 12548
MD5Sum: 8d1c2a9ce15cea399225866923e2049e
SHA256sum: d7d014c6fc20c54d7ffa6a0d8694baa5e5a10a376204f0a33367d345db717b89
Description: Full version of standard GNU dirname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-du
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 77268
Filename: coreutils-du_8.23-1_ramips_24kec.ipk
Size: 78060
MD5Sum: e7e3441d057bc19dfb716f9ef1526fb6
SHA256sum: 19dcb47d15e11966c5be22ed68260999ffab1d7707a09a688fe95cedcbfd1dae
Description: Full version of standard GNU du utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-echo
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10307
Filename: coreutils-echo_8.23-1_ramips_24kec.ipk
Size: 11087
MD5Sum: 5d1c467a71f52dd29392f2af3e1f1e25
SHA256sum: 96885b216857281c55087f6954d38805fff6a5185821c7e623d793a39f1b3398
Description: Full version of standard GNU echo utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-env
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11964
Filename: coreutils-env_8.23-1_ramips_24kec.ipk
Size: 12757
MD5Sum: 62ef31edaf6a8c16ee8fd34ab6dffd75
SHA256sum: 0287dba49190a91d6b8a5da840c10248d73bb6dcb5f88d6104c2fd45de8c59c0
Description: Full version of standard GNU env utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-expand
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13289
Filename: coreutils-expand_8.23-1_ramips_24kec.ipk
Size: 14089
MD5Sum: 631eba11a325ab31a3d37e1534490059
SHA256sum: 5dad1c2d5cfb8628088afad5674b0aa7a9fd1e64d3593ae2e20e7d3a071f4cc3
Description: Full version of standard GNU expand utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-expr
Version: 8.23-1
Depends: libc, coreutils, libgmp
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43613
Filename: coreutils-expr_8.23-1_ramips_24kec.ipk
Size: 44413
MD5Sum: ebcb4cc8c1915a31c151e148afc81077
SHA256sum: e79eebfa80124dc959c43491e27988218cbebe1fd9825a2a777fbc18ed380fcf
Description: Full version of standard GNU expr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-factor
Version: 8.23-1
Depends: libc, coreutils, libgmp
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48604
Filename: coreutils-factor_8.23-1_ramips_24kec.ipk
Size: 49433
MD5Sum: 898840656d6d263f9c344edea7a8ffb3
SHA256sum: 1282d465d1100e139260f1f1e42bf27f8119bcb17739f174015a681b8a6e6c64
Description: Full version of standard GNU factor utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-false
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9172
Filename: coreutils-false_8.23-1_ramips_24kec.ipk
Size: 9940
MD5Sum: 8b0d68bdc642dcd9db3d9897f1477c13
SHA256sum: dec5717d3d852038e69f83d829405434e3e412e49203b7fc9e51da5a1555b34c
Description: Full version of standard GNU false utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-fmt
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15701
Filename: coreutils-fmt_8.23-1_ramips_24kec.ipk
Size: 16443
MD5Sum: 11b22cd277dedb669fbc86bcdcff1190
SHA256sum: 3ef81518ac40c6925056cc8124f802386c073051dc4bf15406dad521f0aa5bf0
Description: Full version of standard GNU fmt utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-fold
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13046
Filename: coreutils-fold_8.23-1_ramips_24kec.ipk
Size: 13843
MD5Sum: 85527b9361c2858d30805bfd20d5ad3a
SHA256sum: 41b557177aac4be6f3a3085e39b933a5c80398a0594228bf37b4927ed30907da
Description: Full version of standard GNU fold utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-groups
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12777
Filename: coreutils-groups_8.23-1_ramips_24kec.ipk
Size: 13576
MD5Sum: ad55c125c0eac92b666afc0f97757442
SHA256sum: f28bd0b27c048c99fdc18799cdade6f4ef16b0524773d91a10bcf08edac43640
Description: Full version of standard GNU groups utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-head
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16555
Filename: coreutils-head_8.23-1_ramips_24kec.ipk
Size: 17374
MD5Sum: a117fa5fe2e4e14fbef1a8ba921ad3c4
SHA256sum: 7f61d9d4f59d350624c16509e062dc8e733b07d9815e19ef0e32747e8c252844
Description: Full version of standard GNU head utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-hostid
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11352
Filename: coreutils-hostid_8.23-1_ramips_24kec.ipk
Size: 12139
MD5Sum: 92cdd8afbe822067fbe4ac9d4807d179
SHA256sum: 540c02503e86dd66641625a234b9be8ca3a18cc3b4dbd0d848306ffdc82fee23
Description: Full version of standard GNU hostid utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-id
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15203
Filename: coreutils-id_8.23-1_ramips_24kec.ipk
Size: 15959
MD5Sum: 08c10a86b45db1f033e5a88de52b4c6f
SHA256sum: 7a7d7c9550a25d4dbd379ed08cee692cf4c1a5be4235d84a7cae931bc71981d2
Description: Full version of standard GNU id utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-install
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47819
Filename: coreutils-install_8.23-1_ramips_24kec.ipk
Size: 48680
MD5Sum: 2a499807c05f61ba9315af8ffcb514f3
SHA256sum: 11c578ee37dd60eb0fdffaa88998d18bd58c78f9b65a6f22a7e202e221ea40dd
Description: Full version of standard GNU install utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-join
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18113
Filename: coreutils-join_8.23-1_ramips_24kec.ipk
Size: 18940
MD5Sum: a7952eb7b4abe1cf3f4697048335a5ed
SHA256sum: 5bf3779209c7ad3b144f286f2d38379fa5c6292d8bd91a497bd90fee98111d92
Description: Full version of standard GNU join utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-kill
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13541
Filename: coreutils-kill_8.23-1_ramips_24kec.ipk
Size: 14347
MD5Sum: c99a6593b7d919c18d11573281ddfb8a
SHA256sum: f7918a849b21dcdbd9921cfd73660e76ca56f4832fb9a3edc9c2bbb0df3e659a
Description: Full version of standard GNU kill utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-link
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11490
Filename: coreutils-link_8.23-1_ramips_24kec.ipk
Size: 12265
MD5Sum: d8fd021e5f53919d95243cf7bdff5071
SHA256sum: 81f64ca0a1fb00af81f58834274df4f85b0072d510e43b11f2763d4f188b9926
Description: Full version of standard GNU link utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ln
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23041
Filename: coreutils-ln_8.23-1_ramips_24kec.ipk
Size: 23816
MD5Sum: 16c71021456e94cad0b834f885e20e19
SHA256sum: a58da116793315ccfd453faf812193e011d8390ab070a0e4fb314003a1d5bfbe
Description: Full version of standard GNU ln utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-logname
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11393
Filename: coreutils-logname_8.23-1_ramips_24kec.ipk
Size: 12178
MD5Sum: 6b4c38799fde2b42b2bf73dc9a05f92c
SHA256sum: 8c17805079a7e1a47f71157b5092cb0f5fe0b58ba8f3c13e60a808a632795f4d
Description: Full version of standard GNU logname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ls
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52126
Filename: coreutils-ls_8.23-1_ramips_24kec.ipk
Size: 52924
MD5Sum: 3d253cf26f6e4f7fa7e9372a645716db
SHA256sum: 59d1cd4fbb469475cf5c33f1976348dfdd85aa679d27ab37ceef3e37436a6606
Description: Full version of standard GNU ls utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-md5sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17614
Filename: coreutils-md5sum_8.23-1_ramips_24kec.ipk
Size: 18417
MD5Sum: cd048be4ccc3c37d23bf2dd823441819
SHA256sum: bfaf333b1eba31eb6124038260f65ce822ff61c7cafccfffad03361310e3b06b
Description: Full version of standard GNU md5sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mkdir
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22244
Filename: coreutils-mkdir_8.23-1_ramips_24kec.ipk
Size: 23019
MD5Sum: 25277921f83aa0ffda97a2e6368a84ca
SHA256sum: e637eba00eb30589fed9e6c01895dd9a21abaa3b57cd2a29a0a58fb1f61ec347
Description: Full version of standard GNU mkdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mkfifo
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12786
Filename: coreutils-mkfifo_8.23-1_ramips_24kec.ipk
Size: 13590
MD5Sum: 210d1cd975882834063a965a94727851
SHA256sum: adf96ce26f35ec4932e133479ebef078be3963f223c383335d77e1637c8d799a
Description: Full version of standard GNU mkfifo utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mknod
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14624
Filename: coreutils-mknod_8.23-1_ramips_24kec.ipk
Size: 15383
MD5Sum: 3671a75c2d0a53eb355087389c9974b3
SHA256sum: ba2661217518fbdfdea98b561f9d7d41f545fb425b557f0c4f536dc2c02abe0f
Description: Full version of standard GNU mknod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mktemp
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15751
Filename: coreutils-mktemp_8.23-1_ramips_24kec.ipk
Size: 16522
MD5Sum: 468749c3f9eced6086cebe5c3682f009
SHA256sum: f44fcb151b615f248fbf398a043c60f146c91f72b900aff84dfb7545fba45255
Description: Full version of standard GNU mktemp utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-mv
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43199
Filename: coreutils-mv_8.23-1_ramips_24kec.ipk
Size: 43985
MD5Sum: 8e2154dffca1ae7ad8445c86135e7055
SHA256sum: 884118c981704cfb782ca51a32dcc486ec0607cabf43042e88d003ed79dbc58f
Description: Full version of standard GNU mv utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nice
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12696
Filename: coreutils-nice_8.23-1_ramips_24kec.ipk
Size: 13501
MD5Sum: 475d77f1acb4a7267851d5b58ed69713
SHA256sum: 9c41cc7b0814af5815c3b10b55839bf2a90f018e4322fb4211d26eb04739dcda
Description: Full version of standard GNU nice utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nl
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44166
Filename: coreutils-nl_8.23-1_ramips_24kec.ipk
Size: 45007
MD5Sum: 94f8701d56005019a48dacfb5da5d4da
SHA256sum: adfe2bc3d8310ff86f922af8ff5cf87ff2242a4900ad87f4d3a01766ac8e32d3
Description: Full version of standard GNU nl utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nohup
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12866
Filename: coreutils-nohup_8.23-1_ramips_24kec.ipk
Size: 13670
MD5Sum: 558b9156a090c88990f2cd0bec9c85e5
SHA256sum: a9861f668142957328921ece49f30ef3c772f567acb717eb2e859a5846308a00
Description: Full version of standard GNU nohup utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-nproc
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12423
Filename: coreutils-nproc_8.23-1_ramips_24kec.ipk
Size: 13224
MD5Sum: a514fb52e5980fd646c7ce387b3b81d3
SHA256sum: d101664cbf5339d3f49447b78e7d31d995b30e5adab0a465004a4f10d44ad022
Description: Full version of standard GNU nproc utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-od
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29852
Filename: coreutils-od_8.23-1_ramips_24kec.ipk
Size: 30618
MD5Sum: 34e8818254a113029d897b4dc563a2c6
SHA256sum: d2aa456d113c85e1d52fb6406ca509b18a6b177cf4d26e613788f8d7364b6832
Description: Full version of standard GNU od utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-paste
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12891
Filename: coreutils-paste_8.23-1_ramips_24kec.ipk
Size: 13682
MD5Sum: 1aad0a47b0d80e3c2b105cd64bff78ae
SHA256sum: 6ba04622d3ddb3deaed1a4297d360630bdd1785c9589d9a093681fc6839f544b
Description: Full version of standard GNU paste utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pathchk
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12243
Filename: coreutils-pathchk_8.23-1_ramips_24kec.ipk
Size: 13054
MD5Sum: cd54b57a3d8c072a197e086193efeb93
SHA256sum: 2c01410883a958236390957bcc2e8a154c7be1bb34b2a2ee2e19e4980b17f53e
Description: Full version of standard GNU pathchk utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pinky
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14467
Filename: coreutils-pinky_8.23-1_ramips_24kec.ipk
Size: 15188
MD5Sum: c950626261397086c7dc6bd525017a3f
SHA256sum: 221810e0cba8acba01ddd134a8bfff748c447ab8ddc3513e1aec42f10d463b94
Description: Full version of standard GNU pinky utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pr
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27228
Filename: coreutils-pr_8.23-1_ramips_24kec.ipk
Size: 28053
MD5Sum: a6a482fd4428a635861a61c506870b4c
SHA256sum: 28c1b8f4dab71af3bbf2f042b5defd05e4253ecb4bc82d3a35f7a14f67b5e96d
Description: Full version of standard GNU pr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-printenv
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11717
Filename: coreutils-printenv_8.23-1_ramips_24kec.ipk
Size: 12518
MD5Sum: 592debde6119ae6a17a9ef5336112dfd
SHA256sum: b64bb621aa79322eab27943f13456267329744572d2d31b2281d37a32bcb31ae
Description: Full version of standard GNU printenv utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-printf
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19668
Filename: coreutils-printf_8.23-1_ramips_24kec.ipk
Size: 20424
MD5Sum: 87b94b4d4d730c0dd29b86255d98ae7d
SHA256sum: a3b5672779fa3fe1e0271fc7c0e80ef177fd19a94769f060383abcea0073f628
Description: Full version of standard GNU printf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-ptx
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54240
Filename: coreutils-ptx_8.23-1_ramips_24kec.ipk
Size: 55063
MD5Sum: 3dc8b5becef595e5eb127ecf24e84f44
SHA256sum: 19bcf0400fe17ac0809990ae74bb4aab4330217f56f7ab650fc134e5a0619f9b
Description: Full version of standard GNU ptx utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-pwd
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15092
Filename: coreutils-pwd_8.23-1_ramips_24kec.ipk
Size: 15838
MD5Sum: 71d7b353eaccefeada20d0b1a8f1e300
SHA256sum: ba2c2e0c9bf9633d7995aa87a20ca6a564a435e8adfb7c5ee8be35e6e3ff481e
Description: Full version of standard GNU pwd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-readlink
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17332
Filename: coreutils-readlink_8.23-1_ramips_24kec.ipk
Size: 18162
MD5Sum: b8fad4bfa969e22d0e9263d0f8fc8f60
SHA256sum: 87d2c32463880cb7860019486edea4158b4bc8ca49788f3d8e916acaa1e037f8
Description: Full version of standard GNU readlink utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-realpath
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22950
Filename: coreutils-realpath_8.23-1_ramips_24kec.ipk
Size: 23657
MD5Sum: d5d90b44b794c8288e7f1182c63bf810
SHA256sum: af68de730cd7eff52eaafa5e15fd12dec8db1d090f05065a9d9980c50d7eb70b
Description: Full version of standard GNU realpath utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-rm
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24633
Filename: coreutils-rm_8.23-1_ramips_24kec.ipk
Size: 25364
MD5Sum: ec7882110b28a51182cbe2baa4131404
SHA256sum: aca35490b30399a43a02313038f28d65d6d31d52b3232ae0b6901e63b2a1f1fe
Description: Full version of standard GNU rm utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-rmdir
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18544
Filename: coreutils-rmdir_8.23-1_ramips_24kec.ipk
Size: 19372
MD5Sum: ecbd031bef6cfe7516f1dd07c246c7ae
SHA256sum: 1a454bc40776f21a84f4dbf9d463322cc29783e08caffed54dd6d0d10b41ad04
Description: Full version of standard GNU rmdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-runcon
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12173
Filename: coreutils-runcon_8.23-1_ramips_24kec.ipk
Size: 12978
MD5Sum: 4c758c32d9f789aaca906d504c0449e9
SHA256sum: aaeeefb7c25e62b162efe7ec6404cd3b5e653b995e4d8b5f218a7b8b18edf2f4
Description: Full version of standard GNU runcon utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-seq
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20713
Filename: coreutils-seq_8.23-1_ramips_24kec.ipk
Size: 21459
MD5Sum: f6c13397c743966391405ed311737834
SHA256sum: 1aac2784905aeb5bd18cb064fc2084bae2cad67aa079bca58bf1555117828415
Description: Full version of standard GNU seq utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha1sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18326
Filename: coreutils-sha1sum_8.23-1_ramips_24kec.ipk
Size: 19136
MD5Sum: 25e7f3d15ebeb7e9a954a1bad68160b7
SHA256sum: e8a62eaf9e6de866522860e336723a589e75322dac3c908bc82f7d6c9ed3045f
Description: Full version of standard GNU sha1sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha224sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22635
Filename: coreutils-sha224sum_8.23-1_ramips_24kec.ipk
Size: 23387
MD5Sum: 97207928d6ed57306574c060611f8a7d
SHA256sum: 59e3d60399217c412db4fa6c48330b16bfa31f9a5efb3d0ace849e3977313d9c
Description: Full version of standard GNU sha224sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha256sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22630
Filename: coreutils-sha256sum_8.23-1_ramips_24kec.ipk
Size: 23374
MD5Sum: cc4d459ca929dad6c92fc7082e73f8b6
SHA256sum: 55971cd672e573459769f698160e03280ccce6df0b0dcc748eb9e446ebb392d0
Description: Full version of standard GNU sha256sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha384sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46498
Filename: coreutils-sha384sum_8.23-1_ramips_24kec.ipk
Size: 47287
MD5Sum: 19d420258cbab1c3a6a4d44c6abcf617
SHA256sum: cabf239d9bf58f039f3960df7f3f7ec867fa70d6586c77c8edc9d7e4399d19b0
Description: Full version of standard GNU sha384sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sha512sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46499
Filename: coreutils-sha512sum_8.23-1_ramips_24kec.ipk
Size: 47258
MD5Sum: 25389d6e9ed188cfd6776e0730e7a563
SHA256sum: c3529e953df5ade7204ccb54602f6621b8c0361589264edfc20b5ccb791d6d2e
Description: Full version of standard GNU sha512sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-shred
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23123
Filename: coreutils-shred_8.23-1_ramips_24kec.ipk
Size: 23887
MD5Sum: d7a08d786bc0554f679a47140577f6ca
SHA256sum: f33c6f35ac7b8fca37515aaa1ab526ecdf250cd38bf56aa0cbf06fdb1d417d08
Description: Full version of standard GNU shred utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-shuf
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20492
Filename: coreutils-shuf_8.23-1_ramips_24kec.ipk
Size: 21276
MD5Sum: f92b64775a890b4a4ac5a61cc2c0b073
SHA256sum: 8ced43744741431e35f7fcf0bf57480cef4eb787384843e7321f43046bdaa384
Description: Full version of standard GNU shuf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sleep
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14085
Filename: coreutils-sleep_8.23-1_ramips_24kec.ipk
Size: 14836
MD5Sum: 15a7fee660b1cad132f7200bb149ff97
SHA256sum: 1fddb22a07eddaf7cdb365a44eaae4ab04793d0ac045d1643cce55998ab2e8b5
Description: Full version of standard GNU sleep utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sort
Version: 8.23-1
Depends: libc, coreutils, libpthread
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43141
Filename: coreutils-sort_8.23-1_ramips_24kec.ipk
Size: 43966
MD5Sum: c88b99dc4e15e8b3b38c57ef79f234cd
SHA256sum: 2c930c8e72043e93060112982f0d304be7f8401ec66a37e7a4d48079fce5c6fe
Description: Full version of standard GNU sort utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-split
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27055
Filename: coreutils-split_8.23-1_ramips_24kec.ipk
Size: 27829
MD5Sum: 76156d9111ad515ecfc05640c856202d
SHA256sum: 59cb7c0e69a638d956758d0479b987d8af789315f4e1a1b53aa17768748a3464
Description: Full version of standard GNU split utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-stat
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32479
Filename: coreutils-stat_8.23-1_ramips_24kec.ipk
Size: 33326
MD5Sum: 7eab1b73caccff4a916c2edd2ad89a49
SHA256sum: 6c366c8b796e3b4ed27e2bfc1988835868a802bf83522d2f674240139055209d
Description: Full version of standard GNU stat utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-stdbuf
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25672
Filename: coreutils-stdbuf_8.23-1_ramips_24kec.ipk
Size: 26404
MD5Sum: 3a758b5b3e5ede027ddc34e2016df4a8
SHA256sum: 25cfa6887abd65d2596f863174351f20851698d4792cbf5d0b61364f9150f9b3
Description: Full version of standard GNU stdbuf utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-stty
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26930
Filename: coreutils-stty_8.23-1_ramips_24kec.ipk
Size: 27751
MD5Sum: 44e75aaa1f5aba7437c1a14bb6623a28
SHA256sum: 891da069b479c7c02f5f1dabad4cbd5d42f0f28280d6cbd88ccfe7239a2d8092
Description: Full version of standard GNU stty utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sum
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16147
Filename: coreutils-sum_8.23-1_ramips_24kec.ipk
Size: 16901
MD5Sum: 76b228992324f3b334e431b9531a8ab4
SHA256sum: 14586c87b180c71a4c31b4235cc547366e0ee45f47e1311c728ae07a42ecf36a
Description: Full version of standard GNU sum utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-sync
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11333
Filename: coreutils-sync_8.23-1_ramips_24kec.ipk
Size: 12110
MD5Sum: 32e0edb08f5ed4627e403d3bc3a83d46
SHA256sum: 9b2098f8f060cb4a35f29564f39bc54833afd813d03ceb4dc4a8662b4a7da1d3
Description: Full version of standard GNU sync utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tac
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42755
Filename: coreutils-tac_8.23-1_ramips_24kec.ipk
Size: 43573
MD5Sum: 618705918b9397d93d7f82808d041898
SHA256sum: 2ca75d942d57a0c6c7e3c0754ba66e22011451bb2c8bbf39129f91d17a3d42a8
Description: Full version of standard GNU tac utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tail
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28751
Filename: coreutils-tail_8.23-1_ramips_24kec.ipk
Size: 29550
MD5Sum: 43427270383a4670400cda90f0a6e288
SHA256sum: f37f84f6273f9caa94320af7dfb12dceef59a2544f48624b8c0420ae82cfed3b
Description: Full version of standard GNU tail utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tee
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12435
Filename: coreutils-tee_8.23-1_ramips_24kec.ipk
Size: 13229
MD5Sum: e8cf826c8d9054cec6afab68ec537900
SHA256sum: dbf688192ca38dfc74ad89063c67e33b61dce8e9a4ed35eb2a9a3c2f2855654d
Description: Full version of standard GNU tee utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-test
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12907
Filename: coreutils-test_8.23-1_ramips_24kec.ipk
Size: 13702
MD5Sum: c192f5691fb4de426b8bd30468434833
SHA256sum: 71076d5c757fc6b0a151fb8d448b3f107b7d770d4d81dea5dc241c9e0e321fe2
Description: Full version of standard GNU test utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-timeout
Version: 8.23-1
Depends: libc, coreutils, librt
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21473
Filename: coreutils-timeout_8.23-1_ramips_24kec.ipk
Size: 22095
MD5Sum: 9316e00a95c2089cc707fb34a6ab2df1
SHA256sum: 4ce7ff9ab4d54c1940c59b395cc235751799d295c125cce05cd4d478883a2663
Description: Full version of standard GNU timeout utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-touch
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26653
Filename: coreutils-touch_8.23-1_ramips_24kec.ipk
Size: 27325
MD5Sum: 65d0da89a892f66f25c55eddb71c9ac6
SHA256sum: 1cc8ba1ab291f1fa8418f41e0c2eec504cbfa8d5968d98430b94f45d02889596
Description: Full version of standard GNU touch utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tr
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19281
Filename: coreutils-tr_8.23-1_ramips_24kec.ipk
Size: 20034
MD5Sum: 735f31b8e7cb35355d0206d2213b8733
SHA256sum: a2b7582e8498723ef905c8748a17268d4b0e6fdd60a7f1c52973f9cb39005722
Description: Full version of standard GNU tr utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-true
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9171
Filename: coreutils-true_8.23-1_ramips_24kec.ipk
Size: 9949
MD5Sum: 0292970100f0e9d3d88a3ffc03a03028
SHA256sum: 970137214c4175f8412861f09633107103340ff028c002b26a9be07c653fbfce
Description: Full version of standard GNU true utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-truncate
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19261
Filename: coreutils-truncate_8.23-1_ramips_24kec.ipk
Size: 20008
MD5Sum: 2384199ed5218b2742f83c12036437f6
SHA256sum: 5dae8a52ea7b99afc5ed50483cc7af75199f6c7a5ac35d258dc1a51bc35fe778
Description: Full version of standard GNU truncate utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tsort
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13844
Filename: coreutils-tsort_8.23-1_ramips_24kec.ipk
Size: 14643
MD5Sum: bcd79d25bd1117f6041a762882554ac5
SHA256sum: 19face7750e2b50816cfa28027e438a83e2845ba705a977d96e4607e7c7db708
Description: Full version of standard GNU tsort utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-tty
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11433
Filename: coreutils-tty_8.23-1_ramips_24kec.ipk
Size: 12222
MD5Sum: 5d9d8e165629cb80e7b4229a8c4936fa
SHA256sum: fb3030ea35f0e450acccea5f86622d2d591f9ec0bec1a083dc52cf4670dfdec5
Description: Full version of standard GNU tty utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-uname
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12069
Filename: coreutils-uname_8.23-1_ramips_24kec.ipk
Size: 12872
MD5Sum: 4a61e8a89b5b98fef1a06bf9054b8d80
SHA256sum: 59df5466f2e7f9df21dc440cfe5426e98e8e3835bb06c09f0ca9b27a6081e5ac
Description: Full version of standard GNU uname utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-unexpand
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13736
Filename: coreutils-unexpand_8.23-1_ramips_24kec.ipk
Size: 14541
MD5Sum: ed7df82ca8cadcddb916fbe210fdb1fc
SHA256sum: 2a601986baac5220a0ebf68192b392f27d44fff741ae26c1742d5b8301de95b7
Description: Full version of standard GNU unexpand utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-uniq
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16699
Filename: coreutils-uniq_8.23-1_ramips_24kec.ipk
Size: 17520
MD5Sum: 8e99ad5b5656372d9215a626b1913052
SHA256sum: bc8d95e5aa461ce9f4e9282018859c2ed8bb1344e4852cd15a67285df67440e8
Description: Full version of standard GNU uniq utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-unlink
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11420
Filename: coreutils-unlink_8.23-1_ramips_24kec.ipk
Size: 12204
MD5Sum: be213aa5c98d145801bec532d62b9179
SHA256sum: 105dd81d663a3dbb9e9c9ff51984896ef651d814791ff3cfc85dbab5811346da
Description: Full version of standard GNU unlink utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-uptime
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18508
Filename: coreutils-uptime_8.23-1_ramips_24kec.ipk
Size: 19330
MD5Sum: b11d7f807d5d51c75c4f09108477c99a
SHA256sum: 7dd9d788ad37d8d8da43c5230da3967f666fa1f63351149d264d5cbc4cf12599
Description: Full version of standard GNU uptime utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-users
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12158
Filename: coreutils-users_8.23-1_ramips_24kec.ipk
Size: 12953
MD5Sum: 41ad21baa78716d5d5b257bd902787b1
SHA256sum: fc370d9d15e4d18d74e42358cb73aa5a4d285da612d29dadc6f3a412575641dd
Description: Full version of standard GNU users utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-vdir
Version: 8.23-1
Depends: libc, coreutils, libacl
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52133
Filename: coreutils-vdir_8.23-1_ramips_24kec.ipk
Size: 52924
MD5Sum: b17139fd2bf597fa980d9401eb2800a8
SHA256sum: ff34b581e98276b926f060cdb2d0a7c6b26735073460dc6a4aec40aa2fd90765
Description: Full version of standard GNU vdir utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-wc
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17372
Filename: coreutils-wc_8.23-1_ramips_24kec.ipk
Size: 18126
MD5Sum: ae93200962e6b0afc5fe23259c25c768
SHA256sum: 49b89d523e19098764a0213ec84dbecc653b87a8b97b39f08fb22fd5d71f1b13
Description: Full version of standard GNU wc utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-who
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21559
Filename: coreutils-who_8.23-1_ramips_24kec.ipk
Size: 22275
MD5Sum: eaeea5d9bb6a43b2d5a0b31436f4f87e
SHA256sum: 65eb0e5acd34b1f2ffb6c30f705edcf8a08e2edb033a3c4b46e5e5efe0ef9485
Description: Full version of standard GNU who utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-whoami
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11503
Filename: coreutils-whoami_8.23-1_ramips_24kec.ipk
Size: 12294
MD5Sum: 5f55ee76a2f3969be61215c46a133413
SHA256sum: d46fac3e918b7a7e65f7556bbf7e57ee2d65198b0b20c3525cc701f1c0e544b3
Description: Full version of standard GNU whoami utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils-yes
Version: 8.23-1
Depends: libc, coreutils
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11521
Filename: coreutils-yes_8.23-1_ramips_24kec.ipk
Size: 12304
MD5Sum: 110cfde96b53e1cd953b7db3aacb1667
SHA256sum: 55a1a461090a2c1140410d326f39f5dd03a87b6746e9e4f81cfc203a99a99c6f
Description: Full version of standard GNU yes utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: coreutils
Version: 8.23-1
Depends: libc
Source: feeds/packages/utils/coreutils
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: coreutils_8.23-1_ramips_24kec.ipk
Size: 886
MD5Sum: 8f00584a0aa5c429ae717b2e22349e12
SHA256sum: d557dfd35914a5111074c27b7fc0ed5f646c28756b126c4cc894b13fc1ff6342
Description: Full versions of standard GNU utilities. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient and
smaller.
Package: crtmpserver
Version: r811-1
Depends: libc, libopenssl, libstdcpp, liblua
Source: feeds/packages/multimedia/crtmpserver
License: GPL-3.0
Section: multimedia
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1143056
Filename: crtmpserver_r811-1_ramips_24kec.ipk
Size: 1142401
MD5Sum: 5ff9348a1ea0878a73406bc87cba37fb
SHA256sum: 4edd747a6c6f2cd39bdbb157c45072fcb190b3f05492caa76fb1ff8f2163fde4
Description: C++ RTMP Server it is a high performance streaming server able to
stream (live or recorded) in the following technologies:
* To and from Flash (RTMP,RTMPE, RTMPS, RTMPT, RTMPTE)
* To and from embedded devices: iPhone, Android
* From surveillance cameras
* IP-TV using MPEG-TS and RTSP/RTCP/RTP protocols
Also, crtmpserver can be used as a high performance rendes-vous
server. For example, it enables you to do:
* Audio/Video conferencing
* Online gaming
* Online collaboration
* Simple/complex chat applications
Package: cryptsetup-openssl
Version: 1.6.6-1
Depends: libc, libblkid, libuuid, libpopt, lvm2, libdevmapper, libopenssl
Source: feeds/packages/utils/cryptsetup
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING COPYING.LGPL
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 81812
Filename: cryptsetup-openssl_1.6.6-1_ramips_24kec.ipk
Size: 82566
MD5Sum: ca529da75e852fd708cb7154140fa5f1
SHA256sum: 4f04574a09f8dea638ff8747bbb490d027955b013ee41bec9ecc52021034eb55
Description: Cryptsetup-luks
linked against openssl
Package: cryptsetup
Version: 1.6.6-1
Depends: libc, libblkid, libuuid, libpopt, lvm2, libdevmapper, libgcrypt
Source: feeds/packages/utils/cryptsetup
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING COPYING.LGPL
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82061
Filename: cryptsetup_1.6.6-1_ramips_24kec.ipk
Size: 82786
MD5Sum: cf844d5426232d3d2be49d27fa724134
SHA256sum: 4a6d2630320def5bb1bab05365943d8ded1080e57f31ad26c68cbd1c89b61f1a
Description: Cryptsetup-luks
linked against libgcrypt
Package: cshark
Version: 2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b
Depends: libc, libjson-c, libpcap, libuci, libubox, libuclient, libustream-polarssl
Source: feeds/packages/net/cshark
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8868
Filename: cshark_2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b_ramips_24kec.ipk
Size: 9659
MD5Sum: 9da261ee4d71ad6a428dcda2eb740942
SHA256sum: 34a8e9f13eaa2620a6107d31080e1a9f38f5d301072c9db247a9bddfe07473c8
Description: CloudShark capture tool
Package: ctorrent-nossl
Version: dnh3.3.2-6
Depends: libc, uclibcxx
Source: feeds/packages/net/ctorrent
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86608
Filename: ctorrent-nossl_dnh3.3.2-6_ramips_24kec.ipk
Size: 87410
MD5Sum: 73a55f4dbc462512c42948b583c5c619
SHA256sum: 6b370b729a7affeff1c6727c9a08cb21d9d78e66ce6d9f6b5f17890b6acd664b
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with builtin (Steve Reid's public-domain) SHA-1 support
Package: ctorrent-svn-nossl
Version: r322-1
Depends: libc, uclibcxx
Source: feeds/packages/net/ctorrent-svn
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 113921
Filename: ctorrent-svn-nossl_r322-1_ramips_24kec.ipk
Size: 114480
MD5Sum: 9914deb96a9bdc2ba07f59248bab557c
SHA256sum: b544872ce06ff0f6b0c9a08f3bedfa3af710759dd1c5e3a9b9b2ebcd98b7bffb
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with builtin (Steve Reid's public-domain) SHA-1 support
Package: ctorrent-svn
Version: r322-1
Depends: libc, uclibcxx, libopenssl
Source: feeds/packages/net/ctorrent-svn
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 111232
Filename: ctorrent-svn_r322-1_ramips_24kec.ipk
Size: 111574
MD5Sum: 8cf308dfede31cc618c06349a064d591
SHA256sum: 333eaff276b6a0ebfd9f06ad290f69724d7ea46b045aac690320f1a72f5ce918
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with OpenSSL support.
Package: ctorrent
Version: dnh3.3.2-6
Depends: libc, uclibcxx, libopenssl
Source: feeds/packages/net/ctorrent
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86734
Filename: ctorrent_dnh3.3.2-6_ramips_24kec.ipk
Size: 87557
MD5Sum: 3facef461dddbdd54a0da4c464dd6076
SHA256sum: 4d016656a488c854f0ca734581632237751fb12f8d1bce8c09e972a189265736
Description: CTorrent is a BitTorrent client written in the C programming language,
known to be a very robust and mature programming language, which produces
fast and optimized application.
This package is built with OpenSSL support.
Package: dansguardian
Version: 2.12.0.3-1
Depends: libc, libpthread, uclibcxx, zlib
Source: feeds/packages/net/dansguardian
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 285351
Filename: dansguardian_2.12.0.3-1_ramips_24kec.ipk
Size: 285523
MD5Sum: 1aeaa22191a42778437e4a2de5ed04b3
SHA256sum: a311ea77c6ac1383c531569f092a89adc26d1a610299e9444606f0efc8a077b0
Description: DansGuardian
Package: davfs2
Version: 1.5.2-1
Depends: libc, libopenssl, libneon, libiconv, libintl, libexpat, kmod-fuse, libfuse
Source: feeds/packages/net/davfs2
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45760
Filename: davfs2_1.5.2-1_ramips_24kec.ipk
Size: 46689
MD5Sum: cd5f410b96b1ab6ea44c9304359524bd
SHA256sum: 5f1310cf6356e94afd4e5dd6e10bf8502e7ed9d10b4fa9135c85f86e9525cb9f
Description: Web Distributed Authoring and Versioning (WebDAV), an extension to the HTTP-protocol,
allows authoring of resources on a remote web server.davfs2 provides the ability to
access such resources like a typical filesystem, allowing for use by standard
applications with no built-in support for WebDAV.
davfs2 is designed to fully integrate into the filesystem semantics of Unix-like
systems (mount, umount, etc.). davfs2 makes mounting by unprivileged users as easy
and secure as possible.
davfs2 does extensive caching to make the file system responsive, to avoid
unnecessary network traffic and to prevent data loss, and to cope for slow or
unreliable connections.
davfs2 will work with most WebDAV servers needing little or no configuration.
Package: dbus-utils
Version: 1.9.10-1
Depends: libc, dbus
Source: feeds/packages/utils/dbus
License: AFL-2.1
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13931
Filename: dbus-utils_1.9.10-1_ramips_24kec.ipk
Size: 14520
MD5Sum: ca8b7a1a0c8cdaaab5044b67b9c29cc3
SHA256sum: eacdc1ea44b67eb6e5ad94efc41145d340142c0226e33ef58100c86b701bdda4
Description: Simple interprocess messaging system (utilities)
Package: dbus
Version: 1.9.10-1
Depends: libc, libexpat, libdbus
Source: feeds/packages/utils/dbus
License: AFL-2.1
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 282576
Filename: dbus_1.9.10-1_ramips_24kec.ipk
Size: 283229
MD5Sum: 9409070b2944bd18476722ca5a410cc1
SHA256sum: 7465924af27d191ade2b7b8291d45ee6a602b242ae15cd7a6e9fc9e5c3253503
Description: Simple interprocess messaging system (daemon)
Package: ddns-scripts
Version: 2.4.0-1
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 10139
Filename: ddns-scripts_2.4.0-1_all.ipk
Size: 11259
MD5Sum: 8422e9f12a46789f1c90e0ef5ab0ae8f
SHA256sum: 079212d7127a257bf7f130f02a58f22b5b899bcfd777aae83a83b6c3fb888caf
Description: Dynamic DNS Client scripts (with IPv6 support) - Info: http://wiki.openwrt.org/doc/howto/ddns.client
Package: ddns-scripts_cloudflare
Version: 2.4.0-1
Depends: ddns-scripts
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 33177
Filename: ddns-scripts_cloudflare_2.4.0-1_all.ipk
Size: 34122
MD5Sum: 8e4a6e3213fc141ec3e5f220aa371b47
SHA256sum: 7fcfd6dbe76ed9b4ed0c33df102bb620881b9363525b2d1ef08b7b9f0be19218
Description: Dynamic DNS Client scripts extension for CloudFlare
Package: ddns-scripts_no-ip_com
Version: 2.4.0-1
Depends: ddns-scripts
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 759
Filename: ddns-scripts_no-ip_com_2.4.0-1_all.ipk
Size: 1646
MD5Sum: f3d51a4cbf172444990e2e34ef656794
SHA256sum: 9dd4b2d1c60b2f84f64fd1088816ebca67bbf846852371a8737c2c05c7448188
Description: Dynamic DNS Client scripts extension for No-IP.com
Package: ddns-scripts_nsupdate
Version: 2.4.0-1
Depends: ddns-scripts, bind-client
Source: feeds/packages/net/ddns-scripts
License: GPL-2.0
Section: net
Maintainer: Christian Schoenebeck <[email protected]>
Architecture: all
Installed-Size: 731
Filename: ddns-scripts_nsupdate_2.4.0-1_all.ipk
Size: 1635
MD5Sum: 928fadd0457e737d1373bed7927bdf0e
SHA256sum: ac0647d31e56740a54f734bcdb4fdb704d0883037b5511edf7646a93109635a8
Description: Dynamic DNS Client scripts extension for direct updates using Bind nsupdate
Package: debootstrap
Version: 1.0.66-1
Depends: libc, coreutils, coreutils-chroot, coreutils-sha1sum, ar
Source: feeds/packages/admin/debootstrap
License: Unique
LicenseFiles: debian/copyright
Section: admin
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26571
Filename: debootstrap_1.0.66-1_ramips_24kec.ipk
Size: 26772
MD5Sum: 881defd30cd183bb6798782362455ec0
SHA256sum: cbd9d5a746234414857a85552b761311958933fdbac2ab098fb2b39ac61f9df2
Description: debootstrap is used to create a Debian base system from scratch, without
requiring the availability of dpkg or apt. It does this by downloading .deb
files from a mirror site, and carefully unpacking them into a directory which
can eventually be chrooted into.
Package: dhcpcd
Version: 6.4.3-1
Depends: libc
Source: feeds/packages/net/dhcpcd
License: BSD-2c
Section: net
Maintainer: Roy Marples <[email protected]>
Architecture: ramips_24kec
Installed-Size: 97270
Filename: dhcpcd_6.4.3-1_ramips_24kec.ipk
Size: 98082
MD5Sum: 8488b03de3f5c554777636fe4d61481d
SHA256sum: 8390fb42cfff4917123d1d1cd44bce886fdcd1fdd4d839e53f83c6811faed19d
Description: DHCPv4, IPv6RS and DHCPv6 client with IPv4LL support
dhcpcd is a one stop network management daemon which includes
* RFC compliant DHCPv4 and DHCPv6 clients
* DHCPv6 Prefix Delegation support
* IPv4LL (aka ZeroConf) support
* ARP address conflict resolution
* Link carrier detection
* Wireless SSID profiles
* ARP ping profiles
Package: diffutils
Version: 3.3-1
Depends: libc
Source: feeds/packages/devel/diffutils
License: GPL-3.0
Section: devel
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 139092
Filename: diffutils_3.3-1_ramips_24kec.ipk
Size: 139493
MD5Sum: 097bd84fbf8b888c95c68016ec73894d
SHA256sum: bafa0fb53f2fa49f74cebe55369d5afbabad092ce5a9f86a727fe1462057607c
Description: The Diffutils package contains programs that show the differences between
files or directories.
Package: dkjson
Version: 2.5-2
Depends: libc, lua
Source: feeds/packages/lang/dkjson
License: MIT
Section: lang
Maintainer: Lars Gierth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6685
Filename: dkjson_2.5-2_ramips_24kec.ipk
Size: 7472
MD5Sum: 7ef6955966e434db5db5c523934bde8b
SHA256sum: b7415408c9453caa0e058c00851b6bd955a8fac020682c126dab912a0f3b410b
Description: Lua JSON parser/serializer with UTF-8 support
Package: dmapd
Version: 0.0.70-1
Depends: libc, libdmapsharing, libdb47, vips
Source: feeds/packages/net/dmapd
License: GPLv2
LicenseFiles: COPYING
Section: net
Require-User: dmapd=56:dmapd=56
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47331
Filename: dmapd_0.0.70-1_ramips_24kec.ipk
Size: 48159
MD5Sum: 90dce8c99f5f8dcbb5608f10fb4baa16
SHA256sum: ab3d1371d662b4e613c2f1ba9915772d57078ff0cab8cf52f7f9bfff954af3f0
Description: dmapd
Package: dnscrypt-proxy
Version: 1.4.3-1
Depends: libc, libsodium
Source: feeds/packages/net/dnscrypt-proxy
License: ISC
Section: net
Maintainer: Damiano Renfer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58130
Filename: dnscrypt-proxy_1.4.3-1_ramips_24kec.ipk
Size: 58989
MD5Sum: 045f0da579418b8a2fe08ec913c92519
SHA256sum: 35a4b58c61266bf5eb7d820bb8176e8038dfd016fce5e224ddc9d7b2ee583838
Description: dnscrypt-proxy provides local service which can be used directly as your
local resolver or as a DNS forwarder, encrypting and authenticating requests
using the DNSCrypt protocol and passing them to an upstream server.
The DNSCrypt protocol uses high-speed high-security elliptic-curve cryptography
and is very similar to DNSCurve, but focuses on securing communications between
a client and its first-level resolver.
Package: dosfsck
Version: 3.0.27-1
Depends: libc
Source: feeds/packages/utils/dosfstools
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: David Bonnes <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25369
Filename: dosfsck_3.0.27-1_ramips_24kec.ipk
Size: 26140
MD5Sum: 16ed191cafe8939500ceaac9ab693190
SHA256sum: 353c6fc4e38f93dbbc5d5d964bda8e612646243947036830b5d214c39c91ae20
Description: Utilities to create and check MS-DOS FAT filesystems.
(fsck.vfat and fsck.fat for checking integrity of FAT volumes)
Package: dosfslabel
Version: 3.0.27-1
Depends: libc
Source: feeds/packages/utils/dosfstools
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: David Bonnes <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24115
Filename: dosfslabel_3.0.27-1_ramips_24kec.ipk
Size: 24842
MD5Sum: c9fa36499fee00cb339a5bbc703f982a
SHA256sum: c95c3780376857d13519b0404825dc71e7c4eb0899656d731b0a88c48c8c5cb7
Description: Utilities to create and check MS-DOS FAT filesystems.
(fatlabel for reading and writing labels of FAT volumes)
Package: dovecot
Version: 2.2.15-1
Depends: libc, libopenssl, librt, zlib, libbz2, libcap
Source: feeds/packages/mail/dovecot
License: LGPL-2.1 MIT BSD-3-Clause Unique
LicenseFiles: COPYING COPYING.LGPL COPYING.MIT
Section: mail
Require-User: dovecot=59:dovecot=59
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1944151
Filename: dovecot_2.2.15-1_ramips_24kec.ipk
Size: 1935196
MD5Sum: 0bfff4c97bc42f05e902f1aef1ee51ab
SHA256sum: a6c202325b7caf3f69dad103e133918c690d32a1ab56b71059cadd734ca4cc69
Description: Dovecot is a program which provides POP3 and IMAP services.
Package: dtndht
Version: 0.2.3-1
Depends: libc, libopenssl
Source: feeds/packages/libs/dtndht
License: Apache-2.0
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26731
Filename: dtndht_0.2.3-1_ramips_24kec.ipk
Size: 27417
MD5Sum: d7d7f560965aaf1b7662329b63b11716
SHA256sum: 09da9f8fbf03278dcc1e78c4459d8c010d255bf9bcfc36b679623a082d746724
Description: A library with DHT functions for DTN name lookups.
Package: dump1090
Version: 2014-11-09
Depends: libc, libpthread, librtlsdr
Source: feeds/packages/utils/dump1090
License: BSD-3c
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54045
Filename: dump1090_2014-11-09_ramips_24kec.ipk
Size: 54800
MD5Sum: 537779319864745c7ef3d6c657dda344
SHA256sum: ff9024d0f8c146f4e812116d15c568d96df49d1d6ab64e7c6d81069fd3f39bc4
Description: Dump1090 is a Mode S decoder specifically designed for RTLSDR devices.
Embedded HTTP server that displays the currently detected aircrafts on
Google Maps. Network output in Basestation and AVR formats.
Package: e2guardian
Version: 3.0.4-1
Depends: libc, libpthread, uclibcxx, zlib, libpcre
Source: feeds/packages/net/e2guardian
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 300872
Filename: e2guardian_3.0.4-1_ramips_24kec.ipk
Size: 300969
MD5Sum: 5c879803324a9230ba90ebfb7eb4364e
SHA256sum: 7b8e05d55195164dcd99460425e633d3d81a61c545ee91c4788577ea1ee0a46e
Description: E2Guardian
Package: emailrelay-nossl
Version: 1.9-1
Depends: libc, uclibcxx
Source: feeds/packages/net/emailrelay
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 350062
Filename: emailrelay-nossl_1.9-1_ramips_24kec.ipk
Size: 350192
MD5Sum: 8430054e009968b8224d4d46241c38f8
SHA256sum: 6eb58d80acbc6d77e68986efd106fcc1665865b333f8eefb1400f177c41cc2b8
Description: Emailrelay is a simple SMTP proxy and store-and-forward message transfer agent (MTA).
When running as a proxy all e-mail messages can be passed through
a user-defined program, such as a spam filter, which can drop,
re-address or edit messages as they pass through. When running
as a store-and-forward MTA incoming messages are stored in a
local spool directory, and then forwarded to the next SMTP
server on request.
This package is built without SSL support (no SSMTP)
Package: emailrelay
Version: 1.9-1
Depends: libc, uclibcxx, libopenssl
Source: feeds/packages/net/emailrelay
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 354082
Filename: emailrelay_1.9-1_ramips_24kec.ipk
Size: 354470
MD5Sum: cfbd8567addf63d7be6b5c8db062a4a9
SHA256sum: fb977b7cfc2f2c59e8008fd643b5a4a0ee1abbc9633b15d3583d0b7dca905125
Description: Emailrelay is a simple SMTP proxy and store-and-forward message transfer agent (MTA).
When running as a proxy all e-mail messages can be passed through
a user-defined program, such as a spam filter, which can drop,
re-address or edit messages as they pass through. When running
as a store-and-forward MTA incoming messages are stored in a
local spool directory, and then forwarded to the next SMTP
server on request.
This package is built with OpenSSL support (SSMTP is supported).
Package: engine_pkcs11
Version: 20131021-5abdc7e0d6d519d2514e3eccc116b335bc427254
Depends: libc, libopenssl, libp11
Source: feeds/packages/libs/engine_pkcs11
License: LGPL-2.1+
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6800
Filename: engine_pkcs11_20131021-5abdc7e0d6d519d2514e3eccc116b335bc427254_ramips_24kec.ipk
Size: 7626
MD5Sum: a41be2f90e9295af882c8f8293b0ba78
SHA256sum: 6efdc47ade0a3abf0d47a86f384c126ee2340ac612d18f34817e1d8f37a58965
Description: engine_pkcs11 is an implementation of OpenSSL engine interface.
Package: erlang-asn1
Version: 3.0.1
Depends: libc, erlang, erlang-syntax-tools
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 845190
Filename: erlang-asn1_3.0.1_ramips_24kec.ipk
Size: 846098
MD5Sum: 56f6e73e6c9c30ff79e6986299aca1fe
SHA256sum: 3e5fbf81841116da557203b7239b3df19b9230134fbce5ff96279356ddad1c2f
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides Abstract Syntax Notation One (ASN.1)
support.
Package: erlang-compiler
Version: 5.0.1
Depends: libc, erlang, erlang-hipe
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1206048
Filename: erlang-compiler_5.0.1_ramips_24kec.ipk
Size: 1205933
MD5Sum: 03937d029243af94a1bff324b0cc0064
SHA256sum: e248889cfab81118f4c81ab9b9dca2f3e72d6e34c4cb06669c02fadb57749119
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides a byte code compiler for Erlang which
produces highly compact code.
Package: erlang-crypto
Version: 3.4
Depends: libc, erlang, libopenssl
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 104621
Filename: erlang-crypto_3.4_ramips_24kec.ipk
Size: 105526
MD5Sum: 40650915da004160fcc61f2980541193
SHA256sum: 8f4b3bd55bbeba0a2389e27540d5783911c8592001669558cb09697b34f8d2c5
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides functions for computation of message
digests, and encryption and decryption functions.
Package: erlang-hipe
Version: 3.11
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1407236
Filename: erlang-hipe_3.11_ramips_24kec.ipk
Size: 1407750
MD5Sum: 58254895d56c252c37bd509415e4fd95
SHA256sum: 11f16368b8c8f40b3483b6790c755c7bc1e105950fafe03e6ca22aedc2875e2c
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides HiPE (High Performance Erlang)
support.
Package: erlang-inets
Version: 5.10.2
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 838244
Filename: erlang-inets_5.10.2_ramips_24kec.ipk
Size: 839372
MD5Sum: 1c6031c1e9ae6101bdda6fea95d621df
SHA256sum: 2079a9f9c61aa410e6a9357071eca91fc4627f67bf1d1af425fce2ac1211dd17
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides a container for Internet clients and
servers. Currently a FTP client, a HTTP client and server, and a tftp
client and server have been incorporated in Inets.
Package: erlang-mnesia
Version: 4.12.1
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 738888
Filename: erlang-mnesia_4.12.1_ramips_24kec.ipk
Size: 740002
MD5Sum: a72f56f1b299817b017a9a1f5fdc9821
SHA256sum: 9f0258972ab58f97c9a32abadb23bc7b5489d4c364a3e751912793ec20fe7234
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides a distributed DataBase Management
System (DBMS), appropriate for telecommunications applications and
other Erlang applications which require continuous operation and
exhibit soft real-time properties.
Package: erlang-runtime-tools
Version: 1.8.14
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 163491
Filename: erlang-runtime-tools_1.8.14_ramips_24kec.ipk
Size: 164581
MD5Sum: 9af82aa79265abc094caeb8d45406ea6
SHA256sum: 61ef0a281b4439a928b5f546601991ce3aa00a7a21002428f5db893cc9464cc7
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides low footprint tracing/debugging tools
suitable for inclusion in a production system.
Package: erlang-snmp
Version: 4.25.1
Depends: libc, erlang, erlang-asn1
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1756152
Filename: erlang-snmp_4.25.1_ramips_24kec.ipk
Size: 1756776
MD5Sum: de3a5b5d3e787e3bb76b7f8ab828cbba
SHA256sum: 809654248eeb891bacf9790cca692fd6dba21a7d2e59a39678844eb839c22377
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides Simple Network Management Protocol
(SNMP) support including a MIB compiler and tools for creating SNMP
agents.
Package: erlang-ssh
Version: 3.0.3
Depends: libc, erlang, erlang-crypto
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 423019
Filename: erlang-ssh_3.0.3_ramips_24kec.ipk
Size: 424066
MD5Sum: 9c50373e4b42f09c9895dabe845a1c42
SHA256sum: 00dc1c95a30bf9fb7e7e45834acdac8dbea62da1728857afca08acee27739457
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides an implementation of the Secure Shell
protocol, with SSH & SFTP support.
Package: erlang-ssl
Version: 5.3.5
Depends: libc, erlang, erlang-crypto
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 626253
Filename: erlang-ssl_5.3.5_ramips_24kec.ipk
Size: 627350
MD5Sum: 74657a2f45e17e23cc6da02cad79e78f
SHA256sum: 03cf7ce85519b6fc3de740ebd0c96653dc95527db700fdf10f3d4e0ad69119aa
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides support for secure communication over
sockets.
Package: erlang-syntax-tools
Version: 1.6.15
Depends: libc, erlang
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 327464
Filename: erlang-syntax-tools_1.6.15_ramips_24kec.ipk
Size: 328479
MD5Sum: d5b4d92dbadbe63ac77df8a10f3bbd38
SHA256sum: db187644935fa5cc63f1db0cd3b1d249b92e6172256df326ea32637d1112bead
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This Erlang/OTP package provides support for handling abstract Erlang
syntax trees.
Package: erlang
Version: 17.4-1
Depends: libc, libncurses, librt, zlib
Provides: erlang-erts=6.1 erlang-kernel=3.0.1 erlang-sasl=2.4 erlang-stdlib=2.1
Source: feeds/packages/lang/erlang
License: ErlPL-1.1
LicenseFiles: EPLICENCE
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4895880
Filename: erlang_17.4-1_ramips_24kec.ipk
Size: 4894118
MD5Sum: d6c99537bfc3f04e500811577dcfd540
SHA256sum: 2a33bae0b341923962535584f91627b82c560109636e114067524c68bdd282d5
Description: Erlang/OTP is a general-purpose programming language and runtime
environment. Erlang has built-in support for concurrency, distribution
and fault tolerance.
.
This package contains the runtime implementation and a minimal set of
modules (erts, kernel, sasl & stdlib).
Package: espeak
Version: 1.48.04-1
Depends: libc, libpthread, libstdcpp, portaudio
Source: feeds/packages/sound/espeak
License: GPL-3.0
LicenseFiles: License.txt
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1230126
Filename: espeak_1.48.04-1_ramips_24kec.ipk
Size: 1230276
MD5Sum: 6d884814d4c379d95513747eefead389
SHA256sum: 33dc3d153cc58c7d0a41e516f2182c3a9c9bb24f336398643d33013a0821a3f2
Description: eSpeak is a compact open source software speech synthesizer for English and
other languages.
Package: etherwake
Version: 1.09-3
Depends: libc
Source: feeds/packages/net/etherwake
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5165
Filename: etherwake_1.09-3_ramips_24kec.ipk
Size: 6075
MD5Sum: c9042f2df041575126886ce3c5e55c9e
SHA256sum: 4d2c018c26bc0babffb3b63cf8558675c780ef205915c8872caa739536b04d04
Description: You can wake up WOL compliant Computers which have been powered down to
sleep mode or start WOL compliant Computers with a BIOS feature.
WOL is an abbreviation for Wake-on-LAN. It is a standard that allows you
to turn on a computer from another location over a network connection.
ether-wake also supports WOL passwords.
Package: ethtool
Version: 3.18-1
Depends: libc
Source: feeds/packages/net/ethtool
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Matthias Schiffer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 79333
Filename: ethtool_3.18-1_ramips_24kec.ipk
Size: 79901
MD5Sum: 72ccc3e451b7af08188a467285d7c9d4
SHA256sum: 4dbfac14907908fa63c7d337efa27c4f5522211c8d5fe324096667200a4444dc
Description: ethtool is a small utility for examining and tuning your ethernet-based
network interface
Package: f2fs-tools
Version: 1.4.0-1
Depends: libc, libuuid, libf2fs
Source: feeds/packages/utils/f2fs-tools
License: GPLv2
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31677
Filename: f2fs-tools_1.4.0-1_ramips_24kec.ipk
Size: 32390
MD5Sum: 380cb9b1dd24369d5e4c9f836d80d9c9
SHA256sum: 1ca333ee691324d3d108e2afe5e8204adb34f098d125a0e7339b288e008ad04f
Description: Tools for Flash-Friendly File System (F2FS)
Package: faad2
Version: 2.7-3
Depends: libc, libfaad2
Source: feeds/packages/libs/faad2
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20901
Filename: faad2_2.7-3_ramips_24kec.ipk
Size: 21721
MD5Sum: c74760f8785712685986d3ff5d7bbac8
SHA256sum: dd44ae1efe5f6a406457bf93fec5036c8b49caae66a3191b62c860f654055f52
Description: FAAD2 is the fastest ISO AAC audio decoder available.
FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN,
LOW, LTP, LD and ER object type AAC files.
This package contains a binary to play AAC or MP4 files.
Package: fakeidentd
Version: 2.6-1
Depends: libc
Source: feeds/packages/net/fakeidentd
License: GPL-2.0+
Section: net
Maintainer: Daniel Gimpelevich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4660
Filename: fakeidentd_2.6-1_ramips_24kec.ipk
Size: 5390
MD5Sum: 62af5ac17bd33520e28bdeb10f9eedd9
SHA256sum: 7a0c9da9c042722347afbe312d988f6903fe7257f4e93c0f2678e705d98bb646
Description: A static secure identd, only one source file.
Package: fastd
Version: 17-1
Depends: libc, kmod-tun, librt, libpthread, libjson-c
Source: feeds/packages/net/fastd
License: BSD-2-Clause
LicenseFiles: COPYRIGHT
Section: net
Maintainer: Matthias Schiffer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57081
Filename: fastd_17-1_ramips_24kec.ipk
Size: 57898
MD5Sum: b79a69ccb3a5499aaa16eb29f6360d85
SHA256sum: de00994a13e5d38da20f1d2683caf47dfd5deb980b12caf0bd59a3215e849302
Description: Fast and secure tunneling daemon, which is optimized on small code size and few dependencies
Package: fcgi
Version: 2.4.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/fcgi
Section: libs
Maintainer: Jacob Siverskog <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19619
Filename: fcgi_2.4.0-1_ramips_24kec.ipk
Size: 20433
MD5Sum: ad642917d567b6ebecbb7edc17ffb59a
SHA256sum: e73526e6a8822f9729583a96fe662c22ea9f8c81873923a544977cf5b9e03969
Description: FastCGI is a language independent, scalable, open extension to
CGI that provides high performance without the limitations of
server specific APIs.
Package: fcgixx
Version: 2.4.0-1
Depends: libc, fcgi, uclibcxx
Source: feeds/packages/libs/fcgi
Section: libs
Maintainer: Jacob Siverskog <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5788
Filename: fcgixx_2.4.0-1_ramips_24kec.ipk
Size: 6532
MD5Sum: 4f7a9916897d789d2e4265180d1a4d0a
SHA256sum: b6eca7a51fe9f21fb2b8392e3a4f09c88ff2baf5bb9da26ce6602a076018d3b4
Description: Shared library of FastCGI++
Package: fdm
Version: 1.7-1
Depends: libc, tdb, zlib, libopenssl, libpcre
Source: feeds/packages/mail/fdm
License: BSD-2-Clause
Section: mail
Require-User: _fdm=99:_fdm=99
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89646
Filename: fdm_1.7-1_ramips_24kec.ipk
Size: 90690
MD5Sum: 27595ff7575b0f1ace7cf9e2cda100ec
SHA256sum: e840711c045a5d7617809d8273863fc8d85206fee440327374258133d97d4aa9
Description: fdm is a simple, lightweight replacement for mail fetch, filter
and delivery programs such as fetchmail and procmail. It can
fetch using POP3 or IMAP (with SSL) or from stdin, and deliver
to a pipe, file, maildir, mbox or SMTP server, based on PCRE
Package: ffmpeg
Version: 2.5.4-1
Depends: libc, libpthread, libffmpeg-full
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: multimedia
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84357
Filename: ffmpeg_2.5.4-1_ramips_24kec.ipk
Size: 85053
MD5Sum: e5192bba7d7b2d37e18cdc94d851cf64
SHA256sum: d7f91f6197ebf4f68cc24125770c4cbe0de51c607ed07cd003b8a413df9b3e7a
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains the FFmpeg command line tool.
Package: ffprobe
Version: 2.5.4-1
Depends: libc, libffmpeg-full
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: multimedia
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42381
Filename: ffprobe_2.5.4-1_ramips_24kec.ipk
Size: 43168
MD5Sum: ca44e2afc04e49d359a7b1ed4a5bce08
SHA256sum: 07c00213ccd245c3846a3a7986d1471b5b9ca8c1811b46608729c10aff7ebab2
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains the FFprobe command line tool.
Package: ffserver
Version: 2.5.4-1
Depends: libc, libpthread, libffmpeg-full
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: multimedia
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 51285
Filename: ffserver_2.5.4-1_ramips_24kec.ipk
Size: 52050
MD5Sum: 01ac8c98f6e50ac07b130f9ed9f62e31
SHA256sum: 72fc32d8feaacb99bb7b7071f1b4f08c3caeeeb43956fe38fbbbbaa6c424b464
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains the FFmpeg streaming server.
Package: file
Version: 5.20-1
Depends: libc, libmagic
Source: feeds/packages/libs/file
License: BSD-2c
LicenseFiles: COPYING
Section: utils
Architecture: ramips_24kec
Installed-Size: 122986
Filename: file_5.20-1_ramips_24kec.ipk
Size: 123828
MD5Sum: b2b6daed4238332561816415cafbf21a
SHA256sum: 9490c17b9ae2b70397fd68da55bc33201ecea7582a4c636be2986d38c70ade58
Description: utility
Package: flashrom
Version: 0.9.8-2
Depends: libc, libftdi, libusb-compat
Source: feeds/packages/utils/flashrom
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66773
Filename: flashrom_0.9.8-2_ramips_24kec.ipk
Size: 67423
MD5Sum: 253671d861be6183311ddb6b4a2bde98
SHA256sum: 73537c5381798f42aab4e40b2e7636767acc511cbf214d42a71fcb7e537676ee
Description: flashrom is an utility for identifying, reading, writing, verifying
and erasing flash chips. It's often used to flash BIOS/EFI/coreboot
/firmware images.
Package: forked-daapd
Version: 22.3-20150222
Depends: libc, libgpg-error, libgcrypt, libgdbm, zlib, libexpat, libunistring, libevent2, libdaemon, libantlr3c, confuse, glib2, alsa-lib, libffmpeg-full, mxml, libavahi-client, sqlite3-cli, libplist, libcurl
Source: feeds/packages/sound/forked-daapd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 176182
Filename: forked-daapd_22.3-20150222_ramips_24kec.ipk
Size: 176578
MD5Sum: f4905db15ccddca6d03cf7ceb315affc
SHA256sum: 543178fa305194e24eeb65bfc64675b45cbe1de9b2385fcda4ef1618e72fe6bd
Description: iTunes (DAAP) server for Apple Remote and AirPlay
Package: freeradius2-common
Version: 2.2.6-1
Depends: libc, libpthread, libopenssl
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93471
Filename: freeradius2-common_2.2.6-1_ramips_24kec.ipk
Size: 94158
MD5Sum: 6139cfec6dae6deb3b23ca9f82a3c1ac
SHA256sum: dd6aa92c74a62382482f84f1e9867a0c32c0e75e4b7aa8b30f41200097c7517e
Description: common files
Package: freeradius2-democerts
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9927
Filename: freeradius2-democerts_2.2.6-1_ramips_24kec.ipk
Size: 10723
MD5Sum: f68beb24ab5f86ea2a333582abe11871
SHA256sum: ea3220b8d04fe5a22997699a7de4001831e4024e2b1ca9818438db1936609ed2
Description: Demo certificates to test the server
Package: freeradius2-mod-always
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2692
Filename: freeradius2-mod-always_2.2.6-1_ramips_24kec.ipk
Size: 3473
MD5Sum: 773b75272575ffc7b8777cef448d4052
SHA256sum: f1237f416fca69c57319db7b9587e86f2574c1d203f11d053f8e5e68e1e7411d
Description: Always module
Package: freeradius2-mod-attr-filter
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6250
Filename: freeradius2-mod-attr-filter_2.2.6-1_ramips_24kec.ipk
Size: 7129
MD5Sum: 31c0e3b97cf381b60d6db087d584810b
SHA256sum: 8cf132db5b266a6ddff38865cd6fbd1348e3a46ef4266ed486f8b2593f507082
Description: ATTR filter module
Package: freeradius2-mod-attr-rewrite
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5367
Filename: freeradius2-mod-attr-rewrite_2.2.6-1_ramips_24kec.ipk
Size: 6172
MD5Sum: ec101a05632eb0fedd4598c799fe1ae0
SHA256sum: e7ffbef76fb6365e39928d83c7c7e71758c36cd1a2c108129e4aa675fca8d793
Description: ATTR rewrite module
Package: freeradius2-mod-chap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2912
Filename: freeradius2-mod-chap_2.2.6-1_ramips_24kec.ipk
Size: 3700
MD5Sum: c8d4bb3fca5330084136466e2e976ec4
SHA256sum: b158ec1c5f4479885d6388b4e1efd993cb0d6aab5fc4a10485010f5c781ec7ad
Description: CHAP module
Package: freeradius2-mod-detail
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6340
Filename: freeradius2-mod-detail_2.2.6-1_ramips_24kec.ipk
Size: 7172
MD5Sum: bb35234cae63fd65f5e91d42dc9e75cd
SHA256sum: 3bee760afb2010712675484d8c6f6e8a090262c097d739993737ee686373a25f
Description: Detailed accounting module
Package: freeradius2-mod-eap-gtc
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3110
Filename: freeradius2-mod-eap-gtc_2.2.6-1_ramips_24kec.ipk
Size: 3890
MD5Sum: a7486c0bd070b7bbab19d3979d24c1eb
SHA256sum: 27bcdecf3348b363e4ac881aad65428469ce80336869de4bbeb73c8cb026439b
Description: EAP/GTC module
Package: freeradius2-mod-eap-md5
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3396
Filename: freeradius2-mod-eap-md5_2.2.6-1_ramips_24kec.ipk
Size: 4131
MD5Sum: 3c1bcb51ae08a998f51ff0693eec0139
SHA256sum: c6a25abb476fc6fc0eefa91c9b1a6933c82f45178c11404f91f5ee3c11461a6e
Description: EAP/MD5 module
Package: freeradius2-mod-eap-mschapv2
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap, freeradius2-mod-mschap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4810
Filename: freeradius2-mod-eap-mschapv2_2.2.6-1_ramips_24kec.ipk
Size: 5573
MD5Sum: 438c5338acfa7a2cdf56c726210958ce
SHA256sum: fc9c89e9fa36c3169c318cb52f626e3bc1d3feed48d31f872348a9fab8e525b3
Description: EAP/MS-CHAPv2 module
Package: freeradius2-mod-eap-peap
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9402
Filename: freeradius2-mod-eap-peap_2.2.6-1_ramips_24kec.ipk
Size: 10174
MD5Sum: d6899b7ba329cd7f89e3b62ad9fb9a28
SHA256sum: 0398c15f5655691f4e985b312b24fc92d782bc70c7af931066c6767820ee7041
Description: EAP/PEAP module
Package: freeradius2-mod-eap-tls
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12371
Filename: freeradius2-mod-eap-tls_2.2.6-1_ramips_24kec.ipk
Size: 13126
MD5Sum: ed64d31ade2bd58871f25d0e43794436
SHA256sum: c8f054bd7ad1ae771060c1269d1b119c5ac37ca78597ae9e33136a4e6606c282
Description: EAP/TLS module
Package: freeradius2-mod-eap-ttls
Version: 2.2.6-1
Depends: libc, freeradius2-mod-eap-tls
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7738
Filename: freeradius2-mod-eap-ttls_2.2.6-1_ramips_24kec.ipk
Size: 8515
MD5Sum: 82ab20ad989bd6bef646b588e1f3f52f
SHA256sum: 79ad798865b478d85b31d403ff82eadfecd78feb05a9b374daa363bd334ffa6e
Description: EAP/TTLS module
Package: freeradius2-mod-eap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19418
Filename: freeradius2-mod-eap_2.2.6-1_ramips_24kec.ipk
Size: 20220
MD5Sum: db15498ba465ad57ca46d4ee0a67e0d3
SHA256sum: 9e611b8d649210978f37b488c115d99db629855bb63f806f3b3c17551760733a
Description: Base EAP module
Package: freeradius2-mod-exec
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6046
Filename: freeradius2-mod-exec_2.2.6-1_ramips_24kec.ipk
Size: 6846
MD5Sum: d9517bd206d48eae556c0b99d599fdfe
SHA256sum: d396443b5192ebf1617ede427aefd92d48cefbc47ca2f79014e0feb541eeaa82
Description: EXEC module
Package: freeradius2-mod-expiration
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3182
Filename: freeradius2-mod-expiration_2.2.6-1_ramips_24kec.ipk
Size: 3970
MD5Sum: ea685c319d2517c2b5583730f7ae2119
SHA256sum: fd2276ab8ef9e9a1b210f90bf32b6d77acf3148a61b945bd8dec6a901c583679
Description: Expiration module
Package: freeradius2-mod-expr
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6834
Filename: freeradius2-mod-expr_2.2.6-1_ramips_24kec.ipk
Size: 7631
MD5Sum: edabea5040839520adad6ba6fe673fd7
SHA256sum: f85971a141627aaad92e2ece12a103e509c0fa560f0e04ac2782d16979e0dc65
Description: EXPR module
Package: freeradius2-mod-files
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8155
Filename: freeradius2-mod-files_2.2.6-1_ramips_24kec.ipk
Size: 9025
MD5Sum: 4d4611171e1f559f4148682f41ed3e2d
SHA256sum: d613f0d77d21b1cbd24c51e4516fe57c142c43af46b51129e7b7a371a789fd9e
Description: Module using local files for authorization
Package: freeradius2-mod-ldap
Version: 2.2.6-1
Depends: libc, freeradius2, libopenldap
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18890
Filename: freeradius2-mod-ldap_2.2.6-1_ramips_24kec.ipk
Size: 19700
MD5Sum: a2103d9fc9ad7abc045c5a9e3d1b806c
SHA256sum: 49647bc7954d2f3719dabda95c8ada3e77b0b17553caf6411cbf2e3f4463a6f9
Description: LDAP module
Package: freeradius2-mod-logintime
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5359
Filename: freeradius2-mod-logintime_2.2.6-1_ramips_24kec.ipk
Size: 6159
MD5Sum: 7d9d45d5878713c693ebb83ffd759f8a
SHA256sum: e153766bd82bad78c5f73f43fd7484a8418fa6883eea9a246628914775819052
Description: Logintime module
Package: freeradius2-mod-mschap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12224
Filename: freeradius2-mod-mschap_2.2.6-1_ramips_24kec.ipk
Size: 12973
MD5Sum: 8cd3521d718317f60d708c9f98e7f4be
SHA256sum: 0a984a617e5a445c905c697d8cab56c6a92d068a9b8fee537dd1f2327eb32cc6
Description: MS-CHAP and MS-CHAPv2 module
Package: freeradius2-mod-pap
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6793
Filename: freeradius2-mod-pap_2.2.6-1_ramips_24kec.ipk
Size: 7584
MD5Sum: d679d299c4dd03649a9fc09cd7f076a7
SHA256sum: bd8034021da3d5b44e498660738a1b66bccfba3d32c0e8096c679aefec9f9407
Description: PAP module
Package: freeradius2-mod-passwd
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6447
Filename: freeradius2-mod-passwd_2.2.6-1_ramips_24kec.ipk
Size: 7295
MD5Sum: 2f2b23bf52a3e3d0b871ad3f68f13578
SHA256sum: 50cd070cbe1be6af6629f5059591d734c78e6d79b312953a2dbc1140840cba8c
Description: Rlm passwd module
Package: freeradius2-mod-preprocess
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7239
Filename: freeradius2-mod-preprocess_2.2.6-1_ramips_24kec.ipk
Size: 8078
MD5Sum: 074b73d386e09d8208b678820d12e21a
SHA256sum: 4f4f1a93854ff382f473b70bcc94aed88af26ba24e5171cd49d36fa43bfe4581
Description: Request pre-processing module
Package: freeradius2-mod-radutmp
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6363
Filename: freeradius2-mod-radutmp_2.2.6-1_ramips_24kec.ipk
Size: 7223
MD5Sum: df4dacb3a0106a9a4c72d02630ce6705
SHA256sum: 989561d11999f0d9549021121bf6aaa8378f128e9eb3839619a61ef688736bd5
Description: Radius UTMP module
Package: freeradius2-mod-realm
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15363
Filename: freeradius2-mod-realm_2.2.6-1_ramips_24kec.ipk
Size: 16170
MD5Sum: 3855ac33bea306c144da78336d965488
SHA256sum: d99d8a6984903f7e1c928abb4e668b6b3bd43423953f9fca08b80d8f0486ac13
Description: Realms handling module
Package: freeradius2-mod-sql-mysql
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql, libmysqlclient-r
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3747
Filename: freeradius2-mod-sql-mysql_2.2.6-1_ramips_24kec.ipk
Size: 4503
MD5Sum: 81b90eb1c700b6ecc8b00e01f6c4c90a
SHA256sum: c169b101f9cbce9be4418ec52ce870f1e387be82b50b095b0920379c95f5d6e7
Description: MySQL module
Package: freeradius2-mod-sql-pgsql
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql, libpq
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7588
Filename: freeradius2-mod-sql-pgsql_2.2.6-1_ramips_24kec.ipk
Size: 8230
MD5Sum: ea9518d2dcbf91ef35ddefdd6f8ea10c
SHA256sum: a4f29ab9e726c54fb7dbb3f90db45092ccd426a3cae144e801b66a2caceb3b68
Description: PostgreSQL module
Package: freeradius2-mod-sql-sqlite
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql, libsqlite3
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3525
Filename: freeradius2-mod-sql-sqlite_2.2.6-1_ramips_24kec.ipk
Size: 4266
MD5Sum: 0903bf2435bc87987b31dcd8193fa133
SHA256sum: 5ff43a496c02d277ad2a04a466e316988545f817621c2072dc1452f9c11c907e
Description: SQLite module
Package: freeradius2-mod-sql
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14556
Filename: freeradius2-mod-sql_2.2.6-1_ramips_24kec.ipk
Size: 15371
MD5Sum: afe4be9a7674daf45b11159f912ece07
SHA256sum: c77f8bf6d2abfd064d99009760af02925151e049ce35106101c712ed229852de
Description: Base SQL module
Package: freeradius2-mod-sqlcounter
Version: 2.2.6-1
Depends: libc, freeradius2-mod-sql
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5868
Filename: freeradius2-mod-sqlcounter_2.2.6-1_ramips_24kec.ipk
Size: 6631
MD5Sum: 37c9c4270db9d92da9ad539546480dd7
SHA256sum: 7681ffe9d08538a1cab73dc4ab65d3b5abaffce95f0dd0e72c1d07fa03970578
Description: Generic SQL Counter module
Package: freeradius2-mod-sqllog
Version: 2.2.6-1
Depends: libc, freeradius2
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4550
Filename: freeradius2-mod-sqllog_2.2.6-1_ramips_24kec.ipk
Size: 5294
MD5Sum: 4ce052e2f03ac23f1f94c07a9508fc07
SHA256sum: ffa4dfeb45f195869f0fd08825b7cb6f96591977f68a742f9479bd2340590ed6
Description: SQL Logging module
Package: freeradius2-utils
Version: 2.2.6-1
Depends: libc, freeradius2-common
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37861
Filename: freeradius2-utils_2.2.6-1_ramips_24kec.ipk
Size: 38695
MD5Sum: 7171e94895f6747d5f153982c1d65f20
SHA256sum: 7fd6d322c29779022af3659ee4bcdc53fc4d3c32891a58ad304057c3236772e7
Description: Misc. client utilities
Package: freeradius2
Version: 2.2.6-1
Depends: libc, libltdl, libreadline, freeradius2-common
Source: feeds/packages/net/freeradius2
License: GPL-2.0
LicenseFiles: COPYRIGHT LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 135439
Filename: freeradius2_2.2.6-1_ramips_24kec.ipk
Size: 136090
MD5Sum: 9f5ef7998816e7e413ff90c3f7c0105e
SHA256sum: 1ce85d798efaa70ecb3aeafb3b4f02ff46f49f7a06c80a5739896e9afd4d981d
Description: A flexible RADIUS server (version 2)
Package: fswebcam
Version: 20140113-1
Depends: libc, libgd
Source: feeds/packages/multimedia/fswebcam
License: GPL-2.0
LicenseFiles: LICENCE
Section: multimedia
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36267
Filename: fswebcam_20140113-1_ramips_24kec.ipk
Size: 37257
MD5Sum: 493d38c2d340401b2e7b43cf32d5fcbd
SHA256sum: bed12b35708bdd8571854310234e3a0d36ddaeeaa477198046eceb542028f746
Description: fswebcam is a neat and simple webcam app. It captures images from a V4L1/V4L2 compatible
device or file, averages them to reduce noise and draws a caption using the GD Graphics
Library which also handles compressing the image to PNG or JPEG. The resulting image
is saved to a file or sent to stdio where it can be piped to something like ncftpput or scp.
Package: ftdi_eeprom
Version: 1.2-3
Depends: libc, confuse, libftdi1
Source: feeds/packages/libs/libftdi1
License: LGPL-2.0
LicenseFiles: COPYING.LIB
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5141
Filename: ftdi_eeprom_1.2-3_ramips_24kec.ipk
Size: 6061
MD5Sum: 7b11e93ed5c39dec2c0a7dcc5914d652
SHA256sum: a89aba3779ebb0fa4a2a186364af9620dae15f1a3988ce425d3112349890a678
Description: ftdi_eeprom is a small tool for reading/erasing/flashing FTDI USB chip
eeproms. It uses libftdi to access the chip, so you will need to have
the required permissions on the device.
The ftdi_sio module should not be loaded.
You have to unplug and replug your device to get the new values to be
read. Otherwise, you will still get the old values.
Package: fwknop
Version: 2.6.5-1
Depends: libc, libfko
Source: feeds/packages/net/fwknop
License: GPLv2
Section: net
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29071
Filename: fwknop_2.6.5-1_ramips_24kec.ipk
Size: 30073
MD5Sum: 5a74a9d7467ea8f31f2af29d992335d2
SHA256sum: f238e3b089a158a4c8adcb11a4fec613184249c786f84f00361c39067bd86cc1
Description: Fwknop implements an authorization scheme known as Single Packet Authorization
(SPA) for Linux systems running iptables. This mechanism requires only a
single encrypted and non-replayed packet to communicate various pieces of
information including desired access through an iptables policy. The main
application of this program is to use iptables in a default-drop stance to
protect services such as SSH with an additional layer of security in order to
make the exploitation of vulnerabilities (both 0-day and unpatched code) much
more difficult.
This package contains the fwknop client.
Package: fwknopd
Version: 2.6.5-1
Depends: libc, iptables, libfko, libpcap
Source: feeds/packages/net/fwknop
License: GPLv2
Section: net
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49115
Filename: fwknopd_2.6.5-1_ramips_24kec.ipk
Size: 50360
MD5Sum: 5bfd2c8a1ccd4d9e091aa06200023645
SHA256sum: 466b13607ca1397e9f5ed03b9e98d62baa33766a9fe2671f4d5510c8471564cc
Description: Fwknop implements an authorization scheme known as Single Packet Authorization
(SPA) for Linux systems running iptables. This mechanism requires only a
single encrypted and non-replayed packet to communicate various pieces of
information including desired access through an iptables policy. The main
application of this program is to use iptables in a default-drop stance to
protect services such as SSH with an additional layer of security in order to
make the exploitation of vulnerabilities (both 0-day and unpatched code) much
more difficult.
This package contains the fwknop daemon.
Package: gammu
Version: 1.34.0-3
Depends: libc, libpthread, libcurl, glib2, python, bluez-libs, libmysqlclient, unixodbc, libpq, libusb-1.0
Source: feeds/packages/utils/gammu
Section: utils
Maintainer: Vitaly Protsko <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1601087
Filename: gammu_1.34.0-3_ramips_24kec.ipk
Size: 1590119
MD5Sum: 882c639ff22cb930a767dc88c4cf5b5a
SHA256sum: 5383bda0069e3d545735deffaa1e85803d5b207eba6f3c725b39ecc10cfffe5d
Description: Cell phone/modem SMS and control tool
Package: gcc
Version: 4.8.3-1
Depends: libc, binutils, libstdcpp
Source: feeds/packages/devel/gcc
Section: devel
Maintainer: Christian Beier <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21282283
Filename: gcc_4.8.3-1_ramips_24kec.ipk
Size: 21208231
MD5Sum: bca72aa39f11bf66da15cddd84ad2146
SHA256sum: e53b07706ca5aac9aae5c4c49b3b85c685ff4079bed0b07c0086fc80a128f04d
Description: build a native toolchain for compiling on target
Package: git-http
Version: 2.3.3-1
Depends: libc, git, libcurl, ca-certificates
Source: feeds/packages/net/git
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 994143
Filename: git-http_2.3.3-1_ramips_24kec.ipk
Size: 993570
MD5Sum: 968dd4eacbe098f3e48c71eb712830e6
SHA256sum: f9044f0f68efc4d49f10aeff86001d23274d76ce1f5f12b5fbcc023b307fa69b
Description: Git is a free & open source, distributed version control system
designed to handle everything from small to very large projects
with speed and efficiency.
This package allows git push/fetch over http(s) and ftp(s)
Package: git
Version: 2.3.3-1
Depends: libc, libopenssl, libpthread, librt
Source: feeds/packages/net/git
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 782718
Filename: git_2.3.3-1_ramips_24kec.ipk
Size: 782685
MD5Sum: f607961c7ecd8a5b403b2607c89d42a1
SHA256sum: 4bbbbe5a3b261605834f8c498fd905465db450bfc46649ac6473692a2fdbe514
Description: Git is a free & open source, distributed version control system
designed to handle everything from small to very large projects
with speed and efficiency.
Package: glib2
Version: 2.43.4-1
Depends: libc, zlib, libpthread, libffi, libattr
Source: feeds/packages/libs/glib2
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 872480
Filename: glib2_2.43.4-1_ramips_24kec.ipk
Size: 868537
MD5Sum: 6452e7b58054fbaf3795107e2b8262a0
SHA256sum: 85602bba4a5de9aa40f5ede58676a811d92121d13f67e903995a4b0a8bac200f
Description: The GLib library of C routines
Package: gnupg
Version: 1.4.19-1
Depends: libc, zlib, libncurses, libreadline
Source: feeds/packages/utils/gnupg
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 331115
Filename: gnupg_1.4.19-1_ramips_24kec.ipk
Size: 330275
MD5Sum: 5003bb41b93e55cc5aec4cabc6697644
SHA256sum: 9191bf7088318aaa3045bc99d319f667ac99882a56e4534d624f7e3bc2aa8cf0
Description: GnuPG is GNU's tool for secure communication and data storage.
It can be used to encrypt data and to create digital signatures.
It includes an advanced key management facility and is compliant
with the proposed OpenPGP Internet standard as described in RFC2440.
.
GnuPG does not use any patented algorithms so it cannot be compatible
with PGP2 because it uses IDEA (which is patented worldwide).
Package: gnutls-utils
Version: 3.3.13-3
Depends: libc, libgnutls
Source: feeds/packages/libs/gnutls
Section: utils
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 218683
Filename: gnutls-utils_3.3.13-3_ramips_24kec.ipk
Size: 219249
MD5Sum: 13b3c71d954d4b2f32bef17db62db56e
SHA256sum: e90176d43ac215e10fccd70f31b88d611b12de17006e5ecccccfdf9ae437d81f
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS gnutls-cli, gnutls-serv, psktool,
and srptool utilities.
Package: gpioctl-sysfs
Version: 0.0.6-1
Depends: libc, libugpio
Source: feeds/packages/libs/libugpio
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: utils
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2062
Filename: gpioctl-sysfs_0.0.6-1_ramips_24kec.ipk
Size: 2857
MD5Sum: 4acccf291718daaa1faab6b0704b0c06
SHA256sum: a35be76b5ca9e4f0d6540155d0309694c950bd8ef35875381c6f6e0d94c26fcc
Description: Tool for controlling gpio pins using the sysfs api provided by the kernel.
Package: grep
Version: 2.21-2
Depends: libc, libpcre
Source: feeds/packages/utils/grep
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 95158
Filename: grep_2.21-2_ramips_24kec.ipk
Size: 96002
MD5Sum: dcffb9db4257a996208c52e7a981c923
SHA256sum: 3a86891803bfae788d1c0c0ede630ba1a97e02a455e22121e21d128f80e1094e
Description: The grep command searches one or more input files for lines
containing a match to a specified pattern. By default, grep
prints the matching lines.
Package: gst1-libav
Version: 1.4.5-1
Depends: libc, libgstreamer1, gstreamer1-plugins-base, gst1-mod-alsa, libgst1audio, libgst1pbutils, libgst1video, libbz2
Source: feeds/packages/multimedia/gst1-libav
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 988752
Filename: gst1-libav_1.4.5-1_ramips_24kec.ipk
Size: 984789
MD5Sum: ee9fe61360b3ec8ee0b6a40a8344d960
SHA256sum: 0d753d6402f8a6f03ac93ec62c49d380a3876ecd87b1d03ae101aa9872c301bd
Description: GStreamer with libav bindings using internal Libav
Package: gst1-mod-adpcmdec
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4990
Filename: gst1-mod-adpcmdec_1.4.5-1_ramips_24kec.ipk
Size: 5780
MD5Sum: 25dd72b4f8c9a7e2a0393f2aa72ba20d
SHA256sum: 7d8225b00f4e27ac9ab4bb64f75daabcbc51ede30dce3cc4a607267fa026a942
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer adpcm decoding support plugin.
Package: gst1-mod-adpcmenc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4885
Filename: gst1-mod-adpcmenc_1.4.5-1_ramips_24kec.ipk
Size: 5683
MD5Sum: b0e582413328f06d1543d343c869b195
SHA256sum: 9792f5ed92c79315974e792a40d4100fb715e81daed9293ba7de8d6f82721900
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer adpcm encoding support plugin.
Package: gst1-mod-aiff
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19043
Filename: gst1-mod-aiff_1.4.5-1_ramips_24kec.ipk
Size: 19868
MD5Sum: 0653316e3961f791c502a441f0aed5f5
SHA256sum: faf4078ef350e299319c112e2b901dbf0dde5846ce430f84d68545eb99ff3530
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer aiff support plugin.
Package: gst1-mod-alaw
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6945
Filename: gst1-mod-alaw_1.4.5-1_ramips_24kec.ipk
Size: 7775
MD5Sum: 620838a0f60c66010ed5f187ed88787f
SHA256sum: f209fe435d29adaee86d9e80e219f3349e6e086da2a995fe5b3d83886a02e5a8
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer alaw codec plugin.
Package: gst1-mod-alpha
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19019
Filename: gst1-mod-alpha_1.4.5-1_ramips_24kec.ipk
Size: 19788
MD5Sum: 1627b6ee3ef6b7b50a0278c7a1fc08e2
SHA256sum: 6e97aa62832aa20c6eb3d2c637ad012074cf33bd15079d57091ddc6df212ad8e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer alpha support plugin.
Package: gst1-mod-alphacolor
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4637
Filename: gst1-mod-alphacolor_1.4.5-1_ramips_24kec.ipk
Size: 5431
MD5Sum: 9e7511afd900486cf859d1e0395e1cd7
SHA256sum: 93d2edcadb288e82801ecb35a7c2cf39fc04574eb4e5ae255ff8b48756ad3913
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer alphacolor support plugin.
Package: gst1-mod-alsa
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, alsa-lib
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21773
Filename: gst1-mod-alsa_1.4.5-1_ramips_24kec.ipk
Size: 22529
MD5Sum: de85f0a56c84918ab86d8856799079db
SHA256sum: 1b7077c9c6e1854eba9c8b32e62e902f23d4a2c92a2e66ea602a5bbf5065c4ae
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer ALSA plugin.
Package: gst1-mod-apetag
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5399
Filename: gst1-mod-apetag_1.4.5-1_ramips_24kec.ipk
Size: 6202
MD5Sum: 0ee428f81c6c0208dce66c1dac19774b
SHA256sum: 96e8ccfae44029f30de204897af7ffbedd85b22839064220385e0abbfaae9d05
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer apetag support plugin.
Package: gst1-mod-app
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1app
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1473
Filename: gst1-mod-app_1.4.5-1_ramips_24kec.ipk
Size: 2293
MD5Sum: 0e2b0fb71520b296dc8af4f8096b2bd5
SHA256sum: a63a4335b1ca80a0a7052d735404cd86d6758035203881f807f8f68f9d6f954c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer app plugin.
Package: gst1-mod-asf
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1audio, libgst1riff, libgst1rtp, libgst1rtsp, libgst1sdp, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45051
Filename: gst1-mod-asf_1.4.5-1_ramips_24kec.ipk
Size: 45797
MD5Sum: e0f2c4b242f4670097592de41c6da78e
SHA256sum: 1b5040ee7055dc1484e8dac19d82c3424c446ff9df32373eafd1dcc479377a49
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer ASF demuxer plugin.
Package: gst1-mod-asfmux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1rtp
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27646
Filename: gst1-mod-asfmux_1.4.5-1_ramips_24kec.ipk
Size: 28413
MD5Sum: eb397e8271220936bfd2c563f9e8f382
SHA256sum: 0fcb9a86f7bdccfd58238fda0b5c2035a608e0107e2925c2e9923f27aa3d0d21
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer asf muxing support plugin.
Package: gst1-mod-audioconvert
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22547
Filename: gst1-mod-audioconvert_1.4.5-1_ramips_24kec.ipk
Size: 23332
MD5Sum: 66c430b3fc0a8827b01d5e35fec19b3f
SHA256sum: 35aa97187f214a2808a58d71181b6e1085861a35cff3127593225b8665b009d5
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio format conversion plugin.
Package: gst1-mod-audiofx
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1fft, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50660
Filename: gst1-mod-audiofx_1.4.5-1_ramips_24kec.ipk
Size: 51579
MD5Sum: 8d582f06313573c18fe9499e719264ac
SHA256sum: 72cf9630b79f56dd20048699874e70dab3b616840859e89fd2fd5c77a607e092
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio effects plugin.
Package: gst1-mod-audioparsers
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48370
Filename: gst1-mod-audioparsers_1.4.5-1_ramips_24kec.ipk
Size: 49221
MD5Sum: 7ac25373da2b49a7d2f8f78ed2e2909e
SHA256sum: f54a0150a0eea9e29c723918ccbdc1e0bb752299d88c0e50ba7e178cf7770104
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audioparsers plugin.
Package: gst1-mod-audiorate
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7811
Filename: gst1-mod-audiorate_1.4.5-1_ramips_24kec.ipk
Size: 8650
MD5Sum: d1762d41ca9a82544bd7a832f2853cbb
SHA256sum: e717b811b1457b20d9468dfcb1ac6a4a2655654b8933d492fd5f15c7f0dd29e0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio rate adjusting plugin.
Package: gst1-mod-audioresample
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25989
Filename: gst1-mod-audioresample_1.4.5-1_ramips_24kec.ipk
Size: 26732
MD5Sum: bbbf7d26015b700929c61ce2b2209f97
SHA256sum: 856e65ba0fbff778e6d67008c11fd235bd40fe9c9592118b9b5987070abf6eb7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio resampling plugin.
Package: gst1-mod-audiotestsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13412
Filename: gst1-mod-audiotestsrc_1.4.5-1_ramips_24kec.ipk
Size: 14232
MD5Sum: 84f4e830b9eacb0d743d7eca7affde2e
SHA256sum: 35068ca147e215c167fa0543d6adce027f630887a8bc585db41c2d93fb5684d3
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio test plugin.
Package: gst1-mod-auparse
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8092
Filename: gst1-mod-auparse_1.4.5-1_ramips_24kec.ipk
Size: 8921
MD5Sum: 3f879cad41a24b210ac37223ad5870c3
SHA256sum: 3de059160e582624132d3ba7738f9be24ef6dcfebfa43002c56dc4de24198d77
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer auparse plugin.
Package: gst1-mod-autoconvert
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10695
Filename: gst1-mod-autoconvert_1.4.5-1_ramips_24kec.ipk
Size: 11495
MD5Sum: d946e26796ea99569dd82a9ac1934e6d
SHA256sum: d4e96a2c787ff30ab05b4a7919a13dbf458298926f1c1dfb8ab383d87476c295
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer autoconvert support plugin.
Package: gst1-mod-autodetect
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7488
Filename: gst1-mod-autodetect_1.4.5-1_ramips_24kec.ipk
Size: 8325
MD5Sum: f24ceeba594c63136b27e62095902acf
SHA256sum: a2a6024a46821eba258fd6cc66e84f6eb872a3fd97e8015523b8353861145ed0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer format auto-detection plugin.
Package: gst1-mod-avi
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1riff, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 59261
Filename: gst1-mod-avi_1.4.5-1_ramips_24kec.ipk
Size: 59987
MD5Sum: 30e94247581619db6f57fb3bbad0c864
SHA256sum: ec604243881e8ccd7a2de5b12779862a42659b3cd761c5431d92aeb3e5aa47e2
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer avi support plugin.
Package: gst1-mod-bayer
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6818
Filename: gst1-mod-bayer_1.4.5-1_ramips_24kec.ipk
Size: 7683
MD5Sum: 44994ea0d5a35a9ca27c5dcc9cf64990
SHA256sum: b50462ac04d9e939e88c8b1a2cadfd3fee8376ea3d35232ac35c57cd2e5a841f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer bayer support plugin.
Package: gst1-mod-camerabin2
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1basecamerabinsrc, libgst1photography, libgst1tag, libgst1pbutils, libgst1app
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26254
Filename: gst1-mod-camerabin2_1.4.5-1_ramips_24kec.ipk
Size: 26971
MD5Sum: 38deb0a6ac9cbc7e10cbd57993bd5bda
SHA256sum: 3c543f4829143390ad0f274981af3d4ff65b6a8161972695f694c535707866be
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer camerabin support plugin.
Package: gst1-mod-cutter
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6190
Filename: gst1-mod-cutter_1.4.5-1_ramips_24kec.ipk
Size: 7026
MD5Sum: 208e17f1179e667544516fd2c63e905c
SHA256sum: 5f04d57033d36c824c0ee7170efc23736feebae62c05fb52bc8cbb677878e7ec
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio cutter plugin.
Package: gst1-mod-dataurisrc
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5431
Filename: gst1-mod-dataurisrc_1.4.5-1_ramips_24kec.ipk
Size: 6219
MD5Sum: 3e0ba377b124645d4c81b46d64e02472
SHA256sum: 4d6d6b204a5b6d4f23a00681e32d5ea7765234014f5378dfbb60e5b338f0dd87
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dataurisrc support plugin.
Package: gst1-mod-debug
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20109
Filename: gst1-mod-debug_1.4.5-1_ramips_24kec.ipk
Size: 20851
MD5Sum: e68438a002b943d9e441ae4bf3f6b8d9
SHA256sum: 723e46c6bd85328f19c660bd84ceb6872c9062b29b88e7580e06e6ded3ec781e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer debugging plugin.
Package: gst1-mod-debugutilsbad
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18278
Filename: gst1-mod-debugutilsbad_1.4.5-1_ramips_24kec.ipk
Size: 19116
MD5Sum: 08f5769c5041712532ef22996d70d412
SHA256sum: d242762661a52f220f603ef0bcd5d4e13491591110d7f889d04350835dc754ac
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer debugutils support plugin.
Package: gst1-mod-deinterlace
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37520
Filename: gst1-mod-deinterlace_1.4.5-1_ramips_24kec.ipk
Size: 38324
MD5Sum: 08c5ccb4457372b00a4c4fcd2e63a027
SHA256sum: a93dbb2f8d5e22eab8bda57376bc17f896d73c4c71c96109406721d87643bbf3
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer deinterlace support plugin.
Package: gst1-mod-dtmf
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1rtp
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17089
Filename: gst1-mod-dtmf_1.4.5-1_ramips_24kec.ipk
Size: 17875
MD5Sum: f8a97ad52a752948ccf13707d5160cf0
SHA256sum: d78c0c9331d388a29470cd198fa7e16ecfa3341a35a49d68d02da2223ad40471
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dtmf support plugin.
Package: gst1-mod-dvdspu
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19055
Filename: gst1-mod-dvdspu_1.4.5-1_ramips_24kec.ipk
Size: 19810
MD5Sum: 92a3d16bcc13147f61cd706bfbfbe496
SHA256sum: b7edecfa7252f13d11039cc5d9ce74dfce2f8fdafdb3cedf06fa26e084c33d4d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dvdspu support plugin.
Package: gst1-mod-effectv
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21790
Filename: gst1-mod-effectv_1.4.5-1_ramips_24kec.ipk
Size: 22619
MD5Sum: 2c19369e11452dcbce9a2992386ef0aa
SHA256sum: a4b4ed35e02304237040c1422a67729885d0f7606ef6cb590227176a8c8e6f8a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer effectvsupport plugin.
Package: gst1-mod-equalizer
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10642
Filename: gst1-mod-equalizer_1.4.5-1_ramips_24kec.ipk
Size: 11427
MD5Sum: 569236d500aac5d6f5b3ab770c358667
SHA256sum: 18c1fac3c5fa2a784a39b0373efc2faa60f7c3f0f268b2b4f42f38be4c7eeec8
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio equalizer plugin.
Package: gst1-mod-festival
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5439
Filename: gst1-mod-festival_1.4.5-1_ramips_24kec.ipk
Size: 6239
MD5Sum: 52ac62aebef3a44de25488b414fc4dd6
SHA256sum: 046224733c4fd172b218261ed7015915fbd9e81fe1e6c64e84d34479d9a33a43
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer festival support plugin.
Package: gst1-mod-flac
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libflac
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21533
Filename: gst1-mod-flac_1.4.5-1_ramips_24kec.ipk
Size: 22294
MD5Sum: 8806debb678ed28e066452ac29c7dfc7
SHA256sum: c4a871b9aca4f2d30743c2cf2d4b2e6e7c80825231f35a17f7d16a49e1e5fc28
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer FLAC codec plugin.
Package: gst1-mod-flv
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 40169
Filename: gst1-mod-flv_1.4.5-1_ramips_24kec.ipk
Size: 41001
MD5Sum: 52b0787c2ef2beac78731d5c1f3e609a
SHA256sum: 16d9e39a276da5605fc25dc3666bf5b6ba7676bd0d7cf12e9975e96b3c0d8ae3
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer flv codec plugin.
Package: gst1-mod-flxdec
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7070
Filename: gst1-mod-flxdec_1.4.5-1_ramips_24kec.ipk
Size: 7905
MD5Sum: 7b6dc0663aa88bfc896a2df7359f44a9
SHA256sum: 784e4cd7e8dc49feea4ae256f81954fb469dcec850bf59fafb74fe9f1ba92d1c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer flx codec plugin.
Package: gst1-mod-frei0r
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1controller, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15352
Filename: gst1-mod-frei0r_1.4.5-1_ramips_24kec.ipk
Size: 16070
MD5Sum: 7056528f958836e5eaa63cf7bb4f8621
SHA256sum: 2e3aa5e1385b3afdf867c82f956cd0cb59bd6044f206095202ea4d46e7fcd122
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer frei0r support plugin.
Package: gst1-mod-gio
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14174
Filename: gst1-mod-gio_1.4.5-1_ramips_24kec.ipk
Size: 14917
MD5Sum: 033cb0ee06b293f46bc2279c732bd619
SHA256sum: 28fd4f4d474acd9ce632bafb1189792c2a717bb9e51e6db494abb3f54eb8e453
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer GIO plugin.
Package: gst1-mod-goom2k1
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13227
Filename: gst1-mod-goom2k1_1.4.5-1_ramips_24kec.ipk
Size: 13970
MD5Sum: 021359a5fd6222bc39f8d55c84c5ee33
SHA256sum: b2d0f52d5ae92690b2a9c6656f01a3bbe5895f5835994cc6f3ac505a46b52c0d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer goom support plugin.
Package: gst1-mod-goom
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35175
Filename: gst1-mod-goom_1.4.5-1_ramips_24kec.ipk
Size: 35930
MD5Sum: 7b1fb08ad395894344c0807b1248cb8a
SHA256sum: 285baba85f845e8be8a7c4c8a5197d48a701ba376be48be544258b6a3ebf512b
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer goom support plugin.
Package: gst1-mod-icydemux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6326
Filename: gst1-mod-icydemux_1.4.5-1_ramips_24kec.ipk
Size: 7187
MD5Sum: acb8032cb049edc79d948e83c49a61d8
SHA256sum: b9567727b98c65da276b22c476eb7dad17fa35ee0740c21d59db17dc28b111e4
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer icy demuxer plugin.
Package: gst1-mod-id3demux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3817
Filename: gst1-mod-id3demux_1.4.5-1_ramips_24kec.ipk
Size: 4620
MD5Sum: 10893cfbf465c1413448db2bd4c8f8c4
SHA256sum: a8653d2e8688f0af038e8a83daf8284970461a2174a188ff3f0f98b07bdfaf32
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer ID3v1/v2 demuxer plugin.
Package: gst1-mod-id3tag
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13163
Filename: gst1-mod-id3tag_1.4.5-1_ramips_24kec.ipk
Size: 13970
MD5Sum: b5b88ce3a0fdbc901403d8e4df387dfa
SHA256sum: c2e4341c6e5b745bf4b927014e64ff696e9087d95c02610aa6b61df52e23e230
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer id3tag support plugin.
Package: gst1-mod-imagefreeze
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9261
Filename: gst1-mod-imagefreeze_1.4.5-1_ramips_24kec.ipk
Size: 10078
MD5Sum: 55235afce8badf7b5f27c5a6ec4072f4
SHA256sum: 10c3ec4d2bffcd59fef40e3c6649cefca4b6d741458683c63a317563d9745bfd
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer imagefreeze support plugin.
Package: gst1-mod-interleave
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16297
Filename: gst1-mod-interleave_1.4.5-1_ramips_24kec.ipk
Size: 17021
MD5Sum: 7638883693ecc7c151af5b5056400dbe
SHA256sum: 46da1c254e8a333bea4d900b9e870109b33993da9439e35333860c0c7ee8ce7d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio interleave plugin.
Package: gst1-mod-isomp4
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1riff, libgst1rtp, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 143326
Filename: gst1-mod-isomp4_1.4.5-1_ramips_24kec.ipk
Size: 143642
MD5Sum: 73bf16b9bd6f77d88fefb7f5aca6b308
SHA256sum: c7516ab66969945ae43afa2309916204e6920b61bb403c9cb5bbb659fcedbfc7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer isomp4 support plugin.
Package: gst1-mod-jpeg
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, libjpeg
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15241
Filename: gst1-mod-jpeg_1.4.5-1_ramips_24kec.ipk
Size: 16049
MD5Sum: b20412c79fa18d9b5024f049ee5c4a16
SHA256sum: 4028157e9fd0e202cfd35479d1f6b1914a96a8c9f5c4c55c9c9dc19734d881b6
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer jpeg support plugin.
Package: gst1-mod-jpegformat
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14085
Filename: gst1-mod-jpegformat_1.4.5-1_ramips_24kec.ipk
Size: 14867
MD5Sum: 0863592675c79bbdebf7146f97a606c7
SHA256sum: 8ca45bd58eb4ab28859855662bbdb42d6829e134401542a6bac36db648a54906
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer jpegformat support plugin.
Package: gst1-mod-lame
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1audio, lame-lib
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9117
Filename: gst1-mod-lame_1.4.5-1_ramips_24kec.ipk
Size: 9952
MD5Sum: 1e0bed4e751f53d46cf7ac598096f249
SHA256sum: f470f772cbad5be25334c21137f6fded132c06400919816e0af0d4c8c074cb14
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer MP3 encoder (using LAME) plugin.
Package: gst1-mod-level
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8516
Filename: gst1-mod-level_1.4.5-1_ramips_24kec.ipk
Size: 9333
MD5Sum: 8c5d525b53fbdafb213372907a9c4786
SHA256sum: e5dd9a314fcf10e2e261a5269f105a6fdf8d4a0d397dad48a6ea28eba686a7f7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio level plugin.
Package: gst1-mod-liveadder
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14324
Filename: gst1-mod-liveadder_1.4.5-1_ramips_24kec.ipk
Size: 15148
MD5Sum: ff8a21964f9963b35226058661fa8bc8
SHA256sum: 3b6a2165dc3d77df9e8319b793682808d7183ae87b703899be0201147436cf9d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer liveadder support plugin.
Package: gst1-mod-mad
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1audio, libgst1tag, libid3tag, libmad
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5750
Filename: gst1-mod-mad_1.4.5-1_ramips_24kec.ipk
Size: 6582
MD5Sum: 75bf652d02d736ed72345ac522bb5757
SHA256sum: 80aef6c32eeb959ef5d662189adcdacb38d1bb899e23076295ddb61b2edf7856
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer MP3 decoder (using MAD) plugin.
Package: gst1-mod-matroska
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1riff, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 104830
Filename: gst1-mod-matroska_1.4.5-1_ramips_24kec.ipk
Size: 105518
MD5Sum: ca05e570be6079ec7cdd9544d0b04099
SHA256sum: 94070dad942628595d9bf44f04df9afd140ad4bb8895961e011cc1a0d3ac259a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer matroska support plugin.
Package: gst1-mod-mpeg2dec
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgstreamer1, libgst1video, libmpeg2
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9752
Filename: gst1-mod-mpeg2dec_1.4.5-1_ramips_24kec.ipk
Size: 10584
MD5Sum: 8c3686f7036092b68a063a0eb5678f23
SHA256sum: 2daa87f22effba59e2d18225183c659a41c9a1e031129d47112b8373e90d38e5
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer MPEG decoder plugin.
Package: gst1-mod-mpegpsdemux
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29830
Filename: gst1-mod-mpegpsdemux_1.4.5-1_ramips_24kec.ipk
Size: 30665
MD5Sum: 5331dc79ec53827a892593c9701c9a66
SHA256sum: fa5428a35cc768e383ce718548df149801678d62614342dab4e52d74cfc6fbe9
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mpegpsdemux support plugin.
Package: gst1-mod-mpegpsmux
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17013
Filename: gst1-mod-mpegpsmux_1.4.5-1_ramips_24kec.ipk
Size: 17786
MD5Sum: 1e0660449468c8101f8b6714b6726bff
SHA256sum: afbb031060986577c18aa7453ab19789eef1903f671a0a312eb0af096c270200
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mpegpsmux support plugin.
Package: gst1-mod-mulaw
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4294
Filename: gst1-mod-mulaw_1.4.5-1_ramips_24kec.ipk
Size: 5082
MD5Sum: 063f1b85e89cf53d87f8d3f852b74f70
SHA256sum: 296e37ead2732a89def5dc14e8ce39c7b645f1138d695766fba659ba96ca1c74
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mulaw support plugin.
Package: gst1-mod-multifile
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16453
Filename: gst1-mod-multifile_1.4.5-1_ramips_24kec.ipk
Size: 17252
MD5Sum: 7f0ab648a013107d286c2b5dec5f5bc7
SHA256sum: 0d19717d2b354cf68845fbd5a0d19f148aa2534b3373b70c811e88728d299aea
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer multiple files access plugin.
Package: gst1-mod-multipart
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10704
Filename: gst1-mod-multipart_1.4.5-1_ramips_24kec.ipk
Size: 11531
MD5Sum: c402afa735a1964e5e9e5f45ab710692
SHA256sum: d24822d7ce940a7551690204eef6a40bf2ba1026884c28b802b34ae0ea2aa59a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer multipart stream handling plugin.
Package: gst1-mod-mxf
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 113530
Filename: gst1-mod-mxf_1.4.5-1_ramips_24kec.ipk
Size: 114265
MD5Sum: 049997749dcd05bfeaac27d49d680f31
SHA256sum: 940c5414a9a84f39136da546fbcbcbb19b26381da0fcee3539d71b718fe7c03d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer mxf support plugin.
Package: gst1-mod-navigationtest
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3568
Filename: gst1-mod-navigationtest_1.4.5-1_ramips_24kec.ipk
Size: 4354
MD5Sum: 5337b6ff536a0a958e78d46b478d37b0
SHA256sum: dcd3fea4c005faaf1a4e7ee1187f380646812e12d8fe1310a45d7e70142d39c0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer navigationtest support plugin.
Package: gst1-mod-ogg
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1riff, libgst1tag, libgst1pbutils, libgst1video, libogg
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82484
Filename: gst1-mod-ogg_1.4.5-1_ramips_24kec.ipk
Size: 83061
MD5Sum: 86dcc2fca155c13ffadda765ae0f420b
SHA256sum: c9d2bcb7d94631aa73cf5f4a007874f90fc1706b6cd003e03ea3de26b3dd86c9
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Ogg plugin.
Package: gst1-mod-oss4audio
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15725
Filename: gst1-mod-oss4audio_1.4.5-1_ramips_24kec.ipk
Size: 16501
MD5Sum: 3c5a5ba1263054c5832d62f8bc0c958b
SHA256sum: c4c01ede48da81f7acecf7b597d66621174c865c53091b22a6ae6708bcedba64
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer OSS 4 audio support plugin.
Package: gst1-mod-ossaudio
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10563
Filename: gst1-mod-ossaudio_1.4.5-1_ramips_24kec.ipk
Size: 11340
MD5Sum: 8e269c7cb5f09c40ddceb4bb74bb77fb
SHA256sum: 41cd28e94caf9c5cf8b6b47e3c2b93c725f3d38c73921f4d200276987f82c4a6
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer OSS audio support plugin.
Package: gst1-mod-pcapparse
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7604
Filename: gst1-mod-pcapparse_1.4.5-1_ramips_24kec.ipk
Size: 8424
MD5Sum: 9cafa9f047ef8c7fc0ace1b45ac12665
SHA256sum: f2b751f12468efcebaa90749cb4f4971b12b729c2b1dcd3aa787e3fc2303f3b0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer pcapparse support plugin.
Package: gst1-mod-playback
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 113796
Filename: gst1-mod-playback_1.4.5-1_ramips_24kec.ipk
Size: 114322
MD5Sum: 261640cd0fd2d1050ed74f83c24d4203
SHA256sum: 70fea3fa301e4398a64192fc496e94314ee825b7ffbeb49d021b55d60f60396b
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer media decoder (v2) plugin.
Package: gst1-mod-png
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, libpng
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9733
Filename: gst1-mod-png_1.4.5-1_ramips_24kec.ipk
Size: 10553
MD5Sum: 21d1cca2530f89e4379aa555a46ff690
SHA256sum: 83165d07ebc5f4854b93ef1ab86892ef5e120bbe293d76c37304719d180a5bb1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer png support plugin.
Package: gst1-mod-pnm
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6871
Filename: gst1-mod-pnm_1.4.5-1_ramips_24kec.ipk
Size: 7740
MD5Sum: bfe23b758a9752f19b6dbcc138a54426
SHA256sum: 3157ec04c8e84bc5dbd4b4ae30d4cb579b5a0eaade68836e2aca2b95f7c0d297
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer pnm support plugin.
Package: gst1-mod-rawparse
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15175
Filename: gst1-mod-rawparse_1.4.5-1_ramips_24kec.ipk
Size: 15922
MD5Sum: f80d1da3f65cb55f241aa02793021c9b
SHA256sum: bf554713230f5a02f0866d4a9a8220fa2fca35e21c9b32f2aad355a1c6ded426
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer rawparse support plugin.
Package: gst1-mod-replaygain
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1pbutils
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16123
Filename: gst1-mod-replaygain_1.4.5-1_ramips_24kec.ipk
Size: 16872
MD5Sum: 26455a9ed1db40a87d40aebf27cddd2e
SHA256sum: 5416255137d7022e9e24d476cbbd08652d206a0c6367e5de5207c330c1308a2f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer volume normalization plugin.
Package: gst1-mod-rfbsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16608
Filename: gst1-mod-rfbsrc_1.4.5-1_ramips_24kec.ipk
Size: 17406
MD5Sum: 0cf80fa2295cd342c36c51147580d894
SHA256sum: c395d0770b88674f80f35776ce291aeec0a4c5bdf48f04e751d59ddb332ac400
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer librfb support plugin.
Package: gst1-mod-rtp
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1rtp, libgst1tag, libgst1pbutils, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 142508
Filename: gst1-mod-rtp_1.4.5-1_ramips_24kec.ipk
Size: 143007
MD5Sum: 66fb280d81c7e2ac873e55d1aba0420b
SHA256sum: 5dc7d01b928c534a509044e9fc02972d223b97e0cfd683f2e4020e73e1eee311
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTP plugin.
Package: gst1-mod-rtpmanager
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1net, libgst1rtp, libgst1tag, libgst1pbutils, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 112011
Filename: gst1-mod-rtpmanager_1.4.5-1_ramips_24kec.ipk
Size: 112574
MD5Sum: c464510d5ddbf2a7c61262ccc1f64788
SHA256sum: af9a1371c3b25c7038fd28e2f8e4755c0e3d03fa7d22187b77e7673adca47f9a
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTP manager plugin.
Package: gst1-mod-rtsp
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1net, libgst1rtp, libgst1rtsp, libgst1sdp
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52232
Filename: gst1-mod-rtsp_1.4.5-1_ramips_24kec.ipk
Size: 52976
MD5Sum: 1fd15c645ae745f10448532341e1ad69
SHA256sum: 656c24b75082930aabc40e32652154224c95ba408f1c874f0f0c0e8a157dfbb6
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTSP plugin.
Package: gst1-mod-sdpelem
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1rtp, libgst1sdp
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11228
Filename: gst1-mod-sdpelem_1.4.5-1_ramips_24kec.ipk
Size: 12023
MD5Sum: 2ad961b1591a14abb909ecf03daca8a2
SHA256sum: 82a4268b6bddad9018a909b16fea055d654aaf4bc1a7080d6d9e3faa1b194657
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer sdp support plugin.
Package: gst1-mod-segmentclip
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6973
Filename: gst1-mod-segmentclip_1.4.5-1_ramips_24kec.ipk
Size: 7843
MD5Sum: 7704f9ede8eab21717a1c5805206b796
SHA256sum: c448286e8c8a42d73b14d3a3a1a53b94c33c03d5e7917c9078670f4a4baa53bf
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer segmentclip support plugin.
Package: gst1-mod-shapewipe
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9839
Filename: gst1-mod-shapewipe_1.4.5-1_ramips_24kec.ipk
Size: 10685
MD5Sum: f2d673a99da25fb5bf897e81f29ba448
SHA256sum: fc835b8127bff0ba51d41a2077e70e74a1f1cd6a843382f08f1621f87ba05884
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer shapewipe support plugin.
Package: gst1-mod-shm
Version: 1.4.5-1
Depends: libc, libgstreamer1, librt
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15803
Filename: gst1-mod-shm_1.4.5-1_ramips_24kec.ipk
Size: 16585
MD5Sum: c307c3692c34763ab2b3973117b54217
SHA256sum: 5494b9884e3b13553343e7fc44354571fec46130ad4c6077cc1ae810425831f1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer POSIX shared memory source and sink plugin.
Package: gst1-mod-siren
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1rtp
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24832
Filename: gst1-mod-siren_1.4.5-1_ramips_24kec.ipk
Size: 25611
MD5Sum: 3a6319ef23c1e447b592a2e7a3f625d6
SHA256sum: b6819e66aa278a151de7373256b3d52e89df345dc10da1b58b6d1283b589c9fb
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer siren support plugin.
Package: gst1-mod-smpte
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19448
Filename: gst1-mod-smpte_1.4.5-1_ramips_24kec.ipk
Size: 20126
MD5Sum: 9135982c806fdc2936c76884be970432
SHA256sum: be434a568db36ef3c8038d69587edb2c0e9e339774f843c8b4b431558f4f459c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer smpte support plugin.
Package: gst1-mod-souphttpsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libsoup
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20786
Filename: gst1-mod-souphttpsrc_1.4.5-1_ramips_24kec.ipk
Size: 21561
MD5Sum: 47854d6d16e6ea135dfffb82dcde342c
SHA256sum: 2aef66651982d76c34bb29ffcd1f477d6f7e3ec6d9c845b41d98b0a0902e45ae
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer soup input plugin.
Package: gst1-mod-spectrum
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1fft
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9210
Filename: gst1-mod-spectrum_1.4.5-1_ramips_24kec.ipk
Size: 10026
MD5Sum: d43d20fda7dec1a27d52ffedc80a6fd1
SHA256sum: 6d58cfd68c585a4180195628862e56de068ff9bd965f79231a0fa487d5720585
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer spectrum data output plugin.
Package: gst1-mod-speed
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6549
Filename: gst1-mod-speed_1.4.5-1_ramips_24kec.ipk
Size: 7406
MD5Sum: 0b936c447c12f14b4d1a2b44ca938891
SHA256sum: 6bc25b8ffdb9a78854112170bedf0f256d8f660cb966e24d827156268c1c4f6d
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer speed support plugin.
Package: gst1-mod-subenc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1controller
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5071
Filename: gst1-mod-subenc_1.4.5-1_ramips_24kec.ipk
Size: 5884
MD5Sum: ee71ce352237f8b648549a4c1710b656
SHA256sum: 162c6f11a0e72c764c402167fa2d67b20fb602a9116a0af93b8993db0631a1ca
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer subenc support plugin.
Package: gst1-mod-tcp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32970
Filename: gst1-mod-tcp_1.4.5-1_ramips_24kec.ipk
Size: 33737
MD5Sum: 66f4359c37ad1286fc2a6b9dd7cbe732
SHA256sum: cd5d521c88009e205a587235312d54df0217eb589e35e5cd1d0b7cfb3700d641
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer TCP plugin.
Package: gst1-mod-theora
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag, libgst1video, libogg, libtheora
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21288
Filename: gst1-mod-theora_1.4.5-1_ramips_24kec.ipk
Size: 22034
MD5Sum: 9c0bba17c40f29706ec5518df6223519
SHA256sum: 6b89678018a480000154f227c299798033a1ad9b59d7c6537429d70bbbcc8a05
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Theora plugin.
Package: gst1-mod-typefindfunctions
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1pbutils, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33558
Filename: gst1-mod-typefindfunctions_1.4.5-1_ramips_24kec.ipk
Size: 34512
MD5Sum: 99223631bec1191aed5487b966c50cd1
SHA256sum: 2eea2823a6bf98610eecac92b0e20a03fa7e71a35dabe5b029571973d6785987
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer 'typefind' functions plugin.
Package: gst1-mod-udp
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1net
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21364
Filename: gst1-mod-udp_1.4.5-1_ramips_24kec.ipk
Size: 22114
MD5Sum: df7ef32b651942676d01634b2ff72426
SHA256sum: c06de93ede396af1f886441988498bb4231cae97112e9189b0a856d353312b25
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer UDP plugin.
Package: gst1-mod-video4linux2
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, libgst1allocators, libv4l
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 73592
Filename: gst1-mod-video4linux2_1.4.5-1_ramips_24kec.ipk
Size: 74236
MD5Sum: 41acb751b0d07c204cae4cf5a8ebf23f
SHA256sum: cc7ea2c204e3cc44c30dd03ec55c639eeb13d5fc250d47e75d911d19358a1f4e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video4linux2 support plugin.
Package: gst1-mod-videobox
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26259
Filename: gst1-mod-videobox_1.4.5-1_ramips_24kec.ipk
Size: 27001
MD5Sum: 3b567bf5be5644709fe6de603dba6ed1
SHA256sum: c48429f716a7dd387645efa3049b3ca8bbd29df339ff64abe4bb59825aa7236c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videobox support plugin.
Package: gst1-mod-videoconvert
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20898
Filename: gst1-mod-videoconvert_1.4.5-1_ramips_24kec.ipk
Size: 21692
MD5Sum: 54cb4b85848f2a2adc0d63a821cb82c9
SHA256sum: 5c304295fff164889c67bd114d00f6a58a611c557a86978c94f0ba4bd48c1890
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video format conversion plugin.
Package: gst1-mod-videocrop
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10317
Filename: gst1-mod-videocrop_1.4.5-1_ramips_24kec.ipk
Size: 11133
MD5Sum: c630a1a18f395243c7cf62d6ef7136a9
SHA256sum: 59b56be49bbe615f05eb0f2e838151d0a18d4bc6db0396e18ad6a2f8ef809638
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videocrop support plugin.
Package: gst1-mod-videofilter
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18716
Filename: gst1-mod-videofilter_1.4.5-1_ramips_24kec.ipk
Size: 19539
MD5Sum: c080e7c9177c224c7b01f02d5ed0f836
SHA256sum: a48f95ae23b9211e2658275ff7868053c8a9f3d0b8059d74ff13ba310f761797
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videofilter support plugin.
Package: gst1-mod-videomixer
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41480
Filename: gst1-mod-videomixer_1.4.5-1_ramips_24kec.ipk
Size: 42289
MD5Sum: 4996142b012089c82487831782ea50b2
SHA256sum: 21d3d4e003e65a25a74437cad6acc519be2efc7daf6bcb8cdfdac0acc627247f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer videomixer support plugin.
Package: gst1-mod-videorate
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11626
Filename: gst1-mod-videorate_1.4.5-1_ramips_24kec.ipk
Size: 12455
MD5Sum: 24773738d78fdf28d1e8364785717ded
SHA256sum: 98db639bdeccfe314823c52b514d4c5080a8e139bb3c89271780e3d9eedabe3e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Adjusts video frames plugin.
Package: gst1-mod-videoscale
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33832
Filename: gst1-mod-videoscale_1.4.5-1_ramips_24kec.ipk
Size: 34676
MD5Sum: 70125daa40b4a546f8046dc9e3300f22
SHA256sum: 3824f5ce88c2561825faaab1e46306ecd33ae14f47f912f2ddcb1a07ad0f339f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Resizes video plugin.
Package: gst1-mod-videotestsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1video, liboil
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17627
Filename: gst1-mod-videotestsrc_1.4.5-1_ramips_24kec.ipk
Size: 18438
MD5Sum: 5a3385369ef4dd7bf115c791e4ce74bd
SHA256sum: 3fa6cef94738998373cbc8ebdc9648c10ae1d1a400c3711020dd5ada92b93049
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video test plugin.
Package: gst1-mod-volume
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1controller, liboil
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9530
Filename: gst1-mod-volume_1.4.5-1_ramips_24kec.ipk
Size: 10344
MD5Sum: 2f36db76e7eab8c075b11a410389a719
SHA256sum: 280f62a19eeea227f2636d63121f30e590e34ea846b45bb8bc991cbdd40d553f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer volume plugin.
Package: gst1-mod-vorbis
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, gst1-mod-ogg, libvorbis
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16955
Filename: gst1-mod-vorbis_1.4.5-1_ramips_24kec.ipk
Size: 17729
MD5Sum: a12e38ed085fea09bfe746fa0a1088f9
SHA256sum: b07d83272135a63719f1770bab3325033265f64e429610446e2a00037ed6acb2
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Vorbis plugin.
Package: gst1-mod-vpx
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag, libgst1video, libvpx
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23754
Filename: gst1-mod-vpx_1.4.5-1_ramips_24kec.ipk
Size: 24390
MD5Sum: be639a1ab90ac4bd3a4ab543b6a55697
SHA256sum: 6eb9229dafc56b2d61e8819bb1456675cafa2bb50d8cfd2ec9b282ff552020ef
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer vpx support plugin.
Package: gst1-mod-wavenc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1riff
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9654
Filename: gst1-mod-wavenc_1.4.5-1_ramips_24kec.ipk
Size: 10473
MD5Sum: aacd69412bb189d2da9c33e3174d34fe
SHA256sum: dd56537942a2aa8bebcbff412dae46818d72a4c1c6f61133b85c635c488081f4
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Wav encoder plugin.
Package: gst1-mod-wavparse
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1riff, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22053
Filename: gst1-mod-wavparse_1.4.5-1_ramips_24kec.ipk
Size: 22824
MD5Sum: 7a3d740381f01a1783e458379d3bc49d
SHA256sum: 6eb43a6c8e3050ce66186f538ed3fee61fc7c6437e652f4b86e3ad3caebaddf2
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer Wav parser plugin.
Package: gst1-plugins-bad
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1photography, libgst1basecamerabinsrc, gst1-mod-adpcmdec, gst1-mod-adpcmenc, gst1-mod-aiff, gst1-mod-asfmux, gst1-mod-autoconvert, gst1-mod-bayer, gst1-mod-camerabin2, gst1-mod-dataurisrc, gst1-mod-debugutilsbad, gst1-mod-dvdspu, gst1-mod-festival, gst1-mod-frei0r, gst1-mod-id3tag, gst1-mod-jpegformat, gst1-mod-liveadder, gst1-mod-mpegpsdemux, gst1-mod-mpegpsmux, gst1-mod-mxf, gst1-mod-pcapparse, gst1-mod-pnm, gst1-mod-rawparse, gst1-mod-rfbsrc, gst1-mod-sdpelem, gst1-mod-segmentclip, gst1-mod-shm, gst1-mod-siren, gst1-mod-speed, gst1-mod-subenc
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: gst1-plugins-bad_1.4.5-1_ramips_24kec.ipk
Size: 1072
MD5Sum: 791bb23a2ce76662cfe567764fb38c82
SHA256sum: 556d7e7fea714b71c3c63332e11f4b26c3c30b1c37b2d415b8aa6c759db2b7e5
Description: GStreamer plugins collection (bad)
Package: gst1-plugins-base
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1allocators, libgst1app, libgst1audio, libgst1fft, libgst1pbutils, libgst1riff, libgst1rtp, libgst1rtsp, libgst1sdp, libgst1tag, libgst1video, gst1-mod-alsa, gst1-mod-app, gst1-mod-audioconvert, gst1-mod-audiorate, gst1-mod-audioresample, gst1-mod-audiotestsrc, gst1-mod-playback, gst1-mod-gio, gst1-mod-ogg, gst1-mod-tcp, gst1-mod-theora, gst1-mod-typefindfunctions, gst1-mod-videoconvert, gst1-mod-videorate, gst1-mod-videoscale, gst1-mod-videotestsrc, gst1-mod-volume, gst1-mod-vorbis
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: gst1-plugins-base_1.4.5-1_ramips_24kec.ipk
Size: 1028
MD5Sum: 2bb5967d2712aee766583862ab49345f
SHA256sum: c70238e05eda74408ec8b525487d03bb9fbe4102230771028366bcaf854c8bf7
Description: GStreamer plugins collection (base)
Package: gst1-plugins-good
Version: 1.4.5-1
Depends: libc, libgstreamer1, gst1-mod-alaw, gst1-mod-alpha, gst1-mod-alphacolor, gst1-mod-apetag, gst1-mod-audiofx, gst1-mod-audioparsers, gst1-mod-auparse, gst1-mod-autodetect, gst1-mod-avi, gst1-mod-cutter, gst1-mod-debug, gst1-mod-deinterlace, gst1-mod-dtmf, gst1-mod-effectv, gst1-mod-equalizer, gst1-mod-flac, gst1-mod-flv, gst1-mod-flxdec, gst1-mod-goom2k1, gst1-mod-goom, gst1-mod-icydemux, gst1-mod-id3demux, gst1-mod-imagefreeze, gst1-mod-interleave, gst1-mod-isomp4, gst1-mod-jpeg, gst1-mod-level, gst1-mod-matroska, gst1-mod-mulaw, gst1-mod-multifile, gst1-mod-multipart, gst1-mod-navigationtest, gst1-mod-oss4audio, gst1-mod-ossaudio, gst1-mod-png, gst1-mod-replaygain, gst1-mod-rtpmanager, gst1-mod-rtp, gst1-mod-rtsp, gst1-mod-shapewipe, gst1-mod-smpte, gst1-mod-souphttpsrc, gst1-mod-spectrum, gst1-mod-udp, gst1-mod-video4linux2, gst1-mod-videobox, gst1-mod-videocrop, gst1-mod-videofilter, gst1-mod-videomixer, gst1-mod-vpx, gst1-mod-wavenc, gst1-mod-wavparse
Source: feeds/packages/multimedia/gst1-plugins-good
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: gst1-plugins-good_1.4.5-1_ramips_24kec.ipk
Size: 1217
MD5Sum: 33be3e8448ee3a547ab5267852e07a2e
SHA256sum: 9462c1f9580c3d8996f1680953922db2e5d3c2b5bd22b4f68b74a5a3e919dfab
Description: GStreamer open source multimedia framework
.
This meta package contains only dependencies to the other plugins from
the good plugins collection.
Package: gst1-plugins-ugly
Version: 1.4.5-1
Depends: libc, libgstreamer1, gst1-mod-asf, gst1-mod-lame, gst1-mod-mad, gst1-mod-mpeg2dec
Source: feeds/packages/multimedia/gst1-plugins-ugly
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: gst1-plugins-ugly_1.4.5-1_ramips_24kec.ipk
Size: 879
MD5Sum: 39e0072fc657502a1c2549c69c117573
SHA256sum: c4afa7caaab7add5880c51e19d99987c8ab57c99991b051025b8b0436954a1da
Description: GStreamer plugins collection (ugly)
Package: gstreamer1-libs
Version: 1.4.5-1
Depends: libc, gstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: gstreamer1-libs_1.4.5-1_ramips_24kec.ipk
Size: 894
MD5Sum: 98177e043ae9a26f482598184d4356f6
SHA256sum: 45553883640f43c2de3897adfff897a5c87ce2ee770419cb7ee1b5a6b4abea09
Description: GStreamer open source multimedia framework
.
This meta package contains only dependencies on the other GStreamer
componenents.
Package: gstreamer1-plugins-base
Version: 1.4.5-1
Depends: libc, gst1-plugins-base, gstreamer1-libs
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: gstreamer1-plugins-base_1.4.5-1_ramips_24kec.ipk
Size: 871
MD5Sum: c48aa4428c71634a712330076a123bc2
SHA256sum: 7ae35ae87047dc6019d8eaef65a9f3b7f11e6588c40eece84edf1c83042ba1c1
Description: GStreamer plugins collection (base)
Package: gstreamer1-utils
Version: 1.4.5-1
Depends: libc, libgstreamer1, gstreamer1-libs
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23962
Filename: gstreamer1-utils_1.4.5-1_ramips_24kec.ipk
Size: 24415
MD5Sum: 110b915e07a7ceac63597974a9f16630
SHA256sum: 9567c32f53b61fcb691e5b2f204e36497562dfff42168ab83c5d40c4b4ab12c0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer utilities.
Package: gstreamer1
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1check, libgst1controller, libgst1net
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: gstreamer1_1.4.5-1_ramips_24kec.ipk
Size: 864
MD5Sum: ab6a65ec7f05d25cd0d1b6fae04752f5
SHA256sum: 4cdee669ba4e89b040aee87f5925534f8ca444ebcf4630c662a9374aa96cd82e
Description: GStreamer (All libraries)
Package: halog
Version: 1.5.11-02
Depends: libc, haproxy
Source: feeds/packages/net/haproxy
License: GPL-2.0
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20893
Filename: halog_1.5.11-02_ramips_24kec.ipk
Size: 21609
MD5Sum: 2659d1f41c19c75df8f18c2aa3662ed4
SHA256sum: 01ac80d40702c828f2639b305bc51ed333f51cb2e0eaa25a7309ef84257840fe
Description: HAProxy Log Analyzer
Package: hamlib-adat
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11539
Filename: hamlib-adat_1.2.15.3-3_ramips_24kec.ipk
Size: 12290
MD5Sum: b2b893a7e6fa6cfafbf2784c4bb5c479
SHA256sum: 9c9d41ca4201d220e937b0aec400d5f24eeece6d3a485d1f26f7c0824be32d27
Description: for ADAT
Package: hamlib-alinco
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5489
Filename: hamlib-alinco_1.2.15.3-3_ramips_24kec.ipk
Size: 6211
MD5Sum: 9716d8adcf7c14ce40b754978898af9d
SHA256sum: 02791222427c5bc081f7642ff8b7da6d487d38c7bad0c6e8e03e8ff032ad136d
Description: for Alinco
Package: hamlib-amsat
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2067
Filename: hamlib-amsat_1.2.15.3-3_ramips_24kec.ipk
Size: 2827
MD5Sum: 7035b887ddc85195d67b68e9b40fabcf
SHA256sum: 9ddf62c16a64d530a894886d93aa6408b73639842895ec7bec9fe79afac2b2e2
Description: for AMSAT
Package: hamlib-aor
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25000
Filename: hamlib-aor_1.2.15.3-3_ramips_24kec.ipk
Size: 25565
MD5Sum: aaaa2287dc43940c16ca3907dce1f9b0
SHA256sum: 17160961845e63c90c65cf7107cb78bfc38b18e592f696628f06f45d7044b19d
Description: for AOR
Package: hamlib-ars
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4791
Filename: hamlib-ars_1.2.15.3-3_ramips_24kec.ipk
Size: 5502
MD5Sum: 48e1e2a5f5c109074a4be9f671118e90
SHA256sum: d04f6f237f7f6a650bf036c607c729d02b11467032c0fada6d8d645dec417b67
Description: for ARS
Package: hamlib-celestron
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2822
Filename: hamlib-celestron_1.2.15.3-3_ramips_24kec.ipk
Size: 3574
MD5Sum: ae9b772a66eefcc6812c6798bc77681d
SHA256sum: 8dbc55e5b0458e8a2ed237daa21ded64c5888216fc6e3880b4b0293b3cedad1e
Description: for Celestron
Package: hamlib-drake
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6917
Filename: hamlib-drake_1.2.15.3-3_ramips_24kec.ipk
Size: 7694
MD5Sum: e109fe1c87a33595173e3c723da9c7d3
SHA256sum: 98c23810dcc1a1662aa825ad1232e14f1cdb77858f21c0d9411f5b733d51464e
Description: for Drake
Package: hamlib-dummy
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13466
Filename: hamlib-dummy_1.2.15.3-3_ramips_24kec.ipk
Size: 14141
MD5Sum: 88792b594b228f1e09d756d742588dae
SHA256sum: 71910550dcf75afc218462f18cd118f480fc671bce721efd50d281067256a6da
Description: for dummy
Package: hamlib-easycomm
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2536
Filename: hamlib-easycomm_1.2.15.3-3_ramips_24kec.ipk
Size: 3298
MD5Sum: 58ba96b55d5ab3ecd8d4c3131a23d593
SHA256sum: 08d43c977209dd30ba19b60be1239762e894ed2643200360c5a8b3ca851b5dd2
Description: for EasyComm
Package: hamlib-flexradio
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7102
Filename: hamlib-flexradio_1.2.15.3-3_ramips_24kec.ipk
Size: 7879
MD5Sum: 16919e3e18a953aaf52e6ba51cd61fa7
SHA256sum: e37d81351dedee1e5ec8432d1c4fed35ce18f9a3f440de65f2d8b052fafed38b
Description: for FlexRadio
Package: hamlib-fodtrack
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1917
Filename: hamlib-fodtrack_1.2.15.3-3_ramips_24kec.ipk
Size: 2677
MD5Sum: 1b0a79857e9b6a401911e33e7b290275
SHA256sum: 3b804072860db0c3f545c63a4ad7b7c231b50df78b20d0132d838d1a7afda3dd
Description: for FodTrack
Package: hamlib-gs232a
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3613
Filename: hamlib-gs232a_1.2.15.3-3_ramips_24kec.ipk
Size: 4340
MD5Sum: 3267b224dc2d85a3a52804223229b72b
SHA256sum: f9c77a0855fe0d0f09baeb7b310bdb03f1fade9cab72d47c576fb0f4af1d7c97
Description: for GS-232A
Package: hamlib-heathkit
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2458
Filename: hamlib-heathkit_1.2.15.3-3_ramips_24kec.ipk
Size: 3226
MD5Sum: 3e8be71698907eaf149ae1cdce61aec4
SHA256sum: 3a0853f993fbb210b41081752d1cc65e779d8a24ea4a4b35d664a85a0f19f93a
Description: for Heathkit
Package: hamlib-icom
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39114
Filename: hamlib-icom_1.2.15.3-3_ramips_24kec.ipk
Size: 38847
MD5Sum: e5647b8bca0117fe125f594b0c8576dd
SHA256sum: 4b50154b657385463785b9eaeae629ce6899a4f5f7d0d0520e05a3dd65945961
Description: for ICOM
Package: hamlib-jrc
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8648
Filename: hamlib-jrc_1.2.15.3-3_ramips_24kec.ipk
Size: 9389
MD5Sum: 54d5e14e9d69e2150425145c349c7d31
SHA256sum: 323e8988c72cbfdcca29426010927750d0691a8a51ffc6d2979763aa9955210b
Description: for JRC
Package: hamlib-kachina
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2709
Filename: hamlib-kachina_1.2.15.3-3_ramips_24kec.ipk
Size: 3459
MD5Sum: 4a4dfd15d24cc148027a3116cf5668fd
SHA256sum: c7ae6612895789dcd41dcbc971fa934e696aafcb0e2d55689f7c5f7b373a9f18
Description: for Kachina
Package: hamlib-kenwood
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57972
Filename: hamlib-kenwood_1.2.15.3-3_ramips_24kec.ipk
Size: 58463
MD5Sum: 4d71e8800788703f2b3c9422390829ca
SHA256sum: b6aeb98419b30cd3d4262683820eb75dfa25c019f310768b1ad14bb16155e568
Description: for Kenwood
Package: hamlib-kit
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7544
Filename: hamlib-kit_1.2.15.3-3_ramips_24kec.ipk
Size: 8293
MD5Sum: 75e865126506b7027e1fd01e4765d1c5
SHA256sum: 88d1e64efc85229688f1ded1dff19162fbe5783645aec6b20e896d34cc91469f
Description: for kits
Package: hamlib-lowe
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3329
Filename: hamlib-lowe_1.2.15.3-3_ramips_24kec.ipk
Size: 4078
MD5Sum: 0331405a0923c493dfdaa2103d60f4ea
SHA256sum: d6225077d3d8a1b4815dc691a2d1cd96a8adc8d71f62f7b69a05504aca23dd84
Description: for Lowe
Package: hamlib-m2
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3027
Filename: hamlib-m2_1.2.15.3-3_ramips_24kec.ipk
Size: 3782
MD5Sum: d4cd27c14f0417829bed172a4cf2ea05
SHA256sum: 72df2c78bbd920568fdae191ba0e2252ce3f8306d6b4a419a2e216a90f2e9504
Description: for M2
Package: hamlib-pcr
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10102
Filename: hamlib-pcr_1.2.15.3-3_ramips_24kec.ipk
Size: 10805
MD5Sum: a5579930c47a248a9102903ff5d1a63c
SHA256sum: d5592f46ec558d14b6d6d71dd7b9c6ba4833148104f11ee050a497d764efe008
Description: for PCR
Package: hamlib-prm80
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3585
Filename: hamlib-prm80_1.2.15.3-3_ramips_24kec.ipk
Size: 4338
MD5Sum: 1d4d0f100773a2aecd66c3919c871ff5
SHA256sum: d3f1fead7189eed8349d0c8d0544082a3bafc3134347b499d2cb422db6da0045
Description: for PRM80
Package: hamlib-racal
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7401
Filename: hamlib-racal_1.2.15.3-3_ramips_24kec.ipk
Size: 8182
MD5Sum: 5a1a98acb237ea7bc08ab6805b313a6d
SHA256sum: 8d6bc7dcf39edaa115ac81ffbbc5b19dd54da67b46ae9b92a3afbe383dd3f131
Description: for Racal
Package: hamlib-rft
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2021
Filename: hamlib-rft_1.2.15.3-3_ramips_24kec.ipk
Size: 2753
MD5Sum: fd3508c1d7eeba9987da0b3fc1a91d19
SHA256sum: eba943211d8ff1e350094a2f39fab2ad6df13fad47e671703fc6aa4dd693d52c
Description: for RFT
Package: hamlib-rotorez
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3820
Filename: hamlib-rotorez_1.2.15.3-3_ramips_24kec.ipk
Size: 4549
MD5Sum: 62d33118554c2197ac8b9794e26ace70
SHA256sum: b37e01eac466d5596bb07ac0c84d9f249bdc67a0f8d2063f7629435e26d96387
Description: for Rotor-EZ
Package: hamlib-rs
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3910
Filename: hamlib-rs_1.2.15.3-3_ramips_24kec.ipk
Size: 4629
MD5Sum: c1431ee832732697b6f0566dd1d62e69
SHA256sum: 315736ef7e3062805d603463a435f37c579d597084fcca66dacc566577d2e00e
Description: for R&S
Package: hamlib-sartek
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1857
Filename: hamlib-sartek_1.2.15.3-3_ramips_24kec.ipk
Size: 2617
MD5Sum: e60cb185f67308b1361f5bbd999c5ab4
SHA256sum: f472009a3aa919d4038ddfc156c1c63d3250e1156b154640e82d41ec001b7fd1
Description: for SARtek
Package: hamlib-skanti
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4458
Filename: hamlib-skanti_1.2.15.3-3_ramips_24kec.ipk
Size: 5177
MD5Sum: 570fc9d334fb945fe69be6bb7648f761
SHA256sum: fbe328978d5a7e5de44d8de65342ccc2adab4a181a0e65daf1187eae442deab3
Description: for Skanti
Package: hamlib-spid
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3645
Filename: hamlib-spid_1.2.15.3-3_ramips_24kec.ipk
Size: 4369
MD5Sum: 505c8a759a1dca017357bde0651cc4e6
SHA256sum: 2cfb92284c10cec313d8d5853e25094ca9b8553c597c75b9c1c184c59a3f415b
Description: for SPID
Package: hamlib-tapr
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1571
Filename: hamlib-tapr_1.2.15.3-3_ramips_24kec.ipk
Size: 2318
MD5Sum: af5705df4cd92da47479a982e11a0be1
SHA256sum: e6c3722f78a4bc5a72f51e63c5fdb2691eac7cefc6deef63fd2324104f8aba31
Description: for TAPR
Package: hamlib-tentec
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28141
Filename: hamlib-tentec_1.2.15.3-3_ramips_24kec.ipk
Size: 28792
MD5Sum: 955964aacf90f2fe87a12eea68e2559a
SHA256sum: 43a71f2e738168a23862215d5fbf9164661ba04c967cbebcaf0d0fc2ba6a0e71
Description: for TenTec
Package: hamlib-ts7400
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2915
Filename: hamlib-ts7400_1.2.15.3-3_ramips_24kec.ipk
Size: 3679
MD5Sum: b3a4455a38cae03ba66e637c7b88136d
SHA256sum: 065f6f5a2e88cb16ecd342ca9b537f9a018cef6807e957e15e2736ea4c868ef2
Description: for TS-7400
Package: hamlib-tuner
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3878
Filename: hamlib-tuner_1.2.15.3-3_ramips_24kec.ipk
Size: 4613
MD5Sum: be8f779af6791966ff3e2951f292d8b8
SHA256sum: 47d662608b71be5efcc0435082ccbcb0d2e9b9ea97b3c93ae3dd00e86bc76e8c
Description: for Video for Linux tuner
Package: hamlib-uniden
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7452
Filename: hamlib-uniden_1.2.15.3-3_ramips_24kec.ipk
Size: 8206
MD5Sum: 4abb223c2ed05a2aad849d311c67c6ed
SHA256sum: afc2f028b1776aeab6ade5dbbb4b729c1051c28df9815589bebad04d3b03af06
Description: for Uniden
Package: hamlib-wj
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3430
Filename: hamlib-wj_1.2.15.3-3_ramips_24kec.ipk
Size: 4185
MD5Sum: 72f29d5ccf2e85a013f37f4145f63182
SHA256sum: 2a309a0141e796576b2ee2da89c2ca1323013db75689dab2d0fa676a431c2288
Description: for Watkins - Johnson
Package: hamlib-yaesu
Version: 1.2.15.3-3
Depends: libc, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74204
Filename: hamlib-yaesu_1.2.15.3-3_ramips_24kec.ipk
Size: 74388
MD5Sum: d4397d707ce2e3fc2f09786f8291625d
SHA256sum: fce2f07f6bb01324db482cb527ba7c5e5ddad322d4c552ddecd70960169b4618
Description: for Yaesu
Package: hamlib
Version: 1.2.15.3-3
Depends: libc, libpthread, libhamlib
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: utils
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82399
Filename: hamlib_1.2.15.3-3_ramips_24kec.ipk
Size: 82998
MD5Sum: cdd5a424472678b362c26985771b5d42
SHA256sum: ae511d60b50b3456d261b1827c6f26ddb9433604263cd2c2c1aecfadca8d20f4
Description: Ham Radio Control Libraries is a development effort to provide a consistent
interface for programmers wanting to incorporate radio control in their
programs.
This package contains the utilities and daemons.
Package: haproxy-nossl
Version: 1.5.11-02
Depends: libc, libpcre, libltdl, zlib, libpthread
Source: feeds/packages/net/haproxy
License: GPL-2.0
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243785
Filename: haproxy-nossl_1.5.11-02_ramips_24kec.ipk
Size: 244127
MD5Sum: 8e26cb6b36defa7710260a3d1a7e8f58
SHA256sum: 33eec6678e541cf7e4591b76342e6f7e72bbc444a86d29c9d57fb410ecc3403d
Description: Open source Reliable, High Performance TCP/HTTP Load Balancer.
This package is built without SSL support.
Package: haproxy
Version: 1.5.11-02
Depends: libc, libpcre, libltdl, zlib, libpthread, libopenssl
Source: feeds/packages/net/haproxy
License: GPL-2.0
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 264507
Filename: haproxy_1.5.11-02_ramips_24kec.ipk
Size: 264297
MD5Sum: a2eaa39e0998cf803cf052cf589e10b0
SHA256sum: 6507dead855f6875c3f899b40c61b332860b0363ebcf20ad24ce03b3def08e87
Description: Open source Reliable, High Performance TCP/HTTP Load Balancer.
This package is built with SSL support.
Package: haserl
Version: 0.9.34-1
Depends: libc
Source: feeds/packages/utils/haserl
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10550
Filename: haserl_0.9.34-1_ramips_24kec.ipk
Size: 11277
MD5Sum: 26d1d64d9fcf5bfebe0d7b66c8e6a39b
SHA256sum: 0dc9f87e6ecb760529a647c4910a89c63669e8a71e3bc0aa3d48809f8a87d50c
Description: A CGI wrapper to embed shell scripts in HTML documents
Package: haveged
Version: 1.9.1-5
Depends: libc, libhavege
Source: feeds/packages/utils/haveged
License: GPLv3
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6997
Filename: haveged_1.9.1-5_ramips_24kec.ipk
Size: 7787
MD5Sum: e2f71cbb28963e7681705f1d7475f6d4
SHA256sum: cdbd33c6bcc6991a67f76c72fcf7d3b47c829fac96c51c9f63ee89cb62a953e5
Description: Feeds the kernel entropy pool by timing CPU loops.
Package: hd-idle
Version: 1.04-1
Depends: libc
Source: feeds/packages/utils/hd-idle
License: GPL-2.0
Section: utils
Maintainer: Lim Guo Wei <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4844
Filename: hd-idle_1.04-1_ramips_24kec.ipk
Size: 5629
MD5Sum: 0d33a1176d76c687699e18774b8eafce
SHA256sum: bc4b8ab23fbb03f040dc948dcb9f513daf310306738c9f14745bb4be26dfaad7
Description: hd-idle is a utility program for spinning-down external disks after a period of idle time.
Package: hdparm
Version: 9.45-1
Depends: libc
Source: feeds/packages/utils/hdparm
License: BSD-Style Open Source License
Section: utils
Maintainer: Richard Kunze <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42426
Filename: hdparm_9.45-1_ramips_24kec.ipk
Size: 43182
MD5Sum: 0e4748eb9fa05676e5c0ab9835d881dd
SHA256sum: bed3963a04d6f159ea31920972875b1ecc3d1297af35ae67827718f19dbc9ac4
Description: get/set SATA/IDE device parameters
Package: hidapi
Version: 0.8.0-rc1-1
Depends: libc, libusb-1.0, libiconv, librt
Source: feeds/packages/libs/hidapi
License: BSD-3-Clause
LicenseFiles: LICENSE-bsd.txt
Section: libs
Maintainer: Paul Fertser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11639
Filename: hidapi_0.8.0-rc1-1_ramips_24kec.ipk
Size: 12552
MD5Sum: 4dd36fa0e8c0968dd8f1c34f0ddad0b1
SHA256sum: 128ff3ec8d5a091c9e49f9f3637a9573093247c0adc3af1cb0d413021bf4d69e
Description: HIDAPI is a multi-platform library which allows an application to interface
with USB and Bluetooth HID-Class devices on Windows, Linux, FreeBSD, and Mac
OS X. HIDAPI can be either built as a shared library (.so or .dll) or
can be embedded directly into a target application by adding a single source
file (per platform) and a single header.
Package: horst
Version: 4.2-1
Depends: libc, libncurses
Source: feeds/packages/net/horst
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Bruno Randolf <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33992
Filename: horst_4.2-1_ramips_24kec.ipk
Size: 34802
MD5Sum: 263185e27331b5538e0e77a0b0882773
SHA256sum: a62646d69e8a8ece581f94846c3c88e6f08b2e6872c0b911af69467d775c8e73
Description: [horst] is a scanning and analysis tool for 802.11 wireless networks
and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
Package: hostip
Version: 1.4.3-1
Depends: libc, libsodium
Source: feeds/packages/net/dnscrypt-proxy
License: ISC
Section: net
Maintainer: Damiano Renfer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33599
Filename: hostip_1.4.3-1_ramips_24kec.ipk
Size: 34467
MD5Sum: eeef269a7f725ae9943c98295fe23a56
SHA256sum: f025edb192681b742a0e99abbda8beb5a554fa9a3a35e0cb8cd4977a59a63fce
Description: The DNSCrypt proxy ships with a simple tool named hostip that resolves a name
to IPv4 or IPv6 addresses.
Package: htop
Version: 1.0.3-1
Depends: libc, libncurses
Source: feeds/packages/admin/htop
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49147
Filename: htop_1.0.3-1_ramips_24kec.ipk
Size: 49965
MD5Sum: a7189c5493f06333a0e0361407662e2b
SHA256sum: 2253cd727c39972ef96b6d0ce2ac1ac6e7c857179ac1b66ad4e8ed2be16ba06e
Description: Htop is an ncursed-based process viewer similar to top, but
it allows to scroll the list vertically and horizontally to
see all processes and their full command lines.
Package: hub-ctrl
Version: 1.0-1
Depends: libc, libusb-compat
Source: feeds/packages/utils/hub-ctrl
License: GPL-2.0+
Section: utils
Maintainer: Simon Peter <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3645
Filename: hub-ctrl_1.0-1_ramips_24kec.ipk
Size: 4453
MD5Sum: 761b256cd39a9bf334428de80e4f4e89
SHA256sum: cb902dadef9c1910f4863c155e8d4cbbdca5959843be9381498dc73fdc9c6e44
Description: Control USB power on a port by port basis on some USB hubs.
This only works on USB hubs that have the hardware necessary
to allow software controlled power switching.
Most hubs DO NOT include the hardware.
Package: ibrcommon
Version: 1.0.1-1
Depends: libc, libstdcpp, libpthread, librt, libnl, libopenssl
Source: feeds/packages/libs/ibrcommon
License: Apache-2.0
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141100
Filename: ibrcommon_1.0.1-1_ramips_24kec.ipk
Size: 141753
MD5Sum: fd06ca82ae38b6506a45f1fe43865ab0
SHA256sum: b3bf54b3fe1dbaa6b82cb48757c50b70732a30bb8bd7acdcaef7b894ac05e70b
Description: A library with common functions for C++.
Package: ibrdtn-tools
Version: 1.0.1-1
Depends: libc, ibrdtn, libarchive
Source: feeds/packages/net/ibrdtn-tools
License: Apache-2.0
Section: net
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84183
Filename: ibrdtn-tools_1.0.1-1_ramips_24kec.ipk
Size: 84388
MD5Sum: b3eda6acf77d1e0e99f4d1cf7703d580
SHA256sum: 59eec828ae6b7de8571ab26e1d5d6063ecb5e7290e7855b926891daaf6d9d956
Description: The IBR-DTN Tools include functionality for sending and receiving files (dtnsend/dtnrecv)
and a tools to ping a DTN node (dtnping).
Package: ibrdtn
Version: 1.0.1-1
Depends: libc, ibrcommon, zlib
Source: feeds/packages/libs/ibrdtn
License: Apache-2.0
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 148303
Filename: ibrdtn_1.0.1-1_ramips_24kec.ipk
Size: 148809
MD5Sum: d09491b65445f05b98f591cd77585ec8
SHA256sum: 5d1dbf2810b3cb06cca78b631211deddcf07a9b36f94dc0c87b8f1afd0cf2145
Description: Base library for IBR-DTN daemon and tools.
Package: ibrdtnd
Version: 1.0.1-1
Depends: libc, dtndht, ibrdtn, libsqlite3
Source: feeds/packages/net/ibrdtnd
License: Apache-2.0
Section: net
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 563511
Filename: ibrdtnd_1.0.1-1_ramips_24kec.ipk
Size: 562985
MD5Sum: 41955aa50ecb83245c70defbabfcb3f5
SHA256sum: 992524a0761fc78ba2f5b23d1d6babb415e68d4c35a25aecc0ab20d35ae41c6c
Description: The implementation of the bundle protocol of the IBR (TU Braunschweig).
Package: icecast
Version: 2.4.1-1
Depends: libc, libcurl, libxml2, libxslt, libogg, libopenssl
Source: feeds/packages/multimedia/icecast
License: GPL-2.0
Section: multimedia
Maintainer: André Gaul <[email protected]>
Architecture: ramips_24kec
Installed-Size: 169187
Filename: icecast_2.4.1-1_ramips_24kec.ipk
Size: 169951
MD5Sum: 1c151ee2add7a20c837d2e993528220a
SHA256sum: 41db1ed70572bafde48e3dffbbab8a3be93cdd7a344f4876f158fd9b990cf049
Description: Icecast is a streaming media server which currently supports Ogg
Vorbis and MP3 audio streams. It can be used to create an Internet
radio station or a privately running jukebox and many things in
between. It is very versatile in that new formats can be added
relatively easily and supports open standards for commuincation and
interaction.
Package: ices
Version: 2.0.2-1
Depends: libc, libshout, libxml2, zlib, libogg, libvorbis, alsa-lib
Source: feeds/packages/multimedia/ices
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34216
Filename: ices_2.0.2-1_ramips_24kec.ipk
Size: 34931
MD5Sum: 1bf41e2a0137c36e752a8cd0a577c893
SHA256sum: b5aa35df02423910ef21aef00104bc3712c040705d049d9ac00eac335a4ad497
Description: ices is a command line source client for Icecast media streaming servers.
It began as the successor of the old "shout" utility, and has since gained a
lot of useful features.
Package: idn
Version: 1.30-1
Depends: libc, libidn
Source: feeds/packages/libs/libidn
License: GPL-2.0+ GPL-3.0+ LGPL-2.1+ LGPL-3.0+ Apache-2.0
LicenseFiles: COPYING COPYINGv2 COPYINGv3 COPYING.LESSERv2 COPYING.LESSERv3 java/LICENSE-2.0.txt
Section: net
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11792
Filename: idn_1.30-1_ramips_24kec.ipk
Size: 12698
MD5Sum: acaeffca3ada722e925f462db8e0cbe9
SHA256sum: 9c6e20a56b69fe22b55d2e5f83d4b5b24aee93b9ab8dfbea68d59ba7f16ca926
Description: GNU Libidn is a fully documented implementation of the Stringprep,
Punycode and IDNA specifications. Libidn's purpose is to encode and
decode internationalized domain names.
Command line tool using libidn
Package: iodine
Version: 0.7.0-1
Depends: libc, kmod-tun, zlib
Source: feeds/packages/net/iodine
License: ISC
LicenseFiles: README
Section: net
Maintainer: Uwe Kleine-König <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26535
Filename: iodine_0.7.0-1_ramips_24kec.ipk
Size: 27187
MD5Sum: d34f471775b35fbfd98d65f2cd85c586
SHA256sum: d76873675d9769fe6f5e71430c029f6dd1d6ac7da78ae010e01bcb6eab38ae39
Description: iodine client version
Package: iodined
Version: 0.7.0-1
Depends: libc, kmod-tun, zlib
Source: feeds/packages/net/iodine
License: ISC
LicenseFiles: README
Section: net
Maintainer: Uwe Kleine-König <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27388
Filename: iodined_0.7.0-1_ramips_24kec.ipk
Size: 28189
MD5Sum: 2f1b28fd38d6e12ccdf318c02ca7c5d7
SHA256sum: 17841bb3f8f93bf89d924dfd6653d2322fa17266ffc34c525d98979d1d7cf366
Description: iodine server version
Package: ipsec-tools
Version: 0.8.2-2
Depends: libc, libopenssl, kmod-ipsec
Source: feeds/packages/net/ipsec-tools
License: BSD-3-Clause
Section: net
Maintainer: Noah Meyerhans <[email protected]>
Architecture: ramips_24kec
Installed-Size: 261124
Filename: ipsec-tools_0.8.2-2_ramips_24kec.ipk
Size: 261488
MD5Sum: 1722a00613b22eb14c0c594df5b122ac
SHA256sum: e4b5f8cfe41be3ca3ee63fd6d8c8898bb78a749f081348c79831aa74f7c8c4f2
Description: IPsec management tools
Package: irssi-nossl
Version: 0.8.17-1
Depends: libc, glib2, libncurses, libpthread
Source: feeds/packages/net/irssi
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 282445
Filename: irssi-nossl_0.8.17-1_ramips_24kec.ipk
Size: 282222
MD5Sum: d4b2723c8c081c2b2c0424b01501cf94
SHA256sum: 19e6474bd1fa113db5541b9966b3b23eeb135f4e51d7a3e020eaac81cb0e2efc
Description: Irssi is a terminal based IRC client for UNIX systems.
This package is built without OpenSSL support.
Package: irssi
Version: 0.8.17-1
Depends: libc, glib2, libncurses, libpthread, libopenssl
Source: feeds/packages/net/irssi
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 286216
Filename: irssi_0.8.17-1_ramips_24kec.ipk
Size: 285929
MD5Sum: 8f0a4240b1e3289b4aa3f62b196b5cc1
SHA256sum: c5a7048869da8c4dcaa7eaab9802292f9254e0d171bf64f3b886431a67903ed3
Description: Irssi is a terminal based IRC client for UNIX systems.
This package is built with OpenSSL support.
Package: jamvm
Version: 2.0.0-1
Depends: libc, zlib, libpthread, librt, classpath
Source: feeds/packages/lang/jamvm
License: GPL-2.0+
Section: lang
Maintainer: Dana H. Myers <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94273
Filename: jamvm_2.0.0-1_ramips_24kec.ipk
Size: 95233
MD5Sum: 8a3f3902262d0d17e13c312dbc8d903c
SHA256sum: d47a9e6c1c6da552aff4855970799a3af084d77952af8f33f09055a41b1bf75f
Description: JamVM is a new Java Virtual Machine which conforms to the JVM
specification version (blue book). In comparison to most other VM's (free
and commercial) it is extremely small.However, unlike other small VMs
(e.g. KVM) it is designed to support the full specification, and includes
support for object finalisation, Soft/Weak/Phantom References, the Java
Native Interface (JNI) and the Reflection API.
Package: jansson
Version: 2.7-1
Depends: libc
Source: feeds/packages/libs/jansson
License: MIT
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18333
Filename: jansson_2.7-1_ramips_24kec.ipk
Size: 19083
MD5Sum: 4946306fee54125668d4be41ad2e3efa
SHA256sum: e136810abdf14f20a1fa014b9079bc640a1466e9924106af7b210c7579e22dc6
Description: Jansson is a C library for encoding, decoding and manipulating JSON data
Package: joe
Version: 3.7-3
Depends: libc, libncurses
Source: feeds/packages/utils/joe
Section: utils
Maintainer: Vitaly Protsko <[email protected]>
Architecture: ramips_24kec
Installed-Size: 174827
Filename: joe_3.7-3_ramips_24kec.ipk
Size: 172847
MD5Sum: 86b7267d7e6e7a5f7ed271d99a0cef66
SHA256sum: a4c690734a7a9f7e948d1c4977c9433aefb01db46c756a04754cc7765cbaf770
Description: Joe is world-famous Wordstar like text editor, that also features
Emacs and Pico emulation
Package: jpeg-tools
Version: 9a-1
Depends: libc, libjpeg
Source: feeds/packages/libs/libjpeg
License: IJG
LicenseFiles: README
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31345
Filename: jpeg-tools_9a-1_ramips_24kec.ipk
Size: 32116
MD5Sum: 5954e681a1270e6b199e5ba3e633ca55
SHA256sum: 3f68085707c1a17db6129b88975819b4e1e69adfeb78535063564be302babc47
Description: The Independent JPEG Group's JPEG manipulation tools
Package: json4lua
Version: 0.9.53-1
Depends: libc, lua, luasocket
Source: feeds/packages/lang/json4lua
License: MIT
Section: lang
Maintainer: Amr Hassan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6477
Filename: json4lua_0.9.53-1_ramips_24kec.ipk
Size: 7218
MD5Sum: 53a20ebc6a4dec5631f16ce2673f7702
SHA256sum: 8a3b254491aa23a8d576529454dbbcf9517d7b1c1c566202aa4c145986086d24
Description: JSON and JSONRPC for Lua
Package: keepalived
Version: 1.2.15-1
Depends: libc, libnl, libopenssl
Source: feeds/packages/net/keepalived
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 75008
Filename: keepalived_1.2.15-1_ramips_24kec.ipk
Size: 75843
MD5Sum: 3fa3862f2576ddfe78fe50922ac55cb4
SHA256sum: b704120ad5014131d74acf8778042dda0ecea3070b24c94ca548f262c81c727c
Description: Failover and monitoring daemon for Linux Virtual Server (LVS) clusters.
Package: kismet-client
Version: 2013-03-R1b-1
Depends: libc, uclibcxx, libnl, libncurses
Source: feeds/packages/net/kismet
License: LGPLv2.1
Section: net
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 276184
Filename: kismet-client_2013-03-R1b-1_ramips_24kec.ipk
Size: 276390
MD5Sum: f84dcaf867d11dd1e839984e71570a62
SHA256sum: 6426d3a02dfbf833eb01ae3dfffdb395675f2794878a259559cb14755a64934b
Description: An 802.11 layer2 wireless network detector, sniffer, and intrusion
detection system.
This package contains the kismet text interface client.
Package: kismet-drone
Version: 2013-03-R1b-1
Depends: libc, uclibcxx, libnl, libpcap, libpcre, libcap, wireless-tools
Source: feeds/packages/net/kismet
License: LGPLv2.1
Section: net
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197404
Filename: kismet-drone_2013-03-R1b-1_ramips_24kec.ipk
Size: 197670
MD5Sum: 99f6bf8ea738d41ab8d3cada110b3259
SHA256sum: 4716b42fe2fe1e63a38de45b99d4c2112db9adc76624d3a020e8fb61cf963104
Description: An 802.11 layer2 wireless network detector, sniffer, and intrusion
detection system.
This package contains the kismet remote sniffing.and monitoring drone.
Package: kismet-server
Version: 2013-03-R1b-1
Depends: libc, uclibcxx, libnl, libpcap, libpcre, libcap, wireless-tools
Source: feeds/packages/net/kismet
License: LGPLv2.1
Section: net
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 348977
Filename: kismet-server_2013-03-R1b-1_ramips_24kec.ipk
Size: 348799
MD5Sum: 3ce8b4b8123b509975a5a941fb47f693
SHA256sum: b1b9de5d44574d4328d1339bd4a85d059482bd4dd9b7ba4c8fff958ed3a58f04
Description: An 802.11 layer2 wireless network detector, sniffer, and intrusion
detection system.
This package contains the kismet server.
Package: kmod-cryptodev
Version: 3.18.9+1.7-ramips-1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-crypto-core, kmod-crypto-authenc, kmod-crypto-hash
Source: feeds/packages/utils/cryptodev-linux
Section: kernel
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18158
Filename: kmod-cryptodev_3.18.9+1.7-ramips-1_ramips_24kec.ipk
Size: 18975
MD5Sum: b0e2c198da0ebd656b07cc3fbae22d37
SHA256sum: 08ab487b88984ec654db02eefb42ee7c2610bbbeb6ccdf2912ef2eaadbde4595
Description: This is a driver for that allows to use the Linux kernel supported
hardware ciphers by user-space applications.
Package: kmod-usb-serial-dmx_usb_module
Version: 3.18.9+0.1.20130818-0.1
Depends: kernel (=3.18.9-1-dbb748582d261495a9a3254ee283cc9d), kmod-usb-serial
Source: feeds/packages/libs/dmx_usb_module
License: GPL-2.0
Section: kernel
Maintainer: Martijn Zilverschoon <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4722
Filename: kmod-usb-serial-dmx_usb_module_3.18.9+0.1.20130818-0.1_ramips_24kec.ipk
Size: 5639
MD5Sum: 48794f64edcd895c7d2d0b8ba2feb6f9
SHA256sum: a326d76cde8f7bab7cd1c853cfedb6ba40226cabc8bbebc0027cef95b4092a44
Description: Open DMX USB is an open USB to DMX dongle hardware design developed by Enttec.
The Open in Open DMX USB refers to the fact that everybody is free to use the
design and produce its own USB DMX Dongle without paying any licenses.
Package: kmod
Version: 20-1
Depends: libc, zlib
Source: feeds/packages/utils/kmod
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Jeff Waugh <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53725
Filename: kmod_20-1_ramips_24kec.ipk
Size: 54538
MD5Sum: 32ec9adb233550f3a39ec38271a11287
SHA256sum: c5dedb116ed2c08018d8b47a6eab565bdcd9b6c4a53c175c3ed3971171bb77f9
Description: Linux kernel module handling
kmod is a set of tools to handle common tasks with Linux kernel modules like
insert, remove, list, check properties, resolve dependencies and aliases.
Package: knot-dig
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29748
Filename: knot-dig_1.6.2-1_ramips_24kec.ipk
Size: 30491
MD5Sum: 9e0125f16feb4d2a051f58bcd8f91724
SHA256sum: dbb8f3b76b120219cdd4b1b81b9492d0845b1493e5c8070698e6be81d87c5134
Description: Knot DNS lookup utility.
Package: knot-host
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30824
Filename: knot-host_1.6.2-1_ramips_24kec.ipk
Size: 31538
MD5Sum: 7554a3b9d82d168470fb7559e213eeb0
SHA256sum: 26e6264d52d391081ace6de5a02835098ed97104c438cb920f7ebca9ec671baa
Description: Knot DNS simple DNS lookup utility.
Package: knot-libknot
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 89473
Filename: knot-libknot_1.6.2-1_ramips_24kec.ipk
Size: 90187
MD5Sum: 80536d7939c20f234a242263e5f27e1e
SHA256sum: ff4240ff8a79293fe43015a3c6a66f4559a2047295cbf235641fdd37943e304c
Description: Knot DNS library.
Package: knot-nsec3hash
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18882
Filename: knot-nsec3hash_1.6.2-1_ramips_24kec.ipk
Size: 19609
MD5Sum: fde0d14a58defd0fba2df33d16ab64f4
SHA256sum: 6a9db723fdfc3188ca3b1e25c56e55f6a72517c7678b17972522f6cbf52e56d1
Description: Knot DNS simple utility to compute NSEC3 hash.
Package: knot-nsupdate
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30498
Filename: knot-nsupdate_1.6.2-1_ramips_24kec.ipk
Size: 31257
MD5Sum: 821a851a8799cf15e3ffd714075a3e2e
SHA256sum: 67615a831eab5125f0183ab090f027ce31b0a67338376a552f8c38a830826faa
Description: Knot DNS dynamic DNS update utility.
Package: knot-tests
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1698326
Filename: knot-tests_1.6.2-1_ramips_24kec.ipk
Size: 1694566
MD5Sum: c31d0d2025ebae66f94e866b98df8b60
SHA256sum: d32056a142f130ab021e80e3dbd3eee67b249ff511e5cd848eee8afc93b4bc75
Description: Unit tests for Knot DNS server.
Usage: /usr/share/knot/runtests.sh
Package: knot
Version: 1.6.2-1
Depends: libc, libopenssl, liburcu, knot-libknot
Source: feeds/packages/net/knot
License: GPL-2.0+
Section: net
Maintainer: Daniel Salzman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 271140
Filename: knot_1.6.2-1_ramips_24kec.ipk
Size: 271708
MD5Sum: 34886449638a989f9f9315306e74c4f4
SHA256sum: 489972e740dc76b452bc05cfa7905d408b850c79ba0190b3ee9591c58cfb6ecb
Description: High-performance authoritative-only DNS server.
Package: knxd-tools
Version: 2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1
Depends: libc, libeibclient
Source: feeds/packages/net/knxd
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29824
Filename: knxd-tools_2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1_ramips_24kec.ipk
Size: 30396
MD5Sum: d96cd616c56777d926f7cdb039287875
SHA256sum: 9c490c4b0e4d5de314a85a002b11c5ab4faf1d0720a5ccefe1486229c2e04adb
Description: EIB KNX Tools
Package: knxd
Version: 2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1
Depends: libc, pthsem, argp-standalone, libusb-1.0
Source: feeds/packages/net/knxd
License: GPL-2.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 180839
Filename: knxd_2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1_ramips_24kec.ipk
Size: 181584
MD5Sum: fa7930e47f2c3ff6f755bb855585ae6d
SHA256sum: f779536af30e136fcf2048d24aeb42a7312b6f38fbe4535bb6333f7180af359b
Description: EIB KNX Daemon
Package: krb5-client
Version: 1.13.1-1
Depends: libc, krb5-libs
Source: feeds/packages/net/krb5
License: MIT
LicenseFiles: NOTICE
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36025
Filename: krb5-client_1.13.1-1_ramips_24kec.ipk
Size: 36659
MD5Sum: e08564247b72eaf5b1c0fba7db65a315
SHA256sum: 32ab615cc619ad38ccfcfdf3cbeb946c10e69cc0361c4bd01b3ecffa8118b968
Description: Kerberos 5 Client
Package: krb5-libs
Version: 1.13.1-1
Depends: libc, libncurses
Source: feeds/packages/net/krb5
License: MIT
LicenseFiles: NOTICE
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 665582
Filename: krb5-libs_1.13.1-1_ramips_24kec.ipk
Size: 655857
MD5Sum: c19bd0daa7097d0b148f09afc362e493
SHA256sum: a34e472b413a1e945210a30f64f5aee8b7028ac59506fb6cc2b059b4f0ec34ae
Description: Kerberos 5 Shared Libraries
Package: krb5-server
Version: 1.13.1-1
Depends: libc, krb5-libs, libpthread
Source: feeds/packages/net/krb5
License: MIT
LicenseFiles: NOTICE
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128732
Filename: krb5-server_1.13.1-1_ramips_24kec.ipk
Size: 128146
MD5Sum: 8193cab54f9ef8b86847a30d54838992
SHA256sum: ca90f2ecf27142e967e4af4a5d0d742a05c1476d300d96585dc3ec7ae2d930a4
Description: Kerberos 5 Server
Package: l7-protocols-testing
Version: 2009-05-28-2
Depends: libc, iptables-mod-filter, l7-protocols, uclibcxx
Source: feeds/packages/net/l7-protocols
License: GPL-2.0
Section: net
Maintainer: Lim Guo Wei <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66054
Filename: l7-protocols-testing_2009-05-28-2_ramips_24kec.ipk
Size: 66868
MD5Sum: 15e1d30dfaa2e53f0536ed7e4d28b0c7
SHA256sum: c23d1cd30882c96b7547e552a81202c297766dcd914a0493cb92d2c6380fa821
Description: testing utilities for layer 7 patterns
Package: l7-protocols
Version: 2009-05-28-2
Depends: libc, iptables-mod-filter
Source: feeds/packages/net/l7-protocols
License: GPL-2.0
Section: net
Maintainer: Lim Guo Wei <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46837
Filename: l7-protocols_2009-05-28-2_ramips_24kec.ipk
Size: 47306
MD5Sum: 9ce24b51aad36ec8e543a73fee6dfcf9
SHA256sum: 0a3c22e829b30137bae168c3a3d732318d3f02d8c8eea3348a82bf4cdfeda773
Description: l7-filter classifies packets based on patterns in application
layer data. This allows correct classification of P2P traffic that
uses unpredictable ports as well as standard protocols running on
non-standard ports.
Package: lame-lib
Version: 3.99.5-1
Depends: libc
Source: feeds/packages/sound/lame
License: LGPL-2.0
LicenseFiles: COPYING LICENSE
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 129347
Filename: lame-lib_3.99.5-1_ramips_24kec.ipk
Size: 130000
MD5Sum: 7b3e481c28d28196ec32e7b8f17c2526
SHA256sum: 24e4aa9d0a23b80b14126c422a9bf7471d468fb2f06c854c7899c660bfb8a851
Description: lame mp3 encoder libs
Package: lame
Version: 3.99.5-1
Depends: libc, libncurses
Source: feeds/packages/sound/lame
License: LGPL-2.0
LicenseFiles: COPYING LICENSE
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 141937
Filename: lame_3.99.5-1_ramips_24kec.ipk
Size: 142607
MD5Sum: e265abeced96510c1548cfd60b42004d
SHA256sum: f517b577d3846927ce9d683391d00d45c05711ec9bfcc785be76f8a71e97ffb1
Description: lame mp3 encoder
Package: less-wide
Version: 458-1
Depends: libc, libncursesw
Source: feeds/packages/utils/less
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57590
Filename: less-wide_458-1_ramips_24kec.ipk
Size: 58592
MD5Sum: 5087fb6b714c3a248c8bb86d1bfe0e97
SHA256sum: 91f9c42b0248b77055a4daeabfa7fcd7b8c864642ddeef641fd4fd5732c4918b
Description: Full version of GNU less utility
This package contains the Unicode enabled version of less.
Package: less
Version: 458-1
Depends: libc, libncurses
Source: feeds/packages/utils/less
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Julen Landa Alustiza <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57588
Filename: less_458-1_ramips_24kec.ipk
Size: 58550
MD5Sum: 686b7aed68fcc4d6ac473f6f279cd749
SHA256sum: 78cfed11f38f5829a8b9b4d914bdf3019c4beafc73719f369a735b5edd51daa6
Description: Full version of GNU less utility
Package: lftp
Version: 4.6.0-1
Depends: libc, libncurses, libopenssl, libreadline, uclibcxx, libexpat
Source: feeds/packages/net/lftp
License: GPL-3.0+
LicenseFiles: COPYING
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 383211
Filename: lftp_4.6.0-1_ramips_24kec.ipk
Size: 384115
MD5Sum: b64ff68ff427b02d3ab0e8f21880fae1
SHA256sum: 1bb34b6e097d30a8d2b95fa032d7e7bd6e8cc672070289142e29b90747614172
Description: LFTP is a sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. GNU Readline library is used for input.
Every operation in lftp is reliable, that is any non-fatal error is handled and the operation is retried automatically. So if downloading breaks, it will be restarted from the point automatically. Even if ftp server does not support REST command, lftp will try to retrieve the file from the very beginning until the file is transferred completely. This is useful for dynamic-ip machines which change their IP addresses quite often, and for sites with very bad internet connectivity.
If you exit lftp when some jobs are not finished yet, lftp will move itself to nohup mode in background. The same happens when you have a real modem hangup or when you close an xterm.
lftp has shell-like command syntax allowing you to launch several commands in parallel in background (&). It is also possible to group commands within () and execute them in background. All background jobs are executed in the same single process. You can bring a foreground job to background with ^Z (c-z) and back with command `wait' (or `fg' which is alias to `wait'). To list running jobs, use command `jobs'. Some commands allow redirecting their output (cat, ls, ...) to file or via pipe to external command. Commands can be executed conditionally based on termination status of previous command (&&, ||).
lftp has builtin mirror which can download or update a whole directory tree. There is also reverse mirror (mirror -R) which uploads or updates a directory tree on server.
There is command `at' to launch a job at specified time in current context, command `queue' to queue commands for sequential execution for current server, and much more.
LFTP supports IPv6 for both FTP and HTTP protocols. For FTP protocol it uses method described in RFC2428.
Other low level stuff supported: ftp proxy, http proxy, ftp over http, opie/skey, fxp transfers, socks.
LFTP supports secure versions of the protocols FTP and HTTP: FTPS (explicit and implicit) and HTTPS. LFTP needs to be linked with an SSL library to support them. GNU TLS and OpenSSL are both supported as SSL backend.
Package: libacl
Version: 20140812-1
Depends: libc, libattr
Source: feeds/packages/utils/acl
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: libs
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11727
Filename: libacl_20140812-1_ramips_24kec.ipk
Size: 12515
MD5Sum: 80e4c0096f3d7262289c88a1b555eb73
SHA256sum: 70474f89efbd5a1da7c8d509431fb4ba015f00505085be50c61ada5cbafaf822
Description: Access control list support
This package provides libacl
Package: libaio
Version: 0.3.110-1
Depends: libc
Source: feeds/packages/libs/libaio
License: LGPL-2.1
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1132
Filename: libaio_0.3.110-1_ramips_24kec.ipk
Size: 1876
MD5Sum: 466973278663d9aff7ff7c07c975cd38
SHA256sum: ce7f458dff68fce88f437405bdd89b497fc4f71e227107db94d0b10643167680
Description: Linux kernel AIO interface access library
Package: libantlr3c
Version: 3.2-1
Depends: libc
Source: feeds/packages/libs/libantlr3c
License: BSD-2-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34059
Filename: libantlr3c_3.2-1_ramips_24kec.ipk
Size: 34994
MD5Sum: caf0f10d07a101ce2f9bda2bb52f060f
SHA256sum: 24adfbc7495edba65a8466504f1aa083c71166d28cdaa664398922146a8da9a7
Description: ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers,
interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
Package: libao
Version: 1.2.0-1
Depends: libc, alsa-lib
Source: feeds/packages/libs/libao
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21358
Filename: libao_1.2.0-1_ramips_24kec.ipk
Size: 22102
MD5Sum: be4b20b9222799d3ee0b8a2cec9fe06e
SHA256sum: 386184272a673e47438183e5d7f9b1dc10a9ebc40bcca2c484232eb5685d2ea8
Description: Libao is a cross-platform audio library that allows programs to
output audio using a simple API on a wide variety of platforms.
Package: libapr
Version: 1.5.1-1
Depends: libc, libpthread, librt, libuuid
Source: feeds/packages/libs/apr
License: Apache License
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 68873
Filename: libapr_1.5.1-1_ramips_24kec.ipk
Size: 69664
MD5Sum: 08dfb4d77dab5296390ce2bd54b407b9
SHA256sum: 906fe230ae0d290d2f10c3cd32b8170a8fe64c0cad223297277e0ad20fb9a15f
Description: Apache Portable Runtime Library
Package: libaprutil
Version: 1.5.4-1
Depends: libc, libapr, libexpat, libsqlite3, libuuid
Source: feeds/packages/libs/apr-util
License: Apache License
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69910
Filename: libaprutil_1.5.4-1_ramips_24kec.ipk
Size: 70688
MD5Sum: 0e44172391cc924f24e96114c0ade889
SHA256sum: 25502efc04963b24832b84d431d416414ebb64a74afb9e4c772321e95878b1df
Description: Apache Portable Runtime Utility Library
Package: libarchive
Version: 3.1.2-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/libs/libarchive
License: BSD-2-Clause
Section: libs
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 237431
Filename: libarchive_3.1.2-1_ramips_24kec.ipk
Size: 237441
MD5Sum: d897171444dca537e15c45a5890a5bcd
SHA256sum: aff7fc68987d2143396fa5de26718fe00d479f37a73bf9afaee155587c2fce91
Description: Multi-format archive and compression library
Package: libartnet
Version: 1.1.2-1.1
Depends: libc
Source: feeds/packages/libs/libartnet
License: GPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Martijn Zilverschoon <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15826
Filename: libartnet_1.1.2-1.1_ramips_24kec.ipk
Size: 16625
MD5Sum: fb1bf00ff392466573a99039d7d6a47e
SHA256sum: 89d50a35753b3db8e3bb324032a576bceb2ae14c9447ce5bec261ea911e96b3c
Description: Libartnet is an implementation of the ArtNet protocol. ArtNet allows the
transmission of DMX and related data over IP networks.
Package: libasm
Version: 0.161-1
Depends: libc, libelf1
Source: feeds/packages/libs/elfutils
License: GPL-3.0+
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11856
Filename: libasm_0.161-1_ramips_24kec.ipk
Size: 12619
MD5Sum: d75077e17765c9c90801e28556e982f9
SHA256sum: 9d2db9a78a4c8533cea1dfab35472ae131fa06b331549dccd755d8d5ca164e1f
Description: ELF manipulation libraries (libasm)
Package: libattr
Version: 20150220-1
Depends: libc
Source: feeds/packages/utils/attr
License: LGPL-2.1 GPL-2.0
LicenseFiles: doc/COPYING doc/COPYING.LGPL
Section: libs
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6452
Filename: libattr_20150220-1_ramips_24kec.ipk
Size: 7268
MD5Sum: d34d9d0b134772c3d643f35fecabb244
SHA256sum: 590cd1e6e75ab16bf0e4eda1e991c6b348bfe4b95927b88e27456b2641bef71f
Description: Extended attributes support
This package provides libattr
Package: libaudiofile
Version: 0.3.6-3
Depends: libc, libflac, libstdcpp
Source: feeds/packages/libs/libaudiofile
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84158
Filename: libaudiofile_0.3.6-3_ramips_24kec.ipk
Size: 84821
MD5Sum: d3134a931388fbf7fb5458cb17b44b8f
SHA256sum: f144db7e84b77b9ba345ba6e2e7853371df64af0818197b8081927a998ad9807
Description: The audiofile library allows the processing of audio data to and from audio
files of many common formats (currently AIFF, AIFF-C, WAVE, NeXT/Sun, BICS,
FLAC, ALAC, and raw data).
Package: libavahi-client
Version: 0.6.31-11
Depends: libc, avahi-dbus-daemon
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16491
Filename: libavahi-client_0.6.31-11_ramips_24kec.ipk
Size: 17564
MD5Sum: ed6e926a26bd3b8034029a27910ce855
SHA256sum: 80d1e261a4e76f998e1574b49df2a043f26500eae3ab18138fe9029c488bcb92
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This packages adds the libavahi-client library.
It also automatically adds the required
libavahi-dbus-support and the avahi-dbus-daemon packages.
For more information please see the avahi documentation.
Package: libavahi-compat-libdnssd
Version: 0.6.31-11
Depends: libc, libavahi-client
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10022
Filename: libavahi-compat-libdnssd_0.6.31-11_ramips_24kec.ipk
Size: 11124
MD5Sum: 817d9acbc5b381edb0bacbd53b406314
SHA256sum: 67f93045bb5b92904811d3193ee2f066ee819b9dd584075baf7a248a3655eb6a
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
This packages adds the libavahi-compat-libdnssd library.
It also automatically adds the required libavahi-client package.
For more information please see the avahi documentation.
Package: libavahi-dbus-support
Version: 0.6.31-11
Depends: libc, dbus
Provides: libavahi
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67180
Filename: libavahi-dbus-support_0.6.31-11_ramips_24kec.ipk
Size: 68529
MD5Sum: 3907cfadca94d8b96256719fdddd1fef
SHA256sum: 0ecc7dc6f69c0119e89c6df12ff479e301fc4710737a6193359cc5cdc35a64a5
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
The libavahi package contains the mDNS/DNS-SD shared libraries,
used by other programs. Specifically, it provides
libavahi-core and libavahi-common libraries.
.
The libavahi-dbus-support package enables
D-Bus support in avahi, needed to support
the libavahi-client library and avahi-utils.
.
Selecting this package modifies the build configuration
so that avahi packages are built with support for D-BUS enabled;
it does not generate a separate binary of its own.
It also automatically adds the D-Bus package to the build.
libavahi-dbus-support is selected automatically if you select
libavahi-client or avahi-utils.
Package: libavahi-nodbus-support
Version: 0.6.31-11
Depends: libc, libpthread
Provides: libavahi
Source: feeds/packages/libs/avahi
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66662
Filename: libavahi-nodbus-support_0.6.31-11_ramips_24kec.ipk
Size: 67898
MD5Sum: 15daf14846f3fcdf5d388d10e5117847
SHA256sum: 3597461462b3b88ce046be8ab99274ef5999ca48f314c5f8a76002cccf0e49ca
Description: Avahi is an mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf)
implementation (library). It facilitates
service discovery on a local network -- this means that
you can plug your laptop or computer into a network and
instantly be able to view other people who you can chat with,
find printers to print to or find files being shared.
This kind of technology is already found in MacOS X
(branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
and is very convenient.
.
The libavahi package contains the mDNS/DNS-SD shared libraries,
used by other programs. Specifically, it provides
libavahi-core and libavahi-common libraries.
.
Selecting this package modifies the build configuration
so that avahi packages are built without support for D-BUS enabled;
it does not generate a separate binary of its own.
Package: libavl
Version: 0.3.5-1
Depends: libc
Source: feeds/packages/libs/libavl
License: LGPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3260
Filename: libavl_0.3.5-1_ramips_24kec.ipk
Size: 4014
MD5Sum: 69676f361e130e8856a8379a948076fc
SHA256sum: aaee2c928f79d6d445559c5db593c5acbb992af5da1bf4632b3209227fafde95
Description: AVLTree is a small implementation of AVL trees for the C programming language.
Package: libbz2
Version: 1.0.6-1
Depends: libc
Source: feeds/packages/utils/bzip2
License: BZIP2
LicenseFiles: LICENSE
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25273
Filename: libbz2_1.0.6-1_ramips_24kec.ipk
Size: 26023
MD5Sum: 98077d0de803e0604253940d66a4ae4c
SHA256sum: 5ed619d25a42af2835b2b5f2f27ff6e92f4786a46aa39dc517f237e5df08df04
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This packages provides libbz2 library.
Package: libcap
Version: 2.24-1
Depends: libc
Source: feeds/packages/libs/libcap
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5519
Filename: libcap_2.24-1_ramips_24kec.ipk
Size: 6224
MD5Sum: 828799f9f069a75864089e0e8fabdc85
SHA256sum: 9841c9ea9799b3abebf5fb1361f7ec55d19ec6923bb1c0d8a6f598f7d5dc48b8
Description: Linux capabilities library
Package: libcares
Version: 1.10.0-1
Depends: libc
Source: feeds/packages/libs/c-ares
License: MIT
Section: libs
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27164
Filename: libcares_1.10.0-1_ramips_24kec.ipk
Size: 27997
MD5Sum: f42c6dad2a2e4dd2508b06ef2ba1b473
SHA256sum: 881d2660712ac13b1f73927c49b28be673ee8a39a34eff2f4ac4a2e2784ea68a
Description: c-ares is a C library for asynchronous DNS requests (including name resolves)
C89 compatibility, MIT licensed, builds for and runs on POSIX, Windows,
Netware, Android and many more operating systems.
Package: libdaemon
Version: 0.14-5
Depends: libc
Source: feeds/packages/libs/libdaemon
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8247
Filename: libdaemon_0.14-5_ramips_24kec.ipk
Size: 9277
MD5Sum: d99b8faca2206405c2a33f7aed500916
SHA256sum: 2be989fb7d3c480c458435ec45aef417de1732274d86a2c60c8d109af5891fab
Description: libdaemon is a lightweight C library that eases the writing of UNIX daemons.
It consists of the following parts:
- A wrapper around fork() which does the correct daemonization procedure of a process
- A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR
- An API for writing PID files
- An API for serializing UNIX signals into a pipe for usage with select() or poll()
- An API for running subprocesses with STDOUT and STDERR redirected to syslog
APIs like these are used in most daemon software available. It is not that
simple to get it done right and code duplication is not a goal.
Package: libdaq
Version: 2.0.4-1
Depends: libc, libdnet, libpcap
Source: feeds/packages/libs/libdaq
License: GPL-2.0
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76720
Filename: libdaq_2.0.4-1_ramips_24kec.ipk
Size: 77490
MD5Sum: bcf680ddb8bfda438c747d5619a17f6a
SHA256sum: b7e0aaf1d2c816bcfb5643cd8e277a942ece3f80470ad7590daa3947334196cf
Description: Data Acquisition library for packet I/O.
Package: libdb47
Version: 4.7.25.4.NC-3
Depends: libc, libxml2
Provides: libdb47-full
Source: feeds/packages/libs/db47
License: Sleepycat
LicenseFiles: LICENSE
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 472718
Filename: libdb47_4.7.25.4.NC-3_ramips_24kec.ipk
Size: 472829
MD5Sum: 767e1d9b6ac43a1159fa20c921f7af77
SHA256sum: 502a4400a709b9cd130509be2dd039f6d7aaf5d6f2ae166c5a05e4fcbea392c3
Description: Berkeley DB library (4.7).
Package: libdb47xx
Version: 4.7.25.4.NC-3
Depends: libc, libdb47, uclibcxx
Provides: libdb47xx-full
Source: feeds/packages/libs/db47
License: Sleepycat
LicenseFiles: LICENSE
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 503448
Filename: libdb47xx_4.7.25.4.NC-3_ramips_24kec.ipk
Size: 503446
MD5Sum: 220bf3a68ba05e2f9478087e1249dc25
SHA256sum: b36e659c8ce5589d52dc101de98562758f111db9b78b1a31d5376259232c7c04
Description: Berkeley DB library (4.7). C++ wrapper.
Package: libdbd-mysql
Version: 0.9.0-1
Depends: libc, libdbi, libmysqlclient
Source: feeds/packages/libs/libdbi-drivers
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9526
Filename: libdbd-mysql_0.9.0-1_ramips_24kec.ipk
Size: 10193
MD5Sum: 9312fc909e457eeb0bb754d72e8e1e33
SHA256sum: 03838e0afee2d37b4db4f35d296cc8be358d27f98d4c2b193f4335bcef25544f
Description: MySQL database server driver for libdbi
Package: libdbd-pgsql
Version: 0.9.0-1
Depends: libc, libdbi, libpq
Source: feeds/packages/libs/libdbi-drivers
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11721
Filename: libdbd-pgsql_0.9.0-1_ramips_24kec.ipk
Size: 12161
MD5Sum: 8aefc2c51b01b3244bb6246f2e75e89d
SHA256sum: 88f9c96dc1345ad38d9fca1e576ff85e6b40b5c0911446e0338a9e2df91f728c
Description: PostgreSQL database server driver for libdbi
Package: libdbd-sqlite3
Version: 0.9.0-1
Depends: libc, libdbi, libsqlite3
Source: feeds/packages/libs/libdbi-drivers
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12648
Filename: libdbd-sqlite3_0.9.0-1_ramips_24kec.ipk
Size: 13300
MD5Sum: 7aaa2334674957db840b9d2504be4243
SHA256sum: 0be06680b9d615d1cb0bbea58fea74cc86063a0b0ed06d0b557c1072a6eadba3
Description: SQLite3 database driver for libdbi
Package: libdbi
Version: 0.9.0-4
Depends: libc
Source: feeds/packages/libs/libdbi
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16812
Filename: libdbi_0.9.0-4_ramips_24kec.ipk
Size: 17576
MD5Sum: 1b27535706fa409a30aebfd6670746ff
SHA256sum: 9a1ec0864e3163267fa83bab3eb47260a50e708305f2e21c4a8868036b7b09e8
Description: This package provides a database-independent abstraction layer library in C.
Package: libdbus
Version: 1.9.10-1
Depends: libc, libpthread
Source: feeds/packages/utils/dbus
License: AFL-2.1
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 96778
Filename: libdbus_1.9.10-1_ramips_24kec.ipk
Size: 97559
MD5Sum: be168329457602258ad02cd7f221fad1
SHA256sum: cb0448ee7d446da65aadeaa4f1295da200572079689b4f124d24a9832d250f4e
Description: Simple interprocess messaging system (library)
Package: libdevmapper
Version: 2.02.117-1
Depends: libc, kmod-dm, libpthread
Source: feeds/packages/utils/lvm2
License: GPL-2.0 LGPL-2.1
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94316
Filename: libdevmapper_2.02.117-1_ramips_24kec.ipk
Size: 95207
MD5Sum: d31f988ea80cc534e26a9c2c9bf92f89
SHA256sum: ea6837f4a19454bdd886d3cb725f6bc7b35aec096ac752157808480d01bdac1d
Description: The device-mapper is a component of the 2.6 linux kernel that supports logical
volume management. It is required by LVM2 and EVMS.
Package: libdmapsharing
Version: 2.9.30-1
Depends: libc, libsoup, mdnsresponder, gstreamer1, gst1-plugins-base, libgst1app
Source: feeds/packages/libs/libdmapsharing
License: LGPLv2.1
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60320
Filename: libdmapsharing_2.9.30-1_ramips_24kec.ipk
Size: 61040
MD5Sum: fd68e5218b6ad98f9578bb88591015cc
SHA256sum: 5fd0393a4266807b4a1731c8a5e44e9cf4d7da77d7dca18c95c99e323ad50588
Description: libdmapsharing
Package: libdnet
Version: 1.12-1
Depends: libc
Source: feeds/packages/libs/libdnet
License: BSD
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26819
Filename: libdnet_1.12-1_ramips_24kec.ipk
Size: 26642
MD5Sum: c970ea619b8034c4700534d02c6eb334
SHA256sum: ab3fbdf0d8e5ac75cbfaeb455b26eda9fe149ed8df8c8fcb66d33e6e5c136773
Description: libdnet is a library of simplified, portable interface to several low-level
networking routines.
Package: libdw
Version: 0.161-1
Depends: libc, libelf1, zlib, libbz2
Source: feeds/packages/libs/elfutils
License: GPL-3.0+
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 124967
Filename: libdw_0.161-1_ramips_24kec.ipk
Size: 125570
MD5Sum: 89a6ea875374a0e22f8fb7c643ab9702
SHA256sum: ab04b3186411e8ae41040949be37b45eca0f6a8d81ecf3ea9b49a7a86badf854
Description: ELF manipulation libraries (libdw)
Package: libeibclient
Version: 2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1
Depends: libc, pthsem
Source: feeds/packages/net/knxd
License: GPL-2.0+
LicenseFiles: LICENSE
Section: libs
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8751
Filename: libeibclient_2015-03-17-2c6c6732a684dffb87b391ea92cccdf07c8385b8-1_ramips_24kec.ipk
Size: 9557
MD5Sum: bf63753ef246807501148a0baa3d7dae
SHA256sum: 7ff68b92b5e21ba79b34f4bb61dd2412b20f5a3f2eee419d6f43ddb3f179741a
Description: EIB KNX client library
Package: libelf1
Version: 0.161-1
Depends: libc
Source: feeds/packages/libs/elfutils
License: GPL-3.0+
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34150
Filename: libelf1_0.161-1_ramips_24kec.ipk
Size: 34982
MD5Sum: 97b3b5b3907663c720df2845c0ebadf7
SHA256sum: 441d1e6532ac81c9cf2f32f9a4155eb0fe243b03a24a957229c520317d3524a0
Description: ELF manipulation libraries (libelf)
Package: libesmtp
Version: 1.0.6-2
Depends: libc, libpthread
Source: feeds/packages/libs/libesmtp
License: LGPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20792
Filename: libesmtp_1.0.6-2_ramips_24kec.ipk
Size: 21513
MD5Sum: a75a78b8878850932594607753259aef
SHA256sum: 29fcc2b7a4f9fabbeb0c79a5fb6c55b35e1748ab14dd42c53fdf15104272232a
Description: A Library for Posting Electronic Mail
Package: libevent
Version: 1.4.14b-2
Depends: libc, librt
Source: feeds/packages/libs/libevent
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 86193
Filename: libevent_1.4.14b-2_ramips_24kec.ipk
Size: 87015
MD5Sum: df65eb5895c5f978c79d5d25e8349428
SHA256sum: 09ca8b14c34d09c70c9179d1ce391f053f7d8520dd457be9d6240e52373120ea
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
Package: libevhtp
Version: 1.2.10-1
Depends: libc, libevent2, libevent2-openssl, libevent2-pthreads, libopenssl, libpthread
Source: feeds/packages/libs/libevhtp
License: BSD-3-Clause
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105832
Filename: libevhtp_1.2.10-1_ramips_24kec.ipk
Size: 105546
MD5Sum: 29c4c937dce337421e6706970084da0f
SHA256sum: 25b7273441e17648725b4b940a80e4f34607fc5ed25c33121d7b53f76da62bc3
Description: Libevhtp was created as a replacement API for Libevent's current HTTP API.
The reality of libevent's http interface is that it was created as a JIT server,
meaning the developer never thought of it being used for creating a full-fledged HTTP service.
Package: libexif
Version: 0.6.21-1
Depends: libc
Source: feeds/packages/libs/libexif
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 61857
Filename: libexif_0.6.21-1_ramips_24kec.ipk
Size: 61946
MD5Sum: 6ab104e2682ae2b3e057d750a0b68547
SHA256sum: 77004aa9dddf34aa49a5024ea10aed6c1805ef74bd5892003b36493f43d56e76
Description: libexif is a library for parsing, editing, and saving EXIF data. It is
intended to replace lots of redundant implementations in command-line
utilities and programs with GUIs.
Package: libexpat
Version: 2.1.0-3
Depends: libc
Source: feeds/packages/libs/expat
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 52595
Filename: libexpat_2.1.0-3_ramips_24kec.ipk
Size: 53245
MD5Sum: bda8f530f92ad3ff701e5b9aa7fa6ac1
SHA256sum: 4cb96cf80c8e599df52e3d8a83acaac3170632798dec1ba4d45cf809d0eff0a9
Description: A fast, non-validating, stream-oriented XML parsing library.
Package: libexslt
Version: 1.1.28-2
Depends: libc, libxslt
Source: feeds/packages/libs/libxslt
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26621
Filename: libexslt_1.1.28-2_ramips_24kec.ipk
Size: 27303
MD5Sum: e37a29a164598bd35ccefc556bfdffba
SHA256sum: 85bee29e565c0355e1cda9cd37164539142f06bc1fc20b91dbd0f43d89e00c2a
Description: An extension for XSLT.
Package: libf2fs
Version: 1.4.0-1
Depends: libc
Source: feeds/packages/utils/f2fs-tools
License: GPLv2
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4380
Filename: libf2fs_1.4.0-1_ramips_24kec.ipk
Size: 5109
MD5Sum: 49fc3b529e290e8a669081903c4a5de4
SHA256sum: 72bdcb2e224b28ffe5c3c3130ca3ff454571d210d45c586729bcbc1ff7578ae9
Description: Library for Flash-Friendly File System (F2FS) tools
Package: libfaad2
Version: 2.7-3
Depends: libc
Source: feeds/packages/libs/faad2
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 139601
Filename: libfaad2_2.7-3_ramips_24kec.ipk
Size: 140427
MD5Sum: 0c5ea8c83a49f844c60feec678faacab
SHA256sum: e203f124613d236137e4a0308dcf68b8a06df98fec452b9962867351738220a5
Description: FAAD2 is the fastest ISO AAC audio decoder available.
FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN,
LOW, LTP, LD and ER object type AAC files.
This package contains the library.
Package: libffi
Version: 3.0.13-1
Depends: libc
Source: feeds/packages/libs/libffi
License: MIT
LicenseFiles: LICENSE
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5309
Filename: libffi_3.0.13-1_ramips_24kec.ipk
Size: 6307
MD5Sum: 92404667b58d29e05cf4010120b45b5f
SHA256sum: 545d7cac3f2d00badf56381fa2aed73200acc83fa218bf503daedc34ebd353f3
Description: The libffi library provides a portable, high level programming interface to
various calling conventions. This allows a programmer to call any function
specified by a call interface description at run-time.
FFI stands for Foreign Function Interface. A foreign function interface is the
popular name for the interface that allows code written in one language to call
code written in another language. The libffi library really only provides the
lowest, machine dependent layer of a fully featured foreign function interface.
A layer must exist above libffi that handles type conversions for values passed
between the two languages.
Package: libffmpeg-audio-dec
Version: 2.5.4-1
Depends: libc, libpthread, zlib, libbz2, libopus, libspeex
Provides: libffmpeg
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 819275
Filename: libffmpeg-audio-dec_2.5.4-1_ramips_24kec.ipk
Size: 817388
MD5Sum: 8d47b70e71b01c01547ca01f3e7ee81c
SHA256sum: 76ed9487eda997fca82a391f4d10dca16c2da6568d47eeffe4035c6b5cd55c7b
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains FFmpeg shared libraries for audio decoding
Package: libffmpeg-full
Version: 2.5.4-1
Depends: libc, libpthread, zlib, libbz2, alsa-lib
Provides: libffmpeg
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4601750
Filename: libffmpeg-full_2.5.4-1_ramips_24kec.ipk
Size: 4584941
MD5Sum: 44877607db9749f997a4d126902a797b
SHA256sum: 535b4b0c408778bb3531b26926a04a6c220352397806123f21346677cedf596d
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains full-featured FFmpeg shared libraries.
Package: libffmpeg-mini
Version: 2.5.4-1
Depends: libc, libpthread, zlib, libbz2
Provides: libffmpeg
Source: feeds/packages/multimedia/ffmpeg
License: LGPL-2.1+ GPL-2+ LGPL-3
LicenseFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 868031
Filename: libffmpeg-mini_2.5.4-1_ramips_24kec.ipk
Size: 865679
MD5Sum: 4f9ab86612b416e1726f530551b043bd
SHA256sum: 1aad96d0c4d18f964c8fa87c112ef56802b268f2a782aa27f9fe195dbf266db7
Description: FFmpeg is a a software package that can record, convert and stream digital
audio and video in numerous formats.
.
This package contains minimal-featured FFmpeg shared libraries.
Package: libfko
Version: 2.6.5-1
Depends: libc
Source: feeds/packages/net/fwknop
License: GPLv2
Section: libs
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28920
Filename: libfko_2.6.5-1_ramips_24kec.ipk
Size: 30010
MD5Sum: 13687547d6dfe859c3e7e4eca9bbe0fe
SHA256sum: f27b5ee2ff11af80523b7a12be928d19785e1d7906bfcef5122484d2ef6efe65
Description: Fwknop implements an authorization scheme known as Single Packet Authorization
(SPA) for Linux systems running iptables. This mechanism requires only a
single encrypted and non-replayed packet to communicate various pieces of
information including desired access through an iptables policy. The main
application of this program is to use iptables in a default-drop stance to
protect services such as SSH with an additional layer of security in order to
make the exploitation of vulnerabilities (both 0-day and unpatched code) much
more difficult.
This package contains the libfko shared library.
Package: libflac
Version: 1.3.1-1
Depends: libc
Source: feeds/packages/libs/flac
License: GFDL-1.2 GPL-2 LGPL-2.1 BSD-3-Clause
LicenseFiles: README COPYING.FDL COPYING.GPL COPYING.LGPL COPYING.Xiph
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 85110
Filename: libflac_1.3.1-1_ramips_24kec.ipk
Size: 85969
MD5Sum: f85753ef6836360d94414464854cbe23
SHA256sum: 66950dab5685e139d26ddacfe40f8473383ea34385d56b6d3bcb4c023d65d05a
Description: Free Lossless Audio Codec library
Package: libfreetype
Version: 2.5.5-1
Depends: libc, zlib, libbz2
Source: feeds/packages/libs/freetype
License: FTL GPL-2.0 MIT ZLIB
LicenseFiles: docs/LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT src/bdf/README src/pcf/README src/gzip/zlib.h
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 256506
Filename: libfreetype_2.5.5-1_ramips_24kec.ipk
Size: 257092
MD5Sum: 84e6a5c39c5c69fffa44cb0f194b8d54
SHA256sum: dced724aad0b9b07b6d6412566350561f4821dd9856a6384dc949a9f3845e022
Description: The FreeType project is a team of volunteers who develop free,
portable and high-quality software solutions for digital typography.
They specifically target embedded systems and focus on bringing small,
efficient and ubiquitous products.
Package: libftdi1
Version: 1.2-3
Depends: libc, libusb-1.0
Source: feeds/packages/libs/libftdi1
License: LGPL-2.0
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19307
Filename: libftdi1_1.2-3_ramips_24kec.ipk
Size: 20240
MD5Sum: e222b0d4e6e01fea4d04fb96cc73bd30
SHA256sum: 775b9dee2a451ff8d83154953377f02548ba8c7b45551928643707c41992e8f1
Description: libFTDI - FTDI USB driver with bitbang mode
libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode.
The library is linked with your program in userspace, no kernel driver required.
Package: libftdi
Version: 0.20-3
Depends: libc, libusb-compat
Source: feeds/packages/libs/libftdi
License: LGPL-2.0
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10277
Filename: libftdi_0.20-3_ramips_24kec.ipk
Size: 11201
MD5Sum: 447b239ab2e83696ed6c83a4a64a1aa3
SHA256sum: d1e04270ab4bd212d0d97ead62ad71ae6ec2559f523836d9ca13da3485cb0e38
Description: libFTDI - FTDI USB driver with bitbang mode
libFTDI is an open source library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232H, FT4232H, FT2232D and FT245R, including the popular bitbang mode.
The library is linked with your program in userspace, no kernel driver required.
Package: libgcrypt
Version: 1.6.1-1
Depends: libc, libgpg-error
Source: feeds/packages/libs/libgcrypt
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 288612
Filename: libgcrypt_1.6.1-1_ramips_24kec.ipk
Size: 287754
MD5Sum: ac17ec96ea2d61678496b9935626d04d
SHA256sum: 08a4ae01ad1a2db44dd4c6df3c5570205ea6b03dca14dae34739eb1341bac627
Description: This is a general purpose cryptographic library based on the code from
GnuPG. It provides functions for all cryptograhic building blocks:
symmetric ciphers (AES, DES, Arcfour, CAST5), hash algorithms (MD5, SHA-1,
RIPE-MD160, SHA-224/256, SHA-384/512), MACs (HMAC for all hash
algorithms), public key algorithms (RSA, DSA), large integer functions,
random numbers and a lot of supporting functions. Some algorithms have
been disabled to reduce size (Blowfish, Twofish, Serpent,
RC2, SEED, Camellia, CRC, MD4, TIGER-192, Whirlpool, ElGamal, ECC).
Package: libgd
Version: 2.1.1-1
Depends: libc, libjpeg, libpng
Source: feeds/packages/libs/libgd
License: MIT
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 102183
Filename: libgd_2.1.1-1_ramips_24kec.ipk
Size: 101648
MD5Sum: 0e797f3c22a2bf81ef24916a057e4e49
SHA256sum: 689086967089c11cc48bd095000b309ae0880c13218091cf5284240ede2d0722
Description: GD is an open source code library for the dynamic creation of images by
programmers. GD creates PNG, JPEG and GIF images, among other formats.
Package: libgdbm
Version: 1.11-1
Depends: libc
Source: feeds/packages/libs/gdbm
License: GPL-3.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17374
Filename: libgdbm_1.11-1_ramips_24kec.ipk
Size: 18226
MD5Sum: d28a3cc212cc5b1fe55bfd96ddc9c1ba
SHA256sum: 54840df8486e57655032ae77a11fe339af0c75c89a9e342f548d84e377d0f5b2
Description: GNU database manager library
GNU dbm is a set of database routines that use extendible hashing and
works similar to the standard UNIX dbm routines.
Package: libgnutls-openssl
Version: 3.3.13-3
Depends: libc, libgnutls
Source: feeds/packages/libs/gnutls
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32200
Filename: libgnutls-openssl_3.3.13-3_ramips_24kec.ipk
Size: 33175
MD5Sum: f339d3b9cd19e38ffcacbe3dbe92e5da
SHA256sum: 4772225a738cbc197458a51af3a6d7f2d9241d81d1dbe09fd0f080875d65a5b7
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS OpenSSL compatibility layer shared library.
Package: libgnutls
Version: 3.3.13-3
Depends: libc, libnettle, libgmp
Source: feeds/packages/libs/gnutls
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 286971
Filename: libgnutls_3.3.13-3_ramips_24kec.ipk
Size: 287119
MD5Sum: 80059761383a311725911f95158e09c1
SHA256sum: 7ae2520357ae3dc5f01ce340f359f0d1a4dd148b0ecb5f797610d721bfb0e8e5
Description: GnuTLS is a secure communications library implementing the SSL, TLS
and DTLS protocols and technologies around them. It provides a simple
C language application programming interface (API) to access the secure
communications protocols as well as APIs to parse and write X.509, PKCS12,
OpenPGP and other required structures. It is aimed to be portable and
efficient with focus on security and interoperability.
This package contains the GnuTLS shared library, needed by other programs.
Package: libgpg-error
Version: 1.12-1
Depends: libc
Source: feeds/packages/libs/libgpg-error
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5715
Filename: libgpg-error_1.12-1_ramips_24kec.ipk
Size: 6572
MD5Sum: f6c0e017701e8b1639ff0cb6f22d087b
SHA256sum: 0b549128438bba1665ef46629a63bfb9e425a6985f16bc0deba3a3febb18c996
Description: An helper library for common error codes and descriptions.
This is a library that defines common error values for all GnuPG
components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
Libksba, DirMngr, Pinentry, SmartCard Daemon and possibly more in the
future.
Package: libgst1allocators
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3330
Filename: libgst1allocators_1.4.5-1_ramips_24kec.ipk
Size: 4108
MD5Sum: 094248b0610a8e31eadc422afc01e22f
SHA256sum: 834a1b34895387620a4104117bfa95c5704836da7421e9917c7e66090ffa3b7e
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer allocators library.
Package: libgst1app
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15733
Filename: libgst1app_1.4.5-1_ramips_24kec.ipk
Size: 16510
MD5Sum: 9a9c476b032f081175ae0ec733460581
SHA256sum: 058c68f4ee12d1c16ba51e39df84c8e5a9a181414c3636ff3f1d71aafcf9a358
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer app library.
Package: libgst1audio
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100877
Filename: libgst1audio_1.4.5-1_ramips_24kec.ipk
Size: 101269
MD5Sum: 7d476d0f25ac191a96da4d7f2331f475
SHA256sum: bef2f39442b4e6edc37eebd479bd56ddabdf55f2da2648fca08fd5ff769774a0
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer audio library.
Package: libgst1basecamerabinsrc
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1app
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8898
Filename: libgst1basecamerabinsrc_1.4.5-1_ramips_24kec.ipk
Size: 9742
MD5Sum: 2df1b53153e19d427662b96e42822a3b
SHA256sum: 8c15f3fce7c370b1ce8662e826349ddf654d285940bfd6bd83f48512627c77ee
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer basecamerabinsrc library.
Package: libgst1check
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27428
Filename: libgst1check_1.4.5-1_ramips_24kec.ipk
Size: 28169
MD5Sum: 836c3b0c7d042c3f48dce90fbd9cf03f
SHA256sum: 9b13d6f414cc2d8b3405887d531f78782140cbf2dda0202dccc6e869806efd82
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer check unit testing library.
Package: libgst1controller
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20613
Filename: libgst1controller_1.4.5-1_ramips_24kec.ipk
Size: 21388
MD5Sum: f906f0a1efc633a410c9e364ff75da88
SHA256sum: bfe289072107eeb18c8bf9bf60c1ce389cc8560743805caade4e57c436e2d02c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer dynamic parameter control library.
Package: libgst1fft
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18924
Filename: libgst1fft_1.4.5-1_ramips_24kec.ipk
Size: 19715
MD5Sum: 106dc87c14a49e1a2652a3844c7c08b7
SHA256sum: 2c7f2d1d1f473fe29fe6bcb25961acd4b9e7b9ccbb3d6c90e1343fa9b6d0b6a1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer FFT library.
Package: libgst1net
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11386
Filename: libgst1net_1.4.5-1_ramips_24kec.ipk
Size: 12175
MD5Sum: 7f11c1ffb918917cc02d7dc5366c12f3
SHA256sum: 5c026b0f4481ea7cdcfe9dec1e4f1bb1035ae7df0ea39d7da05640470d79fb41
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer network classes library.
Package: libgst1pbutils
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag, libgst1video
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46662
Filename: libgst1pbutils_1.4.5-1_ramips_24kec.ipk
Size: 47250
MD5Sum: affb8c82bb6789ed54951488b2760e3a
SHA256sum: 6d975524144f1adbfaf22cbaba16bc5588a9ae9a2066041d29d9a115939a037c
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer utils library.
Package: libgst1photography
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-bad
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6926
Filename: libgst1photography_1.4.5-1_ramips_24kec.ipk
Size: 7728
MD5Sum: 9ac7459910a503a410b45d12f5edd33a
SHA256sum: a48c831975beb297d43c0910efd7e0c19891029564aba622056834b5db007c31
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer photography library.
Package: libgst1riff
Version: 1.4.5-1
Depends: libc, libgstreamer1, libgst1audio, libgst1tag
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19620
Filename: libgst1riff_1.4.5-1_ramips_24kec.ipk
Size: 20414
MD5Sum: 6d2182f8cec887a6fb4482eeef8b42cd
SHA256sum: 22ef2ab1dd4e20000e657e48eadf66d5af452e390d6ae9869069d2f6b0fdbe8f
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RIFF media library.
Package: libgst1rtp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32845
Filename: libgst1rtp_1.4.5-1_ramips_24kec.ipk
Size: 33669
MD5Sum: e6759e55dddd562076fa43fff6b63530
SHA256sum: 622a872208d125b286084f6117ba815fcd638f50c2e329d47ec0ef3364593bbf
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTP library.
Package: libgst1rtsp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37241
Filename: libgst1rtsp_1.4.5-1_ramips_24kec.ipk
Size: 37916
MD5Sum: 0e2573868be21e765a37b0a38779af29
SHA256sum: eb77dff37d8c5c3bca462951cb536bb5194ccdeb40b39ac2dd0ae84b3b663940
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer RTSP library.
Package: libgst1sdp
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18860
Filename: libgst1sdp_1.4.5-1_ramips_24kec.ipk
Size: 19685
MD5Sum: 5e24ce03f592cc37357a33e35231ad4b
SHA256sum: 270fd412ace2080cc9b7535f990dfc75639c8faef01dde1eab9d5ddbaaea79b1
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer SDP library.
Package: libgst1tag
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76256
Filename: libgst1tag_1.4.5-1_ramips_24kec.ipk
Size: 76916
MD5Sum: eac4737374cdd08af25c54ffdd6299a3
SHA256sum: 655ece2e45afb52cbf39918f235ea23fd511f639659519c4bdf1bb9c816dd638
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer tag support library.
Package: libgst1video
Version: 1.4.5-1
Depends: libc, libgstreamer1
Source: feeds/packages/multimedia/gst1-plugins-base
License: LGPLv2 GPLv2
LicenseFiles: COPYING.LIB COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 92984
Filename: libgst1video_1.4.5-1_ramips_24kec.ipk
Size: 93355
MD5Sum: e1fb6890fcd243cf8ac9d492602200ad
SHA256sum: d794c66f8c508028c6c09ecd877f47bf81a2e67c8a4781849669834ba3b2d1b7
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer video library.
Package: libgstreamer1
Version: 1.4.5-1
Depends: libc, glib2, libpthread, libxml2
Source: feeds/packages/multimedia/gstreamer1
License: LGPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 600112
Filename: libgstreamer1_1.4.5-1_ramips_24kec.ipk
Size: 598701
MD5Sum: b83d36435b13e3b8d9b26c3708cc954f
SHA256sum: 7d4d78e7a1f2095003759dcbf9bc5e839d5383f70c25e43e6d89e5e0314f30bc
Description: GStreamer open source multimedia framework
.
This package contains the GStreamer core library.
Package: libhamlib
Version: 1.2.15.3-3
Depends: libc, libusb-1.0, libltdl
Source: feeds/packages/utils/hamlib
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33648
Filename: libhamlib_1.2.15.3-3_ramips_24kec.ipk
Size: 34483
MD5Sum: 68230c5eff486618d377da21c638b001
SHA256sum: 87054ba8008352713f4a058a27b41d9a3cec0382156b5c45cbc5807a534e48c7
Description: Ham Radio Control Libraries is a development effort to provide a consistent
interface for programmers wanting to incorporate radio control in their
programs.
This package contains the hamlib shared library.
Package: libhavege
Version: 1.9.1-5
Depends: libc
Source: feeds/packages/utils/haveged
License: GPLv3
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10002
Filename: libhavege_1.9.1-5_ramips_24kec.ipk
Size: 10191
MD5Sum: af734c3a863d6c55b27508760b139658
SHA256sum: 36d2e7173dd8b6630639e910104ccd0e5cb3c5253eed12c8cb0cacc49e633607
Description: Library for haveged
Package: libhttp-parser
Version: 2.3.0-1
Depends: libc
Source: feeds/packages/libs/libhttp-parser
License: MIT
LicenseFiles: LICENSE-MIT
Section: libs
Maintainer: Ramanathan Sivagurunathan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9910
Filename: libhttp-parser_2.3.0-1_ramips_24kec.ipk
Size: 10860
MD5Sum: 6490fc82603ff6f3f4f179385c35a3c6
SHA256sum: 555a78798040bfb91d362920c0ad30c03dc2f38515aa7ac4a98f89b0a4b66239
Description: A parser for HTTP messages written in C. It parses both requests and responses.
The parser is designed to be used in performance HTTP applications.
It does not make any syscalls nor allocations, it does not buffer data,
it can be interrupted at anytime. Depending on your architecture,
it only requires about 40 bytes of data per message stream
(in a web server that is per connection).
Package: libical
Version: 1.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/libical
License: LGPL-2.1 MPL-1.0
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 144263
Filename: libical_1.0-1_ramips_24kec.ipk
Size: 143392
MD5Sum: e4a12205511f98f21fcf4b8f8ce4eb0a
SHA256sum: 944d42648afe1dcec4264655b90b92f7ef3a958abb99e1ee4f33c1786437fd72
Description: This package provides a a read/write library of classes for object oriented
languages (Initial goals of PHP and Python) that implement and enforce the iCal
standard (RFC 2445).
Package: libid3tag
Version: 0.15.1b-4
Depends: libc, zlib
Source: feeds/packages/libs/libid3tag
License: GPL-2
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24154
Filename: libid3tag_0.15.1b-4_ramips_24kec.ipk
Size: 24799
MD5Sum: 9af3a761b3a0be14a866bfddbe2f5d03
SHA256sum: 30789c1fbd2ce5d856735c1a7f602f6a0ae0e221538bad6721b32c174c5cd740
Description: libid3tag is a library for reading and (eventually) writing ID3 tags, both
ID3v1 and the various versions of ID3v2.
Package: libidn
Version: 1.30-1
Depends: libc
Source: feeds/packages/libs/libidn
License: GPL-2.0+ GPL-3.0+ LGPL-2.1+ LGPL-3.0+ Apache-2.0
LicenseFiles: COPYING COPYINGv2 COPYINGv3 COPYING.LESSERv2 COPYING.LESSERv3 java/LICENSE-2.0.txt
Section: libs
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60228
Filename: libidn_1.30-1_ramips_24kec.ipk
Size: 59234
MD5Sum: 474d183267ee4b56dda11c0e7e9e7d44
SHA256sum: e313199868bee143ab87290bfadeb6ed6d258bf684d4c9dd8b3b955d7b65d5ce
Description: GNU Libidn is a fully documented implementation of the Stringprep,
Punycode and IDNA specifications. Libidn's purpose is to encode and
decode internationalized domain names.
Library only package
Package: libimobiledevice-utils
Version: 1.2.0-1
Depends: libc, libimobiledevice
Source: feeds/packages/libs/libimobiledevice
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80000
Filename: libimobiledevice-utils_1.2.0-1_ramips_24kec.ipk
Size: 80603
MD5Sum: ebf02c820586957eced5c3d6a41ced10
SHA256sum: a0ec511a566e59bd548fd15029d08d634d011e74de732873a102cb7277419450
Description: libimobiledevice is a software library that talks the protocols to support
iPhone®, iPod Touch®, iPad® and Apple TV® devices.
This package contains the libimobiledevice utilities.
Package: libimobiledevice
Version: 1.2.0-1
Depends: libc, libplist, libusbmuxd, libopenssl, libcrypto
Source: feeds/packages/libs/libimobiledevice
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 39474
Filename: libimobiledevice_1.2.0-1_ramips_24kec.ipk
Size: 40426
MD5Sum: 09c54fe1c26768ff3ea1fd0cf0cd2f44
SHA256sum: 2952ca7e49b1dc0117a75321abd41b934ec909066085a0032d0d710d14e9b4f9
Description: libimobiledevice is a software library that talks the protocols to support
iPhone®, iPod Touch®, iPad® and Apple TV® devices.
Package: libjpeg
Version: 9a-1
Depends: libc
Source: feeds/packages/libs/libjpeg
License: IJG
LicenseFiles: README
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 98844
Filename: libjpeg_9a-1_ramips_24kec.ipk
Size: 99595
MD5Sum: 8add1400468c8137345504a8cb65b952
SHA256sum: a549f8e24b18914a02fe708dbde6faae2bca2eb484685ab1296765fb49bf00a9
Description: The Independent JPEG Group's JPEG runtime library
Package: libkmod
Version: 20-1
Depends: libc, zlib
Source: feeds/packages/utils/kmod
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Jeff Waugh <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30885
Filename: libkmod_20-1_ramips_24kec.ipk
Size: 31643
MD5Sum: ae6a4b87ecfc6c84c05e13c7b31c4aa2
SHA256sum: 7c83f4adb18bb748ecbb586a01c614906f519de660a052090e5ec914bd401b87
Description: Linux kernel module handling (library)
Package: liblo-utils
Version: 0.28-1
Depends: libc, liblo
Source: feeds/packages/libs/liblo
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4870
Filename: liblo-utils_0.28-1_ramips_24kec.ipk
Size: 5600
MD5Sum: 7ed42da2f2acc263a18716ba97dd2513
SHA256sum: 53fa9641e86a85a3699c836381b6a72bad45a6ea73b8705b9e39d6821004d56b
Description: Lightweight Open Sound Control (OSC) utilities
Package: liblo
Version: 0.28-1
Depends: libc, libpthread
Source: feeds/packages/libs/liblo
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24349
Filename: liblo_0.28-1_ramips_24kec.ipk
Size: 25097
MD5Sum: 692dc59d20a5a5ed16dc9ce1daea3e6b
SHA256sum: 026b4be084c43a7f03028d0b58ca71692cf4dfb756ba0df08f3f47664faf9d78
Description: Lightweight Open Sound Control (OSC) library
Package: liblxc
Version: 1.1.0-1
Depends: libc, lxc, libcap, libpthread
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 147928
Filename: liblxc_1.1.0-1_ramips_24kec.ipk
Size: 148557
MD5Sum: 51f7ce5ac488ec664e66a8ffb272bcdf
SHA256sum: d3b7738bdeb10b6af1882a4c6c688911a547db1c9c09fc44d965736d4704d2d2
Description: LXC userspace library
Package: libmad
Version: 0.15.1b-3
Depends: libc
Source: feeds/packages/libs/libmad
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60583
Filename: libmad_0.15.1b-3_ramips_24kec.ipk
Size: 61586
MD5Sum: 83c902cf7b6bc8b4aa8612fd90558bac
SHA256sum: 36dd3f2ce24d6afd68b7d6df2964eb675c64b87c10cdefae82831ff87ca1038b
Description: MAD is a high-quality MPEG audio decoder. It currently supports
MPEG-1 and the MPEG-2 extension to lower sampling frequencies,
as well as the de facto MPEG 2.5 format. All three audio layers -
Layer I, Layer II, and Layer III (i.e. MP3) - are fully implemented.
Package: libmagic
Version: 5.20-1
Depends: libc, zlib
Source: feeds/packages/libs/file
License: BSD-2c
LicenseFiles: COPYING
Section: libs
Architecture: ramips_24kec
Installed-Size: 103212
Filename: libmagic_5.20-1_ramips_24kec.ipk
Size: 103774
MD5Sum: 8cc665666db4fc72c356e61b94328a6e
SHA256sum: b9fd5fea6ba82a7dd0a9db7c8d07447ae1ec4d0d81a6a480bd6c020ac2e0ca44
Description: library
Package: libmcrypt
Version: 2.5.8-2
Depends: libc
Source: feeds/packages/libs/libmcrypt
License: LGPLv2.1
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58773
Filename: libmcrypt_2.5.8-2_ramips_24kec.ipk
Size: 59135
MD5Sum: 828dbd76d522b21fc7e43c5dd4d2c5cf
SHA256sum: 8c291facab7824c19042e89337d3e4837c3d3860e63764e2b34464dd10618a35
Description: libmcrypt is a cryptographic library that conveniently brings
together a variety of ciphers for convenient use.
Package: libmicrohttpd
Version: 0.9.38-1.1
Depends: libc, libpthread, libgcrypt, libgnutls, libgpg-error, libcrypto, libopenssl
Source: feeds/packages/libs/libmicrohttpd
License: LGPL-2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Martijn Zilverschoon <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53057
Filename: libmicrohttpd_0.9.38-1.1_ramips_24kec.ipk
Size: 53943
MD5Sum: 783c17d12044516c56cbf9e4cf3df626
SHA256sum: e31d6aa9ad0303f65c7e8280ede3fc734753eed333dbc70dbcbb74c0a8a288d0
Description: GNU libmicrohttpd is a small C library that is supposed to make it easy
to run an HTTP server as part of another application.
Package: libminiupnpc
Version: 1.9-1
Depends: libc
Source: feeds/packages/net/miniupnpc
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16143
Filename: libminiupnpc_1.9-1_ramips_24kec.ipk
Size: 16843
MD5Sum: ee68f973a53cec6641b7e4bf8f670fd0
SHA256sum: e6846edba645196b320f05b3624ed88e015fe1f8eaabd096e7c2cb510fd65ffb
Description: Lightweight UPnP library
Package: libmms
Version: 0.6.4-2
Depends: libc
Source: feeds/packages/libs/libmms
License: LGPLv2.1
LicenseFiles: COPYING.LIB
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22243
Filename: libmms_0.6.4-2_ramips_24kec.ipk
Size: 23113
MD5Sum: 9582d26f69c0d7405f73f1bfd6d4bd72
SHA256sum: 0e804311f2d7370a3a2f7654eff1772a67102cd794f55a197d967d59e90ad43d
Description: LibMMS is a common library for parsing mms:// and mmsh:// type network streams.
These are commonly used to stream Windows Media Video content over the web.
LibMMS itself is only for receiving MMS stream,
it doesn't handle sending at all.
Package: libmodbus
Version: 3.1.2-1
Depends: libc
Source: feeds/packages/libs/libmodbus
License: GPL-3.0+ LGPL-2.1+
LicenseFiles: COPYING COPYING.LESSER
Section: libs
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14907
Filename: libmodbus_3.1.2-1_ramips_24kec.ipk
Size: 15691
MD5Sum: a8fb1047d64211016e840ad59fb7ee96
SHA256sum: 54064c7bbfa85f3071ac3d50f47a72fe49be7965c948fccc0cf655daff7948fa
Description: A Modbus library for Linux, Mac OS X, FreeBSD, QNX and Win32.
Package: libmosquitto-nossl
Version: 1.4-2
Depends: libc, libpthread, librt, libcares
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: libs
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16853
Filename: libmosquitto-nossl_1.4-2_ramips_24kec.ipk
Size: 17825
MD5Sum: b44443977b3d3a8ee6b32a3c234e4d2d
SHA256sum: 1365e3c0f96ebcc859120e5b3a9ff732e88e263f945d9125f31fee293eb521dc
Description: Library required for mosquitto's command line client tools, also for
use by any third party software that wants to communicate with a
mosquitto server.
Should be useable for communicating with any MQTT v3.1/3.1.1 compatible
server, such as IBM's RSMB, in addition to Mosquitto
This package is built without SSL support
Package: libmosquitto
Version: 1.4-2
Depends: libc, libpthread, librt, libcares, libopenssl
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: libs
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20226
Filename: libmosquitto_1.4-2_ramips_24kec.ipk
Size: 21182
MD5Sum: 22b6590a63052cbb9b9e1153d4252056
SHA256sum: 285f60627427f8b5a0162b15282f493613b201158e0b94e9cd2143d7e3a34234
Description: Library required for mosquitto's command line client tools, also for
use by any third party software that wants to communicate with a
mosquitto server.
Should be useable for communicating with any MQTT v3.1/3.1.1 compatible
server, such as IBM's RSMB, in addition to Mosquitto
This package is built with SSL support
Package: libmpdclient
Version: 2.9-3
Depends: libc
Source: feeds/packages/libs/libmpdclient
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25300
Filename: libmpdclient_2.9-3_ramips_24kec.ipk
Size: 26089
MD5Sum: 1eb9377d0e89257d60ce59ae29000ab5
SHA256sum: 607d85a8fa5aa22e7d7af251452de806c2cbe0897ded53eaa05c15a5240c4937
Description: A stable, documented, asynchronous API library for interfacing MPD in the C, C++ & Objective C languages.
Package: libmpeg2
Version: 0.5.1-1
Depends: libc
Source: feeds/packages/libs/libmpeg2
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33382
Filename: libmpeg2_0.5.1-1_ramips_24kec.ipk
Size: 34089
MD5Sum: 8eacbcad003d2aca6bd496d6100f1e2c
SHA256sum: 01b7335f90f2ff51eccf0098ff9af78443a025e281763083792152c56c64c51d
Description: MPEG-1 & -2 decoding library
Package: libmysqlclient-r
Version: 5.1.73-1
Depends: libc, uclibcxx, zlib, libpthread
Source: feeds/packages/utils/mysql
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 165328
Filename: libmysqlclient-r_5.1.73-1_ramips_24kec.ipk
Size: 161449
MD5Sum: a4a9338bbcf2a769a48ab354636a0fce
SHA256sum: 0b79246b65042a4e55cfe9f96e89f5b9a5d6a41c12fa5ecc99d1d3af857f3318
Description: MySQL client library threadsafe
Package: libmysqlclient
Version: 5.1.73-1
Depends: libc, uclibcxx, zlib
Source: feeds/packages/utils/mysql
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 161488
Filename: libmysqlclient_5.1.73-1_ramips_24kec.ipk
Size: 157919
MD5Sum: de630cd62a9d49749b46a2e4aa3a8481
SHA256sum: dece9398d4d516ccdadb471389e4c0013c6525dcc56d274a1be64d5a9290af39
Description: MySQL client library
Package: libnatpmp
Version: 20140401-1
Depends: libc
Source: feeds/packages/libs/libnatpmp
License: BSD-3c
LicenseFiles: LICENSE
Section: libs
Maintainer: Hauke Mehrtens <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3363
Filename: libnatpmp_20140401-1_ramips_24kec.ipk
Size: 4284
MD5Sum: 133710f37301528efec63a91395dcb6b
SHA256sum: 672884971c0162862438e5dd0efe6f008a45996fb48250c1f602169e88df66f8
Description: libnatpmp is an attempt to make a portable and fully compliant implementation
of the protocol for the client side. It is based on non blocking sockets and
all calls of the API are asynchronous. It is therefore very easy to integrate
the NAT-PMP code to any event driven code.
This package contains the shared library.
Package: libneon
Version: 0.30.0-1
Depends: libc, libopenssl, libexpat
Source: feeds/packages/libs/neon
Section: libs
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58528
Filename: libneon_0.30.0-1_ramips_24kec.ipk
Size: 59753
MD5Sum: 93c4e502d39dfcc9686ffe1d2fddc048
SHA256sum: f5a97fbd13f8c4e400b9acaee8d54641b453be477d76c030a142225d5def27d8
Description: neon is an HTTP and WebDAV client library, with a C interface. Features:
- High-level wrappers for common HTTP and WebDAV operations (GET, MOVE, DELETE, etc)
- Low-level interface to the HTTP request/response engine, allowing the use of arbitrary HTTP methods, headers, etc.
- Authentication support including Basic and Digest support, along with GSSAPI-based Negotiate on Unix, and
SSPI-based Negotiate/NTLM on Win32
- SSL/TLS support using OpenSSL or GnuTLS; exposing an abstraction layer for verifying server certificates, handling client
certificates, and examining certificate properties. Smartcard-based client certificates are also supported via a
PKCS11 wrapper interface.
- Abstract interface to parsing XML using libxml2 or expat, and wrappers for simplifying handling XML HTTP response bodies
- WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify property manipulation.
Package: libnetfilter-acct
Version: 1.0.2-1
Depends: libc, libmnl
Source: feeds/packages/libs/libnetfilter-acct
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3116
Filename: libnetfilter-acct_1.0.2-1_ramips_24kec.ipk
Size: 3936
MD5Sum: 8d5aac2a6dba34c834e01109f98d66ec
SHA256sum: 074524ca389d836036031a3041f9bb17fa15e66615775bdef3b5ef20c22aa68f
Description: libnetfilter_acct is a userspace library providing a programming interface
(API) to the extended accounting infrastructure.
Package: libnetfilter-cthelper
Version: 1.0.0-1
Depends: libc, libmnl
Source: feeds/packages/libs/libnetfilter-cthelper
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3907
Filename: libnetfilter-cthelper_1.0.0-1_ramips_24kec.ipk
Size: 4757
MD5Sum: 07e47e26ae5db9c090c5d0c270972351
SHA256sum: 8497c30337108407f835f8b1e35ea231c5445407b61b44d4dad5d44508342c28
Description: libnetfilter_cthelper is the userspace library that provides the programming
interface to the user-space helper infrastructure available since Linux kernel
3.6.
With this library, you register, configure, enable and disable user-space
helpers.
Package: libnetfilter-cttimeout
Version: 1.0.0-1
Depends: libc, libmnl
Source: feeds/packages/libs/libnetfilter-cttimeout
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4032
Filename: libnetfilter-cttimeout_1.0.0-1_ramips_24kec.ipk
Size: 4786
MD5Sum: 517bc53abb57c602e3185ec6e2252095
SHA256sum: 44ea64427cec095e55cf7df2de3c47c6e246bf1a9ae860a8cc0a48eaaf7f90ab
Description: API to connection tracking timeout infrastructure
Package: libnetfilter-queue
Version: 1.0.2-1
Depends: libc, libmnl, libnfnetlink, kmod-nfnetlink-queue
Source: feeds/packages/libs/libnetfilter-queue
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7369
Filename: libnetfilter-queue_1.0.2-1_ramips_24kec.ipk
Size: 8227
MD5Sum: 2f9e13229bf92032611a543d0d5766ec
SHA256sum: 60d2195cd50761335b4232a047608d6afdfd7e94cf9c1b3ec34db10d56e6e9e3
Description: libnetfilter_queue is a userspace library providing an API to packets
that have been queued by the kernel packet filter.
Package: libnetsnmp
Version: 5.4.4-1
Depends: libc
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 329929
Filename: libnetsnmp_5.4.4-1_ramips_24kec.ipk
Size: 330681
MD5Sum: 980e8fde3db16885752ed02f25012c57
SHA256sum: a7cb596251bb170d23771f5ef6115b7809dc267ebfe0780f8c79649e1359d0b1
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains shared libraries, needed by other programs.
Package: libnfc
Version: 1.7.1-1
Depends: libc, libusb-compat, pcscd, ccid
Source: feeds/packages/libs/libnfc
License: LGPL-2.1
Section: libs
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47978
Filename: libnfc_1.7.1-1_ramips_24kec.ipk
Size: 48788
MD5Sum: 17b387b2170e760aac795b12d65bd68e
SHA256sum: 3fd060003714e287d9d99e417ffda9a9422d48da98160cc9d726c5a8ec540199
Description: libnfc is the first libre, platform-independent, low level NFC SDK and Programmers API
* manipulate Jewel Topaz tags using libnfc
* manipulate MIFARE Classic and Ultralight tags using libnfc
Package: libogg
Version: 1.3.2-2
Depends: libc
Source: feeds/packages/libs/libogg
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9008
Filename: libogg_1.3.2-2_ramips_24kec.ipk
Size: 9896
MD5Sum: b57f361048ff41f0040949259f27ea8e
SHA256sum: e0451db75c8728508af29a52ce5a007b225000094afecda6c325089714cdc290
Description: Ogg project codecs use the Ogg bitstream format to arrange the raw,
compressed bitstream into a more robust, useful form. For example,
the Ogg bitstream makes seeking, time stamping and error recovery
possible, as well as mixing several sepearate, concurrent media
streams into a single physical bitstream.
Package: liboil
Version: 0.3.17-2
Depends: libc, librt
Source: feeds/packages/libs/liboil
License: FREE
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93057
Filename: liboil_0.3.17-2_ramips_24kec.ipk
Size: 89433
MD5Sum: dd549555132a585195809afb42d7d890
SHA256sum: 10072e9fa77837c99ca97d850b1cda68191b1273e91204e14138d055dc0708ab
Description: Liboil is a library of simple functions that are optimized for various CPUs.
These functions are generally loops implementing simple algorithms, such as
converting an array of N integers to floating-point numbers or multiplying
and summing an array of N numbers. Such functions are candidates for significant
optimization using various techniques, especially by using extended instructions
provided by modern CPUs (Altivec, MMX, SSE, etc.).
Package: libopenldap
Version: 2.4.39-2
Depends: libc, libopenssl, libsasl2, libpthread
Source: feeds/packages/libs/openldap
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 186238
Filename: libopenldap_2.4.39-2_ramips_24kec.ipk
Size: 186968
MD5Sum: 616531e6b2d316d56478237f08a50ee6
SHA256sum: fbf4e8da964c740204b99cfbe23689df12d9083a42312a89692aee81e359997a
Description: OpenLDAP Software is an open source implementation of the
Lightweight Directory Access Protocol (LDAP).
This package contains the shared LDAP client libraries, needed by other programs.
Package: libopenobex
Version: 1.7.1-1
Depends: libc, libusb-1.0
Source: feeds/packages/utils/openobex
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24938
Filename: libopenobex_1.7.1-1_ramips_24kec.ipk
Size: 25711
MD5Sum: 0fe0b7f7d388f4def80af487e442be59
SHA256sum: 8d18ff944705fd9ff2f1c9878d4420fe15500fab2399a5c2e4fe3b4d7ca8eda7
Description: Open Source impl of the OBject EXchange protocol (library)
Package: libopensc-pkcs11
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58928
Filename: libopensc-pkcs11_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 59162
MD5Sum: f9ea8d94d5c59a0a82d9d894605b78ec
SHA256sum: dc07bd3c3954f5eda14489c9198d5373f2fc650986a01f7e5c6407a7f99e8fec
Description: OpenSC PKCS#11 provider
Package: libopensc-profile-asepcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1117
Filename: libopensc-profile-asepcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1907
MD5Sum: c953d87ce2b1c85eda760310a088756d
SHA256sum: 0530e836801b1f5696c446723dfb6514da17693dcc17ef45c61a7fe76f57ebb2
Description: asepcos card profile for opensc
Package: libopensc-profile-authentic
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1112
Filename: libopensc-profile-authentic_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1923
MD5Sum: ac40eadfc621410597efe8da0e3142aa
SHA256sum: 8a95a202f9f1c3cd9b7a66d0bc4b95e61232b5f829b79c3a16b7b1ae1a573311
Description: authentic card profile for opensc
Package: libopensc-profile-cardos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1202
Filename: libopensc-profile-cardos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2002
MD5Sum: 17a68ca354c327e68621c12646587d28
SHA256sum: ebe4bbbb14448ac69bb8dda7c071439d638f44e7aeedb5ec3405eb303273b076
Description: cardos card profile for opensc
Package: libopensc-profile-cyberflex
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1374
Filename: libopensc-profile-cyberflex_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2181
MD5Sum: 1cf622b1d1a4d1c7cec2b64f61c9da54
SHA256sum: 47d80f07436f2bde09fc38cb9a95c87c9b75fd9de3a4c658a4df724bd8102829
Description: cyberflex card profile for opensc
Package: libopensc-profile-entersafe
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1338
Filename: libopensc-profile-entersafe_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2149
MD5Sum: a81b1f65df45309d4fa68011e95f5680
SHA256sum: becbe9b1c018fbac994005863ba105cf16d3b1e49b5170017cc358b4812d476d
Description: entersafe card profile for opensc
Package: libopensc-profile-epass2003
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1388
Filename: libopensc-profile-epass2003_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2198
MD5Sum: 0239a241a246b3bdc93377cf25e9b370
SHA256sum: 34bdf25720cfe8c6327e3492bf3b43c444eb74937e715b786966f9e599abf54b
Description: epass2003 card profile for opensc
Package: libopensc-profile-flex
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1482
Filename: libopensc-profile-flex_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2283
MD5Sum: efd175675663cb4d3b1a1ddc83b8031d
SHA256sum: f6be9504b04207e18ef0a6a32fc0978bc8997baaedb981e156309de39b3a9de2
Description: flex card profile for opensc
Package: libopensc-profile-gpk
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1153
Filename: libopensc-profile-gpk_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1955
MD5Sum: 06750b6baa7b4c1d0cea522271775792
SHA256sum: e62b8bdd8c2930dcfe327dcc06c4a0779fe1c3648eabbe62bd99b9fd8c8aaaa2
Description: gpk card profile for opensc
Package: libopensc-profile-ias-adele-admin1
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1420
Filename: libopensc-profile-ias-adele-admin1_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2239
MD5Sum: 6b408a2aa9c48d50e0b0dafb04011105
SHA256sum: 6a28a4952cb01c59b2ac0b934d8a8e3d6eb09f67c1d0438a42d713f56afaffd0
Description: ias_adele_admin1 card profile for opensc
Package: libopensc-profile-ias-adele-admin2
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1464
Filename: libopensc-profile-ias-adele-admin2_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2280
MD5Sum: a67fb81b740015a21bf651ad51d99d41
SHA256sum: 5455ed95f2039102ccc9f25762255eabee5cadd0ebb6977094ffdd689b28262b
Description: ias_adele_admin2 card profile for opensc
Package: libopensc-profile-ias-adele-common
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1448
Filename: libopensc-profile-ias-adele-common_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2266
MD5Sum: ac0abc96908467cf43f53d8cbf874932
SHA256sum: fe088bcb98df07425a4ca5eff5536ef516f86cc629a953f6e4b5d2f68778cd0c
Description: ias_adele_common card profile for opensc
Package: libopensc-profile-iasecc-admin-eid
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1544
Filename: libopensc-profile-iasecc-admin-eid_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2367
MD5Sum: 07844ddee6b2a64fb170ae9624f51137
SHA256sum: 4c1f9d0d49f0558a0eedd3531c0d2ecba28554393f55bd90aa7b662d4e852d85
Description: iasecc_admin_eid card profile for opensc
Package: libopensc-profile-iasecc-generic-oberthur
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1395
Filename: libopensc-profile-iasecc-generic-oberthur_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2206
MD5Sum: 70173de251b0dc8255002d169c39a343
SHA256sum: ec1a481f33fbc88bf092d554c595372646ef94c56f39ed9cbf45073a1b8ccaf2
Description: iasecc_generic_oberthur card profile for opensc
Package: libopensc-profile-iasecc-generic-pki
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1536
Filename: libopensc-profile-iasecc-generic-pki_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2347
MD5Sum: 82cfeae7e7998aef5c9bb614cfa635ee
SHA256sum: 1328f4c044e6ca53e36d23d7d64b257e261c282fd6b05e20ea456c88b73f69e3
Description: iasecc_generic_pki card profile for opensc
Package: libopensc-profile-iasecc
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1207
Filename: libopensc-profile-iasecc_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2006
MD5Sum: 0411f0230de4e0207bd43d2f54fd78b4
SHA256sum: e2dc7362e8cba6392ba8a1d2eef234c8c022455572d614226152171da42b952f
Description: iasecc card profile for opensc
Package: libopensc-profile-incrypto34
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1168
Filename: libopensc-profile-incrypto34_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1972
MD5Sum: 6cba7b1a87b14ae1c81e37c3dd19db00
SHA256sum: c7cbc7dbc44d05309b00444a6ff170db4dc28bd099b490aa65961c10ce554800
Description: incrypto34 card profile for opensc
Package: libopensc-profile-jcop
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 619
Filename: libopensc-profile-jcop_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1408
MD5Sum: 26d617cd63e98a765451da729a7d5aa7
SHA256sum: 9da2732853263048f46d54b83dad3dc7f3089ca33c7a61808c2d10f9653053a3
Description: jcop card profile for opensc
Package: libopensc-profile-miocos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 755
Filename: libopensc-profile-miocos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1542
MD5Sum: 06d6e6ab85ec96420d35714c5bc34437
SHA256sum: eb26752f04853150acec20a164c4335147fa4af5372c3131c7a5f379a52e0fac
Description: miocos card profile for opensc
Package: libopensc-profile-muscle
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1195
Filename: libopensc-profile-muscle_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1995
MD5Sum: 8b99ce53a2d61c4ed638998159b3fbcd
SHA256sum: 6c2f4695c202acd72b4d2b9363baef40d9d34511a478dddf547310381b1776f2
Description: muscle card profile for opensc
Package: libopensc-profile-myeid
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1505
Filename: libopensc-profile-myeid_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2312
MD5Sum: 18e650f15b66361004fb2bfca80311d1
SHA256sum: a0a4a74b48e2938a8bbd82b8b40fcf563135044cd7c5021ee895ea813a3caf8e
Description: myeid card profile for opensc
Package: libopensc-profile-oberthur
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1493
Filename: libopensc-profile-oberthur_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2299
MD5Sum: 7b1e1093cfd9c574d486ad03733cda5b
SHA256sum: 00eac85c14e318c48e023fdf910e353fa659f86b05e6e451e7f7df4c9bc93789
Description: oberthur card profile for opensc
Package: libopensc-profile-openpgp
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1077
Filename: libopensc-profile-openpgp_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1869
MD5Sum: 1025130e1deba4d779a182056a833947
SHA256sum: c25ce54eee812d236d6ad5d2dab161e2ae8a30069150880771338e09a3d1b543
Description: openpgp card profile for opensc
Package: libopensc-profile-pkcs15
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1627
Filename: libopensc-profile-pkcs15_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2429
MD5Sum: d6e10238a392ef259896574299498d30
SHA256sum: 166bde034bc0f2b69a54a493dbdd4c40d4d7083e198c843150877b0b53931b47
Description: pkcs15 card profile for opensc
Package: libopensc-profile-rutoken-ecp
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1595
Filename: libopensc-profile-rutoken-ecp_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2408
MD5Sum: 34040df358060162140142ba263678a4
SHA256sum: 7c27609cc6df0b917758e84af329aaaeb4f4234eb644ff08b30cb09a49d3460f
Description: rutoken_ecp card profile for opensc
Package: libopensc-profile-rutoken
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1534
Filename: libopensc-profile-rutoken_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2338
MD5Sum: 820a4410664279260304d7e2a4c30e87
SHA256sum: ef0b15071cdb0d1962849bc667712dd5c129660fb4a00590d629464f497f8d86
Description: rutoken card profile for opensc
Package: libopensc-profile-sc-hsm
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 738
Filename: libopensc-profile-sc-hsm_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1525
MD5Sum: 20c861589a6ede6939237505ead59115
SHA256sum: f40db0c7ef9ceacc73301c7837dbd46c701b992acf64f68e654c53c2dfe3a2ea
Description: sc-hsm card profile for opensc
Package: libopensc-profile-setcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1219
Filename: libopensc-profile-setcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2013
MD5Sum: 10a4a111beb15f45850184e175fd6811
SHA256sum: 4fa197e558d52b92f311c8d9112bb93e64fdf49062c29cd59815389b77cc44b8
Description: setcos card profile for opensc
Package: libopensc-profile-starcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1127
Filename: libopensc-profile-starcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 1918
MD5Sum: 46ac159a146c34dad28b4efd895c2d68
SHA256sum: 6bff574f8277e105405a7e2206953a45d02c6f3c3838effb206dcb0536056f0e
Description: starcos card profile for opensc
Package: libopensc-profile-westcos
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: lib
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1245
Filename: libopensc-profile-westcos_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 2042
MD5Sum: 423db3c3e48dc588aff1d2c92b0c16a5
SHA256sum: 447933644f25949d4788bdb3e65e4e9e10f8546becbbfa5340e4672e9403dc66
Description: westcos card profile for opensc
Package: libopensc
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopenssl, libpthread
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 591499
Filename: libopensc_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 590984
MD5Sum: 2127cbba6368ad202c3c942847e5471b
SHA256sum: 752620a3758b2d4349ac9bff061e639723069935cff667b89a0e86227e1c100c
Description: OpenSC provides a set of libraries and utilities to work with smart cards.
Its main focus is on cards that support cryptographic operations, and
facilitate their use in security applications such as authentication,
mail encryption and digital signatures.
Package: liboping
Version: 1.6.2-1
Depends: libc
Source: feeds/packages/libs/liboping
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7011
Filename: liboping_1.6.2-1_ramips_24kec.ipk
Size: 7803
MD5Sum: c96512004f1d99ed85611ddb61a6f717
SHA256sum: f3c01a8fe876f461a8f2f7d16dcff773c283ad4b7c27c07ac4c4751e28c31ebf
Description: C library to generate ICMP echo requests.
Package: libopus
Version: 1.1-1
Depends: libc
Source: feeds/packages/libs/opus
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 160654
Filename: libopus_1.1-1_ramips_24kec.ipk
Size: 161324
MD5Sum: 65e35a258f0868a90cceedb24107d139
SHA256sum: b3a15e15f53f0bca3b3422e659b888bbdd3727c492cc5dd0e50b74ee0811019a
Description: Opus is a totally open, royalty-free, highly versatile audio codec. Opus is
unmatched for interactive speech and music transmission over the Internet, but
is also intended for storage and streaming applications.
Package: libow-capi
Version: 2.9p5-1
Depends: libc, libow
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3087
Filename: libow-capi_2.9p5-1_ramips_24kec.ipk
Size: 4232
MD5Sum: 9d594f973affc2536a90b4d0f46b79f5
SHA256sum: 0c80a4d41413995e7ea44256d27ce9f1921ad6b90bc410a358b51a78af486cff
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS C-API library.
Package: libow
Version: 2.9p5-1
Depends: libc, libusb-compat, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 277495
Filename: libow_2.9p5-1_ramips_24kec.ipk
Size: 275680
MD5Sum: c17e83dad0bc93c21fdac362a864954d
SHA256sum: ed465eb39ad59ec25e18f705edd541fc85493bc9a5d78ee47a0feb93862d6e91
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS library.
Package: libp11
Version: 20131021-ab6306ee7ede9b2fb9c1fa2c3694c6e7ff044a9e
Depends: libc, libopenssl
Source: feeds/packages/libs/libp11
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11166
Filename: libp11_20131021-ab6306ee7ede9b2fb9c1fa2c3694c6e7ff044a9e_ramips_24kec.ipk
Size: 11954
MD5Sum: 1a8c1540f226941a0e2a01b714f84ef9
SHA256sum: e927402d0c8998b9048db21cf52d61385b75ebc270fcd65aa5cc58bb29a66f58
Description: Libp11 is a library implementing a small layer on top of PKCS#11 API
to make using PKCS#11 implementations easier.
Package: libpam
Version: 1.1.8-4
Depends: libc
Source: feeds/packages/libs/libpam
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 182162
Filename: libpam_1.1.8-4_ramips_24kec.ipk
Size: 182842
MD5Sum: 33ec30bbf96160c2ccd268a68ae467df
SHA256sum: eaa175850a9bb6ecb5f0c4049f138cec94a4b4a9e2c80dfb9c6984b07ddfeb2f
Description: The Linux-PAM Pluggable Authentication Modules.
Package: libpcre
Version: 8.36-1
Depends: libc
Source: feeds/packages/libs/pcre
License: BSD-3-Clause
LicenseFiles: LICENCE
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82835
Filename: libpcre_8.36-1_ramips_24kec.ipk
Size: 83585
MD5Sum: cd4cd26dfe4f1e554e02007a1bed466c
SHA256sum: 98f45e24542eb4cce55d09515d07a4cffcaf0664f2a8cf009890940cb4be6343
Description: A Perl Compatible Regular Expression library
Package: libpcrecpp
Version: 8.36-1
Depends: libc, libpcre, libstdcpp
Source: feeds/packages/libs/pcre
License: BSD-3-Clause
LicenseFiles: LICENCE
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11402
Filename: libpcrecpp_8.36-1_ramips_24kec.ipk
Size: 12190
MD5Sum: 2c9474a949d712015bef88ec8995d2b8
SHA256sum: bf6c223478a8fa306b5d02cebfe70d11194f2c48fffcc28e38b24e496b5ab347
Description: C++ wrapper for Perl Compatible Regular Expression library
Package: libpcsclite
Version: 1.8.13-1
Depends: libc, libusb-1.0, libpthread, librt
Source: feeds/packages/utils/pcsc-lite
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15607
Filename: libpcsclite_1.8.13-1_ramips_24kec.ipk
Size: 16439
MD5Sum: 7dda1996bda3a25e94ed2cf1d3bd14bc
SHA256sum: bb8b22b8076d92c714b4899b41163e4ea9040a07a35626e4a463fd91a6e550a2
Description: The purpose of PC/SC Lite is to provide a Windows(R) SCard
interface in a very small form factor for communicating to
smart cards and smart cards readers.
.
This package contains the PC/SC shared library.
Package: libpkcs11-spy
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopenssl, libpthread
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16631
Filename: libpkcs11-spy_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 17121
MD5Sum: 88025f744b19bcafa72f945d02f5793f
SHA256sum: 0c9a6eee73f63b9ed930142a31eb20a66f77384c238e9b2ec60dbe0aa887a440
Description: PKCS11 spying wrapper
Package: libplist-utils
Version: 1.13-1
Depends: libc, libplist
Source: feeds/packages/libs/libplist
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2419
Filename: libplist-utils_1.13-1_ramips_24kec.ipk
Size: 3239
MD5Sum: 62a04a4b1982fdbdf10471fc6154b2b3
SHA256sum: 199821578a2f1dd108ed81802d2a56333919537a5b83632e64781e74401533fa
Description: A library to handle Apple Property List format whereas it's binary or XML
This package contains the libplist utilities.
Package: libplist
Version: 1.13-1
Depends: libc, libxml2
Source: feeds/packages/libs/libplist
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16117
Filename: libplist_1.13-1_ramips_24kec.ipk
Size: 16875
MD5Sum: b2d954eb4b15c298992cb78b56e1223e
SHA256sum: 51cd8251dde947f2ba132a4c8c9d6713cf982d951fc8ca7aa01628c4862adce6
Description: A library to handle Apple Property List format whereas it's binary or XML
Package: libplistcxx
Version: 1.13-1
Depends: libc, libplist, libstdcpp
Source: feeds/packages/libs/libplist
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16101
Filename: libplistcxx_1.13-1_ramips_24kec.ipk
Size: 16879
MD5Sum: c7513e5b311d2f93a6aa7086e3057677
SHA256sum: aa48892ad73d75963d47aac741925b7b6623ea320541e3d26dac138626e820c5
Description: A library to handle Apple Property List format whereas it's binary or XML
This package contains the libplist C++ shared library.
Package: libpng
Version: 1.2.52-1
Depends: libc, zlib
Source: feeds/packages/libs/libpng
License: Libpng GPL-2.0+ BSD-3-Clause
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 120922
Filename: libpng_1.2.52-1_ramips_24kec.ipk
Size: 121702
MD5Sum: 81c75fb7bf2a2dd52fe829d8f0b7999e
SHA256sum: d3f863db8b33d265049baac5e46d997010079c8721270863a7e1843b47c45d09
Description: A PNG format files handling library
Package: libpq
Version: 9.0.17-1
Depends: libc, zlib, libreadline, libpthread, libncurses, shadow-utils, shadow-su
Source: feeds/packages/libs/postgresql
License: PostgreSQL
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53667
Filename: libpq_9.0.17-1_ramips_24kec.ipk
Size: 54401
MD5Sum: f5f8ac33e3d1214bb33d908362cebbba
SHA256sum: 49fcffada2af8a79eef2c92f5ff547c36a603d1364d6fa3a8c957ed25de01eab
Description: PostgreSQL client library.
Package: libprotobuf-c
Version: v1.0.1
Depends: libc
Source: feeds/packages/libs/protobuf-c
License: BSD-2c
Section: libs
Maintainer: Jacob Siverskog <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10849
Filename: libprotobuf-c_v1.0.1_ramips_24kec.ipk
Size: 11693
MD5Sum: bf9eab55f9298fd8536cae0bdfc9f006
SHA256sum: 8f79b3c8fb3b7ebc53e4dad9c6bc9017c5f983838f6d48ccd88a175b13d94b50
Description: Runtime library to use Google Protocol Buffers from C applications.
Protocol Buffers are a way of encoding structured data in an efficient yet
extensible format. Google uses Protocol Buffers for almost all of its
internal RPC protocols and file formats.
Package: librrd1
Version: 1.0.50-2
Depends: libc, zlib
Source: feeds/packages/utils/rrdtool1
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 135295
Filename: librrd1_1.0.50-2_ramips_24kec.ipk
Size: 136084
MD5Sum: 8f21b252f51005908de20723e45f5876
SHA256sum: da3dd987d302172589a183f10efe6f51e0a429fa85620b1bfd848de20e94fe4c
Description: RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will
not expand over time, and it presents useful graphs by processing the data
to enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put friendly user interface on it.
This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
librrd.so. The library is much smaller compared to the 1.2.x version with
separate dynamic linked libraries.
This package contains a shared library, used by other programs.
Package: librtlsdr
Version: 2014-02-10
Depends: libc, libusb-1.0
Source: feeds/packages/utils/rtl-sdr
License: GPLv2
LicenseFiles: COPYING
Section: libs
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20074
Filename: librtlsdr_2014-02-10_ramips_24kec.ipk
Size: 20917
MD5Sum: 2e69320a18818aed383c3bbcd8299c96
SHA256sum: 5b1aa901fac8cfe7b7d325f08e3136f8369ee458c5bb3f296d8be24ac8e31ee8
Description: rtl-sdr allows DVB-T dongles based on the Realtek RTL2832U to be used as
an inexpensive SDR.
This package contains the librtlsdr shared library.
Package: libruby
Version: 2.2.1-1
Depends: libc, libpthread, librt, libgmp
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 801183
Filename: libruby_2.2.1-1_ramips_24kec.ipk
Size: 797107
MD5Sum: b0fddd76f7859f25d7ca517017abc47f
SHA256sum: 319841f3bff102e776e6fe41cf77ed2eb3205d63167e055eb2079933b5b78c79
Description: Ruby scripting language (shared library)
Package: libsamplerate
Version: 0.1.8-1
Depends: libc, libsndfile
Source: feeds/packages/libs/libsamplerate
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1341401
Filename: libsamplerate_0.1.8-1_ramips_24kec.ipk
Size: 1342496
MD5Sum: 6d9fe34d34acd4e8c4718f016de9c9af
SHA256sum: 5eb482190511e34c5be881575f76555fa7fc2b6247d906f1d1fa651f2b8e1780
Description: Secret Rabbit Code (aka libsamplerate) is a Sample Rate
Converter for audio.
Package: libsasl2
Version: 2.1.26-3
Depends: libc, libopenssl
Source: feeds/packages/libs/cyrus-sasl
License: BSD-4c BSD
LicenseFiles: COPYING cmulocal/COPYING saslauthd/COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80775
Filename: libsasl2_2.1.26-3_ramips_24kec.ipk
Size: 81509
MD5Sum: 597ebcc2a521404542a4cb1b6a03f9c6
SHA256sum: f5d8a8e2280be4aa8f816e4bcefb57e6f852f6bbbdfe0e8f7f8ae9584ccb9a0d
Description: A general purpose authentication library
Package: libsearpc
Version: 3.1.7-8998e7b2c5587f0b94c48db24e2952d08def5add
Depends: libc, glib2, jansson, python
Source: feeds/packages/libs/libsearpc
License: GPL-3.0
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12796
Filename: libsearpc_3.1.7-8998e7b2c5587f0b94c48db24e2952d08def5add_ramips_24kec.ipk
Size: 13633
MD5Sum: 280370f15c55b35699483e6d4f2e3492
SHA256sum: 852baa7cfc2f4aca778404984bc4ca14553fc25f18af8713f17bcdec8a7bdf7d
Description: Searpc is a simple C language RPC framework based on GObject system.
Searpc handles the serialization/deserialization part of RPC,
the transport part is left to users.
Package: libseccomp
Version: 2.2.0-2
Depends: libc
Source: feeds/packages/libs/libseccomp
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32815
Filename: libseccomp_2.2.0-2_ramips_24kec.ipk
Size: 29482
MD5Sum: 87b9222ab6902deacf8c21895cb93712
SHA256sum: 83c109c25a8e0b9052cf83397bf552d0980e9ade626d1db10e64fe9e7ffb6c50
Description: This package contains the seccomp library.
Package: libsensors
Version: 3.3.5-1
Depends: libc, sysfsutils
Source: feeds/packages/utils/lm-sensors
License: GPL-2.0+ LGPL-2.1+
Section: libs
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58700
Filename: libsensors_3.3.5-1_ramips_24kec.ipk
Size: 59117
MD5Sum: 1ee1522a19f1c2f666b74d532c65bb23
SHA256sum: 0ead04633364909118d09039cab1c0b6d287f0d1d134efac5bdafda9016f9f71
Description: lm-sensors libraries
Package: libshout
Version: 2.3.1-1
Depends: libc, libspeex, libtheora, libvorbis, libvorbisidec, libpthread
Source: feeds/packages/libs/libshout
License: LGPL-2.0+
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23941
Filename: libshout_2.3.1-1_ramips_24kec.ipk
Size: 24865
MD5Sum: c7c67f7f1c1a3d0b67399a867a043f17
SHA256sum: e5816881c45d274aff025350e3169c674cd7aa7b462044470978c3c7030187bd
Description: libshout allows applications to easily communicate and broadcast
to an Icecast streaming media server. It handles the socket connections,
metadata communication, and data streaming for the calling application,
and lets developers focus on feature sets instead of implementation
details.
Package: libsigcxx
Version: 2.4.1-1
Depends: libc, libstdcpp
Source: feeds/packages/libs/libsigc++
License: LGPL-2.1
Section: libs
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10607
Filename: libsigcxx_2.4.1-1_ramips_24kec.ipk
Size: 11419
MD5Sum: b421f2a1d730e4ee8705a78aa02b624c
SHA256sum: e34e9bfed47dea0035863ed9cd11c740e558c458a956ed4cfd1754b2e2df7c93
Description: It allows you to define signals and to connect those signals to any
callback function, either global or a member function, regardless of
whether it is static or virtual.
Package: libsndfile
Version: 1.0.25-2
Depends: libc
Source: feeds/packages/libs/libsndfile
License: LGPLv2.1
LicenseFiles: COPYING
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 142365
Filename: libsndfile_1.0.25-2_ramips_24kec.ipk
Size: 142144
MD5Sum: bd52194e78b0983ebf3625e4a2fe3d44
SHA256sum: 777a68ae3fd2c225c892af7196ebd4efe2faa647bed6bd92b896ea485fd4bc0c
Description: libsndfile is a library of C routines for reading and writing files
containing sampled audio data.
Package: libsodium
Version: 1.0.2-1
Depends: libc
Source: feeds/packages/libs/libsodium
License: ISC
Section: libs
Maintainer: Damiano Renfer <[email protected]>
Architecture: ramips_24kec
Installed-Size: 107840
Filename: libsodium_1.0.2-1_ramips_24kec.ipk
Size: 108553
MD5Sum: 8b89f0124cf5a750a825c6c8650638c6
SHA256sum: 0c50b690a81f1d41cbb4788a21728a34cdd294cd9606bb419bb481652190d114
Description: NaCl (pronounced "salt") is a new easy-to-use high-speed software library for network communication, encryption, decryption, signatures, etc.
NaCl's goal is to provide all of the core operations needed to build higher-level cryptographic tools.
Sodium is a portable, cross-compilable, installable, packageable fork of NaCl (based on the latest released upstream version nacl-20110221), with a compatible API.
The design choices, particularly in regard to the Curve25519 Diffie-Hellman function, emphasize security (whereas NIST curves emphasize "performance" at the cost of security), and "magic constants" in NaCl/Sodium have clear rationales.
The same cannot be said of NIST curves, where the specific origins of certain constants are not described by the standards.
And despite the emphasis on higher security, primitives are faster across-the-board than most implementations of the NIST standards.
Package: libsoup
Version: 2.44.2-1
Depends: libc, glib2, libxml2, libgnutls, libsqlite3
Source: feeds/packages/libs/libsoup
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 200214
Filename: libsoup_2.44.2-1_ramips_24kec.ipk
Size: 191133
MD5Sum: 9e196f19931913bd140878005b6f7df6
SHA256sum: 8e5e972cd01bfe3b8fdc4c5236fa8d37fead364491169d6ffc1027ae00c898af
Description: libsoup
Package: libsoxr
Version: 0.1.1-2
Depends: libc, libpthread
Source: feeds/packages/libs/libsoxr
License: LGPL-2.1
LicenseFiles: LICENCE
Section: libs
Maintainer: Mike Brady <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105014
Filename: libsoxr_0.1.1-2_ramips_24kec.ipk
Size: 105302
MD5Sum: 3a8d9af308815d5a3b040c70fba839a6
SHA256sum: 840c2f817bdbdc7025773accf7a665273bbf92316d19b4a689675a166a52c643
Description: The SoX Resampler library
High quality, one-dimensional sample-rate conversion library
Package: libspeex
Version: 1.2rc1-1
Depends: libc
Source: feeds/packages/libs/speex
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44797
Filename: libspeex_1.2rc1-1_ramips_24kec.ipk
Size: 45767
MD5Sum: 738750abed90a172b6d46c0337ed8ce2
SHA256sum: a7abb783205def13852ee1deeb90e36ee242884d2e26380ffa7fd3d970257a12
Description: Open source patent-free speech compression codec library.
Speex is an Open Source/Free Software patent-free audio compression
format designed for speech. The Speex Project aims to lower the
barrier of entry for voice applications by providing a free
alternative to expensive proprietary speech codecs. Moreover, Speex
is well-adapted to Internet applications and provides useful features
that are not present in most other codecs.
This package contains the shared codec library, needed by other programs.
Package: libspeexdsp
Version: 1.2rc1-1
Depends: libc
Source: feeds/packages/libs/speex
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35598
Filename: libspeexdsp_1.2rc1-1_ramips_24kec.ipk
Size: 36614
MD5Sum: 90a1eb618f7d2beb46d8960dbd426897
SHA256sum: f5f890846325c6af8e595250a496a37509c2d9a4978529bf3a030965e2df5965
Description: Open source patent-free speech compression codec library.
Speex is an Open Source/Free Software patent-free audio compression
format designed for speech. The Speex Project aims to lower the
barrier of entry for voice applications by providing a free
alternative to expensive proprietary speech codecs. Moreover, Speex
is well-adapted to Internet applications and provides useful features
that are not present in most other codecs.
This package contains the shared dsp library, needed by other programs.
Package: libsqlite3
Version: 3080803-1
Depends: libc, libpthread
Source: feeds/packages/libs/sqlite3
License: PUBLICDOMAIN
Section: libs
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 359008
Filename: libsqlite3_3080803-1_ramips_24kec.ipk
Size: 359445
MD5Sum: 4bf96cd3daa7de5c18826bd07394935d
SHA256sum: fd92bf63282f501237a2e827c3bc7985d91b48c81f768aad48ff98c351dbe14f
Description: SQLite is a small C library that implements a self-contained, embeddable,
zero-configuration SQL database engine.
This package contains the SQLite (v3.x) shared library, used by other
programs.
Package: libssh2
Version: 1.4.3-2
Depends: libc, libopenssl, zlib
Source: feeds/packages/libs/libssh2
License: BSD
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58475
Filename: libssh2_1.4.3-2_ramips_24kec.ipk
Size: 59264
MD5Sum: 8e2dfb0a5a08b679b007d06df32cdc1f
SHA256sum: 3a42d4517d89300aae9f75c1c6d75066598e83a9ea386eb6878265fe8fe7c7d8
Description: libssh2 is a client-side C library implementing the SSH2 protocol.
Package: libstoken
Version: 0.8-1
Depends: libc, libxml2, libnettle
Source: feeds/packages/utils/stoken
License: LGPL-2.1
Section: libs
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21423
Filename: libstoken_0.8-1_ramips_24kec.ipk
Size: 22171
MD5Sum: 48c474b922d21930d699bd430b6aa00c
SHA256sum: 778b3027a3b846a540f572ceb9b988aaaaf0367a218450eacdbf00d2a55105f6
Description: stoken is a tokencode generator compatible with RSA SecurID 128-bit (AES)
Package: libtasn1
Version: 4.3-1
Depends: libc
Source: feeds/packages/libs/libtasn1
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28811
Filename: libtasn1_4.3-1_ramips_24kec.ipk
Size: 29562
MD5Sum: ed7e6fe098cb09fea6e7e5f6ec6fdf02
SHA256sum: 6201db2aa55b9afda57d231c864a48a77751b36e858e30805496981e65d908d3
Description: This is a library for Abstract Syntax Notation One (ASN.1) and
Distinguish Encoding Rules (DER) manipulation.
Package: libtheora
Version: 1.1.1-1
Depends: libc, libogg
Source: feeds/packages/libs/libtheora
License: BSD-3-Clause
LicenseFiles: COPYING LICENSE
Section: libs
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243573
Filename: libtheora_1.1.1-1_ramips_24kec.ipk
Size: 244654
MD5Sum: 84f94124283b05f84949230a95ab6424
SHA256sum: 160cffaa939f33c14ef28d7287b7e4cdd78399a078b0568bd6e1c6c0db8cc48b
Description: Theora is Xiph.Org's first publicly released video codec, intended
for use within the Foundation's Ogg multimedia streaming system.
Theora is derived directly from On2's VP3 codec; Currently the
encoders are nearly identical, but Theora will make use of new
features supported by the decoder to improve over what is
is possible with VP3.
Package: libtiff
Version: 4.0.3-4
Depends: libc, zlib, libjpeg
Source: feeds/packages/libs/tiff
License: BSD
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123864
Filename: libtiff_4.0.3-4_ramips_24kec.ipk
Size: 124283
MD5Sum: f656fbcb4a14d1d88cad47584ee6a360
SHA256sum: a6e50c4741e7e9024ce356af7b1a5acc36b771c30cd5f096cea2aa73de4c19ba
Description: TIFF library
Package: libtiffxx
Version: 4.0.3-4
Depends: libc, libtiff, uclibcxx
Source: feeds/packages/libs/tiff
License: BSD
LicenseFiles: COPYRIGHT
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3643
Filename: libtiffxx_4.0.3-4_ramips_24kec.ipk
Size: 4365
MD5Sum: 5238de151d2ef55e36099ca592d9c58b
SHA256sum: b1135bb370c59785c3300e2a1aebbcd69ed8c304f54b1099cc3e8b8e03a26530
Description: TIFF library(c++ bindings)
Package: libtorrent
Version: 0.13.4-git-0-72e908707f01ee01a9b4918436c64348878b63f7
Depends: libc, libopenssl, libsigcxx
Source: feeds/packages/libs/libtorrent
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 318853
Filename: libtorrent_0.13.4-git-0-72e908707f01ee01a9b4918436c64348878b63f7_ramips_24kec.ipk
Size: 319205
MD5Sum: 9f88400f19d14c50d050e57e95320bdc
SHA256sum: fd2e4f9f77dbc966d03381d4cb1b17279e48cbe18151db703eec790a35302f74
Description: LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on
high performance and good code. The library differentiates itself from other
implementations by transfering directly from file pages to the network stack.
On high-bandwidth connections it is able to seed at 3 times the speed of the
official client.
Package: libugpio
Version: 0.0.6-1
Depends: libc
Source: feeds/packages/libs/libugpio
License: LGPL-2.1+
LicenseFiles: COPYING.LESSER
Section: libs
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4385
Filename: libugpio_0.0.6-1_ramips_24kec.ipk
Size: 5151
MD5Sum: 2d8c5736741098d6d60ffec178ea2dcd
SHA256sum: eee5d7e79158bbe13c6a09ec649364eaf422fcd802ab34cc96074bd825cc975f
Description: libugpio is a library to ease the use of linux kernel's sysfs
gpio interface from C programs and/or other libraries.
Package: libunbound
Version: 1.5.1-1
Depends: libc, libopenssl
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 262733
Filename: libunbound_1.5.1-1_ramips_24kec.ipk
Size: 259975
MD5Sum: 3d99ef1e9e2d3388eff82a44abd5a6c9
SHA256sum: 4fe98860fa7489d02b22887b232dacb06a6336507cda748b8eca8bca668ac8b8
Description: This package contains the Unbound shared library.
Package: libunistring
Version: 0.9.5-1
Depends: libc
Source: feeds/packages/libs/libunistring
License: GPL-3.0
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 528690
Filename: libunistring_0.9.5-1_ramips_24kec.ipk
Size: 524208
MD5Sum: 666a1c5fea558f2e16279bf7f4921064
SHA256sum: e850ee91586fe44c82302ba68fb5a32063b966cefb1a2559b00192c0f95f955a
Description: This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.
Package: libupnp-sample
Version: 1.6.19-2
Depends: libc, libupnp
Source: feeds/packages/libs/libupnp
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30946
Filename: libupnp-sample_1.6.19-2_ramips_24kec.ipk
Size: 31614
MD5Sum: 94bde0d646a8c369ca1d8c5332aa1dbf
SHA256sum: 0d96e58edc061dcb41e08594bfdf3efd3bbdd4d03425d523fd8f1283035ba90c
Description: TVcontrolpoint & tvdevice sample applications run inside /etc/upnp-tvdevice/
Package: libupnp
Version: 1.6.19-2
Depends: libc, libpthread
Source: feeds/packages/libs/libupnp
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 85271
Filename: libupnp_1.6.19-2_ramips_24kec.ipk
Size: 86188
MD5Sum: a1df501caf832c51506af79f641efde5
SHA256sum: aaa576cfa0170f63c45779391423030e89b65a540c1ee40bd21a2a20655285b4
Description: The portable SDK for UPnP Devices (libupnp) provides developers with an API and
open source code for building control points, devices, and bridges that are
compliant with Version 1.0 of the Universal Plug and Play Device Architecture
Specification.
Package: libupnpp
Version: 0.9.0-1
Depends: libc, libstdcpp, libexpat, librt, libcurl, libupnp
Source: feeds/packages/libs/libupnpp
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Petko Bordjukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 118149
Filename: libupnpp_0.9.0-1_ramips_24kec.ipk
Size: 118975
MD5Sum: 521b47a6d3f6916f5dda87dd5a35cd24
SHA256sum: a07430ecf5aa620333828a63c58a6e160e9a5f46a4a827a06fc308ab640ecca3
Description: libupnpp defines useful objects over libupnp and can be used to create both devices
and control points. It is shared by upmpdcli and upplay.
Package: liburcu
Version: 0.8.6-1
Depends: libc, libpthread
Source: feeds/packages/libs/liburcu
Section: libs
Maintainer: [email protected]
Architecture: ramips_24kec
Installed-Size: 38164
Filename: liburcu_0.8.6-1_ramips_24kec.ipk
Size: 38853
MD5Sum: 17e2ae524314e7c564119b0743262c86
SHA256sum: da826f441175a9bd9b9bbead8ef9f55c47eef7d275e9f7029b1c1763ad7f81d8
Description: Userspace Read-Copy-Update library.
Package: libusbmuxd-utils
Version: 1.1.0-1
Depends: libc, libusbmuxd
Source: feeds/packages/libs/libusbmuxd
License: LGPL-2.1+
LicenseFiles: COPYING.LGPLv2.1
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5047
Filename: libusbmuxd-utils_1.1.0-1_ramips_24kec.ipk
Size: 5976
MD5Sum: 64de45307e0f724c2f3fa54ba0f30b38
SHA256sum: 64e5f4bb5608d48c8acf15e59251e84a56def383a670bdb69267b5d185c2e290
Description: This daemon is in charge of multiplexing connections over USB to an iPhone or
iPod touch. To users, it means you can sync your music, contacts, photos, etc.
over USB. To developers, it means you can connect to any listening localhost
socket on the device. usbmuxd is not used for tethering data transfer, which
uses a dedicated USB interface as a virtual network device.
This package contains the libusbmuxd utilities.
Package: libusbmuxd
Version: 1.1.0-1
Depends: libc, libplist, libpthread, libxml2, zlib
Source: feeds/packages/libs/libusbmuxd
License: LGPL-2.1+
LicenseFiles: COPYING.LGPLv2.1
Section: libs
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10918
Filename: libusbmuxd_1.1.0-1_ramips_24kec.ipk
Size: 11917
MD5Sum: c40565bcb2b07a36e4a6589bcac25d83
SHA256sum: afd94860e9a58e396d495932a91c26d7e0c3a1af88f7bf3c3e2a5f272bc8e4e2
Description: This daemon is in charge of multiplexing connections over USB to an iPhone or
iPod touch. To users, it means you can sync your music, contacts, photos, etc.
over USB. To developers, it means you can connect to any listening localhost
socket on the device. usbmuxd is not used for tethering data transfer, which
uses a dedicated USB interface as a virtual network device.
This package contains the libusbmuxd shared library.
Package: libuv
Version: 1.4.2-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/libuv
LicenseFiles: LICENSE
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47254
Filename: libuv_1.4.2-1_ramips_24kec.ipk
Size: 48145
MD5Sum: 24e9dc04aa4e68936d43ad31124576b3
SHA256sum: 2b7a3b2be218b9f67b4de0368d6e859039eb1c5828b2dc0dfc8259f41bbf8f2b
Description: libuv is a multi-platform support library with a focus on asynchronous I/O. It
was primarily developed for use by Node.js, but it's also used by Luvit, Julia,
pyuv, and others.
Package: libuvc
Version: 0.0.5-20140812-2c6403405872aa865999b95ba15944295adf6c38-1
Depends: libc, libusb-1.0, libjpeg
Source: feeds/packages/libs/libuvc
License: BSD
Section: libs
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18163
Filename: libuvc_0.0.5-20140812-2c6403405872aa865999b95ba15944295adf6c38-1_ramips_24kec.ipk
Size: 18943
MD5Sum: a5fd69b6bc191b40edbef3813bbd1ded
SHA256sum: 7caec4dfc643623ffa574f43c74854ad3a59d99314e5c64f4dffca8db6aaee13
Description: This package contains libuvc is a cross-platform library for USB video devices,
built atop libusb.
Package: libv4l
Version: 1.6.2-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/libv4l
License: GPL-2.0 LGPL-2.1
LicenseFiles: COPYING COPYING.libv4l
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 75911
Filename: libv4l_1.6.2-1_ramips_24kec.ipk
Size: 76930
MD5Sum: c22b0ec3df7f2cae35b3072fea9db62f
SHA256sum: 5ac2515d904821ae69913083c8200d0a8d61270a8950004f6849e102d54bb5f2
Description: libv4l is a collection of libraries which adds a thin abstraction layer on
top of video4linux2 devices. The purpose of this (thin) layer is to make it
easy for application writers to support a wide variety of devices without
having to write separate code for different devices in the same class. libv4l
consists of 3 different libraries: libv4lconvert, libv4l1 and libv4l2.
libv4l1 offers the (deprecated) v4l1 API on top of v4l2 devices, independent
of the drivers for those devices supporting v4l1 compatibility (which many
v4l2 drivers do not).
libv4l2 offers the v4l2 API on top of v4l2 devices, while adding for the
application transparent libv4lconvert conversion where necessary.
Package: libvorbis
Version: 1.3.4-2
Depends: libc, libogg
Source: feeds/packages/libs/libvorbis
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197944
Filename: libvorbis_1.3.4-2_ramips_24kec.ipk
Size: 197540
MD5Sum: f85c5de775dabd95c2dbe6910acb9b50
SHA256sum: 2cb89c58693bff9b560b59c5d967f6466b63a4885585c6648ece8825c574f0af
Description: Vorbis is a general purpose audio and music encoding format
contemporary to MPEG-4's AAC and TwinVQ, the next generation beyond
MPEG audio layer 3. Unlike the MPEG sponsored formats (and other
proprietary formats such as RealAudio G2 and Windows' flavor of the
month), the Vorbis CODEC specification belongs to the public domain.
All the technical details are published and documented, and any
software entity may make full use of the format without license
fee, royalty or patent concerns.
Package: libvorbisidec
Version: 1.0.3-20150104-1
Depends: libc, libogg
Source: feeds/packages/libs/libvorbisidec
License: BSD-3-Clause
LicenseFiles: COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 73862
Filename: libvorbisidec_1.0.3-20150104-1_ramips_24kec.ipk
Size: 74809
MD5Sum: ac20b71058b2a73819e9f9fc69ffcf9d
SHA256sum: 7003874ff804c441a87649ee7b41d6a6bd321b1df54ffefe30421157f9706803
Description: libvorbisidec is "tremor", a fixed-point implementation of libvorbis.
It also has libogg built-in. It is suitable as a replacement for
libvorbis and libogg in tremor-aware applications.
Tremor is a decoder only.
Package: libvpx
Version: 1.3.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/libvpx
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 452802
Filename: libvpx_1.3.0-1_ramips_24kec.ipk
Size: 449891
MD5Sum: 744f863363d18e6a56aa8576af50c41b
SHA256sum: fbaf94fec998189c2608b69fcc03f16e569cf10a88d368cc33e8c78d5efd2e25
Description: libvpx is a VP8/VP9 Codec SDK.
Package: libwebcam
Version: 0.2.4
Depends: libc, libxml2, libiconv-full
Source: feeds/packages/utils/uvcdynctrl
Section: libs
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18641
Filename: libwebcam_0.2.4_ramips_24kec.ipk
Size: 19462
MD5Sum: 0303f8bfe06d01d4efda2aa41e41fc28
SHA256sum: 3535ca10fbe8d5a944763eea4a688bf531babb1eb16982f84588e692ec9d4d07
Description: The webcam-tools package contains the following two components:
- libwebcam: Webcam Library (LGPL)
- uvcdynctrl: Manage dynamic controls in uvcvideo (GPL)
Package: libwebsockets-cyassl
Version: 1.3-chrome37-firefox30-1
Depends: libc, zlib, libcyassl
Source: feeds/packages/libs/libwebsockets
License: LGPL-2.1+exception
LicenseFiles: LICENSE
Section: libs
Architecture: ramips_24kec
Installed-Size: 33933
Filename: libwebsockets-cyassl_1.3-chrome37-firefox30-1_ramips_24kec.ipk
Size: 34745
MD5Sum: 79b3dbbb513f1b0df3658c2300eb6462
SHA256sum: 74a5f01e68b6513bcf2d496e45df1cf1a3a78e91cd4ccbd3e6ad5d8f7c9ffa39
Description: libwebsockets (CyaSSL)
Package: libwebsockets-openssl
Version: 1.3-chrome37-firefox30-1
Depends: libc, zlib, libopenssl
Source: feeds/packages/libs/libwebsockets
License: LGPL-2.1+exception
LicenseFiles: LICENSE
Section: libs
Architecture: ramips_24kec
Installed-Size: 34113
Filename: libwebsockets-openssl_1.3-chrome37-firefox30-1_ramips_24kec.ipk
Size: 34935
MD5Sum: 03d5dadfbc381b38ee5808b23b3cc4af
SHA256sum: 3ff7ba291d7ae0303d0de62682e186552fe2e50a2e1c2eaa1f429c734f2183b0
Description: libwebsockets (OpenSSL)
Package: libwrap
Version: 7.6-1
Depends: libc
Source: feeds/packages/libs/tcp_wrappers
License: BSD
Section: libs
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10808
Filename: libwrap_7.6-1_ramips_24kec.ipk
Size: 11554
MD5Sum: f63506b5f0fce741104a2f38c39c57bd
SHA256sum: 90af543d66cf630659aa877f423baf54ed012708d5a41cc811d38e72322d740e
Description: Security wrapper library for TCP services
Package: libxerces-c-samples
Version: 3.1.1-1
Depends: libc, libxerces-c
Source: feeds/packages/libs/libxerces-c
License: Apache-2.0
LicenseFiles: LICENSE
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 159684
Filename: libxerces-c-samples_3.1.1-1_ramips_24kec.ipk
Size: 160092
MD5Sum: e05ce69d53643668610755e7cf72e191
SHA256sum: da3643c015e90b36db8c102ab578d9ed88fc3d05b4e24765fa8301b0c104dac7
Description: Validating XML parser library for C++ (samples)
Package: libxerces-c
Version: 3.1.1-1
Depends: libc, uclibcxx, libiconv, libpthread
Source: feeds/packages/libs/libxerces-c
License: Apache-2.0
LicenseFiles: LICENSE
Section: libs
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 904510
Filename: libxerces-c_3.1.1-1_ramips_24kec.ipk
Size: 901716
MD5Sum: 4bbbf70cf1541d61e1ead592ff11ef15
SHA256sum: ff6c2391bfb99f76e9cd5825cf44b47822d12f3c2af6a67a718fc02c98615272
Description: Xerces-C++ is a validating XML parser written in a portable subset of
C++. Xerces-C++ makes it easy to give your application the ability
to read and write XML data. A shared library is provided for parsing,
generating, manipulating, and validating XML documents. Xerces-C++ is
faithful to the XML 1.0 recommendation and associated standards (DOM
1.0, DOM 2.0, SAX 1.0, SAX 2.0, Namespaces, XML Schema Part 1 and
Part 2). It also provides experimental implementations of XML 1.1
and DOM Level 3.0. The parser provides high performance, modularity,
and scalability.
Package: libxml2
Version: 2.9.2-3
Depends: libc, libpthread, zlib
Source: feeds/packages/libs/libxml2
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 474936
Filename: libxml2_2.9.2-3_ramips_24kec.ipk
Size: 473026
MD5Sum: 377f2c15f93f9540b331524ca2e0f0a6
SHA256sum: 46721396ada26d82ad897b5649364c7403c909b19c5dfc29d8dae7da629d3203
Description: A library for manipulating XML and HTML resources.
Package: libxslt
Version: 1.1.28-2
Depends: libc, libxml2
Source: feeds/packages/libs/libxslt
License: MIT
LicenseFiles: COPYING
Section: libs
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82362
Filename: libxslt_1.1.28-2_ramips_24kec.ipk
Size: 83150
MD5Sum: 63ab8904e64cf7e7eb3f66332ba556bc
SHA256sum: f8e69aa78203f6ad0a989547eec034ee0b3533f3e62ed06430651ecbe2b00bc2
Description: A library for XML transformation using XSLT.
Package: libzdb
Version: 3.0-1
Depends: libc, libsqlite3, libpq, libmysqlclient, zlib, libpthread, libopenssl
Source: feeds/packages/libs/libzdb
License: GPL-3.0
Section: libs
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32145
Filename: libzdb_3.0-1_ramips_24kec.ipk
Size: 33136
MD5Sum: 25a10b808e1c4238324adce1c722cc20
SHA256sum: 7e7031e4b95ff9d77455fdd9f6e0b6734335477a7391598855e94d93f8601974
Description: zdb is a database library with thread-safe connection pooling. The library can connect
transparently to multiple database systems. It has zero runtime configuration and connections
are specified via a URL scheme. A modern object-oriented API is provided.
zdb supports MySQL, PostgreSQL, SQLite, and Oracle.
NOTE: This package does not include Oracle support.
Package: lighttpd-mod-access
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2461
Filename: lighttpd-mod-access_1.4.35-4_ramips_24kec.ipk
Size: 3196
MD5Sum: 9a9aef5d3ae743cc1a2c3801c47c4192
SHA256sum: 568377fcf0c97d8f748e96205feffc21c1116034e5e6aea28d00cd3009cc42df
Description: Access restrictions module
Package: lighttpd-mod-accesslog
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6087
Filename: lighttpd-mod-accesslog_1.4.35-4_ramips_24kec.ipk
Size: 6824
MD5Sum: 8c32a4e7af6371286abe1303558f9660
SHA256sum: 09e349dfadd038f4b832964fae026bd800524c3a04e6c8e9da92938990f6fa98
Description: Access logging module
Package: lighttpd-mod-alias
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2727
Filename: lighttpd-mod-alias_1.4.35-4_ramips_24kec.ipk
Size: 3463
MD5Sum: c2ef2f1862a8732070249dddcb640d75
SHA256sum: 078dfa01c233614041bcce89312a933b777706f327a92e14f1f3dcff3206240d
Description: Directory alias module
Package: lighttpd-mod-auth
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10915
Filename: lighttpd-mod-auth_1.4.35-4_ramips_24kec.ipk
Size: 11676
MD5Sum: 79a49736ed3e36258a719047f555b182
SHA256sum: f9bdfac0b09865fb9d37cc5f2e287d89335730abc34fe0e83d6bb1a209902be5
Description: Authentication module
Package: lighttpd-mod-cgi
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9361
Filename: lighttpd-mod-cgi_1.4.35-4_ramips_24kec.ipk
Size: 10110
MD5Sum: e7a84bc5f372e3f7b891c3933a33c831
SHA256sum: 98c12a94273c4eecf5bf41c833a26c8e3a314e4422466460de33cea2682ee426
Description: CGI module
Package: lighttpd-mod-cml
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3361
Filename: lighttpd-mod-cml_1.4.35-4_ramips_24kec.ipk
Size: 4099
MD5Sum: 18dbdad8dab3c8c1a75c83a9cfff3e9f
SHA256sum: e2a5138490348eaa197b8bd3ddf3f72796deb9e9dbb382a08369f5e9076b9e6c
Description: Cache Meta Language module
Package: lighttpd-mod-compress
Version: 1.4.35-4
Depends: libc, lighttpd, zlib
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7178
Filename: lighttpd-mod-compress_1.4.35-4_ramips_24kec.ipk
Size: 7936
MD5Sum: 3b1ee84c55cecfd7825983e31747c090
SHA256sum: 4f1e03555e5e64402ea0d926eb9c23948b2b5f1b747cd85e9e905ac43d00936d
Description: Compress output module
Package: lighttpd-mod-evasive
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2519
Filename: lighttpd-mod-evasive_1.4.35-4_ramips_24kec.ipk
Size: 3242
MD5Sum: 0c6287c5480ace21bc775c3f89d529fa
SHA256sum: dde4a0c516bad68202bd5d6c39cc1c5466758a42cc37b37c30edf5ea19438fed
Description: Evasive module
Package: lighttpd-mod-evhost
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3592
Filename: lighttpd-mod-evhost_1.4.35-4_ramips_24kec.ipk
Size: 4338
MD5Sum: a51b5df50e1f2be0745921296e8d5538
SHA256sum: eb5d8be93c24e2d5fc805c15f585208d15440a2c9fadae59bc91d81cffbc1ef8
Description: Exnhanced Virtual-Hosting module
Package: lighttpd-mod-expire
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3965
Filename: lighttpd-mod-expire_1.4.35-4_ramips_24kec.ipk
Size: 4696
MD5Sum: 3c3ec9a554d9b2487dbfc754498d4f79
SHA256sum: 561aa714e8ff18f085789f0ff0fdaef00f2dd49f526931db9bc94b3e2c83901a
Description: Expire module
Package: lighttpd-mod-extforward
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4075
Filename: lighttpd-mod-extforward_1.4.35-4_ramips_24kec.ipk
Size: 4820
MD5Sum: 5e22b489e0fe4bdc6597f26ef4834a46
SHA256sum: bbbdb7870cb60ac5cd71e5d998ed3e80301347826b3c6949ee56f38271662269
Description: Extract client module
Package: lighttpd-mod-fastcgi
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22266
Filename: lighttpd-mod-fastcgi_1.4.35-4_ramips_24kec.ipk
Size: 22933
MD5Sum: bb531f1ca4b122f69043314f2106bcfa
SHA256sum: ccf539b8772e6325eddffc399d77053676ce8bc8c5166ccf56e00e47d9aaec6e
Description: FastCGI module
Package: lighttpd-mod-flv_streaming
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3091
Filename: lighttpd-mod-flv_streaming_1.4.35-4_ramips_24kec.ipk
Size: 3823
MD5Sum: 5da6beff9cb54f0371d7557cb903bebb
SHA256sum: 494c7413d0596ac68de9d442cde78c1e80860dd45291997765917daf90f574a8
Description: FLV streaming module
Package: lighttpd-mod-magnet
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1505
Filename: lighttpd-mod-magnet_1.4.35-4_ramips_24kec.ipk
Size: 2268
MD5Sum: 373b5c64e751a849728928a03e3431c0
SHA256sum: 2014302c2762aee928785fa195fb32a3d48e2e3b2300627823d0afd7df63823b
Description: Magnet module
Package: lighttpd-mod-mysql_vhost
Version: 1.4.35-4
Depends: libc, lighttpd, libmysqlclient
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1797
Filename: lighttpd-mod-mysql_vhost_1.4.35-4_ramips_24kec.ipk
Size: 2586
MD5Sum: 3633da7ea0367d4c75d266c8d08fab97
SHA256sum: 6de29fbb0c79bb62d4946b296b7efcb74587bb031266f55378848a359a780e9b
Description: Mysql virtual hosting module
Package: lighttpd-mod-proxy
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9186
Filename: lighttpd-mod-proxy_1.4.35-4_ramips_24kec.ipk
Size: 9937
MD5Sum: e067452a51875a5d0ab712294b371389
SHA256sum: f74771434f8a39a586911b56cd797fd067ff2e84792249afc8e904acc779779a
Description: Proxy module
Package: lighttpd-mod-redirect
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3458
Filename: lighttpd-mod-redirect_1.4.35-4_ramips_24kec.ipk
Size: 4199
MD5Sum: b7fde88f64dfc350788f9b7000f7eb6c
SHA256sum: e085512d88ab61f30e723620af5b01844f666ee5bcb2a30ad307d111952471aa
Description: URL redirection module
Package: lighttpd-mod-rewrite
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4498
Filename: lighttpd-mod-rewrite_1.4.35-4_ramips_24kec.ipk
Size: 5225
MD5Sum: 48f3910583ce9f7838d30ee5021e8309
SHA256sum: bee2092cd53b2e595e57dd04fd1312ec600ca200c9e882c7d5ce10b91dbc90ac
Description: URL rewriting module
Package: lighttpd-mod-rrdtool
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4618
Filename: lighttpd-mod-rrdtool_1.4.35-4_ramips_24kec.ipk
Size: 5356
MD5Sum: 74792b14565cb4ebec2c7cf2e1997866
SHA256sum: 9e6c9ea0e2df082d3509e7d03fb4a933b2d4478b1ee9c6c8aaeac07c6a3e6cf3
Description: RRDtool module
Package: lighttpd-mod-scgi
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16534
Filename: lighttpd-mod-scgi_1.4.35-4_ramips_24kec.ipk
Size: 17208
MD5Sum: 0a8440fb74b75a88fa4953a43800450e
SHA256sum: a05b98fd01a913591f39b180fde889f036e10dfe8867298858cf4f2a92c0e79f
Description: SCGI module
Package: lighttpd-mod-secdownload
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3557
Filename: lighttpd-mod-secdownload_1.4.35-4_ramips_24kec.ipk
Size: 4287
MD5Sum: b8a804b302cf55c10e77a6212a4121b0
SHA256sum: 61cb503b18fcf043e6e16407db08cda66071ee8ce42e59de6974f0c504448d4d
Description: Secure and fast download module
Package: lighttpd-mod-setenv
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2661
Filename: lighttpd-mod-setenv_1.4.35-4_ramips_24kec.ipk
Size: 3412
MD5Sum: b8900dc3b885f478fc162a5aa00718e5
SHA256sum: e48e8cc3a6049bce5b74aaa2753290466140cc24b87f9c2edc12e9d2801a1f8c
Description: Environment variable setting module
Package: lighttpd-mod-simple_vhost
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3441
Filename: lighttpd-mod-simple_vhost_1.4.35-4_ramips_24kec.ipk
Size: 4188
MD5Sum: 347c7ea5a1b10d5369cecd75b4261638
SHA256sum: a2a72d044609c37e0fcc9d29a2d5f6c4f1f1922e15fecaecdc9602e511437b0d
Description: Simple virtual hosting module
Package: lighttpd-mod-ssi
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11019
Filename: lighttpd-mod-ssi_1.4.35-4_ramips_24kec.ipk
Size: 11797
MD5Sum: 367df0ea45ff6b6ed8d2c80c576cfaf4
SHA256sum: 8b0e9d9b708bd5db20585e186c5f439abf18837a8d47c4ce2c12ce68e2b46332
Description: SSI module
Package: lighttpd-mod-status
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7707
Filename: lighttpd-mod-status_1.4.35-4_ramips_24kec.ipk
Size: 8485
MD5Sum: 60a45fdc07057c1eeda7121de5d20f61
SHA256sum: cde6f60c3e20d89c802b3ce2e4aaa7a00870f1c8180efc033639da64656be613
Description: Server status display module
Package: lighttpd-mod-trigger_b4_dl
Version: 1.4.35-4
Depends: libc, lighttpd, libpcre
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3629
Filename: lighttpd-mod-trigger_b4_dl_1.4.35-4_ramips_24kec.ipk
Size: 4377
MD5Sum: 92a249414becf14badeb6dc81ff5874e
SHA256sum: 119024281971766834778585affd37f9e388a95d5ba2531536fd3f7bed9695ee
Description: Trigger before download module
Package: lighttpd-mod-userdir
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3566
Filename: lighttpd-mod-userdir_1.4.35-4_ramips_24kec.ipk
Size: 4282
MD5Sum: 7ebeb70dd7e638226e5f6701bec2b4aa
SHA256sum: 647f4cb4a4fe95f25eba60173e96222e7e512e859443ddf6b8b1d981deccd189
Description: User directory module
Package: lighttpd-mod-usertrack
Version: 1.4.35-4
Depends: libc, lighttpd
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3336
Filename: lighttpd-mod-usertrack_1.4.35-4_ramips_24kec.ipk
Size: 4065
MD5Sum: aa4a7c0a083c36bba7c6d2373111bbce
SHA256sum: d6940a972dc115ecff8effbae1e1c805af6b0e2ca2954ecbcffc5085e66d8eec
Description: User tracking module
Package: lighttpd-mod-webdav
Version: 1.4.35-4
Depends: libc, lighttpd, libsqlite3, libuuid, libxml2
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13903
Filename: lighttpd-mod-webdav_1.4.35-4_ramips_24kec.ipk
Size: 14661
MD5Sum: 72d41a34642f83b788f9fc4c3a9f911c
SHA256sum: ea5270baafc7c2247fb91a118b930cda94491874e0990152e96315d176114d65
Description: WebDAV module
Package: lighttpd
Version: 1.4.35-4
Depends: libc, libopenssl, libpcre, libpthread
Source: feeds/packages/net/lighttpd
License: BSD-3c
LicenseFiles: COPYING
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 83536
Filename: lighttpd_1.4.35-4_ramips_24kec.ipk
Size: 84291
MD5Sum: cc4f8ff7fda6a5a50f2e3d48a7b150a6
SHA256sum: 65246b5051767df98ac272814a18a43aa0d8e8685ad4194f8f1c3a22042e5901
Description: A flexible and lightweight web server
Package: linknx
Version: 0.0.1.32-6
Depends: libc, pthsem, lua, luac, libstdcpp, libcurl, libesmtp
Source: feeds/packages/net/linknx
License: GPL-2.0+
Section: net
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 174227
Filename: linknx_0.0.1.32-6_ramips_24kec.ipk
Size: 174611
MD5Sum: f7cb6fe9e774025a0cf24144df957be7
SHA256sum: a9311cf2581a71a2cf7fe367ab0a8c6ba198d95ba3c85566526f2d90d9de836d
Description: KNX home automation platform
Package: lispd
Version: 0.4-1
Depends: libc, librt, libopenssl, confuse, kmod-tun, uci, kmod-ipv6
Source: feeds/packages/net/lispmob
License: GPLv2
LicenseFiles: LICENSE
Section: net
Maintainer: Vasileios Lakafosis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82914
Filename: lispd_0.4-1_ramips_24kec.ipk
Size: 83782
MD5Sum: 80268b62757b2c09d1a2c02ba50a560e
SHA256sum: 8d5aa775c4fbfb404c685ed623c051136c1d3f197ade9498528c32a59993bd13
Description: This packet provides support for the Locator-ID Seperation Protocol.
Package: lm-sensors-detect
Version: 3.3.5-1
Depends: libc, sysfsutils, lm-sensors, perl, perlbase-essential, perlbase-fcntl, perlbase-file, perlbase-xsloader
Source: feeds/packages/utils/lm-sensors
License: GPL-2.0+ LGPL-2.1+
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44364
Filename: lm-sensors-detect_3.3.5-1_ramips_24kec.ipk
Size: 45208
MD5Sum: adee794c184f6179f52572bd6f698f60
SHA256sum: 8086eded06406e7dc11e2fb8d427a0e70fdc8ccfb13bbeb1139e787559a86bb0
Description: script to autodetect sensor hardware
Package: lm-sensors
Version: 3.3.5-1
Depends: libc, sysfsutils, libsensors
Source: feeds/packages/utils/lm-sensors
License: GPL-2.0+ LGPL-2.1+
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7680
Filename: lm-sensors_3.3.5-1_ramips_24kec.ipk
Size: 8427
MD5Sum: 5f40b94697ec949e24c9326086593ff9
SHA256sum: d075e0ab40d67fd395ee85d94810815306d9b4514b48a5920e5f431cb243e2cf
Description: utility to read hardware sensor data
Package: lsof
Version: 4.86-2
Depends: libc, librpc
Source: feeds/packages/utils/lsof
License: Unique
LicenseFiles: 00README
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57419
Filename: lsof_4.86-2_ramips_24kec.ipk
Size: 58127
MD5Sum: da3282d1412dad8788d21ce21bebd7dd
SHA256sum: b676772dc0fd9ae8d42a23f5a82f0ae4539c888cfe6c77f98086354fcfc9ca8b
Description: LiSt Open Files - a diagnostic tool
Package: lttng-tools
Version: 2.6.0-1
Depends: libc, lttng-ust, libpopt, libxml2
Source: feeds/packages/devel/lttng-tools
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING
Section: devel
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 429394
Filename: lttng-tools_2.6.0-1_ramips_24kec.ipk
Size: 429208
MD5Sum: c9e72e74d854ed75b24ae4197f73d331
SHA256sum: be320d48e56a61f0a3e827e26e97be0a5f448a764526ccbc6265f5746507a539
Description: Linux Trace Toolkit: next generation (tools)
Package: lttng-ust
Version: 2.6.0-1
Depends: libc, liburcu, libuuid, librt
Source: feeds/packages/libs/lttng-ust
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 145353
Filename: lttng-ust_2.6.0-1_ramips_24kec.ipk
Size: 145992
MD5Sum: a14cc909ada37b1cf6b3bb09ef923710
SHA256sum: 9c76b128b24dbc1b2a83faaffd0414d7180ce15397fcb83df55044ba684eb717
Description: Linux Trace Toolkit: next generation (library)
Package: lua-bencode
Version: 2.1.0-1
Depends: libc, lua
Source: feeds/packages/lang/lua-bencode
License: MIT
Section: lang
Maintainer: Lars Gierth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1454
Filename: lua-bencode_2.1.0-1_ramips_24kec.ipk
Size: 2262
MD5Sum: 1c9dd3d01ad5a636044c76c6d1149276
SHA256sum: 504b6feaa9dd40b6103c8e02672dc877faff3b313496af444415e82978dec9f6
Description: This is a module for the lua programming language for decoding and encoding
bencoded data which can be used to read and write torrent files for bittorrent.
Package: lua-mosquitto
Version: 0.1-1
Depends: libc, libmosquitto, lua
Source: feeds/packages/lang/lua-mosquitto
License: MIT
LicenseFiles: LICENSE
Section: lang
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5743
Filename: lua-mosquitto_0.1-1_ramips_24kec.ipk
Size: 6492
MD5Sum: d6ce99e5b77ddba6e72523c36c92d01d
SHA256sum: a4c8d08702590c5a687c0fd6448316bde3eb2a67298373b276b2fa5080022213
Description: Lua bindings to libmosquitto
Package: lua-penlight
Version: 1.3.2-1
Depends: libc, luafilesystem
Source: feeds/packages/lang/lua-penlight
License: MIT
Section: lang
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99096
Filename: lua-penlight_1.3.2-1_ramips_24kec.ipk
Size: 99980
MD5Sum: 40b0c1d54714e678abf7627d3899f3da
SHA256sum: efa8f9fb35b6153ae9422471c591c15dc8768f452b62f2516c30c9a72a192169
Description: It is often said of Lua that it does not include batteries.
Penlight is the batteries.
Package: lua-sha2
Version: 0.2.0-1
Depends: libc, lua
Source: feeds/packages/lang/lua-sha2
License: MIT
Section: lang
Maintainer: Lars Gierth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7700
Filename: lua-sha2_0.2.0-1_ramips_24kec.ipk
Size: 8500
MD5Sum: e6b384f26bfd9078734128a6ed0055bb
SHA256sum: adcc1579aefc44eeabf46c400a00878684ae8dd168de0f20523c769fc8c9e329
Description: Lua Binding for the SHA-2 (SHA-256/384/512) BSD-licensed C implementation by Aaron Gifford.
Also contains a HMAC implementation in Lua.
Package: luabitop
Version: 1.0.2-1
Depends: libc, lua
Source: feeds/packages/lang/luabitop
License: MIT
Section: lang
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2318
Filename: luabitop_1.0.2-1_ramips_24kec.ipk
Size: 3101
MD5Sum: df9de5a5955a28d58f26caea9dae39ec
SHA256sum: 8af56b97d167ea23e2e7199346cbe3d1490fab63375e5b1f50a25ca78fb8646c
Description: Lua BitOp is a C extension module for Lua 5.1/5.2 which adds bitwise operations on numbers.
Package: luaexpat
Version: 1.3.0-1
Depends: libc, lua, libexpat
Source: feeds/packages/lang/luaexpat
Section: lang
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6846
Filename: luaexpat_1.3.0-1_ramips_24kec.ipk
Size: 7617
MD5Sum: 1f6c9c2b1b1b7ea8a1b0afd0eb2d809c
SHA256sum: fde99f2c6c27bacf54856aa325bd9103304d0975be4b664fc10e26c22ab46381
Description: LuaExpat is a SAX XML parser based on the Expat library.
Package: luafilesystem
Version: 1.6.2-1
Depends: libc, liblua
Source: feeds/packages/lang/luafilesystem
Section: lang
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5206
Filename: luafilesystem_1.6.2-1_ramips_24kec.ipk
Size: 5997
MD5Sum: 7334c742e301ce814146ac70ddd73e47
SHA256sum: f3b071222cc7d317d643899fd4d34097c6604173454495ff811b4947f2c5af0f
Description: This package contains the LuaFileSystem library, a set of portable
functions for directory creation, listing and deletion and for file
locking.
Package: luai2c
Version: 1.0.0-2
Depends: libc, liblua, kmod-i2c-core
Source: feeds/packages/lang/luai2c
Section: lang
Maintainer: Frank Edelhaeuser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4509
Filename: luai2c_1.0.0-2_ramips_24kec.ipk
Size: 5262
MD5Sum: bc10d44260717d70af1311ab55ac0b7a
SHA256sum: cd46e5b5eb1a4c820783984fb860d6d9f1234b896fc034f334816d00d003e503
Description: This is the Lua binding for I2C. It provides access to I2C slaves supported by the kernel.
Package: lualanes
Version: 3.9.4-1
Depends: libc, lua, luac, liblua, libpthread
Source: feeds/packages/lang/lualanes
Section: lang
Maintainer: Vladimir Malyutin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38253
Filename: lualanes_3.9.4-1_ramips_24kec.ipk
Size: 39092
MD5Sum: 3af05ce0ce5cc4828a3b0ba8adaa6064
SHA256sum: 2f86fc3b615d04b57a725599bf375b60c980d8159e78db9d38270153061b2041
Description: Lanes is a lightweight, native, lazy evaluating multithreading library for Lua 5.1 and 5.2.
Package: luaposix
Version: v33.2.1-4
Depends: libc, lua, librt
Source: feeds/packages/lang/luaposix
License: MIT
LicenseFiles: COPYING
Section: lang
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29979
Filename: luaposix_v33.2.1-4_ramips_24kec.ipk
Size: 30558
MD5Sum: d79c0faa7623ec6a0e73056d9d1f1cdd
SHA256sum: 98b82c78434aeeec3da2a6f198aaff921e7f7d53da32f972f12160dc87a176ae
Description: luaposix is a general POSIX library for Lua providing access
to various low level libc functions.
Package: luarocks
Version: 2.2.0-rc1-2
Depends: libc, lua, luac, liblua, luasocket, unzip, curl, luasec
Source: feeds/packages/lang/luarocks
License: GPL
Section: lang
Maintainer: Amr Hassan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 101999
Filename: luarocks_2.2.0-rc1-2_ramips_24kec.ipk
Size: 102879
MD5Sum: 954fe88a69f2fca7c60d243c47d7b096
SHA256sum: 822d2ad7fe993b110beb11ac71496d1aa8adf0315f6f16892f08c83fb0ef951f
Description: LuaRocks is a deployment and management system for Lua modules.
Package: luasec
Version: 0.5-1
Depends: libc, lua, libopenssl, luasocket
Source: feeds/packages/lang/luasec
License: MIT
LicenseFiles: LICENSE
Section: lang
Architecture: ramips_24kec
Installed-Size: 20819
Filename: luasec_0.5-1_ramips_24kec.ipk
Size: 21540
MD5Sum: d456975e729b2d76737b79bb65f65a24
SHA256sum: 5784a3abd79548544ff5c64565da12260768ce835fc2aec303a041ab6c80c924
Description: LuaSec is a binding for OpenSSL library to provide TLS/SSL communication.
Package: luasoap
Version: 2014-08-21-af1e100281cee4b972df10121e37e51d53367a98
Depends: libc, lua, luaexpat, luasec, luasocket
Source: feeds/packages/lang/luasoap
License: MIT
Section: lang
Maintainer: Liu Peng <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9008
Filename: luasoap_2014-08-21-af1e100281cee4b972df10121e37e51d53367a98_ramips_24kec.ipk
Size: 9827
MD5Sum: 06b8b7c2294abecf6d230ed93612d721
SHA256sum: 1434838c66dc75eb64bfac0f4922ff0ffbe326238c88b8e570eb51ec03ca4ad2
Description: LuaSOAP is a library of functions to deal with SOAP.
Package: luasocket
Version: 3.0-rc1-20130909-2
Depends: libc, lua
Source: feeds/packages/lang/luasocket
Section: lang
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36374
Filename: luasocket_3.0-rc1-20130909-2_ramips_24kec.ipk
Size: 36950
MD5Sum: eb46b0232f59593b96ec8b6c09283c8d
SHA256sum: 17145700724bb58701bd7ad3177861a85ab5152de58cbccec17b8db4cbe0fe36
Description: LuaSocket is the most comprehensive networking support
library for the Lua language. It provides easy access to
TCP, UDP, DNS, SMTP, FTP, HTTP, MIME and much more.
Package: luasql-mysql
Version: 2.3.0-1
Depends: libc, lua, libmysqlclient
Source: feeds/packages/lang/luasql
License: MIT
LicenseFiles: docs/us/license.html
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5761
Filename: luasql-mysql_2.3.0-1_ramips_24kec.ipk
Size: 6561
MD5Sum: 5591390e14ef788fd2dc92803c8d81f3
SHA256sum: 40a893da6d4ac95799d118c3b60158a93ed6bbecd8e82bc36ef90ac2b98525be
Description: LuaSQL is a simple interface from Lua to a DBMS.
.
This package contains the MySQL binding.
Package: luasql-pgsql
Version: 2.3.0-1
Depends: libc, lua, libpq
Source: feeds/packages/lang/luasql
License: MIT
LicenseFiles: docs/us/license.html
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5837
Filename: luasql-pgsql_2.3.0-1_ramips_24kec.ipk
Size: 6633
MD5Sum: 0acc8535a36ce186390fe1b07e6a48a3
SHA256sum: a09e5ca2d2e6e9216a5fb79cb960499003ebc46c1699df1556a2721694fa7f20
Description: LuaSQL is a simple interface from Lua to a DBMS.
.
This package contains the PostgreSQL binding.
Package: luasql-sqlite3
Version: 2.3.0-1
Depends: libc, lua, libsqlite3
Source: feeds/packages/lang/luasql
License: MIT
LicenseFiles: docs/us/license.html
Section: lang
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5685
Filename: luasql-sqlite3_2.3.0-1_ramips_24kec.ipk
Size: 6483
MD5Sum: 35998c3dfd4629934057962e5b228cb7
SHA256sum: e2cb1a1c33c784a18b3cb257432bc49d68426103c1b493fc1c6d57bd5f5dc5c8
Description: LuaSQL is a simple interface from Lua to a DBMS.
.
This package contains the SQLite 3 binding.
Package: luci-app-bcp38
Version: 2-1
Depends: libc, lua, luci-base, bcp38
Source: feeds/packages/net/luci-app-bcp38
License: Apache-2.0
Section: luci
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: all
Installed-Size: 1528
Filename: luci-app-bcp38_2-1_all.ipk
Size: 2360
MD5Sum: ed35e3f7a59d6e8039dd908ba06de4c1
SHA256sum: f95d72c181a117461f74e6ef4f190ca0a8d9f6dfff0bb7b256bccae4d60eb0b8
Description: Control BCP38 subnet blocking
Package: luci-app-cshark
Version: 2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b
Depends: libc, cshark, luci
Source: feeds/packages/net/cshark
Section: luci
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3730
Filename: luci-app-cshark_2015-03-13-ab2ae2fbd72b6cbd57c95e3192edc3c1f475412b_ramips_24kec.ipk
Size: 4504
MD5Sum: c4201301fa6c237c0bb5b0a103b3ea46
SHA256sum: 48d36ef2b55c7f3519ac1692c70a26c7959da36372cdb9276a440cdb9df6cf16
Description: Cloudshark capture tool Web UI
Package: luci-app-lxc
Version: 20141012
Depends: libc, luci-mod-admin-full, lxc, lxc-create, liblxc, rpcd-mod-lxc
Source: feeds/packages/utils/luci-app-lxc
License: Apache-2.0
Section: luci
Maintainer: Petar Koretic <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6061
Filename: luci-app-lxc_20141012_ramips_24kec.ipk
Size: 6830
MD5Sum: 4e60002ac563dd0ef391231f3e9cef98
SHA256sum: 735f949564e569d8a8b1b7da82b63acfae9ba80e5c144aed7ca5cd3156d5b36c
Description: This package will install LXC management Web UI.
Package: luci-app-mwan3
Version: 1.4-2
Depends: libc, mwan3, luci-mod-admin-full, luci-app-firewall, luci-lib-nixio
Source: feeds/packages/net/mwan3-luci
License: GPLv2
Section: LuCI
Maintainer: Aedan Renner <[email protected]>
Architecture: all
Installed-Size: 14319
Filename: luci-app-mwan3_1.4-2_all.ipk
Size: 15190
MD5Sum: 3b7f72a0ab14189802d7dc207de4ebd9
SHA256sum: 91cdbfcc5b775a639f22045369cdbca26377afb83a50aa7fd87f696a63019beb
Description: Hotplug script which makes configuration of multiple WAN interfaces simple and
manageable with loadbalancing/failover support for up to 250 physical or logical
WAN interfaces, connection tracking and an easy to manage traffic ruleset
Package: luci-app-sqm
Version: 3-1
Depends: libc, lua, luci-base, sqm-scripts
Source: feeds/packages/net/luci-app-sqm
License: GPLv2
Section: luci
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: all
Installed-Size: 3114
Filename: luci-app-sqm_3-1_all.ipk
Size: 4024
MD5Sum: 6564d39785b4111614ef6472747e2353
SHA256sum: fd3f5e60d54166043bd16523e56b674a4ac14fb333ef80e119e70ef55357d4e8
Description: Control the simple_qos SQM script
Package: lvm2
Version: 2.02.117-1
Depends: libc, libdevmapper, libblkid, libreadline, libncurses
Source: feeds/packages/utils/lvm2
License: GPL-2.0 LGPL-2.1
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 456732
Filename: lvm2_2.02.117-1_ramips_24kec.ipk
Size: 456499
MD5Sum: 1b9691657bc864818837fced359aec5f
SHA256sum: 1360a665c77a455827ead78b3d6a7ace5b91fa4bd23ce5b49da21a182fea5af5
Description: LVM2 refers to a new userspace toolset that provide logical volume management
facilities on linux. It is reasonably backwards-compatible with the original
LVM toolset.
Package: lxc-attach
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3795
Filename: lxc-attach_1.1.0-1_ramips_24kec.ipk
Size: 4558
MD5Sum: dd3e2e724234d182794556210479843b
SHA256sum: 956e78287a304e1a8670b042ae59984525612f5c2c303d2623938b55eae6b9e5
Description: Utility lxc-attach from the LXC userspace tools
Package: lxc-autostart
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4154
Filename: lxc-autostart_1.1.0-1_ramips_24kec.ipk
Size: 4910
MD5Sum: b214d7b9f55b8638493563232d69dc77
SHA256sum: bf4e9f7d5defefc589427ee0c65c947827a8aaf9e573c1d982a30789d900335e
Description: Utility lxc-autostart from the LXC userspace tools
Package: lxc-cgroup
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2669
Filename: lxc-cgroup_1.1.0-1_ramips_24kec.ipk
Size: 3468
MD5Sum: 875d02ff839920f55c4fcea60f9776da
SHA256sum: 86fffa52ed920a8484338298af1ce5d61120f8e8df021d56cdd7e60e65f889c7
Description: Utility lxc-cgroup from the LXC userspace tools
Package: lxc-checkconfig
Version: 1.1.0-1
Depends: libc, lxc, lxc-common
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1964
Filename: lxc-checkconfig_1.1.0-1_ramips_24kec.ipk
Size: 2756
MD5Sum: 211aef5403f3b356eb42f6fa93540802
SHA256sum: ec63c259678ed0cf50305c324e8f960788c83b3bcbaac1e0a924d499b2818f8c
Description: Utility lxc-checkconfig from the LXC userspace tools
Package: lxc-clone
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3228
Filename: lxc-clone_1.1.0-1_ramips_24kec.ipk
Size: 4024
MD5Sum: 162cbc6b22c459da403b360e6231dfcb
SHA256sum: edc7554844681c01e44518a644d95b11a78a90e7ffa0d0da7d1708b9a19677e0
Description: Utility lxc-clone from the LXC userspace tools
Package: lxc-common
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1159
Filename: lxc-common_1.1.0-1_ramips_24kec.ipk
Size: 1941
MD5Sum: a1d0ed63d1482fb55e3767fa3f5ffb70
SHA256sum: 2974cb7c8f9e5df0b6a3bb50d6ca740c2d24efdc181fb00418dd288a72f343e1
Description: LXC common files
Package: lxc-config
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1830
Filename: lxc-config_1.1.0-1_ramips_24kec.ipk
Size: 2616
MD5Sum: d6c27978230b7d9f5650d584f90f5078
SHA256sum: a51d31e34107bdd7f7930afb957933d092c19d38d65fbd6fdf98eb63ac3317a8
Description: Utility lxc-config from the LXC userspace tools
Package: lxc-configs
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4301
Filename: lxc-configs_1.1.0-1_ramips_24kec.ipk
Size: 5038
MD5Sum: c13b0c85cb52451b3bcfffc91bef9ec2
SHA256sum: 3432c3d2cead4aef35134050199090454258b531cf7383db9916a06a9d184ffb
Description: LXC virtual machine common config files
Package: lxc-console
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2338
Filename: lxc-console_1.1.0-1_ramips_24kec.ipk
Size: 3138
MD5Sum: 37397921e8c3e32832394b1b05109f48
SHA256sum: b355d745a733ef65559bce6b96c09b4b96ecc4c53ebc08947d13d8be543ea377
Description: Utility lxc-console from the LXC userspace tools
Package: lxc-create
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc, lxc-configs, lxc-hooks, lxc-templates
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4313
Filename: lxc-create_1.1.0-1_ramips_24kec.ipk
Size: 5085
MD5Sum: 9a347f317ad9365b3748933fd06d17e2
SHA256sum: b66436f5fdee6793a3da62f10342be0925d8e18ba5b119f442b05020ada8ceb3
Description: Utility lxc-create from the LXC userspace tools
Package: lxc-destroy
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2238
Filename: lxc-destroy_1.1.0-1_ramips_24kec.ipk
Size: 3029
MD5Sum: 4c87c9b5d36af35b6a540d8c67b2aa62
SHA256sum: 26fd78d822477a35a8f792f6bcaae4030f6754446b2f74564870d9f03ff304d5
Description: Utility lxc-destroy from the LXC userspace tools
Package: lxc-execute
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2911
Filename: lxc-execute_1.1.0-1_ramips_24kec.ipk
Size: 3707
MD5Sum: 1b401080ba748497bba41a8c6c9c2a46
SHA256sum: 9526126f32b25e9342713c07fbdf0840ae121ae8596d569d9c09c2dd14c8c463
Description: Utility lxc-execute from the LXC userspace tools
Package: lxc-freeze
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2313
Filename: lxc-freeze_1.1.0-1_ramips_24kec.ipk
Size: 3114
MD5Sum: f426d801efc2dc2a6fad4a7759828156
SHA256sum: d7d9e9299091ca60bb1f7b94cf1b4af9ed684e90a5b8d339c6620407ddbed531
Description: Utility lxc-freeze from the LXC userspace tools
Package: lxc-hooks
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4236
Filename: lxc-hooks_1.1.0-1_ramips_24kec.ipk
Size: 4993
MD5Sum: e6347e8903b54a1cc2230bf6dcaadc34
SHA256sum: 0a72dfd1106352c7add84ca6f40fae3969500a17f32b71705bdf02805d4ab58e
Description: LXC virtual machine hooks
Package: lxc-info
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4605
Filename: lxc-info_1.1.0-1_ramips_24kec.ipk
Size: 5361
MD5Sum: 2b1288f2494b15d6a9c753334512769c
SHA256sum: 4581bf826e2996a65ab12630ef5179f0b995ce3acaf59d87358dc6e303bafadd
Description: Utility lxc-info from the LXC userspace tools
Package: lxc-init
Version: 1.1.0-1
Depends: libc, lxc, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3657
Filename: lxc-init_1.1.0-1_ramips_24kec.ipk
Size: 4413
MD5Sum: 4087a879dc7f7d71c60a097d18779c8b
SHA256sum: 0522ccb50df5cd028d61bdb3362264c5beee0cf8798c6d9265217b5d2eb0d6f4
Description: LXC Lua bindings
Package: lxc-ls
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, lxc-config
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1530
Filename: lxc-ls_1.1.0-1_ramips_24kec.ipk
Size: 2307
MD5Sum: 1307f16d3dd850cea8b733185143bc2b
SHA256sum: 21888002c8b3b24e92882d92e478d543d8d8a4d966fb656583af04b40ed89ee7
Description: Utility lxc-ls from the LXC userspace tools
Package: lxc-lua
Version: 1.1.0-1
Depends: libc, lxc, liblua, liblxc, luafilesystem
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7061
Filename: lxc-lua_1.1.0-1_ramips_24kec.ipk
Size: 7858
MD5Sum: b0a1091dc3636c46f751f245d30d3f15
SHA256sum: fac224becc826b926b9f447166c852a9002d13efb0fad3eb67f48e7df912261b
Description: LXC Lua bindings
Package: lxc-monitor
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3316
Filename: lxc-monitor_1.1.0-1_ramips_24kec.ipk
Size: 4104
MD5Sum: b52bced2b5d88b8d44558c6a8ce99662
SHA256sum: dcd68b31eab4145a08b2f3f428760654f17e302cf71819581b115b189f8cdb16
Description: Utility lxc-monitor from the LXC userspace tools
Package: lxc-monitord
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5061
Filename: lxc-monitord_1.1.0-1_ramips_24kec.ipk
Size: 5806
MD5Sum: eb2a9130080ae65ec6c24f8b2e37ef0a
SHA256sum: 819370b3281494f28a78d33fba5942efb4d6fed35a9efa08b6bbe10b2196adef
Description: Utility lxc-monitord from the LXC userspace tools
Package: lxc-snapshot
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3485
Filename: lxc-snapshot_1.1.0-1_ramips_24kec.ipk
Size: 4246
MD5Sum: 1bebbc93b913cb4b6ac4976d95828997
SHA256sum: 8d52ba74466daae83a314ba5967851b44f36682c9c218e45c879b578954110fa
Description: Utility lxc-snapshot from the LXC userspace tools
Package: lxc-start
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4650
Filename: lxc-start_1.1.0-1_ramips_24kec.ipk
Size: 5412
MD5Sum: 8bd2d21a72d2ee314975fda0ad7bfed6
SHA256sum: b51eaed7ef8df320078f48eed191d570c08836675084a96f8bddd9d7ad04d134
Description: Utility lxc-start from the LXC userspace tools
Package: lxc-stop
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2854
Filename: lxc-stop_1.1.0-1_ramips_24kec.ipk
Size: 3647
MD5Sum: 93197764676200da7a33263e1d304fed
SHA256sum: 47038c0fdb257225631ff145b4b4feab2bbe4bc01442b8594c2f128ae8859096
Description: Utility lxc-stop from the LXC userspace tools
Package: lxc-templates
Version: 1.1.0-1
Depends: libc, lxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84946
Filename: lxc-templates_1.1.0-1_ramips_24kec.ipk
Size: 85822
MD5Sum: 30965b7e27203422d633e6ff44cabf44
SHA256sum: 29dd70d53b9925d55d6f82e6783fc8c4c921d1e1cfda1294d2d3bf6facca4fc4
Description: LXC virtual machine templates
Package: lxc-unfreeze
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2315
Filename: lxc-unfreeze_1.1.0-1_ramips_24kec.ipk
Size: 3118
MD5Sum: 5c61ddfbb50891db74ecfde5c948ab06
SHA256sum: c300ee135647503243608deb00fd6fa95856bd6ceefab8fca2aa83d0de1e929f
Description: Utility lxc-unfreeze from the LXC userspace tools
Package: lxc-unshare
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3888
Filename: lxc-unshare_1.1.0-1_ramips_24kec.ipk
Size: 4642
MD5Sum: 949cbdd727c78460e4ea97dc652eea17
SHA256sum: 0644307a289c77e91c5e3bba31c16535214ed4404d60bf9f872371b5d5b8803f
Description: Utility lxc-unshare from the LXC userspace tools
Package: lxc-user-nic
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11133
Filename: lxc-user-nic_1.1.0-1_ramips_24kec.ipk
Size: 11920
MD5Sum: 31eab5537e781b73afbc564b81a14f83
SHA256sum: 4705a076e6af04a6ac44f20c45ab0073cf3f4a3fd8137d64b56f462f0784e184
Description: Utility lxc-user-nic from the LXC userspace tools
Package: lxc-usernsexec
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4088
Filename: lxc-usernsexec_1.1.0-1_ramips_24kec.ipk
Size: 4829
MD5Sum: 1ebf773f3487b422fe772bae3c44b83b
SHA256sum: 389a2fa1f52f60bceb5abfda976f2eaead1572692a4d671c4dd063420429365b
Description: Utility lxc-usernsexec from the LXC userspace tools
Package: lxc-wait
Version: 1.1.0-1
Depends: libc, lxc, lxc-common, libpthread, libcap, liblxc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2323
Filename: lxc-wait_1.1.0-1_ramips_24kec.ipk
Size: 3119
MD5Sum: 713e33b3e5ce920076778b8e749fc47e
SHA256sum: 6e4a8d449f9bf6bc9259366fb23261754fe3654ba84bc1b5808a57fdca3e3355
Description: Utility lxc-wait from the LXC userspace tools
Package: lxc
Version: 1.1.0-1
Depends: libc
Source: feeds/packages/utils/lxc
License: LGPL-2.1+ BSD-2-Clause GPL-2.0
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: lxc_1.1.0-1_ramips_24kec.ipk
Size: 902
MD5Sum: 10e51f004d795d49eda011fa2beb20a4
SHA256sum: 03128473e093f8e06d84d4089c1a486bc0044ee4c6f9471fe0b145fcec7f84f7
Description: LXC is the userspace control package for Linux Containers, a lightweight
virtual system mechanism sometimes described as "chroot on steroids".
Package: mac-telnet-client
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14377
Filename: mac-telnet-client_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 15138
MD5Sum: 8fab48be6ff19c3d69d2c3c2d0c6cabc
SHA256sum: 73deee7f584695c197575e02c2cf841db2b28a1e9d9e6ee66d18bcbc9816c016
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: mac-telnet-discover
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3302
Filename: mac-telnet-discover_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 4160
MD5Sum: bfc92607865232e268d4d06401963968
SHA256sum: 136e5da0cfe869dbae11c03db7a952970955e1089c4e801b81cd8e9d2d2447d8
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: mac-telnet-ping
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6858
Filename: mac-telnet-ping_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 7727
MD5Sum: a397fca56ab2ac10e27b5d26b0cb28bd
SHA256sum: 8ffbc73eafba0589535efab4199c52f9a3d99ec715f3777fae76806c32340f71
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: mac-telnet-server
Version: 2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28
Depends: libc, libubox
Source: feeds/packages/net/mac-telnet
License: GPL-2.0+
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11296
Filename: mac-telnet-server_2014-09-23-269a5d7d53b59a2e4657ad3689e46ac057c22e28_ramips_24kec.ipk
Size: 12128
MD5Sum: 3f65065b1e07aba39479a2b33716742c
SHA256sum: 6080aca25c98382285b2cb7d2168e0f7f75d130ae4e4428bcc5901d3b6bdcbb5
Description: Open source MAC Telnet client and server utilities for connecting to
Mikrotik RouterOS routers and Linux machines via MAC address.
Package: macchanger
Version: 1.7.0-1
Depends: libc
Source: feeds/packages/utils/macchanger
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 215322
Filename: macchanger_1.7.0-1_ramips_24kec.ipk
Size: 216255
MD5Sum: ea20e5c710dec491e2fafd2f57ea8aea
SHA256sum: f5321f2d704e11446c73430f741540b43ebb6081840297687284bc13a34c1449
Description: This is a GNU/Linux utility for viewing/manipulating the MAC address
of network interfaces.
Package: madplay
Version: 0.15.2b-3
Depends: libc, libid3tag, libmad
Source: feeds/packages/sound/madplay
License: GPL-2.0+
LicenseFiles: COPYING
Section: sound
Maintainer: Simon Peter <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28588
Filename: madplay_0.15.2b-3_ramips_24kec.ipk
Size: 29391
MD5Sum: 4ec0f6891009dbbb297c68e30a6c42c8
SHA256sum: 153d9092a5a51ed3d23d4c4c62c065a8936c58344af1140a1a97431949b6d98f
Description: MAD is an MPEG audio decoder. It currently only supports the MPEG 1
standard, but fully implements all three audio layers (Layer I, Layer II,
and Layer III, the latter often colloquially known as MP3.). There is also
full support for ID3 tags.
Package: mailman
Version: 2.1.19-1
Depends: libc, postfix, python, uhttpd, python-dns
Source: feeds/packages/mail/mailman
License: GPL-2.0+
LicenseFiles: gnu-COPYING-GPL
Section: mail
Maintainer: Denis Shulyaka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9270568
Filename: mailman_2.1.19-1_ramips_24kec.ipk
Size: 9271374
MD5Sum: b47512fda9f8f87e82a9cb796f567fb8
SHA256sum: 3f3301d19d95a46442cb23fa0224c4a2ddba93a77756211d5e9e7c7bec6c951c
Description: Mailman is free software for managing electronic mail discussion and e-newsletter lists.
Package: mailsend-nossl
Version: 1.17b15-2
Depends: libc
Source: feeds/packages/mail/mailsend
License: BSD-3-Clause
LicenseFiles: COPYRIGHT
Section: mail
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33981
Filename: mailsend-nossl_1.17b15-2_ramips_24kec.ipk
Size: 34738
MD5Sum: ef8d8a5992928c9ddd6eea2c92a95e01
SHA256sum: 99c396efebde6ab69aedbdb38c27958b001bcff4d426c0c85ac3ec72d3263198
Description: Mailsend is a simple command line program to send mail via SMTP protocol.
Package: mailsend
Version: 1.17b15-2
Depends: libc, libopenssl
Source: feeds/packages/mail/mailsend
License: BSD-3-Clause
LicenseFiles: COPYRIGHT
Section: mail
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35653
Filename: mailsend_1.17b15-2_ramips_24kec.ipk
Size: 36509
MD5Sum: 207f01a6d739c714c969df93b670a3ab
SHA256sum: 1cfc3a0b573474656cb79987b268ec28680fb90e065b6e549bd90aefc89aeaab
Description: Mailsend is a simple command line program to send mail via SMTP protocol.
.
SSL supported is provided by OpenSSL.
Package: mc
Version: 4.8.13-1.2
Depends: libc, glib2, libncurses, librpc
Source: feeds/packages/utils/mc
License: GPL-3.0+
Section: utils
Maintainer: Dirk Brenken <[email protected]>
Architecture: ramips_24kec
Installed-Size: 262923
Filename: mc_4.8.13-1.2_ramips_24kec.ipk
Size: 263471
MD5Sum: 09cb53b61d5552019942c0d3e12173dd
SHA256sum: 521305ae9979971cd15bb673ed1db5af4b46f98fc01c120bc50705b5545dbd92
Description: GNU Midnight Commander is a visual file manager,
licensed under GNU General Public License and therefore qualifies as Free Software.
It's a feature rich full-screen text mode application that allows you to copy,
move and delete files and whole directory trees, search for files
and run commands in the subshell. Internal viewer and editor are included.
Package: mdns-utils
Version: 561.1.1-1
Depends: libc, mdnsd
Source: feeds/packages/net/mdnsresponder
License: Apache-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 771618
Filename: mdns-utils_561.1.1-1_ramips_24kec.ipk
Size: 772109
MD5Sum: f699f433c4324c860209fbd298d87546
SHA256sum: ce20e0fba82b8592f9c1b4feaa2243f60cc1a82e181c18f15907b8fe3c692ed8
Description: Bonjour, also known as zero-configuration networking, enables
automatic discovery of computers, devices, and services on
IP networks.
.
This package contains mDNS client utilities:
- dns-sd
- mDNSClient
- mDNSIdentify
- mDNSNetMonitor
- mDNSProxyResponder
- mDNSResponder
Package: mdnsd
Version: 561.1.1-1
Depends: libc
Source: feeds/packages/net/mdnsresponder
License: Apache-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 190190
Filename: mdnsd_561.1.1-1_ramips_24kec.ipk
Size: 190895
MD5Sum: 9e66f847649815f63593c3815625c1e8
SHA256sum: af233a1b75dbde1b48fb776ed3c89ce67c04379882d05cd8b2d2714ea37060ca
Description: Bonjour, also known as zero-configuration networking, enables
automatic discovery of computers, devices, and services on
IP networks.
.
This package contains the mDNS server daemon.
Package: mdnsresponder
Version: 561.1.1-1
Depends: libc, mdns-utils, mdnsd
Source: feeds/packages/net/mdnsresponder
License: Apache-2.0
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: mdnsresponder_561.1.1-1_ramips_24kec.ipk
Size: 939
MD5Sum: ff394757b90a6b6c53fb0995d48e8fbb
SHA256sum: b08588e4ade3bcc30abef7b3a8639ced97ca0636d0f9c3dc925a85786c71eefd
Description: Bonjour, also known as zero-configuration networking, enables
automatic discovery of computers, devices, and services on
IP networks.
.
This meta package contains only dependencies on other packages.
Package: memcached
Version: 1.4.22-1
Depends: libc, libevent, libpthread
Source: feeds/packages/net/memcached
License: permissive free software license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 54074
Filename: memcached_1.4.22-1_ramips_24kec.ipk
Size: 54886
MD5Sum: 1fc8b4d9c1fb946e3d900485dced6b7a
SHA256sum: d36103feaf27f793baea58a464ca6000f56a794cfa3eb73456513adc475b7a8c
Description: Free and open source, high-performance, distributed memory object caching system
Package: micropython-lib
Version: 0.1-20150302-654c7d288603f7dae09eb09b57fb67b38c7ac6c3-1
Depends: libc, micropython
Source: feeds/packages/lang/micropython-lib
License: MIT, PSFL
LicenseFiles: LICENSE
Section: lang
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 168228
Filename: micropython-lib_0.1-20150302-654c7d288603f7dae09eb09b57fb67b38c7ac6c3-1_ramips_24kec.ipk
Size: 169236
MD5Sum: dd671eb2156cd143afa878211be67237
SHA256sum: d728a8291077d9dba70e496da5eb96d108563d842ce1d86d84ed9ef407aaab64
Description: This package contains micropython-lib, a project to develop a non-monolothic
standard library for Micro Python. Note that this is a work in progress and
several libraries may be missing, incomplete or buggy.
Package: micropython
Version: 1.3.10-20150302-f2a889564b3a215902622b040a1247af38cb8203-1
Depends: libc, libffi
Source: feeds/packages/lang/micropython
License: MIT
LicenseFiles: LICENSE
Section: lang
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123917
Filename: micropython_1.3.10-20150302-f2a889564b3a215902622b040a1247af38cb8203-1_ramips_24kec.ipk
Size: 124579
MD5Sum: e3ad2fdfe2249ced8e7e32a8793fd304
SHA256sum: 00d1772ac97e07b6b883a7325212db4a5fa736b2407cea0da30ea8f72b3f1ce0
Description: This package contains Micro Python, a lean and fast implementation of the Python 3.4 programming language
that is optimised to run on a microcontroller (and low power computers).
Package: minicom
Version: 2.7-1
Depends: libc, libncurses
Source: feeds/packages/utils/minicom
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69351
Filename: minicom_2.7-1_ramips_24kec.ipk
Size: 70072
MD5Sum: c6c521ab4ae39cdc6a38e2b04e09a8ce
SHA256sum: 9ed29d5cccf9be40a3e83428dcf6d5f525868bb674d08b0c4541dfa665e6ba2f
Description: Terminal emulation program
Package: minidlna
Version: 1.1.4-2
Depends: libc, libpthread, libexif, libjpeg, libsqlite3, libffmpeg, libid3tag, libflac, libvorbis, libuuid
Source: feeds/packages/multimedia/minidlna
License: GPL-2.0 BSD-3-Clause
LicenseFiles: COPYING LICENCE.miniupnpd
Section: multimedia
Maintainer: Knyazkov Dmitry <[email protected]>
Architecture: ramips_24kec
Installed-Size: 114913
Filename: minidlna_1.1.4-2_ramips_24kec.ipk
Size: 115580
MD5Sum: 3a87699bb7d6d1aa82c9b182d2e12c9f
SHA256sum: bd3b25bf1dc23de925edae4e23f41a6f4af87fac612add74263a7a00d580ef20
Description: MiniDLNA (aka ReadyDLNA) is server software with the aim of
being fully compliant with DLNA/UPnP-AV clients.
Package: miniupnpc
Version: 1.9-1
Depends: libc, libminiupnpc
Source: feeds/packages/net/miniupnpc
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6688
Filename: miniupnpc_1.9-1_ramips_24kec.ipk
Size: 7455
MD5Sum: 31f88b4a35793b87b06d66d5d8670c50
SHA256sum: 354e7c93c6898b0130486aaf4a6b6c3f743a45653b7873991a976854b7c5d021
Description: Lightweight UPnP client
Package: mjpg-streamer
Version: r182-6
Depends: libc, libpthread, libjpeg
Source: feeds/packages/multimedia/mjpg-streamer
License: GPL-2.0
LicenseFiles: LICENSE
Section: multimedia
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33709
Filename: mjpg-streamer_r182-6_ramips_24kec.ipk
Size: 34577
MD5Sum: cd8e07e93a66f4f435fecbfba7622962
SHA256sum: fdb31b32e343fe633cd0b319e1db04e1c1323c9efbc29ff045cb87334c2e04a2
Description: Streaming application for Linux-UVC compatible webcams
Package: mkdosfs
Version: 3.0.27-1
Depends: libc
Source: feeds/packages/utils/dosfstools
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: David Bonnes <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11898
Filename: mkdosfs_3.0.27-1_ramips_24kec.ipk
Size: 12715
MD5Sum: 6f8ae34ca9f13406bffb29e7873e50ac
SHA256sum: bbaed588bd196dc6a925f12c7d6fea73fa9bb9e068459f7d194afe9cdfd01798
Description: Utilities to create and check MS-DOS FAT filesystems.
(mkfs.vfat and mkfs.fat for creating FAT volumes)
Package: mksh
Version: 50d-1
Depends: libc
Source: feeds/packages/utils/mksh
License: MirOS
Section: shells
Maintainer: Thorsten Glaser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105214
Filename: mksh_50d-1_ramips_24kec.ipk
Size: 106510
MD5Sum: f626267718ef1daa296091bdb0256079
SHA256sum: 58e6f2e5b5c9e6c03591af67a7418a7366802af06ed957b2ce9a380623e0c2ac
Description: mksh is the MirBSD enhanced version of the Public Domain Korn
shell (pdksh), a Bourne-compatible shell which is largely si-
milar to the original AT&T Korn shell; mksh is the only pdksh
derivate currently being actively developed. It includes bug
fixes and feature improvements, in order to produce a modern,
robust shell good for interactive and especially script use.
mksh has UTF-8 support (in substring operations and the Emacs
editing mode) and - while R50 corresponds to OpenBSD 5.5-cur-
rent ksh (without GNU bash-like PS1 and fancy character clas-
ses) - adheres to SUSv4 and is much more robust. The code has
been cleaned up and simplified, bugs fixed, standards compli-
ance added, and several enhancements (for extended compatibi-
lity to other modern shells - as well as a couple of its own)
are available. It has sensible defaults as usual with BSD.
Package: mktorrent
Version: 1.0-1
Depends: libc
Source: feeds/packages/utils/mktorrent
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8772
Filename: mktorrent_1.0-1_ramips_24kec.ipk
Size: 9445
MD5Sum: 27e2cddfc7301629c04b34d81296ae31
SHA256sum: e9d9c460ad4a93e1340f9209f2d34723865c568335640a6a50105e4ea645ad10
Description: mktorrent
Package: moc
Version: 2.5.0-1
Depends: libc, libcurl, libmad, libvorbis, alsa-lib, libid3tag, libflac, libsamplerate, libncursesw, libffmpeg, libltdl, libmagic, faad2, libdb47
Source: feeds/packages/sound/mocp
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 140196
Filename: moc_2.5.0-1_ramips_24kec.ipk
Size: 140708
MD5Sum: a18e611cbee2418a84854d5f1c53d9fc
SHA256sum: d1e86020cfdf0bcb6507261b4cd1c1d97d33df8ca76e589482c3bf0479a29438
Description: MOC (music on console) is a console audio player for LINUX/UNIX designed to be powerful and easy to use.
Package: monit-nossl
Version: 5.12.1-1
Depends: libc, libpthread
Source: feeds/packages/admin/monit
License: AGPL-3.0
LicenseFiles: COPYING
Section: admin
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 191169
Filename: monit-nossl_5.12.1-1_ramips_24kec.ipk
Size: 190943
MD5Sum: d5e490f4963ac1ecd511c0c10a447aa3
SHA256sum: cd6361132dc605917a318bbc7afdd97d36e1a95b3d3815eb6299f4f24b338851
Description: An utility for monitoring services on a Unix system
This package is built without SSL support.
Package: monit
Version: 5.12.1-1
Depends: libc, libpthread, libopenssl
Source: feeds/packages/admin/monit
License: AGPL-3.0
LicenseFiles: COPYING
Section: admin
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 195946
Filename: monit_5.12.1-1_ramips_24kec.ipk
Size: 195451
MD5Sum: 8cf72637144499260b64edc63b042b51
SHA256sum: ecf3c28707fddd4271a1d07578175b875bdd77ecd15d815abc7a068764b2b8ba
Description: An utility for monitoring services on a Unix system
This package is built with SSL support.
Package: mosquitto-client-nossl
Version: 1.4-2
Depends: libc, librt, libuuid, libcares, libmosquitto-nossl
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13759
Filename: mosquitto-client-nossl_1.4-2_ramips_24kec.ipk
Size: 14536
MD5Sum: 2c7d951cbe3691ccc2a56eaa73ac0685
SHA256sum: fda8597cb43307f24ff27b10804f8b225d1c80358fd611fada1c652f835dd4ed
Description: Command line client tools for publishing messages to MQTT servers
and subscribing to topics.
This package is built without SSL support
Package: mosquitto-client
Version: 1.4-2
Depends: libc, librt, libuuid, libcares, libmosquitto
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15238
Filename: mosquitto-client_1.4-2_ramips_24kec.ipk
Size: 15963
MD5Sum: 125d834afa2cb41443a2cfef940aec19
SHA256sum: 237ab33a811a14789bbf398163a8d5ed19c9c97cc70165936b54b0bcfc7626d7
Description: Command line client tools for publishing messages to MQTT servers
and subscribing to topics.
This package is built with SSL support
Package: mosquitto-nossl
Version: 1.4-2
Depends: libc, librt, libuuid
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 57709
Filename: mosquitto-nossl_1.4-2_ramips_24kec.ipk
Size: 58760
MD5Sum: 94991ed09a83d3aebe68fee6b0678fde
SHA256sum: 260cc502013474f957a79251b789a636dc8f066e5fe4eb34ce4800b16f6c69c5
Description: Mosquitto is an open source (BSD licensed) message broker that implements
the MQTT protocol version 3.1 and 3.1.1. MQTT provides a lightweight
method of carrying out messaging using a publish/subscribe model.
This package also includes some basic support for configuring via UCI
This package is built WITHOUT SSL support.
Package: mosquitto
Version: 1.4-2
Depends: libc, librt, libuuid, libopenssl, libwebsockets-openssl
Source: feeds/packages/net/mosquitto
License: BSD-3-Clause
LicenseFiles: LICENSE.txt
Section: net
Require-User: mosquitto=200:mosquitto=200
Maintainer: Karl Palsson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 66109
Filename: mosquitto_1.4-2_ramips_24kec.ipk
Size: 66580
MD5Sum: 865fd5aac3b9a9a87436d8761b69e435
SHA256sum: d88e3907e0158a113655cf5dd4557cae4275423ab1e727daaab2ef152b671cbc
Description: Mosquitto is an open source (BSD licensed) message broker that implements
the MQTT protocol version 3.1 and 3.1.1. MQTT provides a lightweight
method of carrying out messaging using a publish/subscribe model.
This package also includes some basic support for configuring via UCI
This package is built with SSL support
Package: motion
Version: 3.4.0-20141018-9479d910f2149b5558788bb86f97f26522794212-1
Depends: libc, libjpeg, libpthread
Source: feeds/packages/multimedia/motion
License: GPLv2
LicenseFiles: COPYING
Section: multimedia
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 92945
Filename: motion_3.4.0-20141018-9479d910f2149b5558788bb86f97f26522794212-1_ramips_24kec.ipk
Size: 93466
MD5Sum: 2ef39b81658d1d3532ddb0e9e7f41cdd
SHA256sum: afd76454f1bb92b83e526b86d77a799dfe6292eba0ae85c611b0c0066cac40b1
Description: webcam motion sensing and logging
Package: mpack
Version: 1.6-1
Depends: libc
Source: feeds/packages/utils/mpack
License: NLPL
Section: utils
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23965
Filename: mpack_1.6-1_ramips_24kec.ipk
Size: 24807
MD5Sum: 854fd02edec731614113e98f33852647
SHA256sum: a06f5b85df75604e56ef230e1c4afaea1e03db08c9600a71720e4a596264077f
Description: Mpack and munpack are utilities for encoding and decoding
(respectively) binary files in MIME (Multipurpose Internet Mail
Extensions) format mail messages. For compatibility with older forms
of transferring binary files, the munpack program can also decode
messages in split-uuencoded format.
Package: mpc
Version: 0.26-2
Depends: libc, libmpdclient
Source: feeds/packages/sound/mpc
License: GPL-2.0+
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18701
Filename: mpc_0.26-2_ramips_24kec.ipk
Size: 19536
MD5Sum: 9f453d7b89fcc775135ff5da7879aa1b
SHA256sum: fa77c70f0a651d2da8a3c8b1f1e26193e245ca3f1981312607d34b64326c5a60
Description: MPD is a music player supporting flac, mp3 and ogg files.
It is typically controlled over a network using one of it's many
clients including mpc(console), gmpc(gnome), phpmp(php) etc.
this is MPC
Package: mpd-avahi-service
Version: 0.18.21-1
Depends: libc, glib2, libcurl, libpthread, libmpdclient, libstdcpp, libflac, libmad, libvorbisidec, alsa-lib, avahi-daemon
Source: feeds/packages/sound/mpd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 369
Filename: mpd-avahi-service_0.18.21-1_ramips_24kec.ipk
Size: 1406
MD5Sum: 1b4ee0d4bb2d95511a49a3372fb431c8
SHA256sum: b954d772d64a76d14129b404cf5397f1f90253bcb19e1094aff948d68cbe0f83
Description: Music Player Daemon (MPD) is a flexible, powerful, server-side
application for playing music. It is typically controlled over a
network using one of it's many clients including mpc (console),
gmpc (gnome), phpmp (php), etc...
.
This package contains the service definition for announcing the
Music Player Daemon service via mDNS/DNS-SD.
Package: mpd-full
Version: 0.18.21-1
Depends: libc, glib2, libcurl, libpthread, libmpdclient, libstdcpp, libflac, libmad, libvorbisidec, alsa-lib, libaudiofile, libfaad2, libffmpeg, libid3tag, libmms, libogg, libsndfile, libvorbis
Provides: mpd
Source: feeds/packages/sound/mpd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 157156
Filename: mpd-full_0.18.21-1_ramips_24kec.ipk
Size: 157563
MD5Sum: bbddb1e74444529bac10d284c05fb281
SHA256sum: 76fd980c5404b6a3a96db90eef23f85e003b0c723dc9c93e46552939b686fb41
Description: Music Player Daemon (MPD) is a flexible, powerful, server-side
application for playing music. It is typically controlled over a
network using one of it's many clients including mpc (console),
gmpc (gnome), phpmp (php), etc...
.
This package contains a full-blown Music Player Daemon.
Package: mpd-mini
Version: 0.18.21-1
Depends: libc, glib2, libcurl, libpthread, libmpdclient, libstdcpp, libflac, libmad, libvorbisidec, alsa-lib
Provides: mpd
Source: feeds/packages/sound/mpd
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 137665
Filename: mpd-mini_0.18.21-1_ramips_24kec.ipk
Size: 137983
MD5Sum: 50cead39ac3b7f43eccec63b03472190
SHA256sum: bb725c3bcbd44e77a0d7285cd7a3e07e25ac72fdd7100be1e60cd7335ef8fa8e
Description: Music Player Daemon (MPD) is a flexible, powerful, server-side
application for playing music. It is typically controlled over a
network using one of it's many clients including mpc (console),
gmpc (gnome), phpmp (php), etc...
.
This package contains a minimal Music Player Daemon, with support for
only Flac, MP3 & OGG media types & only file: & http: protocols.
Package: msmtp-nossl
Version: 1.6.1-3
Depends: libc
Source: feeds/packages/mail/msmtp
License: GPL-3.0+
LicenseFiles: COPYING
Section: mail
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36102
Filename: msmtp-nossl_1.6.1-3_ramips_24kec.ipk
Size: 37193
MD5Sum: 5dbb8b62432c6182df759324ee3e2102
SHA256sum: 06edf9acaa467912c150cd0ef091a2fda2276736bb2cf106cfcc86c6e5c15d92
Description: msmtp is an SMTP client. In the default mode, it transmits a mail to
an SMTP server (for example at a free mail provider) which does the
delivery. To use this program with your mail user agent (MUA), create
a configuration file with your mail account(s) and tell your MUA to
call msmtp instead of /usr/sbin/sendmail.
This package is built without SSL support.
Package: msmtp-queue
Version: 1.6.1-3
Depends: libc, bash
Source: feeds/packages/mail/msmtp
License: GPL-3.0+
LicenseFiles: COPYING
Section: mail
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8324
Filename: msmtp-queue_1.6.1-3_ramips_24kec.ipk
Size: 9276
MD5Sum: b6b6ca0703f7544828b77f2cd874b7f1
SHA256sum: ffe457a8667f7f4341970daa084bde1b89f0b1abad41c91c0045b44e62e24529
Description: msmtp is an SMTP client. In the default mode, it transmits a mail to
an SMTP server (for example at a free mail provider) which does the
delivery. To use this program with your mail user agent (MUA), create
a configuration file with your mail account(s) and tell your MUA to
call msmtp instead of /usr/sbin/sendmail.
This package contains the msmtp queue scripts.
Package: msmtp
Version: 1.6.1-3
Depends: libc, libopenssl
Source: feeds/packages/mail/msmtp
License: GPL-3.0+
LicenseFiles: COPYING
Section: mail
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41021
Filename: msmtp_1.6.1-3_ramips_24kec.ipk
Size: 42147
MD5Sum: bc6df3a1d8b8bde6fd62e706f33587e9
SHA256sum: 9831688d2fdb1b0e30c1dedd957c2248287eccd17c41f8447f492f7c8df27377
Description: msmtp is an SMTP client. In the default mode, it transmits a mail to
an SMTP server (for example at a free mail provider) which does the
delivery. To use this program with your mail user agent (MUA), create
a configuration file with your mail account(s) and tell your MUA to
call msmtp instead of /usr/sbin/sendmail.
This package is built with SSL support.
Package: mtr
Version: 0.86-1
Depends: libc, libncurses
Source: feeds/packages/net/mtr
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 31327
Filename: mtr_0.86-1_ramips_24kec.ipk
Size: 32188
MD5Sum: 6a05c4361f9e64095a5b431435c7c3ba
SHA256sum: 5e5393f15c8faecaff134c2e361dfabca4cf974fd683550a0aa658ab62377b52
Description: mtr combines the functionality of the 'traceroute' and 'ping' programs
in a single network diagnostic tool.
As mtr starts, it investigates the network connection between the host
mtr runs on and a user-specified destination host. After it
determines the address of each network hop between the machines,
it sends a sequence ICMP ECHO requests to each one to determine the
quality of the link to each machine. As it does this, it prints
running statistics about each machine.
Package: muninlite
Version: 1.0.4-5
Depends: libc, xinetd
Source: feeds/packages/admin/muninlite
License: GPL-2.0+
LicenseFiles: LICENSE
Section: admin
Architecture: ramips_24kec
Installed-Size: 5798
Filename: muninlite_1.0.4-5_ramips_24kec.ipk
Size: 6546
MD5Sum: b499eb6d9a019e5065fdb7450b46d195
SHA256sum: f8b1020ac9c35ddec8d6f0a66f13140671fa3f01551687f176285c52222cb698
Description: Munin node implemented in shell
Package: mwan3
Version: 1.6-1
Depends: libc, ip, ipset, iptables, iptables-mod-conntrack-extra, iptables-mod-ipopt
Source: feeds/packages/net/mwan3
License: GPLv2
Section: net
Maintainer: Jeroen Louwes <[email protected]>
Architecture: all
Installed-Size: 5210
Filename: mwan3_1.6-1_all.ipk
Size: 6122
MD5Sum: 32f12dd58773c6f059932257c55b9f62
SHA256sum: 50bd5e3598006b1285f047c561d135a4e5e589915e648b88ee4a2cb76b73a20a
Description: Hotplug script which makes configuration of multiple WAN interfaces simple
and manageable. With loadbalancing/failover support for up to 250 wan
interfaces, connection tracking and an easy to manage traffic ruleset.
Package: mxml
Version: 2.8-1
Depends: libc
Source: feeds/packages/libs/mxml
License: GPL-2.0
LicenseFiles: COPYING
Section: libs
Maintainer: Espen Jürgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17669
Filename: mxml_2.8-1_ramips_24kec.ipk
Size: 18275
MD5Sum: c703e374d66bad595f2924dab9ae6a78
SHA256sum: f4eafa083e33d54718c45aaffa3584b69b126c8a73d2ec6a7b3d3872ca0790c3
Description: A small xml library.
Package: mysql-server
Version: 5.1.73-1
Depends: libc, libmysqlclient, libpthread, libncursesw, libreadline
Source: feeds/packages/utils/mysql
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2219295
Filename: mysql-server_5.1.73-1_ramips_24kec.ipk
Size: 2201305
MD5Sum: 3c9d505110346b4dc6a132f48a3ee1cc
SHA256sum: 918968fc8c2162c119fb29678d9a28c42c24f4e42ad105d9bddccd5f0b439b57
Description: MySQL Server
Package: nail
Version: 12.5-1
Depends: libc, libopenssl
Source: feeds/packages/mail/nail
License: BSD-2-Clause
Section: mail
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 143234
Filename: nail_12.5-1_ramips_24kec.ipk
Size: 143679
MD5Sum: 9915cf41ef88b72222dc1f4fb473fcd8
SHA256sum: 4d72ef95f38cece98ff82027e34101c2ea8fa3910b18fcaf76e540a0867e4ada
Description: Heirloom mailx (formerly known as "nail") is intended provide
the functionality of the POSIX mailx command with additional
support for MIME messages, IMAP (including caching), POP3,
SMTP, S/MIME, message threading/sorting, scoring, and filtering
Package: nano
Version: 2.3.6-1
Depends: libc, libncurses
Source: feeds/packages/utils/nano
Section: utils
Maintainer: Jonathan Bennett <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28380
Filename: nano_2.3.6-1_ramips_24kec.ipk
Size: 28997
MD5Sum: c99049aabe190f3d254f603caec0066d
SHA256sum: 22bccd4bc9ad737e7208a5e2d4fbb2f63ba7b6b875e62335647a4032f1e6c427
Description: GNU nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone
of the Pico text editor.
Package: natpmpc
Version: 20140401-1
Depends: libc, libnatpmp
Source: feeds/packages/libs/libnatpmp
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Hauke Mehrtens <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3413
Filename: natpmpc_20140401-1_ramips_24kec.ipk
Size: 4326
MD5Sum: 533516cab6a5f3e0fd52cfa49e186fca
SHA256sum: e093817f487bb5afd22b02ce0e31b62a6172bc07417ae359094b5208f2ec13db
Description: libnatpmp is an attempt to make a portable and fully compliant implementation
of the protocol for the client side. It is based on non blocking sockets and
all calls of the API are asynchronous. It is therefore very easy to integrate
the NAT-PMP code to any event driven code.
This package contains the natpmp client.
Package: ncat-ssl
Version: 6.47-2
Depends: libc, libpcap, libopenssl
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 327093
Filename: ncat-ssl_6.47-2_ramips_24kec.ipk
Size: 327376
MD5Sum: 4f646aace87e80e5d7050ae8dd8e05cc
SHA256sum: e93b8c089e677ae5ac0dbab9e7b0882793313ce232f87495643c1b6328eada64
Description: Ncat (with OpenSSL support)
Package: ncat
Version: 6.47-2
Depends: libc, libpcap
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58292
Filename: ncat_6.47-2_ramips_24kec.ipk
Size: 59073
MD5Sum: 27c02aa69aa205867c29e572b1c979fe
SHA256sum: 54a73f8db55e0d8b79bcd71f16cf73506ce2b63607e01ed54801b17c169b6bff
Description: Much-improved reimplementation of Netcat
Package: ncdu
Version: 1.10-1
Depends: libc, libncursesw
Source: feeds/packages/utils/ncdu
License: MIT
LicenseFiles: COPYING
Section: utils
Maintainer: Charles Lehner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24780
Filename: ncdu_1.10-1_ramips_24kec.ipk
Size: 25572
MD5Sum: c1e9044a813847e7850ce847a2d72140
SHA256sum: 1e0c220fbe14c4eeab0fb4e4b47303fa5d0d317a9e0f275dd14d4f410cc88547
Description: Ncdu is a ncurses-based du viewer. It provides a fast and easy-to-use
interface through famous du utility. It allows one to browse through the
directories and show percentages of disk usage with ncurses library.
Package: ndiff
Version: 6.47-2
Depends: libc, python
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1367
Filename: ndiff_6.47-2_ramips_24kec.ipk
Size: 2144
MD5Sum: f15462475370e5399e8b5abb172a8a1a
SHA256sum: df4e445d1b5809e45fecbeea29844dada3e62d8735d4f61c090f4ec7b4015fc9
Description: Utility to compare the results of Nmap scans
Package: netatalk
Version: 2.2.4-1
Depends: libc, attr, libdb47, libgcrypt, libopenssl, librpc
Source: feeds/packages/net/netatalk
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 357977
Filename: netatalk_2.2.4-1_ramips_24kec.ipk
Size: 357541
MD5Sum: cc3a2390fbbda8c90d8ae329e274aad8
SHA256sum: 1323204c65b4b5e2681ef358bcbb222aaaccef7de7acb07d86be12b4ead492dc
Description: netatalk
Package: netcat
Version: 0.7.1-1
Depends: libc
Source: feeds/packages/net/netcat
License: GPL-2.0
Section: net
Maintainer: Adam Gensler <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14403
Filename: netcat_0.7.1-1_ramips_24kec.ipk
Size: 15459
MD5Sum: 09a12a68f37e83ed4a5396c8e8166df6
SHA256sum: 13d53b5f4869d0e7faffe3558d2c2829be9fda7723c1ec27154c91ea322cfe87
Description: Netcat is a featured networking utility which reads and writes data across network connections, using the TCP/IP protocol.
It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.
Package: nfc-utils
Version: 1.7.1-1
Depends: libc, libnfc
Source: feeds/packages/libs/libnfc
License: LGPL-2.1
Section: utils
Maintainer: Sebastian Wendel <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24682
Filename: nfc-utils_1.7.1-1_ramips_24kec.ipk
Size: 25597
MD5Sum: b6f69a4f71d965d1b07d241fa1ddd1d7
SHA256sum: b3bc427736be5429a229f4191c2e1e17076a30e964559aa74109df1b068958d2
Description: Provide some examples shared functions like print, parity calculation, options parsing
* Emulates a NFC Forum Tag Type 4 v2.0 (or v1.0)
* Jewel dump/restore tool
* Lists the first target present of each founded device
* MIFARE Classic manipulation example
* MIFARE Ultralight dump/restore tool
* Extract NDEF Message from a NFC Forum Tag Type 3
* Relay example using two PN532 devices
* Lists each available NFC device
Package: nfs-kernel-server-utils
Version: 1.3.2-2
Depends: libc, nfs-kernel-server
Source: feeds/packages/net/nfs-kernel-server
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12728
Filename: nfs-kernel-server-utils_1.3.2-2_ramips_24kec.ipk
Size: 13421
MD5Sum: de0f27a56474cff538ccbfee9c93748c
SHA256sum: b1e6e468492575d0955626b29f9d200636af04b76ede3835571ceafe0fa7f723
Description: NFS server utils
Package: nfs-kernel-server
Version: 1.3.2-2
Depends: libc, libwrap, libblkid, libuuid, librpc, kmod-fs-nfsd, kmod-fs-nfs, portmap
Source: feeds/packages/net/nfs-kernel-server
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 98601
Filename: nfs-kernel-server_1.3.2-2_ramips_24kec.ipk
Size: 99282
MD5Sum: 75a50542d6f14d32b311bab1555d9d8a
SHA256sum: 5fa4d170b7b7310372961059f482694281103616641943099a9d6d2d80be86b5
Description: Kernel NFS server support
Package: nfs-utils
Version: 1.3.2-2
Depends: libc, libwrap, libblkid, libuuid, librpc, libevent, librpc
Source: feeds/packages/net/nfs-kernel-server
Section: utils
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41400
Filename: nfs-utils_1.3.2-2_ramips_24kec.ipk
Size: 42121
MD5Sum: d51b0dfa6a5eda0552930c704078a9ed
SHA256sum: 69518c280b16accd5cbaf5637c690bd68452f0e33e2113e6844008394b8b17e6
Description: Updated mount.nfs command - allows mounting nfs4 volumes
Package: nginx-naxsi
Version: 1.4.7-2
Depends: libc, nginx
Source: feeds/packages/net/nginx
License: 2-clause BSD-like license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1474
Filename: nginx-naxsi_1.4.7-2_ramips_24kec.ipk
Size: 2239
MD5Sum: 1d04dfa575e034aba8b485d1da4c4765
SHA256sum: d6a045776c08ff743755ae983ab5d548bc9afe19bbfb8c2b19bf8e14953d1fae
Description: NGINX WAF NAXSI
Package: nginx-syslog
Version: 1.4.7-2
Depends: libc, nginx
Source: feeds/packages/net/nginx
License: 2-clause BSD-like license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 610
Filename: nginx-syslog_1.4.7-2_ramips_24kec.ipk
Size: 1361
MD5Sum: 1dab6f7069a5ea70e9f47e10de81012f
SHA256sum: e9fea8c0dc10d6f1c46ac83131cd043a2bcf751b02d2033b3342d63a4fe0f0d3
Description: IMPLEMENT Syslog Protocol
Package: nginx
Version: 1.4.7-2
Depends: libc, libpcre, libopenssl, zlib, libpthread
Source: feeds/packages/net/nginx
License: 2-clause BSD-like license
Section: net
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 236630
Filename: nginx_1.4.7-2_ramips_24kec.ipk
Size: 236978
MD5Sum: 5c84c91fe5342098076a7eb0ba7710f3
SHA256sum: 713ba2ef39e5161d93d2e367751366ac6de8b2527b42cb88e8f96bc4311b5663
Description: nginx is an HTTP and reverse proxy server, as well as a mail proxy server,
written by Igor Sysoev.
Package: nmap-ssl
Version: 6.47-2
Depends: libc, libpcap, libstdcpp, libopenssl
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1771155
Filename: nmap-ssl_6.47-2_ramips_24kec.ipk
Size: 1764612
MD5Sum: 36c696c413582936c082b0fd6bfcee43
SHA256sum: 981fa9650e124e0fb0903fe989ea9c2de5a49a1674dbe18ac38e40efe48c7b95
Description: Nmap (with OpenSSL support)
Package: nmap
Version: 6.47-2
Depends: libc, libpcap, libstdcpp
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1768257
Filename: nmap_6.47-2_ramips_24kec.ipk
Size: 1762199
MD5Sum: d96cd98a2fe4ef1d1b99251f02d4f2bf
SHA256sum: f5878c3965853971ae43a306cdaaeaddc5f3ee0098f92dcb515a4bb73d07052b
Description: Utility for network exploration or security auditing
Package: noping
Version: 1.6.2-1
Depends: libc, liboping, libncurses
Source: feeds/packages/libs/liboping
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8493
Filename: noping_1.6.2-1_ramips_24kec.ipk
Size: 9256
MD5Sum: 79ce764e0e64f23a44ead6927a106293
SHA256sum: 43b51f46269f837227098d27f280269e6a8c59fb419a694b4c21167d7cae8447
Description: Ncurses application to send ICMP echo request to network hosts
Package: nping
Version: 6.47-2
Depends: libc, libpcap, libpthread, libstdcpp
Source: feeds/packages/net/nmap
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 158581
Filename: nping_6.47-2_ramips_24kec.ipk
Size: 158628
MD5Sum: b608e4e45a09c26a8c54aea15d240440
SHA256sum: 44a8d6df0269f5b37cc2d4184ca368491ba30582f3c5e1d56732f75d605fc4e7
Description: Network packet generation tool / ping utility
Package: nsd-control-setup
Version: 4.0.3-1
Depends: libc, openssl-util
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2286
Filename: nsd-control-setup_4.0.3-1_ramips_24kec.ipk
Size: 3093
MD5Sum: cbfa0862d0edc08148188cabc56d29f5
SHA256sum: e6373841953456811a9e880716e78e7aa548f1b3f5d22ceafa82cc518f11c44b
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nsd-control
Version: 4.0.3-1
Depends: libc, libopenssl
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1357
Filename: nsd-control_4.0.3-1_ramips_24kec.ipk
Size: 2155
MD5Sum: a462a451da87bc4a0d53f10931cd577d
SHA256sum: 48737a4c9ba3b94f610624b5940eee27f1aff419115ed14841244f27b37de96a
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nsd-nossl
Version: 4.0.3-1
Depends: libc
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 154090
Filename: nsd-nossl_4.0.3-1_ramips_24kec.ipk
Size: 154473
MD5Sum: 43d4da7e5755627bf7d631b70a147abc
SHA256sum: f8f6a3c2d5285edb4bcb86a30d2e0581a4cdcb3409c8b3680292b3952c9a8c09
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nsd
Version: 4.0.3-1
Depends: libc, libopenssl
Source: feeds/packages/net/nsd
License: BSD-3c
LicenseFiles: LICENSE
Section: net
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 173158
Filename: nsd_4.0.3-1_ramips_24kec.ipk
Size: 173198
MD5Sum: 33dc1000a17772c2de7886582193525d
SHA256sum: c9f7c5f76e4054d7438f1c940938bf0edca7c3d2a1fba3205a4287d74e9888a3
Description: NSD is an authoritative only, high performance, simple and open source name
server.
Package: nspr
Version: 3.16.6-1
Depends: libc, libpthread, librt
Source: feeds/packages/libs/nspr
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 107498
Filename: nspr_3.16.6-1_ramips_24kec.ipk
Size: 108195
MD5Sum: 750d3fae1a344c35c81a63ac069ab9be
SHA256sum: f7e57467c5b374952a8ae1407fff96123f6352e262e54c20d0dbf17299a97ba9
Description: Netscape Portable Runtime (NSPR) provides a platform-neutral API for system
level and libc-like functions. The API is used in the Mozilla clients, many of
Red Hat's and Sun's server applications, and other software offerings.
Package: ntfs-3g-low
Version: 2014.2.15-1-fuseint
Depends: libc, ntfs-3g
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 35011
Filename: ntfs-3g-low_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 36063
MD5Sum: 9fa527cad8534d0cbc4e986ac3f5bff4
SHA256sum: 75a92e7af5302e0de9b735689d4ffc2d693c908fbd9003309db183b77ac0ce86
Description: Contains:
- lowntfs-3g
- mount.lowntfs-3g (symlink to lowntfs-3g)
A driver variant using the fuse low-level interface missing some of the
enhanced functionality for streams or the like. You might want to check:
http://www.tuxera.com/community/ntfs-3g-manual/
Package: ntfs-3g-utils
Version: 2014.2.15-1-fuseint
Depends: libc, ntfs-3g
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128770
Filename: ntfs-3g-utils_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 128840
MD5Sum: 43c7547943c4ea863797e09dbe664939
SHA256sum: bc152327549269d84278865f6478bfb67df28047aef9bdbff6562786fc9b9561
Description: Additional ntfs-3g utilities. Not included by default for size
considerations. All binaries except ntfs-3g, ntfs-3g.probe.
Currently:
- ntfs-3g.secaudit
- ntfs-3g.usermap
Package: ntfs-3g
Version: 2014.2.15-1-fuseint
Depends: libc, kmod-fuse, libpthread
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 175913
Filename: ntfs-3g_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 177021
MD5Sum: 3417b8d77967fd197673c6fb280d0fb1
SHA256sum: 881449918ea5f97ccf3e2d4c8600f3abaf5093ec3ddeaa1103201a142ec10b2a
Description: Ntfs-3g is a NTFS driver, which can create, remove, rename,
move files, directories, hard links, and streams. It can read
and write files, including streams and sparse files. It can
handle special files like symbolic links, devices, and FIFOs.
Moreover it can also read transparently compressed files.
Contains:
- ntfs-3g
- ntfs-3g.probe
- mount.ntfs-3g (symlink to ntfs-3g)
Package: ntfsprogs_ntfs-3g
Version: 2014.2.15-1-fuseint
Depends: libc, ntfs-3g, libgcrypt, libuuid
Source: feeds/packages/utils/ntfs-3g
License: GPL-2.0 LGPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Bud <[email protected]>
Architecture: ramips_24kec
Installed-Size: 187354
Filename: ntfsprogs_ntfs-3g_2014.2.15-1-fuseint_ramips_24kec.ipk
Size: 187409
MD5Sum: 83589cb70a5865b00c29ec6641ba739e
SHA256sum: 98c3cd804bb35edbfc3c141b0ccf2d79991fcb5e87d68537fcacb5a6d30f83b0
Description: ntfsprogs (ntfs-3g)
Package: ntp-keygen
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 74166
Filename: ntp-keygen_4.2.8p1-1_ramips_24kec.ipk
Size: 74705
MD5Sum: 70a8091b637aeb864c2afcbed16fc912
SHA256sum: f33f6b5914f469de6ab7ec902e497b8f2e78b2af395866f3b238651dde572b41
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains the ntp-keygen.
Package: ntp-utils
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 236107
Filename: ntp-utils_4.2.8p1-1_ramips_24kec.ipk
Size: 236681
MD5Sum: a5a7c842a0a0908f260a6a9e402ddf77
SHA256sum: 6df731ea806bde7fffd22dd814cc440b473655029b62e295cf36d6dfa6a3cae0
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains ntpdc, ntpq and ntptime.
Package: ntpclient
Version: 2010_365-1
Depends: libc, librt
Source: feeds/packages/net/ntpclient
License: GPL-2.0
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12297
Filename: ntpclient_2010_365-1_ramips_24kec.ipk
Size: 13066
MD5Sum: f41648be6104a12be6a4e8089d0d30ec
SHA256sum: ce1607ea5350c451ddaee3f73b6ee2f08f758c12ae3b0359fd78fcbd6ef88582
Description: NTP client for setting system time from NTP servers.
Package: ntpd
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread, libcap
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Require-User: ntp=123:ntp=123
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 217934
Filename: ntpd_4.2.8p1-1_ramips_24kec.ipk
Size: 218240
MD5Sum: 2bb652a83f9da0a9e065b4f744d70516
SHA256sum: a9282676366fda1a0cf39026b14dc40d65074942ba70243c8da5d484c88856dc
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains the ntpd server.
Package: ntpdate
Version: 4.2.8p1-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/ntpd
License: Unique
LicenseFiles: COPYRIGHT html/copyright.html
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47330
Filename: ntpdate_4.2.8p1-1_ramips_24kec.ipk
Size: 48181
MD5Sum: 7b1f79e238e21608b38cd379c73ee1dc
SHA256sum: 54b423344cf685723f12d3fd7067114dd5c23426a207b6284160d78278749a7b
Description: The ISC ntp suite is a collection of tools used to synchronize the
system clock with remote NTP time servers and run/monitor local NTP
servers.
.
This package contains ntpdate.
Package: ntripcaster
Version: 0.1.5-1
Depends: libc, libpthread
Source: feeds/packages/net/ntripcaster
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34190
Filename: ntripcaster_0.1.5-1_ramips_24kec.ipk
Size: 34942
MD5Sum: fc84debe39a6e5d4535d918bf469eafc
SHA256sum: 9bc75c7dc8de339c0dc2b11ac92a09a5a618543ace4cef5506c3b6b51693ece1
Description: BKG Standard Ntrip Broadcaster
Package: ntripclient
Version: 1.5.0-2
Depends: libc
Source: feeds/packages/net/ntripclient
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13059
Filename: ntripclient_1.5.0-2_ramips_24kec.ipk
Size: 13845
MD5Sum: 8351378e1f91d8c6d0822464a4597b70
SHA256sum: a65e80a72847dcfbc804a8552288efd7fd227775e7c611718cf0aeec72be65a1
Description: Ntrip Version 2.0 Command Line Client, reading from Ntrip Version 1.0 or 2.0 Caster
Package: ntripserver
Version: 1.5.1-2
Depends: libc
Source: feeds/packages/net/ntripserver
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15312
Filename: ntripserver_1.5.1-2_ramips_24kec.ipk
Size: 16080
MD5Sum: 8285e3ed1092e7848a55d4e633156831
SHA256sum: 07d39a666a361c8c191385c5db48caa589aab15c8d003dc6b94dc09a11f0469b
Description: Ntrip Version 2.0 Command Line Server, reading from SISNeT Server, TCP/UDP IP Port, Serial port, or NtripCaster to support an Ntrip Version 1.0 or 2.0 Caster
Package: nut-driver-bcmxcp_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31148
Filename: nut-driver-bcmxcp_usb_2.7.2-1_ramips_24kec.ipk
Size: 31793
MD5Sum: 33c5075ea81bdeca760cb624e446d6a5
SHA256sum: 687b2382f4c6f0c0e009807e495c8ef2c87a16af43bb6c0c1aa323dfb54e4b5c
Description: Experimental driver for UPSes supporting the BCM/XCP protocol over USB
Package: nut-driver-blazer_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28575
Filename: nut-driver-blazer_usb_2.7.2-1_ramips_24kec.ipk
Size: 29353
MD5Sum: 4116391da35c1d6e21be0e22213da6b0
SHA256sum: ea36e6340a7b87dcf5386d646263aac7c2b1f4d796f5b56de384c8cfd04a2557
Description: Driver for Megatec/Q1 protocol USB based UPS equipment
Package: nut-driver-nutdrv_atcl_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20171
Filename: nut-driver-nutdrv_atcl_usb_2.7.2-1_ramips_24kec.ipk
Size: 20944
MD5Sum: 7aedea2144d0fc8cb6c1bd11a346d0e3
SHA256sum: 33ef4c126ba811ca0e6c19838df76ace6994728fb654c3f1af05fb9860a1071f
Description: Driver for ATCL FOR UPS equipment
Package: nut-driver-nutdrv_qx
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50190
Filename: nut-driver-nutdrv_qx_2.7.2-1_ramips_24kec.ipk
Size: 49525
MD5Sum: 76ee8785e9d1614f097290bdc07b217f
SHA256sum: 3ea3853c9c245b11b985def9278565c79a0f0eef8e71ed533d81f9a2f63c753d
Description: Driver for Q* protocol serial and USB based UPS equipment
Package: nut-driver-richcomm_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19741
Filename: nut-driver-richcomm_usb_2.7.2-1_ramips_24kec.ipk
Size: 20521
MD5Sum: fdc8c4253c2bd005c2dd3bffc53cfb28
SHA256sum: 1a9fa63557f3ed42532d0b9a2be9a92ce752eb36785a6ab631e293b2ed5cf633
Description: Driver for UPS equipment using Richcomm dry-contact to USB solution
Package: nut-driver-riello_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27428
Filename: nut-driver-riello_usb_2.7.2-1_ramips_24kec.ipk
Size: 28210
MD5Sum: 474f0ec8db698845cb824feb6b3c72c4
SHA256sum: 6ae5d490cc2e404a889c271c33f73784d3efd7fa5ff932128dd3fba7b97658fe
Description: Driver for Riello UPS Protocol UPS equipment via USB
Package: nut-driver-tripplite_usb
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25781
Filename: nut-driver-tripplite_usb_2.7.2-1_ramips_24kec.ipk
Size: 26560
MD5Sum: d861b423cb95c3849f8b6f3947778bd5
SHA256sum: 333d50f1a3bc6708be57ec7d443f43b5b2f8a06aca3f751d32b1a13dd26186a9
Description: Driver for older Tripp Lite USB UPSes (not PDC HID)
Package: nut-driver-usbhid-ups
Version: 2.7.2-1
Depends: libc, nut
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46599
Filename: nut-driver-usbhid-ups_2.7.2-1_ramips_24kec.ipk
Size: 47239
MD5Sum: 1545f2c27fb11192b646f8a783357b10
SHA256sum: 0702764c29cbc0bef154b2e1d75c19ece3660507fcf0072615ec3c9975797f7c
Description: Driver for USB/HID UPS equipment
Package: nut
Version: 2.7.2-1
Depends: libc, libusb-compat
Source: feeds/packages/net/nut
License: GPL-2.0
LicenseFiles: LICENSE-GPL2
Section: net
Maintainer: Martin Rowe <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87526
Filename: nut_2.7.2-1_ramips_24kec.ipk
Size: 88468
MD5Sum: 98c8ae7f36fa9c1afe7257ed03b7e5d7
SHA256sum: 65b9ff0a06087304c51a9db8c17d68c10aff51d91016bd235d8710a8c9785176
Description: Network UPS Tools (NUT) is a client/server monitoring system that
allows computers to share uninterruptible power supply (UPS) and
power distribution unit (PDU) hardware. Clients access the hardware
through the server, and are notified whenever the power status
changes.
Package: ocserv
Version: 0.9.2-2
Depends: libc, libhttp-parser, libgnutls, certtool, libncurses, libreadline, libprotobuf-c, kmod-tun
Source: feeds/packages/net/ocserv
License: GPLv2
LicenseFiles: COPYING
Section: net
Require-User: ocserv=72:ocserv=72
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 185012
Filename: ocserv_0.9.2-2_ramips_24kec.ipk
Size: 185686
MD5Sum: 1ae88a2519c1c04fcd0a890225a8e3a8
SHA256sum: 32bbfc8e2ac43c72d4f2e0640f362160a95adb61696d1b94e333e712ce6b5518
Description: OpenConnect server (ocserv) is an SSL VPN server. Its purpose is to be
a secure, small, fast and configurable VPN server. It implements the
OpenConnect SSL VPN protocol, and has also (currently experimental)
compatibility with clients using the AnyConnect SSL VPN protocol. The
OpenConnect VPN protocol uses the standard IETF security protocols such
as TLS 1.2, and Datagram TLS to provide the secure VPN service.
Package: open-plc-utils-CMEncrypt
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10592
Filename: open-plc-utils-CMEncrypt_2013-01-29_ramips_24kec.ipk
Size: 11340
MD5Sum: 50e259157689a295799c03c367284508
SHA256sum: c20a9d3d87c207f2e9ca3e3ab25660e4f0a21f6c531b677383ffb5765b6b1592
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampID
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9705
Filename: open-plc-utils-ampID_2013-01-29_ramips_24kec.ipk
Size: 10452
MD5Sum: cd9b8bf896cbfb42b105c84ff951240a
SHA256sum: 251388214f7d00cc0f2b0fabade9a97282828f3ca797ffcb9cc3940426fde78e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampboot
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15029
Filename: open-plc-utils-ampboot_2013-01-29_ramips_24kec.ipk
Size: 15770
MD5Sum: 23a78758482d831be9eb4c0d7769f9b4
SHA256sum: 1d46b664ddc7318d14f195cca74b456a4fa7155ee96599499e7f955e73e4d2b4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amphost
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16685
Filename: open-plc-utils-amphost_2013-01-29_ramips_24kec.ipk
Size: 17451
MD5Sum: d6be8cf91cbb8da7f5d6c0ae8c63eca5
SHA256sum: 971bee948ff626ccdb0e480ba71d7a3cc10f99b77a2ac89cef0f37b6e3778e4a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amplist
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10264
Filename: open-plc-utils-amplist_2013-01-29_ramips_24kec.ipk
Size: 11015
MD5Sum: 089df478f4a64df06d39e352497b05ba
SHA256sum: 45e6f04198219406fb51bf50e978fd29cffcd29d31439347ed638635e5bdc0e8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amprate
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13090
Filename: open-plc-utils-amprate_2013-01-29_ramips_24kec.ipk
Size: 13862
MD5Sum: 1599da56f9b4142d38e4c9244d626c22
SHA256sum: a94ff10f07bde136861a40e98af22e72c2e3bd2b29dd3b5f7293e9adc13e4d93
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampstat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13733
Filename: open-plc-utils-ampstat_2013-01-29_ramips_24kec.ipk
Size: 14455
MD5Sum: 6ffc4cc4df50708286bbfddd642290d3
SHA256sum: 5e3358402a60177033f76c4950fa4a9f054868724b30c8d0ea0de22cc5698813
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amptest
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12444
Filename: open-plc-utils-amptest_2013-01-29_ramips_24kec.ipk
Size: 13216
MD5Sum: 3c31988b5c953fe8ddce629d793b8a9c
SHA256sum: fa3d92393c6a2c575353a8a98a56a3464390f161aaff5a922b6b4e7442056d9e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amptone
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12178
Filename: open-plc-utils-amptone_2013-01-29_ramips_24kec.ipk
Size: 12932
MD5Sum: 2340f3e1711d83e3958bcba07af35d2d
SHA256sum: 1696ec338c6cf948a9d788eb221ae480cb9c724ebd8b262807d04d073d44de76
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-amptool
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19175
Filename: open-plc-utils-amptool_2013-01-29_ramips_24kec.ipk
Size: 19950
MD5Sum: 1b7d5783984816059a6d893372067435
SHA256sum: 987e5c8fd340bb78ba59537aca6695bf6b63207287ff56ece249f79d34584258
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ampwait
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10998
Filename: open-plc-utils-ampwait_2013-01-29_ramips_24kec.ipk
Size: 11781
MD5Sum: 69547751a9317ebd2c533a66c1d1f26b
SHA256sum: 5173afdad69d07062f556a9fcaf45389f7db170e04f56a30fcc46fc345a42b11
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chknvm2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6217
Filename: open-plc-utils-chknvm2_2013-01-29_ramips_24kec.ipk
Size: 7013
MD5Sum: b781190a115ff621fef47dfc66e4f6bf
SHA256sum: ba983095ecc588bee3c197479952ed5688ab10285c9acec36d3be866a1e7b391
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chknvm
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6530
Filename: open-plc-utils-chknvm_2013-01-29_ramips_24kec.ipk
Size: 7330
MD5Sum: 98e80c44ed063c7732949611d1e12891
SHA256sum: f0419b16823fbe036b76fc9621d62ed274182106d29edd4bb943fb90f553d1a8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chkpib2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7408
Filename: open-plc-utils-chkpib2_2013-01-29_ramips_24kec.ipk
Size: 8231
MD5Sum: 5f7ff0962d54eea59251ea0c61bb37b0
SHA256sum: 47c8c3673e73e809ef23c621a52ad892d698ad37be19abcbef7463bfede6e2b1
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-chkpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7706
Filename: open-plc-utils-chkpib_2013-01-29_ramips_24kec.ipk
Size: 8516
MD5Sum: a1e229879bd7bc9bb70fb609f6b67049
SHA256sum: 45317dfbbdcd060e879051ea4944948e7fe2bc776b0fc9f2a76c21055b15b1ea
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-config2cfg
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3493
Filename: open-plc-utils-config2cfg_2013-01-29_ramips_24kec.ipk
Size: 4276
MD5Sum: c56035da2f01cbdba110bd21f6744ceb
SHA256sum: 56d01fea1079b40b4e4a15741b4a0a6379c23bd47cd9b6f31088c28f43219eaf
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_add
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12487
Filename: open-plc-utils-coqos_add_2013-01-29_ramips_24kec.ipk
Size: 13261
MD5Sum: a6c928b7f1b2d2033bb0af361408bb4a
SHA256sum: fcb472c3d9c9a752b7e13b4423ee6fdb9bc1cd78b8eb65d9214f0d2d23cd387c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_info
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11246
Filename: open-plc-utils-coqos_info_2013-01-29_ramips_24kec.ipk
Size: 12004
MD5Sum: e83157e15a43ba2e2acf63fe5ee9b47c
SHA256sum: 951664460bf65e34a6eb6025841815365e32bed9658ae64c0f58993a2b003439
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_man
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10223
Filename: open-plc-utils-coqos_man_2013-01-29_ramips_24kec.ipk
Size: 10985
MD5Sum: 6b52be7bb09e2111f8f3d1af039f1458
SHA256sum: 2e965db41978e1072a7717d68b7d6a05926d29733a06fc8370efd36b54ebed61
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_mod
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10810
Filename: open-plc-utils-coqos_mod_2013-01-29_ramips_24kec.ipk
Size: 11563
MD5Sum: e44d7a23fd9dbedb39307699f91d50c3
SHA256sum: 287675704d03d5505d0c0bb7b29a802c781f12f25bede0fae578ae992682216a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-coqos_rel
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10287
Filename: open-plc-utils-coqos_rel_2013-01-29_ramips_24kec.ipk
Size: 11040
MD5Sum: f05e9b9f9d2e3415c3c62f80701bf487
SHA256sum: 411bfb5170c33328c51f0bc8a4f9f8dbdb76317f384feeac299f3a526332f8b8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-edru
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5526
Filename: open-plc-utils-edru_2013-01-29_ramips_24kec.ipk
Size: 6270
MD5Sum: f77740c77d51c8cce227752787efce5e
SHA256sum: be023ef069292ffb4d0ac4c14989f4b84c7fa6ad3a8eee8d31d5b415866c7943
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-edsu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5799
Filename: open-plc-utils-edsu_2013-01-29_ramips_24kec.ipk
Size: 6533
MD5Sum: 0572c603d76d010d7a1aaf5f83eece2f
SHA256sum: 3a061e29a4f1a11f53adcfdc4eb1c2b79195ce9cdbabcb808883859d0e50de28
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efbu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5833
Filename: open-plc-utils-efbu_2013-01-29_ramips_24kec.ipk
Size: 6567
MD5Sum: afe47f2f80872cf4619bb6227010c1af
SHA256sum: 10441f1be928e70fe511bce95f6873d1b2d60823fa7cab76332ac71ea82cc6c8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efeu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5438
Filename: open-plc-utils-efeu_2013-01-29_ramips_24kec.ipk
Size: 6176
MD5Sum: 4c28abf45d9b1802179c79a8bb281702
SHA256sum: c0e28a71c2bf47103b339469eb176cda4d1d40e13b9d72cfad56aeea4c4997c3
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efru
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5299
Filename: open-plc-utils-efru_2013-01-29_ramips_24kec.ipk
Size: 6036
MD5Sum: ebcf05603f01519aceee7f662636dcf5
SHA256sum: 59bac11b78cd3755ced133616e5b9bd88251ccec2446a73c422e7a4d37bffe42
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-efsu
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6637
Filename: open-plc-utils-efsu_2013-01-29_ramips_24kec.ipk
Size: 7428
MD5Sum: 388082c33907298aa6a4027f0b486820
SHA256sum: 10b35ac6a324debf6e369eb80f8ebbb4feb6cb51cb58827a755ab0b1a9835278
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-getpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5471
Filename: open-plc-utils-getpib_2013-01-29_ramips_24kec.ipk
Size: 6231
MD5Sum: 8b0ac57cbc0c64fd86950d588737c640
SHA256sum: fc5352077872f2412eb34a2d50ef719666ea13acb1f513ed02c4d0becfbf0adf
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-hpav
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6846
Filename: open-plc-utils-hpav_2013-01-29_ramips_24kec.ipk
Size: 7642
MD5Sum: ca9d5cc57e360be8db5aabbaab2a0b8f
SHA256sum: 28a91039487110caff3576dece00ba0ee11d715e7425cacd9d5793c9cb3736a9
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-hpavkey
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5688
Filename: open-plc-utils-hpavkey_2013-01-29_ramips_24kec.ipk
Size: 6420
MD5Sum: 16ad1d5c492b3194728fdeccecbdc895
SHA256sum: ac82fa82af07bc59f13bc8fae9f68d280a578aef4d2d31b1d92a96ec3fd4c5b0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-hpavkeys
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6128
Filename: open-plc-utils-hpavkeys_2013-01-29_ramips_24kec.ipk
Size: 6868
MD5Sum: 887a5056b83c510b8c32675a54053f94
SHA256sum: 88f3822dd58ace084383010e23cc566f741d08db62980b374a9b2d9a172ebd9c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int64host
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16286
Filename: open-plc-utils-int64host_2013-01-29_ramips_24kec.ipk
Size: 17041
MD5Sum: a5c5db769505ded3f24c4dd1efba271d
SHA256sum: b6ef607d71a5cd3bc2d12dece08dbbbb9ec94f3d150f61d155eaf157a17945a6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6k
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18929
Filename: open-plc-utils-int6k_2013-01-29_ramips_24kec.ipk
Size: 19687
MD5Sum: fc92716a6bb500f14bff45ebd05d3f8e
SHA256sum: 1663448648115cfa29e21659ab0b0cd462dcf6a48262e73fc264fc0bc7daecd6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kbaud
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7099
Filename: open-plc-utils-int6kbaud_2013-01-29_ramips_24kec.ipk
Size: 7905
MD5Sum: 41972b2fd32372f7cfdef8d391592eec
SHA256sum: d3c441c27f65db4e825578dad2b1914fdba044e8c16f483ba359502e4e3857de
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kboot
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14728
Filename: open-plc-utils-int6kboot_2013-01-29_ramips_24kec.ipk
Size: 15470
MD5Sum: 8d52632442e50ff3c9e8d1e93831712b
SHA256sum: b04631f14cb52a987285f57c1e6f8e2323108e5085b6656a2caf725de3324905
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kdetect
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4800
Filename: open-plc-utils-int6kdetect_2013-01-29_ramips_24kec.ipk
Size: 5540
MD5Sum: dcdc7895699f3f29fdc94ce6cd469f35
SHA256sum: d02f6e91c68f2d8bde061bc1c7d77dcde0c56c14179d1f878b7c29ff867b24e7
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6keth
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10498
Filename: open-plc-utils-int6keth_2013-01-29_ramips_24kec.ipk
Size: 11243
MD5Sum: ad785f1ca1022cfc78e3238881715dd0
SHA256sum: d57dccbe295422a6c2942869560d9d7abf1dea9b16e8cd0f5e386c2e38011446
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kf
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15022
Filename: open-plc-utils-int6kf_2013-01-29_ramips_24kec.ipk
Size: 15757
MD5Sum: 1f8bf85719087238d409eb46c826b537
SHA256sum: 839d43961b8f63c2a3fda63b1648ae5a868d93953cfc9b97971191f424f8f37e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6khost
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16115
Filename: open-plc-utils-int6khost_2013-01-29_ramips_24kec.ipk
Size: 16868
MD5Sum: db20dbd5fbd24dfdb173898abd74c12a
SHA256sum: 9d226b93b4a7d3c1effac07f249a57c86a6c20cd16d3ce911bb97fe86f611a63
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kid
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9705
Filename: open-plc-utils-int6kid_2013-01-29_ramips_24kec.ipk
Size: 10447
MD5Sum: ce368ed9f711b4c6bd592e13c51d7959
SHA256sum: 61ed64d5fa2505085dc15ef2715075ab5e2a8cc1874cc77d50499be94c31ce59
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6klist
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10256
Filename: open-plc-utils-int6klist_2013-01-29_ramips_24kec.ipk
Size: 11007
MD5Sum: fc966f84c186be051b41ac26149cdac2
SHA256sum: f4376cf2aa7a04acd61bc6fb3d24eedaad0bac64c5733be7d6a6b7ed747bab5f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6klog
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11754
Filename: open-plc-utils-int6klog_2013-01-29_ramips_24kec.ipk
Size: 12513
MD5Sum: 31726bfa3946d895a05a73531d9d9a45
SHA256sum: 0f4054bc8bcf865e8e31e9406818c33e3984d659cd07083633ca119848a34b6b
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kmdio2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10117
Filename: open-plc-utils-int6kmdio2_2013-01-29_ramips_24kec.ipk
Size: 10855
MD5Sum: ad2baea2070898c7e2c6a2e10b5a540c
SHA256sum: 1d83dc2c595de5f39c4a904bd878b294d201d1a8ec9ae0a132c3d38cb8769044
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kmdio
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9779
Filename: open-plc-utils-int6kmdio_2013-01-29_ramips_24kec.ipk
Size: 10520
MD5Sum: a006c5e2d013b984993ce092ca46d0d1
SHA256sum: 840870577fa3baf3d4ce37b61c4847de7ed93f06e7a7b5a5611e7c003ef27619
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kmod
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13026
Filename: open-plc-utils-int6kmod_2013-01-29_ramips_24kec.ipk
Size: 13789
MD5Sum: ed7c086352e85a53397536c3c17c6595
SHA256sum: 9b8b5e864fee6e61a11214f5e6da891ce31d8593fb2984615cfcd6b569f3bb28
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6krate
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12604
Filename: open-plc-utils-int6krate_2013-01-29_ramips_24kec.ipk
Size: 13380
MD5Sum: a06c4a7120e221a4ef2fb1636ba88f67
SHA256sum: f76ca123a21571616a49323a38e41f034ea712e11a6094a14e484d01779501f9
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6krule
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12759
Filename: open-plc-utils-int6krule_2013-01-29_ramips_24kec.ipk
Size: 13488
MD5Sum: bc62908f0a3c1bd55b72426ed0692ef7
SHA256sum: d404f689c805661cbbaf4dc499620aa4ed3f96dc07d7e9b8bdbb93c49de9e972
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kstat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12992
Filename: open-plc-utils-int6kstat_2013-01-29_ramips_24kec.ipk
Size: 13750
MD5Sum: bc6332dfc7c5729c4328fd7b27150a31
SHA256sum: 652f334f0b04569a55d328aa97cefd874035436bf6c379d83152bf336a5634fb
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6ktest
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11660
Filename: open-plc-utils-int6ktest_2013-01-29_ramips_24kec.ipk
Size: 12416
MD5Sum: 50aaefa19223cc339e9192592bd95fc4
SHA256sum: bc6d7002aaf4dadba93043d9fa58db05d16e23e54e7e8c0a07469833b6f9bd0f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6ktone
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11118
Filename: open-plc-utils-int6ktone_2013-01-29_ramips_24kec.ipk
Size: 11863
MD5Sum: 3c1dc95b07bdba14032fc2dde8396648
SHA256sum: 2a1656f8060d8971c0dc415f7ad00df91c28eedb52d6057b428cfe2624d8f571
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kuart
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9039
Filename: open-plc-utils-int6kuart_2013-01-29_ramips_24kec.ipk
Size: 9809
MD5Sum: 2dd2f460e35e061de0c9ff2bcfc3a548
SHA256sum: 16b51d19cb58b560f85fa15cd9824615c5c7d8d0c1152322b08f3aef29c8f29f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-int6kwait
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11029
Filename: open-plc-utils-int6kwait_2013-01-29_ramips_24kec.ipk
Size: 11804
MD5Sum: 3fd1d4185c2cb4cf2454aa65d38e326b
SHA256sum: 828e50478860196063330d7d0c8d946875eb78e6945e9d6ad576329f0b1d5f24
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mac2pw
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4448
Filename: open-plc-utils-mac2pw_2013-01-29_ramips_24kec.ipk
Size: 5184
MD5Sum: da0d1cb544b52a262b14d86a177e746c
SHA256sum: e5fa3bc5978b147f18ce8228b12057b87c9e6ecb7d17f14fbecbe9fd4099ede4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mac2pwd
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4831
Filename: open-plc-utils-mac2pwd_2013-01-29_ramips_24kec.ipk
Size: 5580
MD5Sum: dcd37b226e86cfe42ce85c96c315ddd4
SHA256sum: 9f042aefed35656c85611bea54aca1cb81e1b2fa36b578a86809f90da416af3d
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdioblock2
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4200
Filename: open-plc-utils-mdioblock2_2013-01-29_ramips_24kec.ipk
Size: 4942
MD5Sum: dea46618900b1700db138f1a6670cc21
SHA256sum: 027ada3891e89604075cefb809cf38c69d1eaf67d770448c164095649e6add6a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdioblock
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4073
Filename: open-plc-utils-mdioblock_2013-01-29_ramips_24kec.ipk
Size: 4852
MD5Sum: 3bd02870b1501551cd87c89c0efaf751
SHA256sum: fafa95f0f31e2b16faa92e083799a08eb4db74270d7b5cc8f237876d1bf852ce
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdiodump
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5653
Filename: open-plc-utils-mdiodump_2013-01-29_ramips_24kec.ipk
Size: 6392
MD5Sum: d4107a7016ff76c83b89d099b234f60b
SHA256sum: 0129175faf660cde6199342ff465716cd5d13447108381c314124ff267a4faa9
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdiogen
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2402
Filename: open-plc-utils-mdiogen_2013-01-29_ramips_24kec.ipk
Size: 3184
MD5Sum: 7b428e76e8ff874cf6b836a76931f125
SHA256sum: 63d3f535535ab963ca5ff7b94d2e19c3afc2aa11254834eb03009bd6c05adcaf
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mdustats
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10625
Filename: open-plc-utils-mdustats_2013-01-29_ramips_24kec.ipk
Size: 11382
MD5Sum: 130409d772ea7598cc05c0a9bc9e4e92
SHA256sum: a7eb35bc3504d6f4469bdab9c57fb4322e3513c197f2ef42ac6dff001f4ee769
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-mme
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8549
Filename: open-plc-utils-mme_2013-01-29_ramips_24kec.ipk
Size: 9351
MD5Sum: 1744267f9bdd07d346c5ba3ab6860331
SHA256sum: 6670e483403d5e995156d8708f57d95d07a25ee0483b7ba37bb7693f051b221c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-modpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8250
Filename: open-plc-utils-modpib_2013-01-29_ramips_24kec.ipk
Size: 8999
MD5Sum: 79498c25fed0eb3fa4990e97ed11ab66
SHA256sum: 53791f0447ddec2cb1f2fbc445bcbd9ec6a7fecf7dfede7ed11f149ac976c37d
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-nics
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3854
Filename: open-plc-utils-nics_2013-01-29_ramips_24kec.ipk
Size: 4628
MD5Sum: a524e96d0f36adebe05eefe82c1150c2
SHA256sum: 3f19584e9ecf6baeecfcf56148546eff163422901679498767317850cc300f7d
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-nvmmerge
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3967
Filename: open-plc-utils-nvmmerge_2013-01-29_ramips_24kec.ipk
Size: 4704
MD5Sum: 12c805b20652d0742130351243816ef5
SHA256sum: 9645933cc8c1d31da3a6fc488874796eaa45dc44795f103cc6ee0146467c5e5e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-nvmsplit
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4243
Filename: open-plc-utils-nvmsplit_2013-01-29_ramips_24kec.ipk
Size: 4968
MD5Sum: 0cc79a50746028dac493435225c10409
SHA256sum: 8c65618bbe4db6180ae6fe3b7ef02b89264945896088b7333a4ecd406e4aa4f5
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pib2xml
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6330
Filename: open-plc-utils-pib2xml_2013-01-29_ramips_24kec.ipk
Size: 7126
MD5Sum: 9ede607a6da331b239f8eb313b179ded
SHA256sum: 7bf7f8898bfce7a712e7b7c997aa511bd207b9561353311f3feda1cecb1c4474
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibcomp
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5878
Filename: open-plc-utils-pibcomp_2013-01-29_ramips_24kec.ipk
Size: 6623
MD5Sum: e9970f8dab750a3a31744f6966ea6076
SHA256sum: d9571bb283503ac418bbcc139472172a7c8e75e844f6f06c2c2aa57cab08b1ea
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibdump
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5581
Filename: open-plc-utils-pibdump_2013-01-29_ramips_24kec.ipk
Size: 6326
MD5Sum: d2d2bb55ce6b9e05c1d5af8f6d259d46
SHA256sum: 6c17c0ab3c10c73619b868b0509d15bd780252d8bfa90b28fa5d5d091fbdfb54
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibruin
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9455
Filename: open-plc-utils-pibruin_2013-01-29_ramips_24kec.ipk
Size: 10235
MD5Sum: 0611723e0fdc8e0276770e09bc526039
SHA256sum: 2edd5ecab59076dae3ca2f5e4afade109b097c2087e3189d4003063cc3ca311f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pibrump
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5460
Filename: open-plc-utils-pibrump_2013-01-29_ramips_24kec.ipk
Size: 6223
MD5Sum: e78a1f7ddfc43804db3eedf840cdc0c2
SHA256sum: 6aa70f8f0af7259f7f57e888a7ad561997ecf66deacf6dd53a106cf141ffecfa
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcID
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10612
Filename: open-plc-utils-plcID_2013-01-29_ramips_24kec.ipk
Size: 11386
MD5Sum: 036730b0927ee39694b4f25907429f67
SHA256sum: 0fcd7c776d178163581fe286deab1411280347f436767eadcd41ae10032f73cd
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcboot
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15718
Filename: open-plc-utils-plcboot_2013-01-29_ramips_24kec.ipk
Size: 16476
MD5Sum: 5373407ff9702bdcb7792f0555c234cb
SHA256sum: 2e501f6dbbbdf51772b8d334d8d87a3841a8f3fa77adc53a6a26463c575ff8d0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcdevs
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6354
Filename: open-plc-utils-plcdevs_2013-01-29_ramips_24kec.ipk
Size: 7136
MD5Sum: 7404e0058af6876b5031b6f958c5544d
SHA256sum: ffe7a4ae6791a017bc7c8689c8333c6cf0291fc6f7d44b5b88a5d2ec324d6617
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcfwd
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12406
Filename: open-plc-utils-plcfwd_2013-01-29_ramips_24kec.ipk
Size: 13182
MD5Sum: 88cad8f19ee3536ab16a79ade5279c3b
SHA256sum: 24afbcf31125291373e543540989d069c84dadc0ab22ba9a1786c60def5dbda7
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcget
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11302
Filename: open-plc-utils-plcget_2013-01-29_ramips_24kec.ipk
Size: 12056
MD5Sum: a9d022cb1fc6cf8bde95723b25a5a022
SHA256sum: 9d17ebe92b3c7b92dd98e3a097add813639e011766499619a43393d4a0210982
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plchost
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16809
Filename: open-plc-utils-plchost_2013-01-29_ramips_24kec.ipk
Size: 17613
MD5Sum: 1f7c841ed8ee9d3e9b184cd03af3bc7a
SHA256sum: a248007c4787e4a1dce0e11f47c5edb731601d35c52bbcafcf832b940caa83a4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plchostd
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21079
Filename: open-plc-utils-plchostd_2013-01-29_ramips_24kec.ipk
Size: 21832
MD5Sum: 52b945831ef45c9e88efe7fc46d03026
SHA256sum: 029cf0ac3ee4ce83187955f973857b128a6a2fd555166c6906fb53c2fdc1197c
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plclist
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10366
Filename: open-plc-utils-plclist_2013-01-29_ramips_24kec.ipk
Size: 11123
MD5Sum: 7e1526f6a541134802a50c43861d96d4
SHA256sum: 7d8dc5694d7c1fb8aa2a0a3574a0d4b37ca915245a447fa46d8229742a3644e1
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plclog
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11176
Filename: open-plc-utils-plclog_2013-01-29_ramips_24kec.ipk
Size: 11926
MD5Sum: e4d1fca737ce459700c07a73759b960f
SHA256sum: fd779de3829c2228afa4a7134cecc6455b30556f2e4e03a66cdd527c433d73d0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcmdio16
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9777
Filename: open-plc-utils-plcmdio16_2013-01-29_ramips_24kec.ipk
Size: 10531
MD5Sum: f4e886cfc6782fa36ff231845844156d
SHA256sum: efd4d59bba3e8ba2574621fbd0d26058568c1876c021dd71b991f6a93ceef0d6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcmdio32
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10112
Filename: open-plc-utils-plcmdio32_2013-01-29_ramips_24kec.ipk
Size: 10854
MD5Sum: 8d825d66e86dd0b5d3b6d319ad2b0a3a
SHA256sum: ca23e60885da07ceeeb01511986ff64936ddf3f4051f34ec424cc137c81aa516
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcotst
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10440
Filename: open-plc-utils-plcotst_2013-01-29_ramips_24kec.ipk
Size: 11205
MD5Sum: aa4bc763d32fe0bd9a197fb2b8b73a84
SHA256sum: 91fb7cd10ba33426248160fd07ec84b0f8aaedd4f043ed5391a49120d2f9e34f
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcrate
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12845
Filename: open-plc-utils-plcrate_2013-01-29_ramips_24kec.ipk
Size: 13631
MD5Sum: 585309fd6b270453ce8156e69b07033c
SHA256sum: 680a27b872b50e7a0bb84703dd61cd534abb60ffe0d75f43045edb33a341100e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcrule
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12754
Filename: open-plc-utils-plcrule_2013-01-29_ramips_24kec.ipk
Size: 13499
MD5Sum: 612429b6a1cd84c250a9cab75f184354
SHA256sum: 92e6acde3de0e44d71a5a60d76f8864245ec6840c49638208fb1128942e77710
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcset
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11715
Filename: open-plc-utils-plcset_2013-01-29_ramips_24kec.ipk
Size: 12489
MD5Sum: 218a93c97db049bcb34f3018d47a9c94
SHA256sum: 301f67b76790c3b464535eb6c9bee375f366c918af05afa181cec1d371433479
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcstat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13267
Filename: open-plc-utils-plcstat_2013-01-29_ramips_24kec.ipk
Size: 14029
MD5Sum: 6c7c87fddd73e80155a03ff2e29c82e9
SHA256sum: 3605650defe15665e5ccc7c5e634ec596ad48c233ed990f08aee13a81ad435e4
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plctest
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13040
Filename: open-plc-utils-plctest_2013-01-29_ramips_24kec.ipk
Size: 13755
MD5Sum: c8cdce5def8a3f2f7b3117f8c15420f5
SHA256sum: 3d09f777067169660cb7ebee013b30a40b0b9e7513ff556eca2123551880bd3a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plctone
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12103
Filename: open-plc-utils-plctone_2013-01-29_ramips_24kec.ipk
Size: 12859
MD5Sum: e3f4205864c5f36d3644c9737b022a57
SHA256sum: 1492b96c699875dab4848edf6398cb995e53f3abfa558a46ec54cea1ec46184b
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plctool
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21196
Filename: open-plc-utils-plctool_2013-01-29_ramips_24kec.ipk
Size: 21946
MD5Sum: 3bdc5c47c61eed49b3e8524a6fc300b1
SHA256sum: 98a57c7aa787e7f2e791f63f48837dc0517cb31e907c58d15d562eeca31adbbd
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-plcwait
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10997
Filename: open-plc-utils-plcwait_2013-01-29_ramips_24kec.ipk
Size: 11777
MD5Sum: 6fd5befe247a53b6b6788408a19d6705
SHA256sum: 5de30d27ccddc2637cff92b2b9f08ca6f9dab61ded0a92ee96e78f86fcdabae8
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psgraph
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3994
Filename: open-plc-utils-psgraph_2013-01-29_ramips_24kec.ipk
Size: 4771
MD5Sum: 10c1ee0b742ae752d5ac5738c5a6fbff
SHA256sum: c634ebeacd439307b1a94663f4f0321ebc74109fed7569d12ff3619c36b004c6
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psin
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4727
Filename: open-plc-utils-psin_2013-01-29_ramips_24kec.ipk
Size: 5474
MD5Sum: 0313e16931ffd6ce3381288bead223eb
SHA256sum: 07bf7dbec26d0ca765ee24a54d60a2f1d5bffd2bf190e86d710221541e98ae06
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-pskey
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5420
Filename: open-plc-utils-pskey_2013-01-29_ramips_24kec.ipk
Size: 6157
MD5Sum: 4f8f9e3a06c371cedc7b584a60099768
SHA256sum: 65906d1bf93c6600edf2be9127af986c30a9a1dcfbeb531cc81021c7973e3cd5
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psnotch
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5650
Filename: open-plc-utils-psnotch_2013-01-29_ramips_24kec.ipk
Size: 6409
MD5Sum: 6c5bbc801f9253eff65e2351d8370aab
SHA256sum: 277310047bd87e442ec0404e13ce9970664cc346f6e794c4ad86c9835156a21a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-psout
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3834
Filename: open-plc-utils-psout_2013-01-29_ramips_24kec.ipk
Size: 4615
MD5Sum: 0126c3dda464c8b7736a5057a1b7ae28
SHA256sum: c7a727f315ffc1d39bd11701135e518d6b6ba4c8ab93eab72377f8fb7e4c2571
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ptsctl
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5033
Filename: open-plc-utils-ptsctl_2013-01-29_ramips_24kec.ipk
Size: 5762
MD5Sum: 0c8941eacc066ddfc9236e9b40ab442e
SHA256sum: 8b1d8a9a2edae566be60e5c20a15dc97a3367ea855aaa1ab6cb27a405b7fe59b
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-rkey
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6057
Filename: open-plc-utils-rkey_2013-01-29_ramips_24kec.ipk
Size: 6790
MD5Sum: 52ca301c9d33498984acf26468d9982c
SHA256sum: 9d162c632568d21a8a79bb726eb88b0fdd3090d8c00a9b61653f978c4d829ffa
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-sada
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9984
Filename: open-plc-utils-sada_2013-01-29_ramips_24kec.ipk
Size: 10715
MD5Sum: 37f109b5ff78eefd93e1c4681e251a76
SHA256sum: 11b7a5da50beb3691cd3dcb765644ce71439966e2f8112ff825a80ac2a0134e0
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-sdram
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1634
Filename: open-plc-utils-sdram_2013-01-29_ramips_24kec.ipk
Size: 2406
MD5Sum: d49c793ebe1b59c5fbac99973aaff01e
SHA256sum: 7b41d071e90cd6bca34e6076d663ae5858e31f05c2cf753548b92940241c6d6a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-setpib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6992
Filename: open-plc-utils-setpib_2013-01-29_ramips_24kec.ipk
Size: 7796
MD5Sum: 0cecf0fa251faaed75f166ca796c930e
SHA256sum: f397f065809e190438b32cede08650d30b517331c0c77d76abd17a4552b49f8e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttycat
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4039
Filename: open-plc-utils-ttycat_2013-01-29_ramips_24kec.ipk
Size: 4823
MD5Sum: 933f0d3706f243ecc3ec8c12812e2d32
SHA256sum: e474201222192294ad0fd17d08c263cf2ff05cac95a9b2bd1e413100de1b171a
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttyrecv
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5007
Filename: open-plc-utils-ttyrecv_2013-01-29_ramips_24kec.ipk
Size: 5743
MD5Sum: 59285791cc96a702f53f77219e6fa7e6
SHA256sum: 33aa3a616f4b0b71d65945015230f29d38cad0fcc9d0429fc8e65fd5a2a4f054
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttysend
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4511
Filename: open-plc-utils-ttysend_2013-01-29_ramips_24kec.ipk
Size: 5243
MD5Sum: e94960fa3fdffca48b6c6a3c0f245150
SHA256sum: 72c5424419c22b88268655240579cc7b92329616d4a6faab7c725cef2d692798
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-ttysig
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4899
Filename: open-plc-utils-ttysig_2013-01-29_ramips_24kec.ipk
Size: 5644
MD5Sum: df1271fb48c6ca924824a2df4fd0f2ce
SHA256sum: 7047d40a6d61326a727acc4c19ae8622deafed09dc1905abb7194a5c1aad0332
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-weeder
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4664
Filename: open-plc-utils-weeder_2013-01-29_ramips_24kec.ipk
Size: 5401
MD5Sum: a965299659fa89cc1a8979bf305c8cda
SHA256sum: 5198f4b339d599b9110e4837eb566ff3645246fe930582575aa25834fe4de59e
Description: Utility from the Open PLC utilities package.
Package: open-plc-utils-xml2pib
Version: 2013-01-29
Depends: libc, open-plc-utils
Source: feeds/packages/utils/open-plc-utils
License: ISC
LicenseFiles: LICENSE
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10469
Filename: open-plc-utils-xml2pib_2013-01-29_ramips_24kec.ipk
Size: 11227
MD5Sum: a4d7a734f3c2c30d5f20dfca488b1681
SHA256sum: 96d41827d11e46421210bee2e361de00364fdae568f82cd8cc9c67cad01cb1b3
Description: Utility from the Open PLC utilities package.
Package: openconnect
Version: 7.05-1
Depends: libc, libxml2, kmod-tun, resolveip, vpnc-scripts, libgnutls
Source: feeds/packages/net/openconnect
Section: net
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76698
Filename: openconnect_7.05-1_ramips_24kec.ipk
Size: 77323
MD5Sum: 0f9bd877c0b7d348acfb23f9f0d1115b
SHA256sum: 81358eb420e82d075b955440bf283410af8bead3e6c08838b79cc6339d90e11c
Description: A VPN client compatible with Cisco's AnyConnect SSL VPN and ocserv.
OpenConnect is a client that follows the Cisco's AnyConnect SSL VPN protocol,
which is supported by IOS 12.4(9)T or later on Cisco SR500, 870, 880, 1800,
2800, 3800, 7200 Series and Cisco 7301 Routers, as well as the OpenConnect
VPN server.
Package: opencv
Version: 2.4.11-3
Depends: libc, libpthread, librt, libstdcpp, zlib, libjpeg
Source: feeds/packages/libs/opencv
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
Maintainer: WRTnode Team <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3448503
Filename: opencv_2.4.11-3_ramips_24kec.ipk
Size: 3438272
MD5Sum: 693f2785c3877e8902313a8ef206993a
SHA256sum: f28dfca35243dc15c8888200cd1ebb55301acc4e653e96a7d7a56371dc9ddb9b
Description: opencv-2.4.11
Package: openldap-server
Version: 2.4.39-2
Depends: libc, libopenldap, libuuid
Source: feeds/packages/libs/openldap
Section: net
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 489412
Filename: openldap-server_2.4.39-2_ramips_24kec.ipk
Size: 482776
MD5Sum: 771f130bc1295df3d165a1c200c4c077
SHA256sum: bc1b4409b1438cedf4a1c2d44bfbdaacf6bd0bc2cd79fb4c1ce07be116d08c88
Description: OpenLDAP Software is an open source implementation of the
Lightweight Directory Access Protocol (LDAP).
This package contains server programs required to provide LDAP services.
Package: openldap-utils
Version: 2.4.39-2
Depends: libc, libopenldap
Source: feeds/packages/libs/openldap
Section: utils
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 181183
Filename: openldap-utils_2.4.39-2_ramips_24kec.ipk
Size: 180415
MD5Sum: 6381d4a10db7f040e374fd6df11ecba0
SHA256sum: 7448491fc3d93bd0f6f776b0d5d223203732f93262ee9059ccfe9d748dff9114
Description: OpenLDAP Software is an open source implementation of the
Lightweight Directory Access Protocol (LDAP).
This package contains client programs required to access LDAP servers.
Package: opennhrp
Version: 0.14.1-1
Depends: libc, libcares, ipsec-tools, ip, kmod-gre
Source: feeds/packages/net/opennhrp
License: MIT License
Section: net
Maintainer: Artem Makhutov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43344
Filename: opennhrp_0.14.1-1_ramips_24kec.ipk
Size: 44267
MD5Sum: a8adf4ac90d5d69b620ae361e7a98862
SHA256sum: d485486d2c559ea3601a56d46535c49247c8f656510e752abe6320ca718e3fb4
Description: OpenNHRP implements NBMA Next Hop Resolution Protocol (as defined in RFC 2332).
It makes it possible to create dynamic multipoint VPN Linux router using NHRP,
GRE and IPsec. It aims to be Cisco DMVPN compatible.
Package: openobex-apps
Version: 1.7.1-1
Depends: libc, libopenobex, bluez-libs
Source: feeds/packages/utils/openobex
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23684
Filename: openobex-apps_1.7.1-1_ramips_24kec.ipk
Size: 24367
MD5Sum: 14fd0849870cea8f7c290266a31d4076
SHA256sum: e6d939ff2520c3e6530a0ee4459d0e5c392c7192cf3ec089d2635484d362fc1e
Description: Open Source impl of the OBject EXchange protocol (apps)
Package: openobex
Version: 1.7.1-1
Depends: libc, openobex-apps, libopenobex
Source: feeds/packages/utils/openobex
License: GPL-2.0+ LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: openobex_1.7.1-1_ramips_24kec.ipk
Size: 874
MD5Sum: 43592ce8534cc233e866576ab700ac9b
SHA256sum: 9d32663413ef93934a563d129bc854782baf09b62d534e42a645ec087296a00a
Description: Open Source impl of the OBject EXchange protocol (meta)
Package: openocd
Version: v0.8.0-258-gd537cfa-2
Depends: libc, libusb-1.0, libusb-compat, libftdi1, hidapi
Source: feeds/packages/utils/openocd
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Paul Fertser <[email protected]>
Architecture: ramips_24kec
Installed-Size: 893936
Filename: openocd_v0.8.0-258-gd537cfa-2_ramips_24kec.ipk
Size: 893174
MD5Sum: 71741573301036a3396c9dd633627371
SHA256sum: 5ed4eb4af53441e8aea119581d49287eb91e0c33acd461412664bcd394785bc4
Description: OpenOCD provides on-chip programming and debugging support with a
layered architecture of JTAG interface and TAP support including:
- (X)SVF playback to faciliate automated boundary scan and FPGA/CPLD
programming;
- debug target support (e.g. ARM, MIPS): single-stepping,
breakpoints/watchpoints, gprof profiling, etc;
- flash chip drivers (e.g. CFI, NAND, internal flash);
- embedded TCL interpreter for easy scripting.
Several network interfaces are available for interacting with OpenOCD:
telnet, TCL, and GDB. The GDB server enables OpenOCD to function as a
"remote target" for source-level debugging of embedded systems using
the GNU GDB program (and the others who talk GDB protocol, e.g. IDA
Pro).
Package: opensc-utils-cardos-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10044
Filename: opensc-utils-cardos-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 10814
MD5Sum: d6b6375983837b200127c89a882bd80d
SHA256sum: 91e4ce1f534c669c6c11ef265f61bce0b38e0d0a14486a9cabb725a4d853acd1
Description: cardos-tool utility from opensc
Package: opensc-utils-cryptoflex-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10540
Filename: opensc-utils-cryptoflex-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 11309
MD5Sum: 7dc730dc7e4f936e763d2015bf1876ce
SHA256sum: f3eadfb6b54edaf5391a01721199d6ad6addeed7ffdeaa8091d475ec0fe24b33
Description: cryptoflex-tool utility from opensc
Package: opensc-utils-dnie-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6043
Filename: opensc-utils-dnie-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 6808
MD5Sum: a682e2e960e0e4590dc5affdd22c2da7
SHA256sum: 66e188daa87ec4d542aaaffdcb13d6f2d2fa274ed4e93ce7e133f1bc605ceed0
Description: dnie-tool utility from opensc
Package: opensc-utils-eidenv
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8236
Filename: opensc-utils-eidenv_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9049
MD5Sum: 63eb5c01eda7a81b152dce32f8b8d1b2
SHA256sum: 414444461644fa83454c85fa1a2070e58470d26aae54c6341229daa4446ae395
Description: eidenv utility from opensc
Package: opensc-utils-iasecc-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6465
Filename: opensc-utils-iasecc-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 7286
MD5Sum: c8f3c4c9898052b69ac30599139cad31
SHA256sum: 666b9664a587b6cd8d638b790e6336364bbf5d28451931546fc74e6151cd5fc1
Description: iasecc-tool utility from opensc
Package: opensc-utils-netkey-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7942
Filename: opensc-utils-netkey-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 8766
MD5Sum: 063492d4316b6f3e3565412ced6d2bc6
SHA256sum: a489225105c0d7df2d4d84570d83bc2a46731944429ba0847f3b0452338c32b5
Description: netkey-tool utility from opensc
Package: opensc-utils-openpgp-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8858
Filename: opensc-utils-openpgp-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9640
MD5Sum: efd413df90061f1af2e90f11f956806e
SHA256sum: 6fd14dbc642a9d068ab0ae3d7ccec8ecc2dc7781589e99e04575cba4bda45b39
Description: openpgp-tool utility from opensc
Package: opensc-utils-opensc-explorer
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils, libncurses, libreadline
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15954
Filename: opensc-utils-opensc-explorer_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 16585
MD5Sum: 4af83e0c3c45b4caeaa3f991ed898d9f
SHA256sum: 5cd23eb20ecc2988b0cd4fdc108f2928c9e5bdeaff41371a6756996ea1b9fd6e
Description: opensc-explorer utility from opensc
Package: opensc-utils-opensc-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9704
Filename: opensc-utils-opensc-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 10478
MD5Sum: c809d61821cf9e6dd5d0baa83923d964
SHA256sum: 162cc4aa0241a753847c522add94b263e158955aed474f83c6550f743cf68b86
Description: opensc-tool utility from opensc
Package: opensc-utils-piv-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8961
Filename: opensc-utils-piv-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9740
MD5Sum: 4f1a9135b9cd6de0c71ae5dcc3db08a0
SHA256sum: 19f14333b0ad05bd7a68a86f8be9a6188783f7c4be21734cc54d84b87c5c586d
Description: piv-tool utility from opensc
Package: opensc-utils-pkcs11-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33779
Filename: opensc-utils-pkcs11-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 34583
MD5Sum: b9135df3a03b99fc13c33e3f2edeb32a
SHA256sum: 76de38d9a4973af606812a0b7108c0197efba446babc2ddb26fb22759b0d61ff
Description: pkcs11-tool utility from opensc
Package: opensc-utils-pkcs15-crypt
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7597
Filename: opensc-utils-pkcs15-crypt_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 8416
MD5Sum: 30a67ac36ea2387ea972136b0356f937
SHA256sum: 37d73c8661d60cc71f5de326514f9d724b4d21fc7bcecf49126011a84e3de3a1
Description: pkcs15-crypt utility from opensc
Package: opensc-utils-pkcs15-init
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20479
Filename: opensc-utils-pkcs15-init_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 20983
MD5Sum: 4a04c4fefcc7f54033a3a38b6216bd7a
SHA256sum: 1c27930db30ae61c84fb132bf761d5930d322f4c844b71592d2ef63f72c57de2
Description: pkcs15-init utility from opensc
Package: opensc-utils-pkcs15-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16357
Filename: opensc-utils-pkcs15-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 17035
MD5Sum: 906e8e48c2c87f68868aac1efbfaaf32
SHA256sum: 87790f997c8a10e87c3b609d7a5a114c56103eef13a83e7f607fcbb1a34ee511
Description: pkcs15-tool utility from opensc
Package: opensc-utils-sc-hsm-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13364
Filename: opensc-utils-sc-hsm-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 14104
MD5Sum: d0e4a683c41d107205565332051cdc17
SHA256sum: 248be887bd722de36e932339db8656f7a0223937b66f7c5c5c357f2ca93bf50b
Description: sc-hsm-tool utility from opensc
Package: opensc-utils-westcos-tool
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, opensc-utils
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8837
Filename: opensc-utils-westcos-tool_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 9594
MD5Sum: b27bbe0432868070c6097dac57fc0172
SHA256sum: 0146c590f41a9cbf76f88f5ed8ba3e39f8814ea44e16b8fa68d7da3b850f9098
Description: westcos-tool utility from opensc
Package: opensc-utils
Version: 20141126-8aadbbd678730dbafb819382da553439887499fd
Depends: libc, libopensc
Source: feeds/packages/utils/opensc
License: LGPL-2.1+
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: opensc-utils_20141126-8aadbbd678730dbafb819382da553439887499fd_ramips_24kec.ipk
Size: 867
MD5Sum: d472d9914c4c77d8e20140ebb32ebb8b
SHA256sum: 935bc994e0f1edcc4293e76cd7c26ddac25a4ec3a1e7d44fb8cc6b17bbc9f2e7
Description: OpenSC utilities
Package: openssh-client-utils
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, openssh-client, openssh-keygen
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 677208
Filename: openssh-client-utils_6.8p1-1_ramips_24kec.ipk
Size: 674811
MD5Sum: 60bd7449660b7b62772d2fac24de3d62
SHA256sum: 6887ff3b7b34773f99802d72e835f4821f811d8c5cd45d2ed64faa52e9b93ed5
Description: OpenSSH client utilities.
Package: openssh-client
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 330117
Filename: openssh-client_6.8p1-1_ramips_24kec.ipk
Size: 330337
MD5Sum: 908709d4563dd79d946d88bcd04df02f
SHA256sum: 40dcbd0f928e872debd577fd1c9f59e312811d51481b3d7f6dc4b15c7b8cbe87
Description: OpenSSH client.
Package: openssh-keygen
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 178042
Filename: openssh-keygen_6.8p1-1_ramips_24kec.ipk
Size: 177842
MD5Sum: bdd27e7cb79b38f0fc01d46b92511ee7
SHA256sum: c4b3129a01a5f7fe4db06f831efbf277c00d7cd505f3b542e8f3a8c2823dfa23
Description: OpenSSH keygen.
Package: openssh-moduli
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, openssh-keygen
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8434
Filename: openssh-moduli_6.8p1-1_ramips_24kec.ipk
Size: 8520
MD5Sum: e48338dcd8075d1c2b944baf15bf5563
SHA256sum: 649415c3ad9223fb4d0717617ba5bc4999047da0a2f3c4872003056bd88c9396
Description: OpenSSH server moduli file.
Package: openssh-server-pam
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, libpthread, openssh-keygen, libpam
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Require-User: sshd=22:sshd=22
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 329735
Filename: openssh-server-pam_6.8p1-1_ramips_24kec.ipk
Size: 329792
MD5Sum: 08d90c1ffac642d33127e029fdc1f1fd
SHA256sum: 67871691b42e4cf6af0677726cd5865227b67ea8cd37c8f716a8567159a8b0f1
Description: OpenSSH server (with PAM support).
Package: openssh-server
Version: 6.8p1-1
Depends: libc, libopenssl, zlib, openssh-keygen
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Require-User: sshd=22:sshd=22
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 319460
Filename: openssh-server_6.8p1-1_ramips_24kec.ipk
Size: 319487
MD5Sum: 63cf9e71418b32d3f34fb2a669d9e955
SHA256sum: 620ac619dc3346df550a87b32ee0f6c79a7b7493e8cd42d150464073d7d14ab4
Description: OpenSSH server.
Package: openssh-sftp-avahi-service
Version: 6.8p1-1
Depends: libc, openssh-sftp-server, avahi-daemon
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 371
Filename: openssh-sftp-avahi-service_6.8p1-1_ramips_24kec.ipk
Size: 1217
MD5Sum: 91dcced6388d21cc6feda68548d674ce
SHA256sum: ad2425ceee5f09ee8e1b8588715e0f9c61d3c5ea8f820d2b76ee513ed4079a7a
Description: This package contains the service definition for announcing
SFTP support via mDNS/DNS-SD.
Package: openssh-sftp-client
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49761
Filename: openssh-sftp-client_6.8p1-1_ramips_24kec.ipk
Size: 50589
MD5Sum: 5b9933a0822920843523551ad1127f61
SHA256sum: a0e083565e7e66c962affc592c872e0a0a037f0a84ca3e98c1dbc50141a254c0
Description: OpenSSH SFTP client.
Package: openssh-sftp-server
Version: 6.8p1-1
Depends: libc, libopenssl, zlib
Source: feeds/packages/net/openssh
License: BSD ISC
LicenseFiles: LICENCE
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33396
Filename: openssh-sftp-server_6.8p1-1_ramips_24kec.ipk
Size: 34207
MD5Sum: c599a760affe46125cac7ab3f574430c
SHA256sum: 2128c859d7d8926c92b3a170be15d38d89ef796d4fc37628375facc5d1558461
Description: OpenSSH SFTP server.
Package: opentracker6
Version: 20141007-1
Depends: libc, zlib, libpthread
Source: feeds/packages/net/opentracker
License: Beerware
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45896
Filename: opentracker6_20141007-1_ramips_24kec.ipk
Size: 46516
MD5Sum: 7a5ee247025d8becffb4bf4493b1cdcd
SHA256sum: 3899764740b46c97494e30abc67bf92d5c49e221064a29514043ae3de039c1f4
Description: opentracker - An open and free bittorrent tracker
opentracker is an open and free bittorrent tracker project.
It aims for minimal resource usage and is intended to run at your wlan router.
Currently it is deployed as an open and free tracker instance.
Read our free and open tracker blog and announce your torrents there
(but do not hesitate to setup your own free trackers!).
This package contains the IPv6-build of opentracker.
Package: opentracker
Version: 20141007-1
Depends: libc, zlib, libpthread
Source: feeds/packages/net/opentracker
License: Beerware
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46925
Filename: opentracker_20141007-1_ramips_24kec.ipk
Size: 47549
MD5Sum: e5b254b33c2fec82b3c74a09dd356544
SHA256sum: 06e5ab993133e7a6e6dbfdccd3bbc940aa483d3120603278017df1bc5c2b210f
Description: opentracker - An open and free bittorrent tracker
opentracker is an open and free bittorrent tracker project.
It aims for minimal resource usage and is intended to run at your wlan router.
Currently it is deployed as an open and free tracker instance.
Read our free and open tracker blog and announce your torrents there
(but do not hesitate to setup your own free trackers!).
This package contains the IPv4-build of opentracker.
Package: oping
Version: 1.6.2-1
Depends: libc, liboping
Source: feeds/packages/libs/liboping
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6919
Filename: oping_1.6.2-1_ramips_24kec.ipk
Size: 7710
MD5Sum: d4e5a2d8278dc2d5493b7d4eb6e2a7e2
SHA256sum: c7222f37d9a4cb90303da418ad25b37636e33459bad3080c5e40d90a54bd6d2c
Description: Send ICMP echo request to network hosts
Package: opus-tools
Version: 0.1.9-1
Depends: libc, libogg, libopus
Source: feeds/packages/utils/opus-tools
License: BSD-2-Clause
LicenseFiles: COPYING
Section: utils
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 70395
Filename: opus-tools_0.1.9-1_ramips_24kec.ipk
Size: 70807
MD5Sum: 1515b7b1c475698587483928d2c2adf1
SHA256sum: ee940dad1b571abc1666d30dae730738f9aa5003a96c0aef6dc238dc90dde1df
Description: This package provides command-line utilities to encode, inspect, and decode
.opus files.
Package: owfs
Version: 2.9p5-1
Depends: libc, libow, libfuse, fuse-utils
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5002
Filename: owfs_2.9p5-1_ramips_24kec.ipk
Size: 6142
MD5Sum: 62e087358f8c548d18c0403fa6cab74c
SHA256sum: ed0b2a2d6dcf442f14f93970de96ac4f5a268d0df8ed6f5e0ae454e286b4b3a2
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS fuse filesystem.
Package: owftpd
Version: 2.9p5-1
Depends: libc, libow, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22268
Filename: owftpd_2.9p5-1_ramips_24kec.ipk
Size: 23421
MD5Sum: 0301e2db2335eaed0f6d3627452bbbd0
SHA256sum: d326960858ba958ef880816e3740410b17bf5ffd1d7f2187e5858b2bf99e3ad2
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS ftp server.
Package: owhttpd
Version: 2.9p5-1
Depends: libc, libow, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12444
Filename: owhttpd_2.9p5-1_ramips_24kec.ipk
Size: 13581
MD5Sum: 2e2075ce25478686ddf9acd05deb98c3
SHA256sum: 9ee26199f542bb5f728b3aeae2e20e6747520a8f6141abac238d9b0e7ae1a9ad
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS http server.
Package: owserver
Version: 2.9p5-1
Depends: libc, libow, libpthread
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10450
Filename: owserver_2.9p5-1_ramips_24kec.ipk
Size: 11610
MD5Sum: 0c0dd4d30ba6d85eb7eb486536660fd5
SHA256sum: f1de1756eeefa991bfb5b6009b7fbf9564adcfd735d1b9bf45f34940a9388212
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS network server.
Package: owshell
Version: 2.9p5-1
Depends: libc, libow, librpc
Source: feeds/packages/utils/owfs
License: GPL-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18161
Filename: owshell_2.9p5-1_ramips_24kec.ipk
Size: 18936
MD5Sum: 37f9c66975dd136140f73a2ed802b3b1
SHA256sum: 311cf91ded7f12892be1f6a984be7bdc748342d49b7c7ac61c3753a31bb4cb19
Description: OWFS is a suite of programs that designed to make the 1-wire bus and its
devices easily accessible. The underlying priciple is to create a virtual
filesystem, with the unique ID being the directory, and the individual
properties of the device are represented as simple files that can be read
and written.
Details of the individual slave or master design are hidden behind a
consistent interface. The goal is to provide an easy set of tools for a
software designer to create monitoring or control applications. There are
some performance enhancements in the implementation, including data caching,
parallel access to bus masters, and aggregation of device communication.
Still the fundemental goal has been ease of use, flexibility and correctness
rather than speed.
This package contains the OWFS shell utilities.
Package: p11-kit
Version: 0.20.7-1
Depends: libc, libtasn1, libpthread
Source: feeds/packages/libs/p11-kit
Section: libs
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 60902
Filename: p11-kit_0.20.7-1_ramips_24kec.ipk
Size: 61132
MD5Sum: 4673655755d3be408599cc9ba2c2e021
SHA256sum: 9476aead368d13a5ed840c301e48f409fd4b46edfd51114992a5eb081dec8acb
Description: Provides a way to load and enumerate PKCS11 modules. Provides a
standard configuration setup for installing PKCS11 modules in such a
way that they are discoverable.
Package: p910nd
Version: 0.97-4
Depends: libc
Source: feeds/packages/net/p910nd
License: GPLv2
LicenseFiles: COPYING
Section: net
Maintainer: Philipp Kerling <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5758
Filename: p910nd_0.97-4_ramips_24kec.ipk
Size: 6721
MD5Sum: e92fb4d7eb41dca876fa05aae576f354
SHA256sum: 64620862c6188627e1119b54a61dba8cbc5695f46fbe981595a9cf670b17a629
Description: p910nd is a small daemon that copies any data received on
the port it is listening on to the corresponding printer
port. It is primarily intended for diskless Linux hosts
running as printer drivers but there is no reason why it
could not be used on diskful hosts. Port 9100 is copied
to /dev/lp0, 9101 to /dev/lp1 and 9102 to /dev/lp2. The
default is port 9100 to /dev/lp0.
Package: patch
Version: 2.7.5-1
Depends: libc
Source: feeds/packages/devel/patch
License: GPL-3.0+
LicenseFiles: COPYING
Section: devel
Maintainer: Russell Senior <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76948
Filename: patch_2.7.5-1_ramips_24kec.ipk
Size: 77744
MD5Sum: 21546fcac39b18a185aa5196d35c9582
SHA256sum: 097d95347d9764d5e4cedf0c8d13e0f8f48baf0a0ae2c7c3069c6d265b71939b
Description: The Patch package contains a program for modifying or creating files
by applying a "patch" file typically created by the diff program.
Package: pciutils
Version: 3.3.0-3
Depends: libc, libkmod, zlib
Source: feeds/packages/utils/pciutils
License: GPL-2.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 285543
Filename: pciutils_3.3.0-3_ramips_24kec.ipk
Size: 286565
MD5Sum: a59e7b92fb9a75de78f8e6e53efc7a21
SHA256sum: 0d9d73f03f13cd5c7b3023e8aff8d5a45f06ba38c6cacd703101a87b3f1d59e1
Description: contains collection of programs for inspecting and manipulating configuration
of PCI devices
Package: pcscd
Version: 1.8.13-1
Depends: libc, libpcsclite
Source: feeds/packages/utils/pcsc-lite
License: BSD-3-Clause
LicenseFiles: COPYING
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46792
Filename: pcscd_1.8.13-1_ramips_24kec.ipk
Size: 47672
MD5Sum: 438d624042cddf3e7c7cff90df5ac8d1
SHA256sum: 5d19f02278b981977aff90c86274f573f4799debf1f7a8210d55d9d72ea0b09d
Description: The purpose of PC/SC Lite is to provide a Windows(R) SCard
interface in a very small form factor for communicating to
smart cards and smart cards readers.
.
This package contains the PC/SC daemon.
Package: pen
Version: 0.27.2-1
Depends: libc, libopenssl
Source: feeds/packages/net/pen
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41116
Filename: pen_0.27.2-1_ramips_24kec.ipk
Size: 41763
MD5Sum: c6b6c4ebbe6b08db448f9816767950cd
SHA256sum: 1e274e2ec330adda74f17c4b52a0a6060aac4b4654d0ad60577c7ae3368a95f0
Description: This is pen, a load balancer for "simple" TCP based protocols
such as HTTP or SMTP. It allows several servers to appear as
one to the outside and automatically detects servers that are
down and distributes clients among the available servers.
This gives high availability and scalable performance.
Package: perl-compress-bzip2
Version: 2.22-1
Depends: libc, perl, libbz2
Source: feeds/packages/lang/perl-compress-bzip2
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24561
Filename: perl-compress-bzip2_2.22-1_ramips_24kec.ipk
Size: 25278
MD5Sum: 510602ef6365c001fd0acd3ba962b9ac
SHA256sum: fba50345495a246af690de3ac5bcd5fd00736555dc20fad0939963ef6fa8c018
Description: Perl interface to bzip2 compression library
Package: perl-dbi
Version: 1.633-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl-dbi
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 185019
Filename: perl-dbi_1.633-1_ramips_24kec.ipk
Size: 185742
MD5Sum: 421930a9403b9109c117f80a14f02cc1
SHA256sum: 795b6f28aae6761d4fc06673831b951912feff685455638da1a32e6708515fa2
Description: Database independent interface for Perl
Package: perl-html-parser
Version: 3.71-1
Depends: libc, perl, perl-html-tagset, perl-uri
Source: feeds/packages/lang/perl-html-parser
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28769
Filename: perl-html-parser_3.71-1_ramips_24kec.ipk
Size: 29587
MD5Sum: c388f1ff66d007fb1eb967290a22d64a
SHA256sum: 2a58e7440b94b7eb3bbbb98c09364692ff78c6eaf82742247ae9abf71ae28b09
Description: A collection of modules that parse HTML text documents
Package: perl-html-tagset
Version: 3.20-1
Depends: libc, perl
Source: feeds/packages/lang/perl-html-tagset
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1853
Filename: perl-html-tagset_3.20-1_ramips_24kec.ipk
Size: 2617
MD5Sum: 54761250b6c8e452eec4bcc37140c507
SHA256sum: f98fed3835d5974b9124a3d2fa064113c3cdfd2dcc91e9ca554b511de4ac5b58
Description: Data tables pertaining to HTML
Package: perl-html-tree
Version: 3.23-2
Depends: libc, perl, perl-html-parser, perl-html-tagset
Source: feeds/packages/lang/perl-html-tree
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31682
Filename: perl-html-tree_3.23-2_ramips_24kec.ipk
Size: 32438
MD5Sum: 8e3b8e6ffb0f365fab13ff31999a5be3
SHA256sum: fa53e55ca12b7959e94a7e4011303aedfee7a9e5c3182b2c36902bca66422189
Description: represent and create HTML syntax trees
Package: perl-lockfile-simple
Version: 0.208-1
Depends: libc, perl
Source: feeds/packages/lang/perl-lockfile-simple
License: GPL-2.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4606
Filename: perl-lockfile-simple_0.208-1_ramips_24kec.ipk
Size: 5338
MD5Sum: 4ccb90993cf814bc7f18725daf16784f
SHA256sum: 114825153742baccfb396f4e57d09b4658a807a951e3e7c82ea4fd2887caae4f
Description: Simple advisory file locking
Package: perl-net-telnet
Version: 3.04-1
Depends: libc, perl
Source: feeds/packages/lang/perl-net-telnet
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19678
Filename: perl-net-telnet_3.04-1_ramips_24kec.ipk
Size: 20401
MD5Sum: 4a0b3073f276b8a176e72ad068c78f9d
SHA256sum: 3c3cac3757d4fea0e2582c558b7cdfce2c738547a10dca9e3144e279817503e9
Description: Telnet client
Package: perl-test-harness
Version: 3.35-1
Depends: libc, perl
Source: feeds/packages/lang/perl-test-harness
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43617
Filename: perl-test-harness_3.35-1_ramips_24kec.ipk
Size: 44451
MD5Sum: d54b649b8955367c1291a7257b7c51d1
SHA256sum: d0ae03dede71e9f91d398e05b3a3e02b01a12d3ae5646b8b4aa8f2d1fb31595a
Description: Perl Test Harness
Package: perl-uri
Version: 1.67-1
Depends: libc, perl
Source: feeds/packages/lang/perl-uri
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22876
Filename: perl-uri_1.67-1_ramips_24kec.ipk
Size: 23617
MD5Sum: 13aad38c4527b83136d4fac22fe4e16c
SHA256sum: 1a5d7d2c5a4fe14dde0e7510cf0c9d5d1a664f7ee0246632811a9f752b8dabb1
Description: Manipulates and accesses URI strings
Package: perl-www-curl
Version: 4.17-1
Depends: libc, perl, libcurl
Source: feeds/packages/lang/perl-www-curl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: LICENSE
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27646
Filename: perl-www-curl_4.17-1_ramips_24kec.ipk
Size: 28446
MD5Sum: 2b1e5190f11c18d97db900797d7317bf
SHA256sum: 698bbee1e4c9a1e06f852521ece24f465439d01104895d11eb3e61d3057ac33c
Description: Perl bindings to libcurl
Package: perl-www-mechanize
Version: 1.74-1
Depends: libc, perl, perl-www
Source: feeds/packages/lang/perl-www-mechanize
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9931
Filename: perl-www-mechanize_1.74-1_ramips_24kec.ipk
Size: 10684
MD5Sum: d53c46fc35f021c5f553a99dbd24f9da
SHA256sum: 56c3aa8865a608c2cdbd41449313a0f4bf632655802ef9b560177927b0a8ecc1
Description: Perl WWW Mechanize
Package: perl-www
Version: 5.837-2
Depends: libc, perl, perl-html-parser, perl-html-tagset, perl-uri
Source: feeds/packages/lang/perl-www
License: GPL-1.0+ Artistic-1.0-Perl
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90594
Filename: perl-www_5.837-2_ramips_24kec.ipk
Size: 91528
MD5Sum: 6a48842d36fa9781e17bc0bdece3386d
SHA256sum: ed09964cee9ed360aebe3ac1b106cc96fa0acb881c452f1be48878d4f2d604a2
Description: WWW client/server library for Perl (aka LWP)
Package: perl
Version: 5.20.2-1
Depends: libc, libpthread
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 788428
Filename: perl_5.20.2-1_ramips_24kec.ipk
Size: 786757
MD5Sum: becf3d777cd0976c333f19210eb008fc
SHA256sum: 8041c91f341dc27d46a79eac6b576a142ccd86fe35ad9ac473513e8da598b856
Description: Perl is a stable, cross platform programming language.
It is used for mission critical projects in the public and private sectors
and is widely used to program web applications of all needs.
Package: perlbase-anydbm-file
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 464
Filename: perlbase-anydbm-file_5.20.2-1_ramips_24kec.ipk
Size: 1246
MD5Sum: 6acae92aee4fa2dba7e32f5f62ea355b
SHA256sum: 8b93c546f1ca99dfbf2de57fcb1a7dd087c8bdebb8eacc4fc1d992db3bf3f513
Description: AnyDBM_File perl module
Package: perlbase-app
Version: 5.20.2-1
Depends: libc, perl, perlbase-autouse, perlbase-base, perlbase-config, perlbase-cpan, perlbase-essential, perlbase-file, perlbase-getopt, perlbase-if, perlbase-tap, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15857
Filename: perlbase-app_5.20.2-1_ramips_24kec.ipk
Size: 16673
MD5Sum: 6d85b86faf4f64e314ca393b5b5c3ef7
SHA256sum: 834b37da0f5351484f4d5d39ad2aebda1dc21f785a29b1374baa12150964c37b
Description: app perl module
Package: perlbase-archive
Version: 5.20.2-1
Depends: libc, perl, perlbase-cwd, perlbase-essential, perlbase-file, perlbase-io
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17891
Filename: perlbase-archive_5.20.2-1_ramips_24kec.ipk
Size: 18695
MD5Sum: b1659f6892d0a48d8b803572ee556c0b
SHA256sum: 8fbd38d1f337ed2d06aad94da4373c67bd299fc5a663c684638c2f83e3b63169
Description: Archive perl module
Package: perlbase-arybase
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7389
Filename: perlbase-arybase_5.20.2-1_ramips_24kec.ipk
Size: 8167
MD5Sum: c460f098f5c9e2588b2bdc4609d1bd9c
SHA256sum: cfcd2319c7d83a63e5041a667c405b6084f2e15068289c2330170f5589588011
Description: arybase perl module
Package: perlbase-attribute
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2987
Filename: perlbase-attribute_5.20.2-1_ramips_24kec.ipk
Size: 3743
MD5Sum: 50705ced7812791a36fa6f4e6e50f0b5
SHA256sum: 65f5cf8f118438dbeec50e4803130147515a4191e891bc454c5a31b453af3556
Description: Attribute perl module
Package: perlbase-attributes
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5036
Filename: perlbase-attributes_5.20.2-1_ramips_24kec.ipk
Size: 5789
MD5Sum: 3eca6294028072a043ea53d99f99ab89
SHA256sum: 11299d0ed40f649ae7c6d3b66ad1c90ebfd0aa08470355aff156004241b1b24c
Description: attributes perl module
Package: perlbase-autodie
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-essential, perlbase-fatal, perlbase-if
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6298
Filename: perlbase-autodie_5.20.2-1_ramips_24kec.ipk
Size: 7115
MD5Sum: e6f60e1545fe61ecced1a177cc152a56
SHA256sum: 84658e13532151b274d3e6a605934fd21513a9406d422304e5e35a6212f04ced
Description: autodie perl module
Package: perlbase-autoloader
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2255
Filename: perlbase-autoloader_5.20.2-1_ramips_24kec.ipk
Size: 3048
MD5Sum: 25693092ef093e614f321642e4b3f9af
SHA256sum: 618949590397ec0d4c1da9053c01e5182f25b86155b1e1baf78932d2b389a796
Description: AutoLoader perl module
Package: perlbase-autosplit
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7936
Filename: perlbase-autosplit_5.20.2-1_ramips_24kec.ipk
Size: 8745
MD5Sum: caf11c65524357743e78a583227b5af6
SHA256sum: 791ad53e19658e126d0ddb1718829e9ca4faf29f02af440fed2413d86efe5764
Description: AutoSplit perl module
Package: perlbase-autouse
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1091
Filename: perlbase-autouse_5.20.2-1_ramips_24kec.ipk
Size: 1862
MD5Sum: e570ae0029c8708ebe6b88abf952eccc
SHA256sum: 209165fd1219cd3e2fe06f420099c4e0db7de001129331d498517814b0495ec5
Description: autouse perl module
Package: perlbase-b
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 76556
Filename: perlbase-b_5.20.2-1_ramips_24kec.ipk
Size: 77274
MD5Sum: 2e932b000df6fe7a8d30a947dd65604b
SHA256sum: 248c0ff766c8ab6e5f939ab7017a04973e17cbfc869f6dc2e3597a8213c8f46b
Description: B perl module
Package: perlbase-base
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2270
Filename: perlbase-base_5.20.2-1_ramips_24kec.ipk
Size: 3055
MD5Sum: b9b8f1e95048e9c9a76a1d90ae47c497
SHA256sum: b92a6c213d4e7d153308e840b2b28c2221f17db45ade306f89ef688ed63e1e65
Description: base perl module
Package: perlbase-benchmark
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6043
Filename: perlbase-benchmark_5.20.2-1_ramips_24kec.ipk
Size: 6817
MD5Sum: b6c8c728471a0f1b5ead0c4b3122214c
SHA256sum: c3fabb979a28d20868324ab393e574798e3f08835490160ff169fe7ff52a7539
Description: Benchmark perl module
Package: perlbase-bigint
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3040
Filename: perlbase-bigint_5.20.2-1_ramips_24kec.ipk
Size: 3792
MD5Sum: 3310f7a4842baa23dcacd875b9df0ae3
SHA256sum: 2d69ed8686eeab53bc5ffe1d4ddee679bd68dbc7ccc6f554f1b83e0db125825f
Description: bigint perl module
Package: perlbase-bignum
Version: 5.20.2-1
Depends: libc, perl, perlbase-bigint, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2539
Filename: perlbase-bignum_5.20.2-1_ramips_24kec.ipk
Size: 3313
MD5Sum: 48906447a67d55c2c820ae029693714d
SHA256sum: 730f05c17c9b467f40aa867e2fdc0e9234f36023163c6334525ce933f96ebb22
Description: bignum perl module
Package: perlbase-blib
Version: 5.20.2-1
Depends: libc, perl, perlbase-cwd, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 937
Filename: perlbase-blib_5.20.2-1_ramips_24kec.ipk
Size: 1720
MD5Sum: dd60ac1a7a56ee1efd61ec751f9052db
SHA256sum: bb9aae026ed3ec9c5bdc9a44f551fac77be6885e5c62f2cd9989c3edd917e6a0
Description: blib perl module
Package: perlbase-bytes
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 628
Filename: perlbase-bytes_5.20.2-1_ramips_24kec.ipk
Size: 1392
MD5Sum: 5bf2dd8096bb3ee21d15a1dce64534c4
SHA256sum: aff18842ee9f181bd55d0158f27f47c503b57245b329e85f2600a5b2a538f798
Description: bytes perl module
Package: perlbase-cgi
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-essential, perlbase-file, perlbase-if
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41061
Filename: perlbase-cgi_5.20.2-1_ramips_24kec.ipk
Size: 41979
MD5Sum: 336ea49105c3c4ec4a91bbba21f08e73
SHA256sum: c0c21e7ea500e6772c3fced0fc671059737abc7650130357436328660b2d02eb
Description: CGI perl module
Package: perlbase-charnames
Version: 5.20.2-1
Depends: libc, perl, perlbase-bytes, perlbase-essential, perlbase-file, perlbase-re, perlbase-unicore
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9445
Filename: perlbase-charnames_5.20.2-1_ramips_24kec.ipk
Size: 10239
MD5Sum: 83eb1734886c00ff20012a4c36529e62
SHA256sum: f3b7b0c409630f38658b909088221b1115b068e0a4f70ed70f397ee751db297c
Description: charnames perl module
Package: perlbase-class
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2261
Filename: perlbase-class_5.20.2-1_ramips_24kec.ipk
Size: 3022
MD5Sum: 1f8c8b232d8443ce634107de45b6e705
SHA256sum: 1433f6f92d4a49a08dbab2bd49caecee63ea6e610443f5b25751097ddfeeeef1
Description: Class perl module
Package: perlbase-compress
Version: 5.20.2-1
Depends: libc, perl, perlbase-bytes, perlbase-essential, perlbase-io, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 82750
Filename: perlbase-compress_5.20.2-1_ramips_24kec.ipk
Size: 83543
MD5Sum: 18a985952eb19e0f5487a787e69e3ad7
SHA256sum: 8816d3eaa35c6e54f67850a3901e345c6f6ccf2f0936b0ba17d0cda72c05dcc1
Description: Compress perl module
Package: perlbase-config
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16817
Filename: perlbase-config_5.20.2-1_ramips_24kec.ipk
Size: 17461
MD5Sum: 2a4f275a8d213c45b4eae85a018a3e73
SHA256sum: 7687a5069db8e3b2853e22198f1aeb2b2e145bb4dee59434f6fd994c782903ce
Description: Config perl module
Package: perlbase-cpan
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-config, perlbase-cwd, perlbase-dirhandle, perlbase-essential, perlbase-extutils, perlbase-fcntl, perlbase-file, perlbase-filehandle, perlbase-http-tiny, perlbase-list, perlbase-net, perlbase-safe, perlbase-scalar, perlbase-sys, perlbase-text, perlbase-version
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167129
Filename: perlbase-cpan_5.20.2-1_ramips_24kec.ipk
Size: 168120
MD5Sum: d1c6a9a47afeac49385c1393db5eb82d
SHA256sum: e64fc50f458999347c84b90b7ee8df0f3620e6f4107ca48acc14843c4409dd23
Description: CPAN perl module
Package: perlbase-cwd
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11196
Filename: perlbase-cwd_5.20.2-1_ramips_24kec.ipk
Size: 11942
MD5Sum: 4e69c0b5c0e473331180f260213f57d3
SHA256sum: 7d61b828ab4db80cfad119c31e11526419c4d39c38938884ede2c6736b7a9dc1
Description: Cwd perl module
Package: perlbase-data
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21616
Filename: perlbase-data_5.20.2-1_ramips_24kec.ipk
Size: 22417
MD5Sum: 290e75a3ec6510077a1741bf7bd2eb0d
SHA256sum: d44f23190e688aeae9f1585a5a6d897f0958fbf209ed8643d6f36a5fbe057ce1
Description: Data perl module
Package: perlbase-db-file
Version: 5.20.2-1
Depends: libc, perl, libdb47, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18612
Filename: perlbase-db-file_5.20.2-1_ramips_24kec.ipk
Size: 19394
MD5Sum: f3df177d24b54aa911714da489aea56d
SHA256sum: 2dcb075d24448e3bf153f60bf42e2ac799c2b74ea09d88b0a1f97f0507dd6765
Description: DB_File perl module
Package: perlbase-db
Version: 5.20.2-1
Depends: libc, perl, libdb47, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3459
Filename: perlbase-db_5.20.2-1_ramips_24kec.ipk
Size: 4239
MD5Sum: d2e2afd7dae4cc3e5a79079a36821431
SHA256sum: 53ef6361872cd818f67fad0e7a84f0aa0447f3457bf63a8f88f7ca6990d83456
Description: DB perl module
Package: perlbase-dbm-filter
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2383
Filename: perlbase-dbm-filter_5.20.2-1_ramips_24kec.ipk
Size: 3163
MD5Sum: 76a7472651b849f25320c1641dd53467
SHA256sum: 60e19ad11740d801de1deed422c7e0e11c7121a80b4410e6df9ca27e78d57726
Description: DBM_Filter perl module
Package: perlbase-devel
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 80490
Filename: perlbase-devel_5.20.2-1_ramips_24kec.ipk
Size: 81338
MD5Sum: c464cd3c7d8b86a359f43d512cf2f30b
SHA256sum: c447c45ba43f7c8c29074f7175328ff4563eeb7333d18558309e4bbe9a13fed4
Description: Devel perl module
Package: perlbase-diagnostics
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4959
Filename: perlbase-diagnostics_5.20.2-1_ramips_24kec.ipk
Size: 5744
MD5Sum: 1e82d36bd1c1693d3f272ff86067e223
SHA256sum: b485364f42dfac0117c7a9288e6f116e36223989e4dccb747e04a42b7c84a0e5
Description: diagnostics perl module
Package: perlbase-digest
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-fcntl, perlbase-integer
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32248
Filename: perlbase-digest_5.20.2-1_ramips_24kec.ipk
Size: 33071
MD5Sum: c2b209143e670a045a2edbfd15706913
SHA256sum: dac374cf7a7e190bf2c0b1f0126c257ee69e57d545c8eebd1a1916baa0c5d8ba
Description: Digest perl module
Package: perlbase-dirhandle
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-symbol
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 653
Filename: perlbase-dirhandle_5.20.2-1_ramips_24kec.ipk
Size: 1441
MD5Sum: ff3e16bc7a5b17d6a1ee183e2b05ec61
SHA256sum: 09d98e97ee0c56f79c3fc61e61faa5767e598103b395c404acb3ac8d58741bfc
Description: DirHandle perl module
Package: perlbase-dumpvalue
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4031
Filename: perlbase-dumpvalue_5.20.2-1_ramips_24kec.ipk
Size: 4807
MD5Sum: 980d90ec466c03fb2c183270e87c663e
SHA256sum: ec0cd3bf3c456096af825496e25201966bab2cd91a268e1011c10ab5afd642fd
Description: Dumpvalue perl module
Package: perlbase-dumpvar
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4967
Filename: perlbase-dumpvar_5.20.2-1_ramips_24kec.ipk
Size: 5738
MD5Sum: bcd3b30a74e35fea12c8fb9b3a5f3532
SHA256sum: 6887b74c4c683f74752b905fe9e3cf2fca0a07bda7440fd8e271ad94bd74f3d8
Description: dumpvar perl module
Package: perlbase-dynaloader
Version: 5.20.2-1
Depends: libc, perl, perlbase-config
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3768
Filename: perlbase-dynaloader_5.20.2-1_ramips_24kec.ipk
Size: 4524
MD5Sum: 09d7ab462f69172111a9521c163ad543
SHA256sum: 9944105887f27bd407546f13de7d51874037da8dce06e96891595f9aa5d98a5b
Description: DynaLoader perl module
Package: perlbase-encode
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-mime, perlbase-utf8, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1898863
Filename: perlbase-encode_5.20.2-1_ramips_24kec.ipk
Size: 1669080
MD5Sum: 796a84b45588cc9632af41217da90d00
SHA256sum: 1b3d12e6f6284577f8298b5c0744b9fa2742fde354aebf9de58cc5233f98f5db
Description: Encode perl module
Package: perlbase-encoding
Version: 5.20.2-1
Depends: libc, perl, perlbase-encode, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2774
Filename: perlbase-encoding_5.20.2-1_ramips_24kec.ipk
Size: 3538
MD5Sum: c91c87095f8ce0dfa477e7c7f589d0e3
SHA256sum: 0d6f05bc3cbcd3466deacaa7bb88003cbdc73c07b811eef65e830b147bfd5127
Description: encoding perl module
Package: perlbase-english
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1375
Filename: perlbase-english_5.20.2-1_ramips_24kec.ipk
Size: 2147
MD5Sum: 333a6e8faaeae6653f3e96cf725fb2a4
SHA256sum: db8f3679eb556f345c63cb3b3ee3a702f25b0dcd0950254f3947067570c2f886
Description: English perl module
Package: perlbase-env
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-tie
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1149
Filename: perlbase-env_5.20.2-1_ramips_24kec.ipk
Size: 1929
MD5Sum: 15369318a708d2c44001ade83e0460c1
SHA256sum: 80bd63374be05a65c0ea3ef84f91d0da74c07c890ad03b9879846058ee62e948
Description: Env perl module
Package: perlbase-errno
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2466
Filename: perlbase-errno_5.20.2-1_ramips_24kec.ipk
Size: 3254
MD5Sum: c060baba952e22634af9514aa9ad9982
SHA256sum: 30fcf054c310ee81c47f92015b7164b4af5031da738afc529077f4609c816b96
Description: Errno perl module
Package: perlbase-essential
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18341
Filename: perlbase-essential_5.20.2-1_ramips_24kec.ipk
Size: 19129
MD5Sum: 13be582e7a7a077222f23eeedb769b62
SHA256sum: 03b76d0f42ca3e624962939fa7cffa07f0d287b9b641d38c66cb3418a45520f1
Description: essential perl module
Package: perlbase-experimental
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-feature
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 835
Filename: perlbase-experimental_5.20.2-1_ramips_24kec.ipk
Size: 1611
MD5Sum: 4bc3b715b8509eae9f4087c51416e6ac
SHA256sum: 7f753101506e8a61664060c135efb887c1dfaa45c678850ed55670e780b0c979
Description: experimental perl module
Package: perlbase-extutils
Version: 5.20.2-1
Depends: libc, perl, perlbase-autosplit, perlbase-config, perlbase-cwd, perlbase-dirhandle, perlbase-essential, perlbase-file, perlbase-io, perlbase-ipc, perlbase-ostype, perlbase-symbol, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 170568
Filename: perlbase-extutils_5.20.2-1_ramips_24kec.ipk
Size: 171526
MD5Sum: ffac47788d522cc1377922c44d0162e4
SHA256sum: 03c5f5a506ec5c07919a01388b8cb8791f3d14790d4e724c6fcaaef8540d9c38
Description: ExtUtils perl module
Package: perlbase-fatal
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-scalar, perlbase-tie
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16040
Filename: perlbase-fatal_5.20.2-1_ramips_24kec.ipk
Size: 16795
MD5Sum: c540e3701141d5a46c2b3688eff265e2
SHA256sum: 2273d7ae4fcfe9de893898089c01dc3d5c77a10e847cb4e5285b107405a34b45
Description: Fatal perl module
Package: perlbase-fcntl
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6051
Filename: perlbase-fcntl_5.20.2-1_ramips_24kec.ipk
Size: 6791
MD5Sum: b87609a43c48800deb587b056a4f0e73
SHA256sum: fae72d768cd1b672cb74d1ad395f0f9b200daa90b54e5abbab272fe64489b65d
Description: Fcntl perl module
Package: perlbase-feature
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1276
Filename: perlbase-feature_5.20.2-1_ramips_24kec.ipk
Size: 2052
MD5Sum: b8b045b27125c9581e38d9146823a264
SHA256sum: b21288138cd6e1c6a3240379c488272d63954488a965bfcf998823198f988830
Description: feature perl module
Package: perlbase-fields
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1912
Filename: perlbase-fields_5.20.2-1_ramips_24kec.ipk
Size: 2702
MD5Sum: 289acc49cc31261f1198fc37fd96cb6a
SHA256sum: e86bee10fa69acd6ef02ad208041ff00a6f1eb7aa79cbb55badff252ba324ab4
Description: fields perl module
Package: perlbase-file
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-config, perlbase-cwd, perlbase-errno, perlbase-essential, perlbase-fcntl, perlbase-filehandle, perlbase-io, perlbase-locale, perlbase-params, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71548
Filename: perlbase-file_5.20.2-1_ramips_24kec.ipk
Size: 72453
MD5Sum: f6b65dfc7dc9b13bf4231a7f2a3ab865
SHA256sum: 332b3c5c0ca1117ab5461d904c7e17cbe236dfd07b7380a32a8551408464f823
Description: File perl module
Package: perlbase-filecache
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1431
Filename: perlbase-filecache_5.20.2-1_ramips_24kec.ipk
Size: 2208
MD5Sum: 54db86d6988b004a70f3495d32382f74
SHA256sum: 818818f4e87b6e4f8f5a280f40bf256b20b43483527fa2167ea2cde52bfb593f
Description: FileCache perl module
Package: perlbase-filehandle
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1004
Filename: perlbase-filehandle_5.20.2-1_ramips_24kec.ipk
Size: 1784
MD5Sum: ee3cff78b4bf76900ef9a9ff4ea4e81a
SHA256sum: fa25026b19f05b33cab30b355170d2b7359925753e3c34634a49e57d587c5d4d
Description: FileHandle perl module
Package: perlbase-filetest
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 418
Filename: perlbase-filetest_5.20.2-1_ramips_24kec.ipk
Size: 1180
MD5Sum: e1ac549b43d9109d3b1a76c1e4e4e034
SHA256sum: 5df6e79b57a211cdad989b603fe848b2bcd9d755466f42b26dddb483fed9caa1
Description: filetest perl module
Package: perlbase-filter
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7345
Filename: perlbase-filter_5.20.2-1_ramips_24kec.ipk
Size: 8151
MD5Sum: b873dd9c2e3fe400038f46eafc857db6
SHA256sum: 103dd47c90699094dd2cd6193abb366e051cf678f75fee862ff6e486893b8e9e
Description: Filter perl module
Package: perlbase-findbin
Version: 5.20.2-1
Depends: libc, perl, perlbase-cwd, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1143
Filename: perlbase-findbin_5.20.2-1_ramips_24kec.ipk
Size: 1932
MD5Sum: c063a1c7b916e2a5a12b5aefdc557625
SHA256sum: d40bec2182ef1157072b932b27d25efa424bd22f4521194b0ea13a1106450d23
Description: FindBin perl module
Package: perlbase-gdbm-file
Version: 5.20.2-1
Depends: libc, perl, libgdbm, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7195
Filename: perlbase-gdbm-file_5.20.2-1_ramips_24kec.ipk
Size: 8002
MD5Sum: 815b4d65050da15107f8df7c4c7ba1fc
SHA256sum: 52c6a02a3fd107881f9e37584b9c7dfde23025aa4bf23e4bd395aecfd2e75a2b
Description: GDBM_File perl module
Package: perlbase-getopt
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12770
Filename: perlbase-getopt_5.20.2-1_ramips_24kec.ipk
Size: 13560
MD5Sum: 290caa475ce6964b579d811541e42b82
SHA256sum: 81963c194d02aaa080f0e56f8357a029bb8145f6485b26177a810058c44b6b58
Description: Getopt perl module
Package: perlbase-hash
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11650
Filename: perlbase-hash_5.20.2-1_ramips_24kec.ipk
Size: 12431
MD5Sum: adbe86919ed0805d35090e477d7f1e34
SHA256sum: 9f618cebff9e9c64c127ff872f30e04afd3425cf6a1a993f8c73e85f5fcdd53d
Description: Hash perl module
Package: perlbase-http-tiny
Version: 5.20.2-1
Depends: libc, perl, perlbase-errno, perlbase-essential, perlbase-io
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10133
Filename: perlbase-http-tiny_5.20.2-1_ramips_24kec.ipk
Size: 10948
MD5Sum: c2fd3a737ea4652def3183b85fc7de99
SHA256sum: 0b23bc5e493e7dc62a3dfe199acd343386ad4767abd38d8cb2fb174cf67d12a5
Description: http-tiny perl module
Package: perlbase-i18n
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-posix
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20467
Filename: perlbase-i18n_5.20.2-1_ramips_24kec.ipk
Size: 21233
MD5Sum: 94e2f0ca9d5bffdbd36b8567558d5528
SHA256sum: 3b6ea1f5783a80fc8858dffa788cb24110e8d4220e21b11e744eaee7708e579c
Description: I18N perl module
Package: perlbase-if
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 560
Filename: perlbase-if_5.20.2-1_ramips_24kec.ipk
Size: 1320
MD5Sum: bb21c1d2e7b2eb6da0550c2ad66d94fc
SHA256sum: 0f9f734a6fa36c5f5b00f91dc3597077f18d1ba2197c8b6e89438eaa877480cd
Description: if perl module
Package: perlbase-integer
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 317
Filename: perlbase-integer_5.20.2-1_ramips_24kec.ipk
Size: 1075
MD5Sum: 2ae59d3d95ac7cbd8afd7a6f27eff505
SHA256sum: 1c0a970d8871f86a5e465587e0abb3e75694e3ee500219588e4361228888d42c
Description: integer perl module
Package: perlbase-io
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-bytes, perlbase-config, perlbase-errno, perlbase-essential, perlbase-fcntl, perlbase-list, perlbase-posix, perlbase-scalar, perlbase-selectsaver, perlbase-socket, perlbase-symbol, perlbase-tie, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 67121
Filename: perlbase-io_5.20.2-1_ramips_24kec.ipk
Size: 68097
MD5Sum: e4b4888a45aefd6547f62b0238cddc71
SHA256sum: 74a5dc80e51663caa16e5e3722b8cbcba1ef8bb979595ea23a46d6f9159e1994
Description: IO perl module
Package: perlbase-ipc
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-file, perlbase-locale, perlbase-params, perlbase-symbol, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26227
Filename: perlbase-ipc_5.20.2-1_ramips_24kec.ipk
Size: 26978
MD5Sum: 73c570de1c27738edaa8b323aadf938f
SHA256sum: f6fd5d8056ff81646f7f4f31f7d7304b9a20b83a6a8d81caab372879ec1820d7
Description: IPC perl module
Package: perlbase-json-pp
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-base, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10597
Filename: perlbase-json-pp_5.20.2-1_ramips_24kec.ipk
Size: 11398
MD5Sum: 853bf10e3c2309cd60229a9ddb6136f0
SHA256sum: 343dea2d2fef06c93b91ef709025ee105e36eca06af1ada27547752e5736de82
Description: json-pp perl module
Package: perlbase-less
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 718
Filename: perlbase-less_5.20.2-1_ramips_24kec.ipk
Size: 1485
MD5Sum: 09b60c56e5b978bd4e1947e888617dec
SHA256sum: a7d907140e3735e1ef0d22e71432996dcc9b8447d3a9dacbff81a3addb870820
Description: less perl module
Package: perlbase-list
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14935
Filename: perlbase-list_5.20.2-1_ramips_24kec.ipk
Size: 15683
MD5Sum: 8f9f6359471137de3d40b925cc5109ac
SHA256sum: ac5d25a499be5445f0d43c0ca1839f73d74f3d4053b8127a7851ef71d12b3847
Description: List perl module
Package: perlbase-locale
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-i18n, perlbase-integer, perlbase-utf8
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 313629
Filename: perlbase-locale_5.20.2-1_ramips_24kec.ipk
Size: 288706
MD5Sum: 0aab9cd102ec27bc7357e0ab5f663b88
SHA256sum: 3bb573257a4edf6dd4ece56450a4df8cb8132c426620f3ab3e42eeae149b3cb8
Description: Locale perl module
Package: perlbase-math
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 88251
Filename: perlbase-math_5.20.2-1_ramips_24kec.ipk
Size: 89172
MD5Sum: 41674a49631f9292433c3e1a47bcf75b
SHA256sum: 2ca99a8244481f97e812befade24ceb052b97602a2d3483af2e29c7b118c3d6c
Description: Math perl module
Package: perlbase-memoize
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential, perlbase-storable
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5678
Filename: perlbase-memoize_5.20.2-1_ramips_24kec.ipk
Size: 6452
MD5Sum: d8a039ad3d96196b5e17136affb95462
SHA256sum: 212c83532d05c816935870e64ebf7767f21cfdbbe01336a5a6974dee77b7015b
Description: Memoize perl module
Package: perlbase-mime
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6291
Filename: perlbase-mime_5.20.2-1_ramips_24kec.ipk
Size: 7111
MD5Sum: bc02abaee686206766c3f503966154c5
SHA256sum: b9322533c58ee55f19735d5a5421430876dcbf7943fbc6903a8c13f45b0f22a5
Description: MIME perl module
Package: perlbase-module
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-cwd, perlbase-data, perlbase-essential, perlbase-extutils, perlbase-file, perlbase-filehandle, perlbase-if, perlbase-io, perlbase-locale, perlbase-ostype, perlbase-params, perlbase-text, perlbase-version
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 173259
Filename: perlbase-module_5.20.2-1_ramips_24kec.ipk
Size: 173149
MD5Sum: ab7fb2d37e1c7a8de0fbbfb283d85251
SHA256sum: ad6add43af13611b29a51d03f75cd9cba4c0c6d9faca5c644d6aa8ccae59fbd9
Description: Module perl module
Package: perlbase-mro
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7318
Filename: perlbase-mro_5.20.2-1_ramips_24kec.ipk
Size: 8089
MD5Sum: a616a5225f08ce19e19306db3becd238
SHA256sum: e0ee71c1dbdf7da0d1506892979d0d0d1047843313b249185108fec2e5b4973a
Description: mro perl module
Package: perlbase-net
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-errno, perlbase-essential, perlbase-fcntl, perlbase-filehandle, perlbase-io, perlbase-posix, perlbase-socket, perlbase-symbol, perlbase-time
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38130
Filename: perlbase-net_5.20.2-1_ramips_24kec.ipk
Size: 39080
MD5Sum: a21c41fbf17239811d899a0d62483e80
SHA256sum: 81829365cca5dbc619503b35df9b1b121cc24b3aee4d7ad6976e416f332530e3
Description: Net perl module
Package: perlbase-next
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1744
Filename: perlbase-next_5.20.2-1_ramips_24kec.ipk
Size: 2502
MD5Sum: 155ebd3c2fd39b7e7d0b3bcc4a877083
SHA256sum: 06cd7976269d37f94a54a662275dfd2e67e9187b5dc962bc4b483abd72a0444b
Description: NEXT perl module
Package: perlbase-o
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 829
Filename: perlbase-o_5.20.2-1_ramips_24kec.ipk
Size: 1606
MD5Sum: 5dd809d3bb8f55b9defa329533b25a09
SHA256sum: b8495d74b69a7b3ba2b98e5bd45f8aa163d06c553e6439b859986ef741b1638b
Description: O perl module
Package: perlbase-opcode
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14785
Filename: perlbase-opcode_5.20.2-1_ramips_24kec.ipk
Size: 15556
MD5Sum: ce4dd186a187946b4dddace1e7e98e29
SHA256sum: a3dbc4aa425a6bbc5419dc0578e377fba0b270bfda3a65208bf8edb11a7095a1
Description: Opcode perl module
Package: perlbase-open
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1690
Filename: perlbase-open_5.20.2-1_ramips_24kec.ipk
Size: 2469
MD5Sum: 4bbd239438b15f59daf10193c654c025
SHA256sum: b35b58a2d87bed19ce4f4585dbaa6be0d1e24b06faadc546ca9b42142bed5e95
Description: open perl module
Package: perlbase-ops
Version: 5.20.2-1
Depends: libc, perl, perlbase-opcode
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 483
Filename: perlbase-ops_5.20.2-1_ramips_24kec.ipk
Size: 1250
MD5Sum: 52084259008612931aee2f9322c7f01e
SHA256sum: 9639a4e59487fcab206326008af11f60519bea20382b7b6ed64c8cb49526f011
Description: ops perl module
Package: perlbase-ostype
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 825
Filename: perlbase-ostype_5.20.2-1_ramips_24kec.ipk
Size: 1600
MD5Sum: fad30b25805fd5f22de9700ede3aeae5
SHA256sum: c981b17bfa959476a651915a8fc17a5b0356025687dbdb6e3429e3f58dc20ff3
Description: OSType perl module
Package: perlbase-package
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-if
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 684
Filename: perlbase-package_5.20.2-1_ramips_24kec.ipk
Size: 1451
MD5Sum: f558b629785a58bdd6199bfac639b8d4
SHA256sum: 154586eed8546d82cbe04bd065bfb574931a528e8a219095368fa61a5b6268d0
Description: Package perl module
Package: perlbase-params
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-locale
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3284
Filename: perlbase-params_5.20.2-1_ramips_24kec.ipk
Size: 4052
MD5Sum: 33a79d06b5bcea6059039b99303f3637
SHA256sum: 214aff6f47cd0318cb5ab2331b7107fc435d7233f32e9cff6fbd63ec208b3fd7
Description: Params perl module
Package: perlbase-perl5db
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62306
Filename: perlbase-perl5db_5.20.2-1_ramips_24kec.ipk
Size: 63212
MD5Sum: fedee7e261377260339b3a80aedcd488
SHA256sum: 0071c6bf14651c6a67615c4cde5630fdfb541d7b1bd12bbdf844f7f04d14b794
Description: perl5db perl module
Package: perlbase-perlio
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-mime, perlbase-xsloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21579
Filename: perlbase-perlio_5.20.2-1_ramips_24kec.ipk
Size: 22319
MD5Sum: 7226fdf122bfc7960e1920dcffdc0edf
SHA256sum: 98ce66326a79f2bce61b7a748cbb2c3ccb6bc53a9354fded9b61b5333b85f699
Description: PerlIO perl module
Package: perlbase-pod
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-cwd, perlbase-encode, perlbase-essential, perlbase-fcntl, perlbase-file, perlbase-getopt, perlbase-integer, perlbase-posix, perlbase-symbol, perlbase-term, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 176891
Filename: perlbase-pod_5.20.2-1_ramips_24kec.ipk
Size: 177825
MD5Sum: b21359692f5faf81777901e32fdc7e6e
SHA256sum: c7d085edbe79a3f0cc0262934d8d5340ca59ae9efc40eb496ad151c8c3eb1ba8
Description: Pod perl module
Package: perlbase-posix
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-fcntl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29282
Filename: perlbase-posix_5.20.2-1_ramips_24kec.ipk
Size: 29936
MD5Sum: 20284aeb4853ade51190e243025ba7ee
SHA256sum: 4de74ac479c7252e1a8252b59512b0e8172e16cc4ffb5c5f442f6a7cdf549b47
Description: POSIX perl module
Package: perlbase-re
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 168137
Filename: perlbase-re_5.20.2-1_ramips_24kec.ipk
Size: 168986
MD5Sum: 692477a9c78d791e55d7ff3546aebca4
SHA256sum: 7a1c25ae19c86f2abb609d9a34bb0d83694959bcfdfb2af2cfb83ee9fdc581b7
Description: re perl module
Package: perlbase-safe
Version: 5.20.2-1
Depends: libc, perl, perlbase-b, perlbase-essential, perlbase-opcode, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4014
Filename: perlbase-safe_5.20.2-1_ramips_24kec.ipk
Size: 4781
MD5Sum: c7c9ffa1b2352ab26cd60b28dcb7fb07
SHA256sum: d9c7ef2183a3fafc26c14316a8dc107b567172a258d6e61e29df33130ee8225c
Description: Safe perl module
Package: perlbase-scalar
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 748
Filename: perlbase-scalar_5.20.2-1_ramips_24kec.ipk
Size: 1528
MD5Sum: 668ce562a8c906de272481d858b05d22
SHA256sum: be91ca4e48711173c66cf8f9a504137216a86f9965977e21f71c4c42e2151fcb
Description: Scalar perl module
Package: perlbase-sdbm-file
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9983
Filename: perlbase-sdbm-file_5.20.2-1_ramips_24kec.ipk
Size: 10796
MD5Sum: 387832a9548c0471237be4b43adcc91f
SHA256sum: 77a0fc9ca63eecc5613fc42f854f3735ef692f5a0983e5a6412d967097f62b77
Description: SDBM_File perl module
Package: perlbase-search
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1133
Filename: perlbase-search_5.20.2-1_ramips_24kec.ipk
Size: 1907
MD5Sum: 4a84afa8325212abdad803b58ab02742
SHA256sum: 6bc6a31b6042af96ea8fe6475d790ed598c4610cf27c432e1008b49204a1b082
Description: Search perl module
Package: perlbase-selectsaver
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-symbol
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 437
Filename: perlbase-selectsaver_5.20.2-1_ramips_24kec.ipk
Size: 1221
MD5Sum: 926fb144d9e881ff0270a8921b73bfef
SHA256sum: ef2415f922385bcb6b641df023183447c8e4f212a8f816e8140b76542c058889
Description: SelectSaver perl module
Package: perlbase-selfloader
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-io
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2292
Filename: perlbase-selfloader_5.20.2-1_ramips_24kec.ipk
Size: 3087
MD5Sum: bfe0541d2bc19a15f7fd3982d7fbdfa7
SHA256sum: 2dfecc9ac4ef189e82730e9036452f097c169ca5900c5aee2c1d33212f482d15
Description: SelfLoader perl module
Package: perlbase-sigtrap
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1457
Filename: perlbase-sigtrap_5.20.2-1_ramips_24kec.ipk
Size: 2229
MD5Sum: 223def2ff0f987aa704c719f1c165cf5
SHA256sum: a1a1f632bc4d01eba7d1801c98765f504e8a9f74aea22c82af6041fac3fb3312
Description: sigtrap perl module
Package: perlbase-socket
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16454
Filename: perlbase-socket_5.20.2-1_ramips_24kec.ipk
Size: 17138
MD5Sum: b53f1768aefa1708aa4e69e8307ff4c7
SHA256sum: 15d5e51f5ca1fb47b7eb2cb4b19e8ce62b196f57c368c281df981be6dff2afae
Description: Socket perl module
Package: perlbase-sort
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 724
Filename: perlbase-sort_5.20.2-1_ramips_24kec.ipk
Size: 1500
MD5Sum: 798e157822e653c49abcce0d75109291
SHA256sum: 8fa55605b8e0252b9b7e2f3c21ce9b8523089fde8dd94a3169df138365918bfc
Description: sort perl module
Package: perlbase-storable
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33826
Filename: perlbase-storable_5.20.2-1_ramips_24kec.ipk
Size: 34693
MD5Sum: 4ad464d30a0ddbd7b0e88ccf6b976653
SHA256sum: 97bbab653024de438f97a17cfe658131943a90ec91888afc13d235db498b41a5
Description: Storable perl module
Package: perlbase-symbol
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1118
Filename: perlbase-symbol_5.20.2-1_ramips_24kec.ipk
Size: 1886
MD5Sum: a563fefebdb564de787dae9845fa2a97
SHA256sum: 83f5306df43358837345cfcac1fad6142a9522b17c0e3d36d1eaa4d494066ad3
Description: Symbol perl module
Package: perlbase-sys
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-file, perlbase-posix, perlbase-socket
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13331
Filename: perlbase-sys_5.20.2-1_ramips_24kec.ipk
Size: 14130
MD5Sum: c32c8ff6ca3dc5e75510b107c55e2870
SHA256sum: 0fc2a8665eea046327a73d6218ad9b1c856685142997d172799173af6cf3d7d7
Description: Sys perl module
Package: perlbase-tap
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-benchmark, perlbase-config, perlbase-essential, perlbase-file, perlbase-io, perlbase-posix, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33993
Filename: perlbase-tap_5.20.2-1_ramips_24kec.ipk
Size: 34938
MD5Sum: 21aaa33a0b461df8e56d5bc567dcf20a
SHA256sum: aaec8a85e92bcbb8da628af96fab15472917e8b54fa365c5f6a889d676b74b8f
Description: TAP perl module
Package: perlbase-term
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10918
Filename: perlbase-term_5.20.2-1_ramips_24kec.ipk
Size: 11706
MD5Sum: 393507e41319e4171f279518ef3e582a
SHA256sum: 0d4ee1c51ca89998e6745cfb077cf096b53de8a0b8c775afab745bc297a4a425
Description: Term perl module
Package: perlbase-test
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-config, perlbase-essential, perlbase-symbol, perlbase-tap, perlbase-text
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 49715
Filename: perlbase-test_5.20.2-1_ramips_24kec.ipk
Size: 50622
MD5Sum: abfb9ee25568a3dc6f7c5221a3baff90
SHA256sum: 4de29a064bd04ea961394e0c0ff824f6cc29475c55b780e3cdc88842bd98decd
Description: Test perl module
Package: perlbase-text
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-selfloader
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10784
Filename: perlbase-text_5.20.2-1_ramips_24kec.ipk
Size: 11563
MD5Sum: f574a3ba676d186abdaedf2586ab43b3
SHA256sum: 167bb0c905974c0b0037e703b034a1fa1ec19538cd7a2778f52885be07d6695a
Description: Text perl module
Package: perlbase-thread
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-scalar, perlbase-threads
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2394
Filename: perlbase-thread_5.20.2-1_ramips_24kec.ipk
Size: 3178
MD5Sum: e8c2f582c8bc48784cabb1a05e1e1ce4
SHA256sum: 36e76d18154dbbc296206a4b4a942330082485244a21f33d19758821bf7d87ea
Description: Thread perl module
Package: perlbase-threads
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-scalar
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29138
Filename: perlbase-threads_5.20.2-1_ramips_24kec.ipk
Size: 29919
MD5Sum: 295314759c9cfdf3c0491a89db75719f
SHA256sum: 6dca3d46bc16fb38aa7910b67c2646c330b2958dce50e3053696d31a9b45d987
Description: threads perl module
Package: perlbase-tie
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-fcntl, perlbase-posix
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21566
Filename: perlbase-tie_5.20.2-1_ramips_24kec.ipk
Size: 22345
MD5Sum: 02da817207798fb8864ce2d4ffdf5e99
SHA256sum: fc88db2ea8223124916a819b37ce4e30d3ab2d5d7f2719ffdd1d3b4d7084c70d
Description: Tie perl module
Package: perlbase-time
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23304
Filename: perlbase-time_5.20.2-1_ramips_24kec.ipk
Size: 24064
MD5Sum: 3a3060b63592734bf13f229b24cff639
SHA256sum: dce3aec9d7d4a2d6149dc55a85cd573949516a6bddf88c758c4b047f84058b15
Description: Time perl module
Package: perlbase-unicode
Version: 5.20.2-1
Depends: libc, perl, perlbase-base, perlbase-charnames, perlbase-essential, perlbase-file
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 891194
Filename: perlbase-unicode_5.20.2-1_ramips_24kec.ipk
Size: 796922
MD5Sum: f49a862f07a06c8e28553989375a43d4
SHA256sum: 0eed9f22da63350fda741bbc48ea71f71a18d89f97756c5011df3dc6a4a7ddec
Description: Unicode perl module
Package: perlbase-unicore
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 549319
Filename: perlbase-unicore_5.20.2-1_ramips_24kec.ipk
Size: 507977
MD5Sum: 6526a87e7dc38dba561ddaa32217a0eb
SHA256sum: 3a4ea6f59978410b8e120502b515aaf1cbeb29bda8354ea99e2757e2629fdf1e
Description: unicore perl module
Package: perlbase-universal
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 454
Filename: perlbase-universal_5.20.2-1_ramips_24kec.ipk
Size: 1220
MD5Sum: 46bde9048506afd464b154d144a5cfa3
SHA256sum: 640f12c30846b29ef758d52a3bc347b2f6b3d149c2b0479504213d173c85a01c
Description: UNIVERSAL perl module
Package: perlbase-user
Version: 5.20.2-1
Depends: libc, perl, perlbase-class, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2068
Filename: perlbase-user_5.20.2-1_ramips_24kec.ipk
Size: 2840
MD5Sum: 6a571de4e36ba0239f2c47f1af606ba7
SHA256sum: 22ce9620be099ffd05670820e261efecec7852777e3338cd1be362c367946ba3
Description: User perl module
Package: perlbase-utf8
Version: 5.20.2-1
Depends: libc, perl, perlbase-essential, perlbase-re
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9155
Filename: perlbase-utf8_5.20.2-1_ramips_24kec.ipk
Size: 9961
MD5Sum: fb9cd1e2ea39c78e64c2a797480360a4
SHA256sum: f682e268f761d75f206926b2b4c924586703c2c4f8ceff39f7bf717e8b7ecad3
Description: utf8 perl module
Package: perlbase-version
Version: 5.20.2-1
Depends: libc, perl, perlbase-config, perlbase-essential
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6898
Filename: perlbase-version_5.20.2-1_ramips_24kec.ipk
Size: 7692
MD5Sum: bfea42cdb8c2371164548ffb7b587d4d
SHA256sum: 62af31b057db09fa1b5584bdd1611ab3071232e30367634d5b6890d728f88be0
Description: version perl module
Package: perlbase-xsloader
Version: 5.20.2-1
Depends: libc, perl
Source: feeds/packages/lang/perl
License: GPL-1.0+ Artistic-1.0-Perl
LicenseFiles: Copying Artistic README
Section: lang
Maintainer: Marcel Denia <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1318
Filename: perlbase-xsloader_5.20.2-1_ramips_24kec.ipk
Size: 2094
MD5Sum: 91262166c3d52c2b218079009eb12b86
SHA256sum: 7243cbad0f983c5642c3ecc31c898b4344aedc25ba64453446516238406d34a3
Description: XSLoader perl module
Package: pgsql-cli
Version: 9.0.17-1
Depends: libc, libpq
Source: feeds/packages/libs/postgresql
License: PostgreSQL
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 112851
Filename: pgsql-cli_9.0.17-1_ramips_24kec.ipk
Size: 113477
MD5Sum: 7fec5743ba19e21d714452457b92f5df
SHA256sum: a0c1b1e8b9bc62e82aae18e7996a27ffbd708f0fd7375df6567308ddc6bfb18a
Description: Command Line Interface (CLI) to PostgreSQL databases.
Package: pgsql-server
Version: 9.0.17-1
Depends: libc, libpq
Source: feeds/packages/libs/postgresql
License: PostgreSQL
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4577730
Filename: pgsql-server_9.0.17-1_ramips_24kec.ipk
Size: 4230431
MD5Sum: d01f380b2892057bbe55b08cf31ff019
SHA256sum: 71817ae8400db4ebc7c41b753e691f08014d8ea1906b17d884601111022e13ef
Description: PostgreSQL databases Server.
Package: pgsqlodbc
Version: 2.3.2-1
Depends: libc, unixodbc, libpq
Source: feeds/packages/libs/unixodbc
License: prog GPL libs LGPL
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 84318
Filename: pgsqlodbc_2.3.2-1_ramips_24kec.ipk
Size: 85045
MD5Sum: 9d88c366dda5262425ce2a730f8a43ac
SHA256sum: c6411d2fea539faf2ced92f599f277a1b58443dc06ae5af8baa044ba25b2bf42
Description: Postgresql driver for ODBC.
Package: php5-cgi
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 954466
Filename: php5-cgi_5.6.6-1_ramips_24kec.ipk
Size: 953498
MD5Sum: eabe15c10e674bfa8c296faf5ad836a5
SHA256sum: b187203a051967ac89f12f6421d16654758a38e9b2a517bf501449ea61feafbf
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains the CGI version of the PHP5 interpreter.
Package: php5-cli
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 961298
Filename: php5-cli_5.6.6-1_ramips_24kec.ipk
Size: 960371
MD5Sum: c6c0be49370a44961dc02f9052b000aa
SHA256sum: 8acb5a3ab08309cb2b2bdd385cbb60da34c0102e3eb0fec079a4ec72f2d5256f
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains the CLI version of the PHP5 interpreter.
Package: php5-fastcgi
Version: 5.6.6-1
Depends: libc, php5, php5-cgi
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 543
Filename: php5-fastcgi_5.6.6-1_ramips_24kec.ipk
Size: 1348
MD5Sum: c8077bd652f64a8afbed12573b9dfc6d
SHA256sum: 98bf5dccac552a67f3f49857e5aed406ac04b008237e9ee67de916cf6efe380c
Description: As FastCGI support is now a core feature the php5-fastcgi package now depends
on the php5-cgi package, containing just the startup script.
Package: php5-fpm
Version: 5.6.6-1
Depends: libc, php5, php5-cgi
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 995376
Filename: php5-fpm_5.6.6-1_ramips_24kec.ipk
Size: 994489
MD5Sum: 701b4fffe086fbd8f4c99d57c2c0790d
SHA256sum: e59c58345b8a66c06e624947c4ac7bb5367bc1ef68370885e0396325f7c560e2
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains the FastCGI Process Manager of the PHP5 interpreter.
Package: php5-mod-calendar
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9268
Filename: php5-mod-calendar_5.6.6-1_ramips_24kec.ipk
Size: 9999
MD5Sum: cc879a5cefab6d55d4040cd6ace92d4c
SHA256sum: 11c753fc69a525b0a8555eab1d26690c64b5c2d280462306c6d700e1c689ff9e
Description: Calendar shared module
Package: php5-mod-ctype
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2295
Filename: php5-mod-ctype_5.6.6-1_ramips_24kec.ipk
Size: 3050
MD5Sum: 2c1c7355bb39e6d6f254daa9732dc5f5
SHA256sum: 4544a98fcfff522856d90e6790a270fa48f810ee21806b3090ac9984df17b398
Description: Ctype shared module
Package: php5-mod-curl
Version: 5.6.6-1
Depends: libc, php5, libcurl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24341
Filename: php5-mod-curl_5.6.6-1_ramips_24kec.ipk
Size: 25041
MD5Sum: b4b6c7da8948323483a516881969a9f7
SHA256sum: ad0d9454a3503c4b4c0d60676f6137ad32ca205a1445ea9cd8dd68b2258525f1
Description: cURL shared module
Package: php5-mod-dom
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41012
Filename: php5-mod-dom_5.6.6-1_ramips_24kec.ipk
Size: 41646
MD5Sum: d5a31525b70569d9dbf4efd0cf5cb4a0
SHA256sum: 3c7a6cc2df1fd4324344c49dbfc7a4a959c761db8200d53d741f3a6f6bc5e559
Description: DOM shared module
Package: php5-mod-exif
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21042
Filename: php5-mod-exif_5.6.6-1_ramips_24kec.ipk
Size: 21443
MD5Sum: 6992ec1def10e351eb7131c736a1f64e
SHA256sum: 5ff160e2cd8e39d9663d36288c890cb5aba8006a8477ad36394f2a2277781b24
Description: EXIF shared module
Package: php5-mod-fileinfo
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 243132
Filename: php5-mod-fileinfo_5.6.6-1_ramips_24kec.ipk
Size: 240923
MD5Sum: 81425a5b4239a8d02a115ba4ff59f676
SHA256sum: 45026f6fabe1b189f1f496f75caed5b400973ba4da4262494f3da4916c01d6b4
Description: Fileinfo shared module
Package: php5-mod-ftp
Version: 5.6.6-1
Depends: libc, php5, libopenssl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13576
Filename: php5-mod-ftp_5.6.6-1_ramips_24kec.ipk
Size: 14280
MD5Sum: 47f88bef93592237899a78927d59aa03
SHA256sum: 88ac132609a5c82f77ff8b7caf126a4ccec633fc957b48a5ccaa3715990a9cd3
Description: FTP shared module
Package: php5-mod-gd
Version: 5.6.6-1
Depends: libc, php5, libjpeg, libpng
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 93983
Filename: php5-mod-gd_5.6.6-1_ramips_24kec.ipk
Size: 94446
MD5Sum: bc13513695d8bb333181b1aa83869a8e
SHA256sum: f8a3f89e0a8dfa56d16087df2d7c9cf0a1f28e42096950a6b634a43553003aa7
Description: GD graphics shared module
Package: php5-mod-gettext
Version: 5.6.6-1
Depends: libc, php5, libintl-full
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2591
Filename: php5-mod-gettext_5.6.6-1_ramips_24kec.ipk
Size: 3329
MD5Sum: 7764c25f96267bbf0b3a6bcbc237f82a
SHA256sum: d6149bdb10750ff2db4c999c20c06f09bcef1c1251206b1463e7d460f2192892
Description: Gettext shared module
Package: php5-mod-gmp
Version: 5.6.6-1
Depends: libc, php5, libgmp
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12412
Filename: php5-mod-gmp_5.6.6-1_ramips_24kec.ipk
Size: 13140
MD5Sum: 602693edde755802b2046535eed00783
SHA256sum: a042e2027bc87980542b372f0206508659265e8f464cec522a866322f383b92d
Description: GMP shared module
Package: php5-mod-hash
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 88253
Filename: php5-mod-hash_5.6.6-1_ramips_24kec.ipk
Size: 88246
MD5Sum: 2a62d2022a2672dd16177025d999c11a
SHA256sum: a06846320df1a22a96acee4653c5486dea71f83a0cc44dbabae109cf6a57b522
Description: Hash shared module
Package: php5-mod-iconv
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15218
Filename: php5-mod-iconv_5.6.6-1_ramips_24kec.ipk
Size: 15972
MD5Sum: 1d3be2601f9e8ae28c39ca3e6574b4f8
SHA256sum: 7102b4248268d4a0c4aaf54223ba9e20d8250b93d631a9d50f74a4f684365d9e
Description: iConv shared module
Package: php5-mod-json
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11858
Filename: php5-mod-json_5.6.6-1_ramips_24kec.ipk
Size: 12608
MD5Sum: e85dcc86df894ddfa92b5b273277c8d4
SHA256sum: aa02bf4adfb73bc03ef5d4058d028e1b77e5c691f919213ae876ff88b050e89a
Description: JSON shared module
Package: php5-mod-ldap
Version: 5.6.6-1
Depends: libc, php5, libopenldap, libsasl2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17449
Filename: php5-mod-ldap_5.6.6-1_ramips_24kec.ipk
Size: 18192
MD5Sum: bac21457fa13579eb48466a861514fab
SHA256sum: 5b5fe1af2b6dbb60dcb98f5953fe8225bdf69823db3959f7e878ed77d3df92c2
Description: LDAP shared module
Package: php5-mod-mbstring
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 608160
Filename: php5-mod-mbstring_5.6.6-1_ramips_24kec.ipk
Size: 604859
MD5Sum: c0ba953fb5a46ef4207a1da6f2ac89eb
SHA256sum: 1f78faa48992df7c7c0e7ba5300f2c83cf1d430330920c0902dc0fc4c5dd69fe
Description: MBString shared module
Package: php5-mod-mcrypt
Version: 5.6.6-1
Depends: libc, php5, libmcrypt, libltdl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11227
Filename: php5-mod-mcrypt_5.6.6-1_ramips_24kec.ipk
Size: 11931
MD5Sum: f3b5d061ff247735bbb47e44c19c3278
SHA256sum: c0a717237fbcf28633504cbf97785d3d5805b9f172356f41b2b5f95b1155c72b
Description: Mcrypt shared module
Package: php5-mod-mysql
Version: 5.6.6-1
Depends: libc, php5, libmysqlclient
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13763
Filename: php5-mod-mysql_5.6.6-1_ramips_24kec.ipk
Size: 14481
MD5Sum: 67c8eb6bcffb0b356b7b3604bff57504
SHA256sum: 8cd1eb4c6873e632c0325ba100d331fd7e1ddf74e3bbd0d47974a0eec8484449
Description: MySQL shared module
Package: php5-mod-mysqli
Version: 5.6.6-1
Depends: libc, php5, libmysqlclient
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32913
Filename: php5-mod-mysqli_5.6.6-1_ramips_24kec.ipk
Size: 33591
MD5Sum: 6db34bd38f68d822b1df24de6b7754d6
SHA256sum: 742a849eb8f95100dfa2ba7e5ed298749f58bd5e7805b677146e0ba1dede53b2
Description: MySQL Improved Extension shared module
Package: php5-mod-openssl
Version: 5.6.6-1
Depends: libc, php5, libopenssl
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42119
Filename: php5-mod-openssl_5.6.6-1_ramips_24kec.ipk
Size: 42630
MD5Sum: f93801b957568435d3e4f79865e7b0ba
SHA256sum: cf0f0161d431f24ccfd0a46223c430da091cefa33d9c8b081b3f05eab85b70b6
Description: OpenSSL shared module
Package: php5-mod-pcntl
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8621
Filename: php5-mod-pcntl_5.6.6-1_ramips_24kec.ipk
Size: 9395
MD5Sum: 70f92b22e9f1fef71bde31ae151e91a2
SHA256sum: e3d60ea5f4d15b73e828d58b708f0e0916011c4581760ded66833bcd86655afc
Description: PCNTL shared module
Package: php5-mod-pdo-mysql
Version: 5.6.6-1
Depends: libc, php5, php5-mod-pdo, libmysqlclient
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9933
Filename: php5-mod-pdo-mysql_5.6.6-1_ramips_24kec.ipk
Size: 10725
MD5Sum: f77d441c176520125a1368ad2457187d
SHA256sum: 8b9c385ee676ae707fe49deba2ef0fb23b499669faa4efaac93f16a4353553a5
Description: PDO driver for MySQL shared module
Package: php5-mod-pdo-pgsql
Version: 5.6.6-1
Depends: libc, php5, php5-mod-pdo, libpq
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13666
Filename: php5-mod-pdo-pgsql_5.6.6-1_ramips_24kec.ipk
Size: 14431
MD5Sum: e12f45017974911b6146b821bd6f64b7
SHA256sum: fa945ac204eeeb40614a0dca2e68dbdaca891c391f341f0fd0b21d1f82c7d9a9
Description: PDO driver for PostgreSQL shared module
Package: php5-mod-pdo-sqlite
Version: 5.6.6-1
Depends: libc, php5, php5-mod-pdo, libsqlite3, librt
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8575
Filename: php5-mod-pdo-sqlite_5.6.6-1_ramips_24kec.ipk
Size: 9369
MD5Sum: 13b3b84afab23b8f7aef8fdb167b9b3c
SHA256sum: 2ecca5b8ed14e7cb72eda14d4668c1cadabd90f22fbe14f6d0622ae1dec03489
Description: PDO driver for SQLite 3.x shared module
Package: php5-mod-pdo
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33040
Filename: php5-mod-pdo_5.6.6-1_ramips_24kec.ipk
Size: 33708
MD5Sum: 33bf1ddab5df484289be85bd3769a294
SHA256sum: b13db71e409960f0da63147bd579ee61352de443a073bbf4ff4dfea82e30f442
Description: PHP Data Objects shared module
Package: php5-mod-pgsql
Version: 5.6.6-1
Depends: libc, php5, libpq
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34570
Filename: php5-mod-pgsql_5.6.6-1_ramips_24kec.ipk
Size: 35163
MD5Sum: 4fe117ef851b5b7923b88b83bfecbe2f
SHA256sum: c9acfba71213ec6eab4b63ee5f35389a03a5208e24294b4cefbdb198874a0ffb
Description: PostgreSQL shared module
Package: php5-mod-session
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24545
Filename: php5-mod-session_5.6.6-1_ramips_24kec.ipk
Size: 25262
MD5Sum: 296b0631e3706a09523f5a104a45c6f7
SHA256sum: 76c1a679c908ff2c81ecd024b9a8cdd841258f97da2e6acb60ce804fcdc7b1ba
Description: Session shared module
Package: php5-mod-shmop
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3271
Filename: php5-mod-shmop_5.6.6-1_ramips_24kec.ipk
Size: 4005
MD5Sum: a51a1634cec4746b3c9eeeeea276bd97
SHA256sum: 54322fc8b72919225c8ea5588095de8b74931b5c932afadb443e81130f321e45
Description: Shared Memory shared module
Package: php5-mod-simplexml
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15718
Filename: php5-mod-simplexml_5.6.6-1_ramips_24kec.ipk
Size: 16446
MD5Sum: e33407033a9dada7c4b45da6966d0d2d
SHA256sum: f6fe31d8c3b0300a1c0e4f0d5149412a583f240e57b80342611ddc92128b4fa3
Description: SimpleXML shared module
Package: php5-mod-soap
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 103273
Filename: php5-mod-soap_5.6.6-1_ramips_24kec.ipk
Size: 103994
MD5Sum: d2be635a092ddbc4332eff597c94d752
SHA256sum: 0a90c2b7d7fcce79a74452a99d0a18007a4bb4d962257161a28ffb0814a11bcf
Description: SOAP shared module
Package: php5-mod-sockets
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26213
Filename: php5-mod-sockets_5.6.6-1_ramips_24kec.ipk
Size: 26899
MD5Sum: d15aab318da966cd18f11b3def73fc4f
SHA256sum: fd8595996cb75fa693d2bb3a2690438f5c60765cb234a1ca797cd63cc49e8e39
Description: Sockets shared module
Package: php5-mod-sqlite3
Version: 5.6.6-1
Depends: libc, php5, libsqlite3
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13628
Filename: php5-mod-sqlite3_5.6.6-1_ramips_24kec.ipk
Size: 14344
MD5Sum: 4e45ced086f2f37dc46b31c502f5f574
SHA256sum: 02e1be41b162d507cee56f301dc7d7c2ebaccc6a03623b06775f0abbc9f36334
Description: SQLite3 shared module
Package: php5-mod-sysvmsg
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5024
Filename: php5-mod-sysvmsg_5.6.6-1_ramips_24kec.ipk
Size: 5764
MD5Sum: c59f9917993b31f93ea4b32d27c829bb
SHA256sum: fce70e7e4180693c5821ad71d8f907395e7b5410bb1fc6b5dcb91faa150c68ad
Description: System V messages shared module
Package: php5-mod-sysvsem
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2963
Filename: php5-mod-sysvsem_5.6.6-1_ramips_24kec.ipk
Size: 3702
MD5Sum: f21aa68043967ef4aa2e077bbfd9a090
SHA256sum: e286538c19a4ef3c1ef1d548bbb3f6dd2995c740c1903e2f9502a1bdabc806e8
Description: System V shared memory shared module
Package: php5-mod-sysvshm
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3922
Filename: php5-mod-sysvshm_5.6.6-1_ramips_24kec.ipk
Size: 4670
MD5Sum: 54ed0fec4c01104cdf62ba001ad1f328
SHA256sum: 42503d4e2a3744afb29e7ed3b009a4b0ed42b8938cbf2019c3786b3a23043a49
Description: System V semaphore shared module
Package: php5-mod-tokenizer
Version: 5.6.6-1
Depends: libc, php5
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4921
Filename: php5-mod-tokenizer_5.6.6-1_ramips_24kec.ipk
Size: 5672
MD5Sum: b2ca1abd299c7ede87328106f642db79
SHA256sum: 3276fec3a5d1886c6dba44e8cdce5816235cd7a951298672635cd36920097055
Description: Tokenizer shared module
Package: php5-mod-xml
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14139
Filename: php5-mod-xml_5.6.6-1_ramips_24kec.ipk
Size: 14862
MD5Sum: 514d1a935e98cbe0feb4e8e8b097d21c
SHA256sum: fac2f33856defbe31e04f072a9840c8d323ed1d53786d917e090e22e1017ba14
Description: XML shared module
Package: php5-mod-xmlreader
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8366
Filename: php5-mod-xmlreader_5.6.6-1_ramips_24kec.ipk
Size: 9147
MD5Sum: 1ae39b718aa9ef3fac044e92e086d414
SHA256sum: aafcbb78136a0fbc827fc3f64ddf7e370fee4af13240ac128283419027d60446
Description: XMLReader shared module
Package: php5-mod-xmlwriter
Version: 5.6.6-1
Depends: libc, php5, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8552
Filename: php5-mod-xmlwriter_5.6.6-1_ramips_24kec.ipk
Size: 9237
MD5Sum: 41964183d31f28cf1e8164c5fb4f497c
SHA256sum: 53553173982f8ae7b07de7e54020bb66900fcf34956d4485788f1b8229868c73
Description: XMLWriter shared module
Package: php5-mod-zip
Version: 5.6.6-1
Depends: libc, php5, zlib
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41929
Filename: php5-mod-zip_5.6.6-1_ramips_24kec.ipk
Size: 42630
MD5Sum: 27c3e8243a13d1f47289ad787607319e
SHA256sum: 48a1ed36cf02fde38503b0301440723481595e03d2247bd4e4a9a31ce7c2842b
Description: ZIP shared module
Package: php5
Version: 5.6.6-1
Depends: libc, libpcre, zlib, libxml2
Source: feeds/packages/lang/php5
License: PHPv3.01
LicenseFiles: LICENSE
Section: lang
Maintainer: Michael Heimpold <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3306
Filename: php5_5.6.6-1_ramips_24kec.ipk
Size: 4219
MD5Sum: 4af2bdbbe71dbed1a3375e07c21b0b71
SHA256sum: 0ce7cd19abcfabe1ff4a099beb33c4dea8341a7a0038c242793256959338d215
Description: PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
This package contains only the PHP config file. You must actually choose
your PHP flavour (cli, cgi or fastcgi).
Package: picocom
Version: 1.7-1
Depends: libc
Source: feeds/packages/utils/picocom
License: GPL-2.0+
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10375
Filename: picocom_1.7-1_ramips_24kec.ipk
Size: 11101
MD5Sum: 721c7a5496088ffe47ee25d040b2a3ab
SHA256sum: fe2756ce9ad54efd3c55b215f202e111ac287e111758ec502c8318d5b8c10f1c
Description: minimal dumb-terminal emulation program
Package: polipo
Version: 1.1.1-1
Depends: libc
Source: feeds/packages/net/polipo
Section: net
Maintainer: Gabriel Kerneis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99642
Filename: polipo_1.1.1-1_ramips_24kec.ipk
Size: 100363
MD5Sum: f07c68cbc89be26fb93044a75d075ef5
SHA256sum: 7913fa57eafb535dc8aef88c1ad2528e326d994341f89fe545419a2af073b707
Description: Polipo is a small and fast caching web proxy (a web cache, an HTTP proxy,
a proxy server). While Polipo was designed to be used by one person or a
small group of people, there is nothing that prevents it from being used
by a larger group.
Package: portaudio
Version: 19_20140130-1
Depends: libc, alsa-lib, libpthread, librt
Source: feeds/packages/sound/portaudio
License: MIT
LicenseFiles: LICENSE.txt
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48497
Filename: portaudio_19_20140130-1_ramips_24kec.ipk
Size: 49581
MD5Sum: 15a4d62aede6bbb2866ebd830e430a4b
SHA256sum: 1c9ed5c98e761cf691ee26179c65b77346895bb82a106c2f194dd2db80268254
Description: PortAudio is a free, cross-platform, open-source, audio I/O library. It lets
you write simple audio programs in 'C' or C++ that will compile and run on many
platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is
intended to promote the exchange of audio software between developers on
different platforms. Many applications use PortAudio for Audio I/O.
Package: portmap
Version: 6.0-4
Depends: libc, libwrap, librpc
Source: feeds/packages/net/portmap
License: BSD-4c
LicenseFiles: portmap.man
Section: net
Require-User: rpc=65533:rpc=65533
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6899
Filename: portmap_6.0-4_ramips_24kec.ipk
Size: 7727
MD5Sum: 48259ddc0f658c6bcd24167f1397dbb2
SHA256sum: de78b4bf3c41a54720636a718980ed183eb6afd1e777af6dab2789f38e678503
Description: Portmap is a server that converts RPC (Remote Procedure Call) program
numbers into DARPA protocol port numbers.
Package: pos2kml
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 284726
Filename: pos2kml_2.4.2_p9_ramips_24kec.ipk
Size: 285229
MD5Sum: 9b21a2f58e217829c8e05e92433ad9ed
SHA256sum: a8c7d54c03eba3759cb7056e928145b91779bafbd4564cc7da4204e4b3adeebe
Description: Solution to KML converter
Package: postfix
Version: 3.0.0-1
Depends: libc, libopenssl, libsasl2, libopenldap, libpcre
Source: feeds/packages/mail/postfix
License: IPL-1.0
LicenseFiles: LICENSE
Section: mail
Maintainer: Denis Shulyaka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3833072
Filename: postfix_3.0.0-1_ramips_24kec.ipk
Size: 3824329
MD5Sum: 5a376e85d40f0955d36811c93dc1bee5
SHA256sum: 9abb32758aa00cdb1fb9bb504efb0b299169cf9c1bf31e4c49087ade477ee132
Description: Postfix is Wietse Venema's mailer that started life as an alternative to the widely-used Sendmail program. Postfix attempts to be fast, easy to administer, and secure, while at the same time being sendmail compatible enough to not upset existing users. Thus, the outside has a sendmail-ish flavor, but the inside is completely different.
Package: privoxy
Version: 3.0.23-3
Depends: libc, libpcre, libpthread, zlib
Source: feeds/packages/net/privoxy
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
Require-User: privoxy=8118:privoxy=8118
Maintainer: [email protected]
Architecture: ramips_24kec
Installed-Size: 175846
Filename: privoxy_3.0.23-3_ramips_24kec.ipk
Size: 176585
MD5Sum: 2e90eee92a1f7af18b0ea03f9e432ab5
SHA256sum: 88061baeaafc7e563248eeac8760d7979d7203b2852d7c0f9d53db1827f79190
Description: Privoxy WEB Proxy - Homepage: www.privoxy.org
Package: procps-free
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3284
Filename: procps-free_3.2.8-1_ramips_24kec.ipk
Size: 4050
MD5Sum: 96a3d6c668ae2df2ed5f5e6071c2dfd1
SHA256sum: 2575a6f0ab6478ccfeebaf9d75e25b4ab55c118a04cd3277a362bde5168b325f
Description: Installs the applet free.
Package: procps-pgrep
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5981
Filename: procps-pgrep_3.2.8-1_ramips_24kec.ipk
Size: 6696
MD5Sum: e4c28a6e31f08746244cac262ef9a2d0
SHA256sum: 7c114322d23b51db16cb8f1e1340f5af186f8f9da60d590a96ef518400b4995a
Description: Installs the applet pgrep.
Package: procps-pkill
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5982
Filename: procps-pkill_3.2.8-1_ramips_24kec.ipk
Size: 6693
MD5Sum: 49f06f2bca9dc1dd0b60a01a03322bd0
SHA256sum: 3f254b65dea7de34981e28495b126c2d0759a3a918e49e9e14669cdf31b2efaa
Description: Installs the applet pkill.
Package: procps-pmap
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4565
Filename: procps-pmap_3.2.8-1_ramips_24kec.ipk
Size: 5282
MD5Sum: 950d581a3d97a377aa6a36da885c09ce
SHA256sum: 144045f5f826e9b1918025bff73cdd78c6181c8455a8ca2a696655e5a8b0ed03
Description: Installs the applet pmap.
Package: procps-ps
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30935
Filename: procps-ps_3.2.8-1_ramips_24kec.ipk
Size: 31637
MD5Sum: 96ab3af912186a16c5d9dcbd729867bc
SHA256sum: 677833d764b5e4775106cd06c4128ab21a5a63c6ae2d541508fc56565eeccf71
Description: Installs the applet ps.
Package: procps-pwdx
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2110
Filename: procps-pwdx_3.2.8-1_ramips_24kec.ipk
Size: 2863
MD5Sum: 83075b3f907c7f8fd3796cfccedd5387
SHA256sum: 00b6914b1ac2ce722bfb59bb628b4967e24730e12376378922e867f9ef5c0c3e
Description: Installs the applet pwdx.
Package: procps-skill
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6124
Filename: procps-skill_3.2.8-1_ramips_24kec.ipk
Size: 6824
MD5Sum: 2586fa2152beb89aff3d076882855a77
SHA256sum: 6f2c768b5eebe296a800c873c674ee16b7efb878bea5fcaa240f21817f80ec0d
Description: Installs the applet skill.
Package: procps-slabtop
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4617
Filename: procps-slabtop_3.2.8-1_ramips_24kec.ipk
Size: 5335
MD5Sum: 17a4309baa5333f89ef1eacaa4062759
SHA256sum: 80ef9d59243d494803cddbeb46dd5435db52acd371e4481759916777befa8217
Description: Installs the applet slabtop.
Package: procps-snice
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6124
Filename: procps-snice_3.2.8-1_ramips_24kec.ipk
Size: 6824
MD5Sum: 4809bce6ab4264e2f7a968d7edb33732
SHA256sum: 4457db8fe2d254fad3f32ed7da21900566254d5461118f6867e00d5771da957a
Description: Installs the applet snice.
Package: procps-tload
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3117
Filename: procps-tload_3.2.8-1_ramips_24kec.ipk
Size: 3883
MD5Sum: 080455b7005b29394e3c77cf6bfbf673
SHA256sum: f21aa9f8c864ef90217048f0b7d964507791b3941126d915e3951db567c5d52d
Description: Installs the applet tload.
Package: procps-top
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26483
Filename: procps-top_3.2.8-1_ramips_24kec.ipk
Size: 27229
MD5Sum: 2d981ee3ad90431c2d5047a55e0fe75b
SHA256sum: e38d3734f8ac5ae3aefe728707136eb5fd171ee4335f64a0d9fcb324fa933108
Description: Installs the applet top.
Package: procps-vmstat
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8248
Filename: procps-vmstat_3.2.8-1_ramips_24kec.ipk
Size: 9005
MD5Sum: 0a92a14a3813c4cd0b45636e93605fa3
SHA256sum: 7a6c9c8b89af621325b30c30223f36f1f50d9dd9508cbc9006bd4b782d01daca
Description: Installs the applet vmstat.
Package: procps-w
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4538
Filename: procps-w_3.2.8-1_ramips_24kec.ipk
Size: 5258
MD5Sum: 25653c9e665063bf3505efe1856d0d4d
SHA256sum: acdd24feae8baa3522d02c66d60e7c873906c02cd57a8e8b655b7fad2e057ee6
Description: Installs the applet w.
Package: procps-watch
Version: 3.2.8-1
Depends: libc, procps
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4486
Filename: procps-watch_3.2.8-1_ramips_24kec.ipk
Size: 5207
MD5Sum: 3415861414be2ba8d153a274664fea90
SHA256sum: d05a9ddb93f128f498af2057737c82849742ab603edbf05fa109ad5162364022
Description: Installs the applet watch.
Package: procps
Version: 3.2.8-1
Depends: libc, libncurses
Source: feeds/packages/utils/procps
License: GPL-2.0
LicenseFiles: COPYING COPYING.LIB
Section: utils
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24955
Filename: procps_3.2.8-1_ramips_24kec.ipk
Size: 25678
MD5Sum: 9ba9eba092b2f4d379dbbd87436cf769
SHA256sum: 30e5dcebf8c87472360eba89deba3d7400edc2b9610001e75e67ec3ab8b0e381
Description: procps is the package that has a bunch of small useful utilities that give
information about processes using the /proc filesystem. The package
includes the programs ps, top, vmstat, w, kill, free, slabtop, and skill.
Package: prosody
Version: 0.9.7-2
Depends: libc, luafilesystem, libidn, luaexpat, luasec, libopenssl, libidn, liblua
Source: feeds/packages/net/prosody
License: MIT/X11
Section: net
Require-User: prosody=54:prosody=54
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 223067
Filename: prosody_0.9.7-2_ramips_24kec.ipk
Size: 224207
MD5Sum: 1e5cba4a667d11a87c116f5d4b6c7c01
SHA256sum: 4b1d1d48a1012627f0c33bef1b82329e206e53fc1525c8e84808cba96ff81ffc
Description: Prosody is an exciting new server for Jabber/XMPP
written in Lua. It aims to be easy to use, and light
on resources
Package: protobuf
Version: 2.5.0-1
Depends: libc, zlib, libpthread, libstdcpp
Source: feeds/packages/libs/protobuf
Section: libs
Maintainer: Obinou <[email protected]>
Architecture: ramips_24kec
Installed-Size: 505715
Filename: protobuf_2.5.0-1_ramips_24kec.ipk
Size: 505968
MD5Sum: 801c03c1c0275a053ee101918fa9dea1
SHA256sum: 2c3a2d1b98cfee418ba5363f499b3996fb7c5dabfdb0f4997eede506f4942613
Description: Protocol Buffers are a way of encoding structured data in an efficient
yet extensible format. Google uses Protocol Buffers for almost all
of its internal RPC protocols and file formats.
Package: pthsem
Version: 2.0.8-3
Depends: libc
Source: feeds/packages/libs/pthsem
License: LGPL-2.1+
LicenseFiles: COPYING
Section: libs
Maintainer: Othmar Truniger <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25749
Filename: pthsem_2.0.8-3_ramips_24kec.ipk
Size: 26550
MD5Sum: fbdbc12c2a7ce1ebfafc7a6366ab5f63
SHA256sum: 71e7c3b784a7296ee6f97dc3b3f7a60e01ef72b75c3513661b73956639b14069
Description: GNU pth is a user mode multi threading library.
pthsem is an extend version, with support for semaphores added. It can be installed parallel to a normal pth.
Package: pv
Version: 1.5.3-1
Depends: libc
Source: feeds/packages/utils/pv
License: Artistic-2.0
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22084
Filename: pv_1.5.3-1_ramips_24kec.ipk
Size: 22931
MD5Sum: 048039bd030f9533d0ebb6d99e34ab57
SHA256sum: 690b9d54139aac9a8243d6153dfdcff00bdbed43ec5c66b345764859535b4bcd
Description: Pipe Viewer is a terminal-based tool for monitoring the progress of data
through a pipeline. It can be inserted into any normal pipeline between
two processes to give a visual indication of how quickly data is passing
through, how long it has taken, how near to completion it is, and an
estimate of how long it will be until completion.
Package: python-base
Version: 2.7.9-5
Depends: libc, libpthread, zlib
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 694984
Filename: python-base_2.7.9-5_ramips_24kec.ipk
Size: 692979
MD5Sum: 366bf6821ea3d416ea82e34b4620ddd7
SHA256sum: 5ee44cbbc7be2d2c8c10f5ff3eb6250be9422609d3ae177e65370aa3873eb697
Description: This package contains only the interpreter and the bare minimum
for the interpreter to start.
Package: python-codecs
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 844744
Filename: python-codecs_2.7.9-5_ramips_24kec.ipk
Size: 823396
MD5Sum: fb1509a7a2441915967dff5b7b5652c1
SHA256sum: cb7fcc4bf5ded0729291b3b619b3000fa33a41f9317bf5eb8f8a3d9c8f058a77
Description: Python 2.7 codecs + unicode support
Package: python-compiler
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 38066
Filename: python-compiler_2.7.9-5_ramips_24kec.ipk
Size: 38977
MD5Sum: 057d33c3a2aa2cb021deef044f86e775
SHA256sum: 80347a238f35fd62042405820e3bb3aeacb267f88d0aa3c01ef7270eb27cd7c0
Description: Python 2.7 compiler module
Package: python-ctypes
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 99190
Filename: python-ctypes_2.7.9-5_ramips_24kec.ipk
Size: 100060
MD5Sum: 99dabe0885de651793e6ce1658d4759c
SHA256sum: 2cf98cbc63d6b4130f3a59075beb9e7e8cbc78e8ebc1eea2a945a63fdbbfe311
Description: Python 2.7 ctypes module
Package: python-db
Version: 2.7.9-5
Depends: libc, python-light, libdb47
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100834
Filename: python-db_2.7.9-5_ramips_24kec.ipk
Size: 101394
MD5Sum: f50ba857f431083efd46e96cab72a203
SHA256sum: 15ea7b991ac0728ad90659a6d4950336e6f8d355c31031a6639abd7107afcb3f
Description: Python 2.7 db module
Package: python-decimal
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47101
Filename: python-decimal_2.7.9-5_ramips_24kec.ipk
Size: 48026
MD5Sum: 9eb2384c9eebfe2f853ac88d0c985576
SHA256sum: 49e0ca0a1903eaf034662f67a9a7e6c6d4af4bef6e09c641a207f7daa3ec2a22
Description: Python 2.7 decimal module
Package: python-distutils
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 541746
Filename: python-distutils_2.7.9-5_ramips_24kec.ipk
Size: 542624
MD5Sum: ecb220b8baa23c8f9df3735893271978
SHA256sum: e05490ec4e86c5abf386b95ec05177e131ef0b806151d3d170419442a0e5e5d7
Description: Python 2.7 distutils
Package: python-dns
Version: 1.12.0-1
Depends: libc, python
Source: feeds/packages/lang/python-dns
License: ISC
LicenseFiles: LICENSE
Section: language-python
Maintainer: Denis Shulyaka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90350
Filename: python-dns_1.12.0-1_ramips_24kec.ipk
Size: 91298
MD5Sum: 3e62a08cc03dc45610c645a7a9a83bc6
SHA256sum: fc43247f74fdae20ee45452981c9739d79d5c08414c9678abb480976fb70c2a1
Description: dnspython is a DNS toolkit for Python. It supports almost all record types. It can be used for queries, zone transfers, and dynamic updates. It supports TSIG authenticated messages and EDNS0.
Package: python-email
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 142425
Filename: python-email_2.7.9-5_ramips_24kec.ipk
Size: 143296
MD5Sum: e56ea0581df3cdf97c0fccf080cc1683
SHA256sum: de396fd947ce614e43e4ee510aac0f9e17f3bba7984bb148c8d39a15abd01856
Description: Python 2.7 email module
Package: python-gdbm
Version: 2.7.9-5
Depends: libc, python-light, libgdbm
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5578
Filename: python-gdbm_2.7.9-5_ramips_24kec.ipk
Size: 6389
MD5Sum: ea0cd73db215d3c4595360fea16588bb
SHA256sum: 99d7f9f9aff900f47eae04d09106a95e8854fe9993c9b2bc5ddd7f3a80e4f8d7
Description: Python 2.7 gdbm module
Package: python-imglib
Version: 1.1.7-1
Depends: libc, python, libfreetype, libjpeg, zlib
Source: feeds/packages/lang/python-imglib
License: CUSTOM
LicenseFiles: README
Section: language-python
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 259331
Filename: python-imglib_1.1.7-1_ramips_24kec.ipk
Size: 259634
MD5Sum: 7be965345bfd87370c25a4b9726721da
SHA256sum: a5f7f7214ba9c6646195765d23ea8a6a1dde5915b0fd9e6126090a1c15616d62
Description: The Python Imaging Library adds image processing capabilities to your
Python interpreter.
This library provides extensive file format support, an efficient
internal representation, and fairly powerful image processing
capabilities.
The core image library is designed for fast access to data stored in a
few basic pixel formats. It should provide a solid foundation for a
general image processing tool.
Package: python-light
Version: 2.7.9-5
Depends: libc, python-base, libffi, libbz2
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1233847
Filename: python-light_2.7.9-5_ramips_24kec.ipk
Size: 1233824
MD5Sum: 255803538a05d26d4483dce42dc810c4
SHA256sum: 69344a3f6cf8daaa7e5cf186a3fc3f7d446f18424a97c0ea53c7b7ca943333f1
Description: This package is essentially the python-base package plus
a few of the rarely used (and big) libraries stripped out
into separate packages.
Package: python-logging
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37240
Filename: python-logging_2.7.9-5_ramips_24kec.ipk
Size: 38143
MD5Sum: 4575ae2df386787b11b11eafd1e218c6
SHA256sum: ba18a173e64931975ee25ffe09cdb994cec41849931d1eae5322fce50d5e5415
Description: Python 2.7 logging module
Package: python-multiprocessing
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 46784
Filename: python-multiprocessing_2.7.9-5_ramips_24kec.ipk
Size: 47586
MD5Sum: 0837417cb546137766c4f3d98f9edfcd
SHA256sum: 0ecd4be4731517903802c0a87c7328073f2a3db281edcd90331d0623007743ea
Description: Python 2.7 multiprocessing
Package: python-mysql
Version: 1.2.5-1
Depends: libc, python, libmysqlclient
Source: feeds/packages/lang/python-mysql
License: GPL-2.0
Section: lang
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36337
Filename: python-mysql_1.2.5-1_ramips_24kec.ipk
Size: 37197
MD5Sum: 310b197a784784e5bbfd12b64e1f2597
SHA256sum: 73cedbaf1ce9977d5612c5e704fea1a23d44e670b602604adb29565f1b6fa090
Description: MySQLdb is an thread-compatible interface to the popular MySQL database
server that provides the Python database API.
Package: python-ncurses
Version: 2.7.9-5
Depends: libc, python-light, libncursesw
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25765
Filename: python-ncurses_2.7.9-5_ramips_24kec.ipk
Size: 26383
MD5Sum: 2f850fdebd5a47a967f8f790868acb7b
SHA256sum: 27f053de259167d0478cc9104d1d821b71e323c962193e68362276715e8e96c9
Description: Python 2.7 ncurses module
Package: python-openssl
Version: 2.7.9-5
Depends: libc, python-light, libopenssl
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32207
Filename: python-openssl_2.7.9-5_ramips_24kec.ipk
Size: 32836
MD5Sum: 5bdfa9c623e200840505d3bcb9a884a8
SHA256sum: a589aac6c0f67561c2175e3563ea86dd7b2cbae28d4b2f7b11e80083e9181120
Description: Python 2.7 SSL module
Package: python-pip
Version: 1.5.6-1
Depends: libc, python, python-setuptools
Source: feeds/packages/lang/python-pip
Section: lang
Architecture: ramips_24kec
Installed-Size: 739426
Filename: python-pip_1.5.6-1_ramips_24kec.ipk
Size: 726486
MD5Sum: 7a8accbc63a127f5c31e26b9e0a012b8
SHA256sum: b6e385f9df4d07a2bd2f8bd621e40adc4bdaa1157a89816a3b4c32579a6123b5
Description: A tool for installing and managing Python packages.
Package: python-pydoc
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 164555
Filename: python-pydoc_2.7.9-5_ramips_24kec.ipk
Size: 165456
MD5Sum: 41ece3a13d2c3ac865530ef43f95a826
SHA256sum: 2f607dd64ca1472d689659e366e75c7f9aefe14d842d10031b79c67f0c309f2e
Description: Python 2.7 pydoc module
Package: python-setuptools
Version: 7.0-1
Depends: libc, python
Source: feeds/packages/lang/python-setuptools
Section: lang
Architecture: ramips_24kec
Installed-Size: 203249
Filename: python-setuptools_7.0-1_ramips_24kec.ipk
Size: 204095
MD5Sum: b005e021ea8a2a95c167092f8124695e
SHA256sum: e5bf9951d5e8488bc018859ede83558d55dce6757e88761f148e1451dde83ef1
Description: Easily download, build, install, upgrade, and uninstall Python packages
Package: python-sqlite3
Version: 2.7.9-5
Depends: libc, python-light, libsqlite3
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42296
Filename: python-sqlite3_2.7.9-5_ramips_24kec.ipk
Size: 43136
MD5Sum: 7a8b3eecb2d1c2e472ee538e356f45aa
SHA256sum: 53d4890dec29b0530dd42e9c026ea2e910dbbd18b5ef25d70b950b97e5673df7
Description: Python 2.7 sqlite3 module
Package: python-unittest
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 53849
Filename: python-unittest_2.7.9-5_ramips_24kec.ipk
Size: 54730
MD5Sum: f9f6f3c00a220949cc90234bfe0755e0
SHA256sum: 22579de43362140694a5ea97160eac1f2e7fcbc6b55498a8b716878bfcaf2130
Description: Python 2.7 unittest module
Package: python-xml
Version: 2.7.9-5
Depends: libc, python-light
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 156221
Filename: python-xml_2.7.9-5_ramips_24kec.ipk
Size: 156690
MD5Sum: 4dfb6b69e5371a25a8c41bad1427e54c
SHA256sum: 7eb5e169905a66b6581702fbe5573783ad793b61430a87bbe10128f2d9acddd4
Description: Python 2.7 xml libs
Package: python3-asyncio
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 78982
Filename: python3-asyncio_3.4.3-2_ramips_24kec.ipk
Size: 79947
MD5Sum: 68991cc44e37f4da4ec6a25fbc36c60e
SHA256sum: 92578b0eef142b180f79322840f09a887b52419c21b9160170cb13f2acd8933c
Description: Python 3.4 asyncio module
Package: python3-base
Version: 3.4.3-2
Depends: libc, libpthread, zlib
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1120360
Filename: python3-base_3.4.3-2_ramips_24kec.ipk
Size: 1109043
MD5Sum: 57c24390e0fad85c4226a47e80a155bf
SHA256sum: e49d70d9e67810bad6d96b10e8a2f2b24517b89728056684e83a837c4c7f414b
Description: This package contains only the interpreter and the bare minimum
for the interpreter to start.
Package: python3-bottle
Version: 0.12.8-1
Depends: libc, python3
Source: feeds/packages/lang/python3-bottle
License: MIT
Section: lang
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42619
Filename: python3-bottle_0.12.8-1_ramips_24kec.ipk
Size: 43598
MD5Sum: 0e678635f8cc72534894c95ed661dcb1
SHA256sum: b7a2c3e4d13c85c4ee031d982c1e7a6c19ce665f0bd44b26e6c171010356df97
Description: Bottle is a fast, simple and lightweight WSGI micro web-framework for Python.
It is distributed as a single file module and has no dependencies other than the
Python Standard Library.
Package: python3-codecs
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 668295
Filename: python3-codecs_3.4.3-2_ramips_24kec.ipk
Size: 650855
MD5Sum: 4a86635421af9799b7c77215be9b9986
SHA256sum: 7a5823ce0ba71eaecd2074ab8916b88379b12f483f58082c2a716abf33c9ce22
Description: Python 3.4 codecs + unicode support
Package: python3-ctypes
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 96774
Filename: python3-ctypes_3.4.3-2_ramips_24kec.ipk
Size: 97520
MD5Sum: b54438000824a80076ca9df200b1ff74
SHA256sum: 0c0d898204da340c3346407eb461ba9014d6cdba0a8fcb143f8291744780c068
Description: Python 3.4 ctypes module
Package: python3-dbm
Version: 3.4.3-2
Depends: libc, python3-light, libdb47
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9795
Filename: python3-dbm_3.4.3-2_ramips_24kec.ipk
Size: 10604
MD5Sum: 812a1a7ed12949db5faa0098096f1b5b
SHA256sum: cbbc0dd7ae36bb612997faabd9d42b8c703563e96e964f507ab9b013b54cea78
Description: Python 3.4 dbm module
Package: python3-decimal
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 128966
Filename: python3-decimal_3.4.3-2_ramips_24kec.ipk
Size: 129375
MD5Sum: 60244544b9a07910aa3c891b456b7b1c
SHA256sum: 11604168bb3ec86d4b866be1e85c217c463e4ce85c9a5de11eb6a91ce7d822b4
Description: Python 3.4 decimal module
Package: python3-distutils
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 771621
Filename: python3-distutils_3.4.3-2_ramips_24kec.ipk
Size: 772495
MD5Sum: f9575ef75b3b77910800e6b78782871a
SHA256sum: 96b0c100c23ad32dddfb2cfbcce7a016d827f5d1e90444b90a060b6c099073b4
Description: Python 3.4 distutils module
Package: python3-email
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94326
Filename: python3-email_3.4.3-2_ramips_24kec.ipk
Size: 95233
MD5Sum: 15fd63a77276670f5329826abd279bf6
SHA256sum: 3b3d15bb91ca1dc5bc3aa6d456c9ab0ac9e2f1c7efb3bec4ced1f5d23f6ee2c5
Description: Python 3.4 email module
Package: python3-gdbm
Version: 3.4.3-2
Depends: libc, python3-light, libgdbm
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5963
Filename: python3-gdbm_3.4.3-2_ramips_24kec.ipk
Size: 6773
MD5Sum: 774837bbe1da5767fe469a74823f801b
SHA256sum: 7a4038bb8717a9a7f35c281191c0b6880030815801c565e41b41e554caabfb9e
Description: Python 3.4 gdbm module
Package: python3-light
Version: 3.4.3-2
Depends: libc, python3-base, libffi, libbz2
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1333377
Filename: python3-light_3.4.3-2_ramips_24kec.ipk
Size: 1333207
MD5Sum: 933813352b4f741d71c5f8f5d999192b
SHA256sum: ef52d62c00494ae0d2e6a8c9af27050a55b1c06f822f7c8386acd783a26475a7
Description: This package is essentially the python3-base package plus
a few of the rarely used (and big) libraries stripped out
into separate packages.
Package: python3-logging
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 41434
Filename: python3-logging_3.4.3-2_ramips_24kec.ipk
Size: 42337
MD5Sum: cfb7210ddbae197272a0851cc12d76f8
SHA256sum: 3abb14d8092febdddca02f7cf41059879c64f3b3de0da60d9a1907e4d834ba69
Description: Python 3.4 logging module
Package: python3-multiprocessing
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 55574
Filename: python3-multiprocessing_3.4.3-2_ramips_24kec.ipk
Size: 56448
MD5Sum: 65e74b051540f7e43fb9145d3f68bdc6
SHA256sum: e88db934c851ad020cf4db76d703c12bd98c9bda707c7f1f8f7c88ee554a6ae8
Description: Python 3.4 multiprocessing
Package: python3-ncurses
Version: 3.4.3-2
Depends: libc, python3-light, libncursesw
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29322
Filename: python3-ncurses_3.4.3-2_ramips_24kec.ipk
Size: 29951
MD5Sum: 99877dd94cc3f08c0e33090332ca5aa9
SHA256sum: dffe6cb05c16ac5d264d7b854c2da3e69467f59acc4e90ac9e6c6c7f4e23d04e
Description: Python 3.4 ncurses module
Package: python3-openssl
Version: 3.4.3-2
Depends: libc, python3-light, libopenssl
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33323
Filename: python3-openssl_3.4.3-2_ramips_24kec.ipk
Size: 33955
MD5Sum: 0c946af969de4fa80d841ae517b9a705
SHA256sum: d85031134721e581f02dbadb4866e12e7daa89bf820f416550b1dd24bec99254
Description: Python 3.4 SSL module
Package: python3-pydoc
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 162876
Filename: python3-pydoc_3.4.3-2_ramips_24kec.ipk
Size: 163813
MD5Sum: f9b8d49374e59ab396a0595e71e7ffae
SHA256sum: 31d9c7491e5dc4f978668ca60782ee0a1ad738b6a4bd15b42c85ef9a2b44cf2b
Description: Python 3.4 pydoc module
Package: python3-sqlite3
Version: 3.4.3-2
Depends: libc, python3-light, libsqlite3
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42293
Filename: python3-sqlite3_3.4.3-2_ramips_24kec.ipk
Size: 43132
MD5Sum: 670ba75590db4dbcfc0c9a6f9723e1cf
SHA256sum: 8d5fc820c46b9095b6cd4dabb1579ccdcc7a4f01a4d2f08b85ad3557389926ee
Description: Python 3.4 sqlite3 module
Package: python3-unittest
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 110530
Filename: python3-unittest_3.4.3-2_ramips_24kec.ipk
Size: 111457
MD5Sum: 6f63988d1b73d127f224551abf254e17
SHA256sum: 0db129c6920ac623592914ee14303e08211b448ee983d1c782cf3529aca3e786
Description: Python 3.4 unittest module
Package: python3-xml
Version: 3.4.3-2
Depends: libc, python3-light
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 160956
Filename: python3-xml_3.4.3-2_ramips_24kec.ipk
Size: 161510
MD5Sum: 961660baad459312147b0690967627b1
SHA256sum: 3e0bafb5468dd89080d9e5305f96cdfc12b7b5fbc81b9563fe645104d05f8603
Description: Python 3.4 xml libs
Package: python3
Version: 3.4.3-2
Depends: libc, python3-light, python3-asyncio, python3-codecs, python3-ctypes, python3-dbm, python3-decimal, python3-distutils, python3-email, python3-gdbm, python3-logging, python3-multiprocessing, python3-ncurses, python3-openssl, python3-pydoc, python3-sqlite3, python3-unittest, python3-xml
Source: feeds/packages/lang/python3
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: python3_3.4.3-2_ramips_24kec.ipk
Size: 1029
MD5Sum: 20efcbece7871e227d632477c526c0f0
SHA256sum: 9eebf3317f382c1a26ef9e42295131935bc82e8222163cd5745ee7439a24d7ba
Description: This package contains the (almost) full Python install.
It's python3-light + all other packages.
Package: python
Version: 2.7.9-5
Depends: libc, python-light, python-codecs, python-compiler, python-ctypes, python-db, python-decimal, python-distutils, python-email, python-gdbm, python-logging, python-multiprocessing, python-ncurses, python-openssl, python-pydoc, python-sqlite3, python-unittest, python-xml
Source: feeds/packages/lang/python
License: PSF
LicenseFiles: LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
Section: lang
Maintainer: Alexandru Ardelean <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: python_2.7.9-5_ramips_24kec.ipk
Size: 1023
MD5Sum: c3a902507b9dd5ea823f4553b69b013e
SHA256sum: 3c10788ffd17b088748e394e302802dfda9f570b79607ff5f49c84d59c88ddce
Description: This package contains the (almost) full Python install.
It's python-light + all other packages.
Package: radsecproxy
Version: 1.6.6-1
Depends: libc, libopenssl, libpthread
Source: feeds/packages/net/radsecproxy
Section: net
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47106
Filename: radsecproxy_1.6.6-1_ramips_24kec.ipk
Size: 47599
MD5Sum: 41e97f3b341d6b8fe387936ca9121090
SHA256sum: eed7acd9de01db58783e13b42a10f086ff9f1421d80fee4e54046bcc42749667
Description: A generic radius proxy for UDP/TLS (RadSec)
Package: redsocks
Version: 0.4-1
Depends: libc, libevent2
Source: feeds/packages/net/redsocks
License: Apache-2.0
Section: net
Maintainer: Johannes Morgenroth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34599
Filename: redsocks_0.4-1_ramips_24kec.ipk
Size: 35757
MD5Sum: 7de0ab6cad44c13a48cef13997f05dd0
SHA256sum: 2f77e84b395b9e81d18de4480ce4874cf56fef4ab8bb6634272297c43a74bccb
Description: Redsocks is a daemon running on the local system, that will transparently
tunnel any TCP connection via a remote SOCKS4, SOCKS5 or HTTP proxy server. It
uses the system firewall's redirection facility to intercept TCP connections,
thus the redirection is system-wide, with fine-grained control, and does
not depend on LD_PRELOAD libraries.
Redsocks supports tunneling TCP connections and UDP packets. It has
authentication support for both, SOCKS and HTTP proxies.
Also included is a small DNS server returning answers with the "truncated" flag
set for any UDP query, forcing the resolver to use TCP.
Package: remserial
Version: 1.4-1
Depends: libc
Source: feeds/packages/net/remserial
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5834
Filename: remserial_1.4-1_ramips_24kec.ipk
Size: 6532
MD5Sum: e30bb30a3305231b0fd492cbc6094303
SHA256sum: 6afad6d7f3162889654671f1f0b5c70d3bae6ab57f61d03b9b469f6fe6e8f725
Description: Bridge TCP/IP port with a device
Package: rng-tools
Version: 5-1
Depends: libc
Source: feeds/packages/utils/rng-tools
License: GPLv2
Section: utils
Maintainer: Hannu Nyman <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37320
Filename: rng-tools_5-1_ramips_24kec.ipk
Size: 37194
MD5Sum: 143c4a31476c46d31f7179187c65f31d
SHA256sum: 9e33458e683da6bd3b2f9588058a3d01a608ab05c36658a8ee8e0c0d255d6ee7
Description: Daemon for adding entropy to kernel entropy pool
Package: rnx2rtkp
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 478143
Filename: rnx2rtkp_2.4.2_p9_ramips_24kec.ipk
Size: 478205
MD5Sum: a4e45c26cadb5ae4dcadf6141901564a
SHA256sum: d579f8f2dc2d673f4a6817862a42a5eaf486b15598c7abb9a655134fdd97fc89
Description: Post-Processing Analysis
Package: rpcd-mod-lxc
Version: 20141012
Depends: libc, rpcd, liblxc
Source: feeds/packages/utils/rpcd-mod-lxc
License: ISC
Section: libs
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3060
Filename: rpcd-mod-lxc_20141012_ramips_24kec.ipk
Size: 3762
MD5Sum: c5e027bdebc1b9ccae40a31f7bc93643
SHA256sum: 3734db15f759d81e04898e4929d98e426b463fbe79eda591da92c6b527d05793
Description: LXC rpcd module
Package: rrdcgi1
Version: 1.0.50-2
Depends: libc, librrd1
Source: feeds/packages/utils/rrdtool1
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7069
Filename: rrdcgi1_1.0.50-2_ramips_24kec.ipk
Size: 8253
MD5Sum: 8b4225dba9cea86164caf8ef28574500
SHA256sum: 8ea37a9b46ad747bbcce7c94795b529bbf2445ff1dfd9ab3d5febef0ca8cef13
Description: RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will
not expand over time, and it presents useful graphs by processing the data
to enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put friendly user interface on it.
This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
librrd.so. The library is much smaller compared to the 1.2.x version with
separate dynamic linked libraries.
This package contains the rrdcgi tool used to create web pages containing
RRD graphs based on templates.
Package: rrdtool1
Version: 1.0.50-2
Depends: libc, librrd1
Source: feeds/packages/utils/rrdtool1
Section: utils
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11177
Filename: rrdtool1_1.0.50-2_ramips_24kec.ipk
Size: 12297
MD5Sum: b6efe2af56e515be4219b9f1c166cb38
SHA256sum: a89f696f6210000f2c8d4a47bc3eb601e02bc57bb62c7c30d1055d827a09e054
Description: RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will
not expand over time, and it presents useful graphs by processing the data
to enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put friendly user interface on it.
This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
librrd.so. The library is much smaller compared to the 1.2.x version with
separate dynamic linked libraries.
This package contains command line tools used to manage RRDs.
Package: rsync
Version: 3.1.1-2
Depends: libc, libpopt, zlib
Source: feeds/packages/net/rsync
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153497
Filename: rsync_3.1.1-2_ramips_24kec.ipk
Size: 154278
MD5Sum: 59e6e8a470db2be91288675263a80df2
SHA256sum: 6f10dd9bf6ddc4b0047440ae71b886330d6a30f9bbb3484a15b18166aabec6c5
Description: rsync is a program that allows files to be copied to and from remote machines
in much the same way as rcp. It has many more options than rcp, and uses the
rsync remote-update protocol to greatly speed up file transfers when the
destination file already exists.
The rsync remote-update protocol allows rsync to transfer just the differences
between two sets of files across the network link.
Package: rsyncd
Version: 3.1.1-2
Depends: libc, rsync
Source: feeds/packages/net/rsync
License: GPL-3.0
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 578
Filename: rsyncd_3.1.1-2_ramips_24kec.ipk
Size: 1397
MD5Sum: 1fa1541d68add419b0dd09a7829b0672
SHA256sum: 8abc44c13cf57e76ec3bddb6313c725209d440f4e24c9f90d6c9e601846e91bc
Description: rsyncd is a configuration file and initscript to utilize rsync as a daemon. It
uses the same binary as rsync.
Package: rtkrcv
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 593053
Filename: rtkrcv_2.4.2_p9_ramips_24kec.ipk
Size: 593059
MD5Sum: 4a42f3bd2f0bec58b242ee16b11f347b
SHA256sum: 44032cfe91458690fc5b8a6b3d8dffec5f7b49fc0cd2cac8961908fda2d8399a
Description: Real-Time Positioning
Package: rtl-sdr
Version: 2014-02-10
Depends: libc, librt, libpthread, librtlsdr
Source: feeds/packages/utils/rtl-sdr
License: GPLv2
LicenseFiles: COPYING
Section: utils
Maintainer: Vasilis Tsiligiannis <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43434
Filename: rtl-sdr_2014-02-10_ramips_24kec.ipk
Size: 44319
MD5Sum: f7f436d80d1f4e9cf52c3e34d5ff3409
SHA256sum: f67a44e5aa4c59c35b11dd3564ae27fd9a6e89561a5f6bbdf419125cc16f8ecb
Description: rtl-sdr allows DVB-T dongles based on the Realtek RTL2832U to be used as
an inexpensive SDR.
This package contains the utilities and daemons.
Package: rtorrent-rpc
Version: 0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a
Depends: libc, libcurl, libtorrent, libncursesw, libsigcxx, libpthread, xmlrpc-c-server
Source: feeds/packages/net/rtorrent
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 271569
Filename: rtorrent-rpc_0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a_ramips_24kec.ipk
Size: 271294
MD5Sum: ee701bb0316848d4c5925b5cfd7c8435
SHA256sum: 26faa61911b41ce8d00aed21b322c2565eb0b5d8150a3ea37ab37bb8a0fe6a6e
Description: rTorrent is a BitTorrent client for ncurses, using the libtorrent library.
The client and library is written in C++ with emphasis on speed and
efficiency, while delivering equivalent features to those found in GUI based
clients in an ncurses client.
This package is built with xmlrpc support
Package: rtorrent
Version: 0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a
Depends: libc, libcurl, libtorrent, libncursesw, libsigcxx, libpthread
Source: feeds/packages/net/rtorrent
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Peter Wagner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 267645
Filename: rtorrent_0.9.4-git-0-7343e33a6a0d279179b304a380bf011f1c8be64a_ramips_24kec.ipk
Size: 267563
MD5Sum: 3a54c2ac19a11b61f81d15f15d4cbcab
SHA256sum: 949e093a0f4dfab540ecd6165acd25dc9be1220e571fe6c4264bceaa7a15dc1e
Description: rTorrent is a BitTorrent client for ncurses, using the libtorrent library.
The client and library is written in C++ with emphasis on speed and
efficiency, while delivering equivalent features to those found in GUI based
clients in an ncurses client.
This package is built without xmlrpc support
Package: ruby-bigdecimal
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31409
Filename: ruby-bigdecimal_2.2.1-1_ramips_24kec.ipk
Size: 32168
MD5Sum: 6616a921593789f24b81cb67a891f348
SHA256sum: 8bb2c075fef6fa75d240bf10bfd570673a31c750bca20fe8875d61817ee5582a
Description: Provides bigdecimal* files
Package: ruby-cgi
Version: 2.2.1-1
Depends: libc, ruby, ruby-filelib, ruby-pstore
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28634
Filename: ruby-cgi_2.2.1-1_ramips_24kec.ipk
Size: 29415
MD5Sum: a45972025a7fd86b23ce01e682c3e405
SHA256sum: a160dedb622f9567f8328aefdedd8fc390788eda0bf69a10ca6e97aceb510249
Description: Ruby CGI support toolkit
Package: ruby-csv
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns, ruby-datetime, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22835
Filename: ruby-csv_2.2.1-1_ramips_24kec.ipk
Size: 23608
MD5Sum: a79558a14fbb48ae7f399ab358e2a72f
SHA256sum: 35ddd18cf9dac278ea72ee61ee68ef719df15bbbc23693cc6974b8c89eef25ba
Description: Provides csv.rb file
Package: ruby-datetime
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62467
Filename: ruby-datetime_2.2.1-1_ramips_24kec.ipk
Size: 63137
MD5Sum: 956b464cfb1dccf63fba31ce694fb1f9
SHA256sum: 5e83e4a43db83bd49e0ea0e9b1b71021eae6eebde50e5141e2499a94ee48d486
Description: Provides date.rb and time.rb
Package: ruby-dbm
Version: 2.2.1-1
Depends: libc, ruby, libdb47
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7009
Filename: ruby-dbm_2.2.1-1_ramips_24kec.ipk
Size: 7848
MD5Sum: e85c2dd6c69fce7f64ebdfaa52425864
SHA256sum: 6ce715a26eda3b0192e9ec042e506e312e702479f344a1cf5cfa2b50ecba4258
Description: The DBM class provides a wrapper to a Unix-style dbm or Database Manager library.
This package provides dbm.so file.
Package: ruby-debuglib
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread, ruby-prettyprint
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28937
Filename: ruby-debuglib_2.2.1-1_ramips_24kec.ipk
Size: 29578
MD5Sum: 224581dea6fd7e19a1c161f1f4fc939e
SHA256sum: c945cc5a4a044f5b68edcc4e9603b64e8ad30f46f622cbe1e6cbd2b75568f17b
Description: Provides files for debugging:
- benchmark.rb
- debug.rb
- objspace.so
- profile.rb
- profiler.rb
- tracer.rb
Package: ruby-digest
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23876
Filename: ruby-digest_2.2.1-1_ramips_24kec.ipk
Size: 24649
MD5Sum: 270fac03a32476ba85eb52b628e9a960
SHA256sum: 9dfce88b3e158c9c969fb4399e03cca29bd1aa3177044708f9b6051829e15707
Description: Provides digest* files. Can be configured to use OpenSSL or
bundled hash functions.
Package: ruby-drb
Version: 2.2.1-1
Depends: libc, ruby, ruby-filelib, ruby-patterns, ruby-socket
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24869
Filename: ruby-drb_2.2.1-1_ramips_24kec.ipk
Size: 25641
MD5Sum: bdc832d903f17aff20a4ea9a1cd84626
SHA256sum: 27101bd51da3c5e92bb3b0157316843e51111c13cd0383db38b9b37aa72bfa3b
Description: Provides drb* files
Package: ruby-enc-extra
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1388154
Filename: ruby-enc-extra_2.2.1-1_ramips_24kec.ipk
Size: 1258855
MD5Sum: cc5ff978208550f56de0aaa20d23878b
SHA256sum: db8598776dc0efc9dbc47a6b3eb64a03c239a4b422a8bc980a69749024570837
Description: Provides extra encodings not provided by ruby-enc:
- enc/big5.so
- enc/cp949.so
- enc/emacs_mule.so
- enc/euc_kr.so
- enc/euc_tw.so
- enc/gb18030.so
- enc/gb2312.so
- enc/gbk.so
- enc/iso_8859_10.so
- enc/iso_8859_11.so
- enc/iso_8859_13.so
- enc/iso_8859_14.so
- enc/iso_8859_15.so
- enc/iso_8859_16.so
- enc/iso_8859_2.so
- enc/iso_8859_3.so
- enc/iso_8859_4.so
- enc/iso_8859_5.so
- enc/iso_8859_6.so
- enc/iso_8859_7.so
- enc/iso_8859_8.so
- enc/iso_8859_9.so
- enc/koi8_r.so
- enc/koi8_u.so
- enc/shift_jis.so
- enc/trans/big5.so
- enc/trans/chinese.so
- enc/trans/emoji.so
- enc/trans/emoji_iso2022_kddi.so
- enc/trans/emoji_sjis_docomo.so
- enc/trans/emoji_sjis_kddi.so
- enc/trans/emoji_sjis_softbank.so
- enc/trans/escape.so
- enc/trans/gb18030.so
- enc/trans/gbk.so
- enc/trans/iso2022.so
- enc/trans/japanese.so
- enc/trans/japanese_euc.so
- enc/trans/japanese_sjis.so
- enc/trans/korean.so
- enc/trans/single_byte.so
- enc/trans/transdb.so
- enc/trans/utf8_mac.so
- enc/trans/utf_16_32.so
- enc/windows_1251.so
- enc/windows_31j.so
Package: ruby-enc
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9758
Filename: ruby-enc_2.2.1-1_ramips_24kec.ipk
Size: 10627
MD5Sum: 5b71e180614c0d8bfc7de9de5c707c4f
SHA256sum: c8b42ab1482ec467a84a64eb435d4c27218152c2f9e735c538cee0fddf0557db
Description: Provides ruby encoding library for encodings used directly by
libraries in Ruby Standard Library:
- enc/encdb.so
- enc/euc_jp.so
- enc/iso_8859_1.so
- enc/utf_16be.so
- enc/utf_16le.so
- enc/utf_32be.so
- enc/utf_32le.so
FYI: ASCII-8BIT, UTF-7, UTF-8 and US-ASCII are already in Core.
Package: ruby-erb
Version: 2.2.1-1
Depends: libc, ruby, ruby-cgi
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9706
Filename: ruby-erb_2.2.1-1_ramips_24kec.ipk
Size: 10487
MD5Sum: fc91fec7f7d615676f628b34c8e91272
SHA256sum: 8573b0704fe252568b9aac01d75bcb3c0c0ca8c99bd0c65971a73a96260cd3ec
Description: Provides erb* files
Package: ruby-fiddle
Version: 2.2.1-1
Depends: libc, ruby, libffi
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19542
Filename: ruby-fiddle_2.2.1-1_ramips_24kec.ipk
Size: 20319
MD5Sum: 5d4be2c3ed96a1bf779decb5a7453d0c
SHA256sum: 4a16490c073f2e121f029fd2ff75cfbf64c23b98f788f28cd17750ac919e30da
Description: Provides fiddle* files
Package: ruby-filelib
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29166
Filename: ruby-filelib_2.2.1-1_ramips_24kec.ipk
Size: 29973
MD5Sum: d6b76561f8fcd25ecfc1fb3f605f647b
SHA256sum: c86e2542a21f5d9065e9cbc57fa1e7b710234d30847cd918721fbcbac93db0b2
Description: Provides filesystem interaction files, including
path and temp:
- fileutils.rb
- find.rb
- pathname.rb
- pathname.so
- tempfile.rb
- tmpdir.rb
Package: ruby-gdbm
Version: 2.2.1-1
Depends: libc, ruby, libgdbm
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7509
Filename: ruby-gdbm_2.2.1-1_ramips_24kec.ipk
Size: 8298
MD5Sum: 9871221f4d7a3eaa16bdffe147ab0f67
SHA256sum: dd680751dd3217a84ed7bcd214d2963d233d574588fbe43a8664b0b651706d9c
Description: Provides gdbm* files
Package: ruby-gems
Version: 2.2.1-1
Depends: libc, ruby, ruby-net, ruby-rdoc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 217559
Filename: ruby-gems_2.2.1-1_ramips_24kec.ipk
Size: 218502
MD5Sum: 760ad94843501a9ffb3988f3fff653ca
SHA256sum: 5bffcc3202685357b3d31a0060133e0f8724e2198ebc6f28163a68d2a0b73eb9
Description: Provides rubygems for gems usage, download and installation
Package: ruby-io-console
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5576
Filename: ruby-io-console_2.2.1-1_ramips_24kec.ipk
Size: 6298
MD5Sum: f17cdf0f9a4847bb940c461dd58d7290
SHA256sum: bc5c4ed9ca7567745bba81755e33f65e4e97d43dcbb325b9fa19e78084835e01
Description: Provides io-console* files
Package: ruby-irb
Version: 2.2.1-1
Depends: libc, ruby, ruby-debuglib, ruby-filelib, ruby-math
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43278
Filename: ruby-irb_2.2.1-1_ramips_24kec.ipk
Size: 44169
MD5Sum: 0cffadf7c460b852c9fb54837cee6699
SHA256sum: 0dc4c4f031de8a902b4f4ce1329a573c8df330426cfd52b55ece30a8c3b21947
Description: Provides irb* files
Package: ruby-json
Version: 2.2.1-1
Depends: libc, ruby, ruby-datetime, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27218
Filename: ruby-json_2.2.1-1_ramips_24kec.ipk
Size: 28012
MD5Sum: f33c66f896026074bfe306cccf0685a1
SHA256sum: c75bcacfa78cdbdf4d25ef6848faeff843084b5853748e218b17ae5ebb62054f
Description: Provides json* files
Package: ruby-logger
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12863
Filename: ruby-logger_2.2.1-1_ramips_24kec.ipk
Size: 13653
MD5Sum: a32bbdffedebc2e967281cfabe7c7880
SHA256sum: 24e9e4d9bad2fe35b0fe84494db2e7bd1f651162f0e22ab4f36eea8a1f481f8b
Description: Provides log library, including syslog:
- logger.rb
- syslog.so
- syslog/logger.rb
Package: ruby-math
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28259
Filename: ruby-math_2.2.1-1_ramips_24kec.ipk
Size: 29083
MD5Sum: 989b1881286688ed05802b916066e07e
SHA256sum: 475baae41ea9f34a9a7ee215534aebbd4efefffbc78aba882044c2d48cae1ec1
Description: Provides math related files:
- cmath.rb
- complex.rb
- mathn.rb
- mathn/complex.so
- mathn/rational.so
- matrix.rb
- matrix/eigenvalue_decomposition.rb
- matrix/lup_decomposition.rb
- prime.rb
- rational.rb
Package: ruby-minitest
Version: 2.2.1-1
Depends: libc, ruby, ruby-gems
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 45183
Filename: ruby-minitest_2.2.1-1_ramips_24kec.ipk
Size: 46038
MD5Sum: a3b9041a0d51c893cddade10e5fc1fc7
SHA256sum: aeea60df3861bf9d88a64a0052a1b00b272708340ffada25ce82f01c13dfc5ac
Description: Provides minitest gem
Package: ruby-misc
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71942
Filename: ruby-misc_2.2.1-1_ramips_24kec.ipk
Size: 72887
MD5Sum: 7375ae04e662e9dd1453560f90707f1b
SHA256sum: 53e6c10e78622050c59960dd026489346712149e0d80bc21450ec4d44877317a
Description: This package contains miscellaneous files from stdlib
not splitted in other ruby packages like stringio:
- English.rb
- abbrev.rb
- base64.rb
- continuation.so
- coverage.so
- delegate.rb
- e2mmap.rb
- etc.so
- expect.rb
- fcntl.so
- fiber.so
- getoptlong.rb
- open3.rb
- ostruct.rb
- pty.so
- scanf.rb
- securerandom.rb
- set.rb
- shellwords.rb
- stringio.so
- strscan.so
- tsort.rb
- weakref.rb
Package: ruby-mkmf
Version: 2.2.1-1
Depends: libc, ruby, ruby-filelib, ruby-optparse, ruby-rbconfig
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26718
Filename: ruby-mkmf_2.2.1-1_ramips_24kec.ipk
Size: 27541
MD5Sum: f995dcd140cc50e363799ead6a941f45
SHA256sum: 58dd32280040eb5fb32496a4103342e61a216e276fec453d49b2ee80f24cb005
Description: Provides mkmf* files
Package: ruby-multithread
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14507
Filename: ruby-multithread_2.2.1-1_ramips_24kec.ipk
Size: 15330
MD5Sum: 94710535fc89fc6cb6e8fc50016d8365
SHA256sum: f0442435f988ee340ae8483303f9006d5a36f67f288425590dfa588adeca8b6b
Description: Provides files for multithread usage:
- io/nonblock.so
- io/wait.so
- thread.so (FYI, Thread is a core class)
- monitor.rb
- mutex_m.rb
- sync.rb
- thwait.rb
- timeout.rb
Package: ruby-net
Version: 2.2.1-1
Depends: libc, ruby, ruby-datetime, ruby-digest, ruby-filelib, ruby-uri
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90614
Filename: ruby-net_2.2.1-1_ramips_24kec.ipk
Size: 91495
MD5Sum: 73f80d9fa0ba98054e11c698d4a6720c
SHA256sum: b8b3239217c2a3cb6d8c319e49132bde9579afe37c575ab1d8cb2ee5a7531045
Description: Provides net* files
Package: ruby-nkf
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 123587
Filename: ruby-nkf_2.2.1-1_ramips_24kec.ipk
Size: 122926
MD5Sum: 1afe62b5f5b72caa129a1ebf1d012725
SHA256sum: 4652ae58c9cab1f5b255576ce4225c016a2c4a6e95ea27e073f3ba1c99d0cf51
Description: Provides nkf* files
Package: ruby-openssl
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc, libopenssl, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 100533
Filename: ruby-openssl_2.2.1-1_ramips_24kec.ipk
Size: 101199
MD5Sum: 65eab3672189c7c2a9a07843315f22d9
SHA256sum: 73ffa1901737cb794aade191f2ea0b0754e5ff484c5a2a43036273d9caea8ab1
Description: Provides openssl* files
Package: ruby-optparse
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16696
Filename: ruby-optparse_2.2.1-1_ramips_24kec.ipk
Size: 17502
MD5Sum: f276a2ce66883ae3a1d75d920d26e2df
SHA256sum: 08fbe2a8eef7e46bd0e4dcf0774f6e0ce5dc0915081ff79e4e04b14e4e9bb65a
Description: Provides optparse* files
Package: ruby-patterns
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6019
Filename: ruby-patterns_2.2.1-1_ramips_24kec.ipk
Size: 6790
MD5Sum: e05aef4df7c765eb71765a3f29b8f239
SHA256sum: e255cdb2e29fc4ac7caf578283ad1f9fd2e28598c5fe01c6ac64e8213183d4d6
Description: Provides design patterns helpers files:
- forwardable.rb
- observer.rb
- singleton.rb
Package: ruby-powerassert
Version: 2.2.1-1
Depends: libc, ruby, ruby-ripper
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6914
Filename: ruby-powerassert_2.2.1-1_ramips_24kec.ipk
Size: 7817
MD5Sum: 2fa39dd130825a002c43629bff231ed7
SHA256sum: a6c935ddbc8169aa96aadc9831b05c021673e1ce70dc9e28038054bc6df47aec
Description: Power Assert gem for Ruby. Power Assert shows each value of variables
and method calls in the expression. It is useful for testing, providing
which value wasn't correct when the condition is not satisfied
Package: ruby-prettyprint
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8676
Filename: ruby-prettyprint_2.2.1-1_ramips_24kec.ipk
Size: 9467
MD5Sum: 92abaf7b0d9fddfbe07006fef96375bb
SHA256sum: bdfaa8cc6cab11df65b152b5d1d69539c51ce78ad90fa1ac7637a5b66c778cfc
Description: Provides Pretty Print library:
- pp.rb
- prettyprint.rb
Package: ruby-pstore
Version: 2.2.1-1
Depends: libc, ruby, ruby-digest, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4853
Filename: ruby-pstore_2.2.1-1_ramips_24kec.ipk
Size: 5635
MD5Sum: a30f47827ad320e71f6000f01983a629
SHA256sum: 0757e873c17af1c18d1fd3a2a407d7cfc85335b9400aa5c277976abbf12591f9
Description: Provides pstore.rb file
Package: ruby-psych
Version: 2.2.1-1
Depends: libc, ruby, ruby-bigdecimal, ruby-datetime, ruby-misc, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71333
Filename: ruby-psych_2.2.1-1_ramips_24kec.ipk
Size: 72246
MD5Sum: 1e2cd5c2cf7733f7dfb43350211ed6fd
SHA256sum: 11cda71972dd0c7f653e3fe08f6f7cf9a2f36f8dc92c22e53f45e7f80e99dc1e
Description: Provides psych* files
Package: ruby-racc
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11242
Filename: ruby-racc_2.2.1-1_ramips_24kec.ipk
Size: 12019
MD5Sum: f833637e68baeac2e473817fff436321
SHA256sum: ff70eae2c5c4aebe68d119e0093e4f163b7728abc28bc2b50954990a601dca08
Description: Provides racc* files
Package: ruby-rake
Version: 2.2.1-1
Depends: libc, ruby, ruby-datetime, ruby-filelib, ruby-optparse, ruby-patterns, ruby-rbconfig
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 43993
Filename: ruby-rake_2.2.1-1_ramips_24kec.ipk
Size: 44846
MD5Sum: e8b46ae7db69787c99439e1728afa9a6
SHA256sum: 4eaeea177465d33f24b0e17297eea87520f7af9c7615c47810a2a9b0ed638e1e
Description: Provides rake* files
Package: ruby-rbconfig
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5755
Filename: ruby-rbconfig_2.2.1-1_ramips_24kec.ipk
Size: 6518
MD5Sum: 354f1b03e374945c4f5004c8e5317cde
SHA256sum: 22596b94df3e7ec3fc6ef25519d2ed3f473f0b11238c28cd33150cd9364594d7
Description: Provides rbconfig file
Package: ruby-rdoc
Version: 2.2.1-1
Depends: libc, ruby, ruby-erb, ruby-irb, ruby-json, ruby-racc, ruby-rake, ruby-yaml, ruby-zlib
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 556745
Filename: ruby-rdoc_2.2.1-1_ramips_24kec.ipk
Size: 522369
MD5Sum: 16810f5f46c87617672ebc9d71910315
SHA256sum: 12ec2da0848be61c6460c0535f5771d8d2d71f88f74767f9f455ea701b9ab967
Description: Provides rdoc* and ri files
Package: ruby-readline
Version: 2.2.1-1
Depends: libc, ruby, libncurses, libreadline
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9394
Filename: ruby-readline_2.2.1-1_ramips_24kec.ipk
Size: 10188
MD5Sum: cb8c63bd2179ea5899dd67ead031c9f4
SHA256sum: cea25079b50abff56711cfe660b80804798505d1c1c43af3a99e7a7caeefe0b3
Description: Provides readline* files
Package: ruby-rexml
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 69767
Filename: ruby-rexml_2.2.1-1_ramips_24kec.ipk
Size: 70682
MD5Sum: b6e0f91471d55b964bb0d65aafe4ba77
SHA256sum: 211f91e1022c82b5c583658760863319c6c6d116cee314b5ad7cddab893eb5b4
Description: Provides rexml* files
Package: ruby-rinda
Version: 2.2.1-1
Depends: libc, ruby, ruby-drb
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9288
Filename: ruby-rinda_2.2.1-1_ramips_24kec.ipk
Size: 10099
MD5Sum: f53544eb7af9659c908f710e733456f0
SHA256sum: 24bb26f976e9d3555d6dc893051321c45ec60c0010d6ac6b3e36bfbcea51d58a
Description: Provides rinda* files
Package: ruby-ripper
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 58434
Filename: ruby-ripper_2.2.1-1_ramips_24kec.ipk
Size: 59234
MD5Sum: 7f5edfe092b1411814cf511b5bd301e0
SHA256sum: 401633011f9df1592db59e919fa75b77bc414ee99c4bf32d093951d87ed7ae67
Description: Provides ripper* files
Package: ruby-rss
Version: 2.2.1-1
Depends: libc, ruby, ruby-net, ruby-nkf, ruby-rexml
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48218
Filename: ruby-rss_2.2.1-1_ramips_24kec.ipk
Size: 49066
MD5Sum: 771014fac350e082d535c4db380f335a
SHA256sum: 8c60aa1123da179b7c06d1f45c4605fee78f94b2cb708b2143033b16779797a9
Description: Provides rss* files
Package: ruby-sdbm
Version: 2.2.1-1
Depends: libc, ruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9741
Filename: ruby-sdbm_2.2.1-1_ramips_24kec.ipk
Size: 10513
MD5Sum: 70ca87bbb69043a1233edbc23e8a6464
SHA256sum: ed7dfacdbe7873ae6ac210cf53a3c27ac9e40ec3d0ded52345d0b7c3f70e7001
Description: Provides sdbm* files
Package: ruby-shell
Version: 2.2.1-1
Depends: libc, ruby, ruby-patterns
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12045
Filename: ruby-shell_2.2.1-1_ramips_24kec.ipk
Size: 12840
MD5Sum: e2a5e6e829b9bc06f4380ffad84693fd
SHA256sum: ab4914ad14d30f06662e2338401d15e96a4ee01efec6810ec153ac1d580893f3
Description: Provides shell* files
Package: ruby-socket
Version: 2.2.1-1
Depends: libc, ruby, ruby-multithread
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 79712
Filename: ruby-socket_2.2.1-1_ramips_24kec.ipk
Size: 80515
MD5Sum: f904006c4ac54cdaddc6bd8d92385099
SHA256sum: 97e0b89fd546e3f6d200d5d2483c47b9cb90bb4f182780b9e6b3f1b4a7c886df
Description: Provides socket-related files:
- gserver.rb
- ipaddr.rb
- resolv-replace.rb
- resolv.rb
- socket.rb
- socket.so
Package: ruby-stdlib
Version: 2.2.1-1
Depends: libc, ruby, ruby-misc, ruby-bigdecimal, ruby-cgi, ruby-csv, ruby-datetime, ruby-dbm, ruby-debuglib, ruby-digest, ruby-drb, ruby-enc, ruby-enc-extra, ruby-erb, ruby-gdbm, ruby-gems, ruby-json, ruby-io-console, ruby-irb, ruby-fiddle, ruby-filelib, ruby-logger, ruby-math, ruby-minitest, ruby-mkmf, ruby-multithread, ruby-nkf, ruby-net, ruby-openssl, ruby-optparse, ruby-patterns, ruby-powerassert, ruby-prettyprint, ruby-pstore, ruby-psych, ruby-racc, ruby-rake, ruby-rbconfig, ruby-rdoc, ruby-readline, ruby-rexml, ruby-rinda, ruby-ripper, ruby-rss, ruby-sdbm, ruby-shell, ruby-socket, ruby-testunit, ruby-unicodenormalize, ruby-uri, ruby-webrick, ruby-xmlrpc, ruby-yaml, ruby-zlib
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: ruby-stdlib_2.2.1-1_ramips_24kec.ipk
Size: 1178
MD5Sum: 6347731f8da84f630bff60a4b1e18385
SHA256sum: 2948f81116028aba014700e452d0b9552d7b2c187b78b7a58de2632b968cce2a
Description: This metapackage currently install all ruby-* packages,
providing a complete Ruby Standard Library.
Package: ruby-testunit
Version: 2.2.1-1
Depends: libc, ruby, ruby-csv, ruby-erb, ruby-optparse, ruby-powerassert, ruby-prettyprint, ruby-rexml, ruby-yaml
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90678
Filename: ruby-testunit_2.2.1-1_ramips_24kec.ipk
Size: 91647
MD5Sum: 4d77fabc8ddfe17dfbea5877c43aa2fa
SHA256sum: 828b2452a83e6b192064c3c5dd824474899202a852580550d3b7314ff92a8cb8
Description: Provides test/unit* files
Package: ruby-unicodenormalize
Version: 2.2.1-1
Depends: libc, ruby, ruby-enc, ruby-enc-extra
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 47209
Filename: ruby-unicodenormalize_2.2.1-1_ramips_24kec.ipk
Size: 46167
MD5Sum: 9ca4e499bf411102323ae8b14079cd4a
SHA256sum: e322f0a16a676f051a5ada4dc410cb7dad61ac0ac19d899f35ddd53d2283f51f
Description: Additions to class String for Unicode normalization
Package: ruby-uri
Version: 2.2.1-1
Depends: libc, ruby, ruby-socket, ruby-enc
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27091
Filename: ruby-uri_2.2.1-1_ramips_24kec.ipk
Size: 27880
MD5Sum: 01431e1592c6f66a5aefc4d01ed72be4
SHA256sum: bc9a330fa6a827029ec93a7ba5eb72e52757c3475970f667378e71b89e355ff8
Description: Provides uri* files
Package: ruby-webrick
Version: 2.2.1-1
Depends: libc, ruby, ruby-erb, ruby-net, ruby-patterns, ruby-rbconfig
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 50743
Filename: ruby-webrick_2.2.1-1_ramips_24kec.ipk
Size: 51641
MD5Sum: 194b8cb541a3bf8c22a6298868c35030
SHA256sum: 157d0ce232359bb3f5b796c5c467c2fddf2c9fe09a4cf2c5c56bcc9b822583b3
Description: Provides webrick* files
Package: ruby-xmlrpc
Version: 2.2.1-1
Depends: libc, ruby, ruby-rexml, ruby-webrick
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23295
Filename: ruby-xmlrpc_2.2.1-1_ramips_24kec.ipk
Size: 24082
MD5Sum: bb4d648d7928518ae12f9911d6dc7376
SHA256sum: 22e2b73f6ae252f57af431d4f26d098383e470c9062615f30f483d2e3c8b45d8
Description: Provides xmlrpc* files
Package: ruby-yaml
Version: 2.2.1-1
Depends: libc, ruby, ruby-dbm, ruby-pstore, ruby-psych
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3752
Filename: ruby-yaml_2.2.1-1_ramips_24kec.ipk
Size: 4523
MD5Sum: eaa186c1854761f4fd4f374188ccc2f9
SHA256sum: 6c43385954eba9156b9216ec8a03bd82df22f59e545e48f0c83853412a6648c1
Description: Provides yaml* files
Package: ruby-zlib
Version: 2.2.1-1
Depends: libc, ruby, zlib
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19320
Filename: ruby-zlib_2.2.1-1_ramips_24kec.ipk
Size: 20067
MD5Sum: 07c223cbaba26f0c504670d91b6d9588
SHA256sum: 9aa230e103fcbb4cb8a74dc9673af7212f1ca2b37120dff002a75b159b41bc34
Description: Provides zlib* files
Package: ruby
Version: 2.2.1-1
Depends: libc, libruby
Source: feeds/packages/lang/ruby
License: BSD-2-Clause
LicenseFiles: COPYING
Section: lang
Maintainer: Luiz Angelo Daros de Luca <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1881
Filename: ruby_2.2.1-1_ramips_24kec.ipk
Size: 2751
MD5Sum: 6f6b7e2bdda2e10ae9cc058ee562a931
SHA256sum: b214709feecf0d8eae547525db085aeeb4938dc8dfb49954fb1d23ae4dfd95ae
Description: Ruby is the interpreted scripting language for quick and easy
object-oriented programming. It has many features to process text files
and to do system management tasks (as in perl). It is simple,
straight-forward, and extensible.
Package: screen
Version: 4.2.1-2
Depends: libc, libncurses
Source: feeds/packages/utils/screen
License: GPL-3.0+
Section: utils
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 167543
Filename: screen_4.2.1-2_ramips_24kec.ipk
Size: 168256
MD5Sum: 6e2d9e4fdf87523a71788eac39c531a3
SHA256sum: d25388259257dd453c562d6799cf2564fe98e62034a139fc51310552b6005cf0
Description: Screen is a full-screen window manager that multiplexes a physical
terminal between several processes, typically interactive shells.
Package: seafile-ccnet
Version: 4.0.6-1e1aeae83cc33356ebd5f064f4a4c148186b814d
Depends: libc, libsearpc, libevent2, libopenssl, glib2, python, libzdb, libuuid, libpthread, libsqlite3, jansson
Source: feeds/packages/net/seafile-ccnet
License: GPL-3.0
Section: net
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 155385
Filename: seafile-ccnet_4.0.6-1e1aeae83cc33356ebd5f064f4a4c148186b814d_ramips_24kec.ipk
Size: 155388
MD5Sum: 1fd904a04891d2fdd293f99834a01daf
SHA256sum: ccda187d23dd90a69b54d44cb07a2083176e8216261036c2a4a36cc984f4de3f
Description: Ccnet is a framework for writing networked applications in C.
Package: seafile-seahub
Version: 4.0.6-739b32b02c4803448d5cb75b3e22ec0073930aed
Depends: libc, python, simplejson, python-imglib, python-setuptools
Source: feeds/packages/net/seafile-seahub
License: Apache-2.0
Section: net
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11478237
Filename: seafile-seahub_4.0.6-739b32b02c4803448d5cb75b3e22ec0073930aed_ramips_24kec.ipk
Size: 11411559
MD5Sum: b4ba1bd4d230bd507166fe157d7788e6
SHA256sum: 58eb4e8e0e28bbfe7c393184d99b1e1d679cc4f3d9359f2b76d6f1fe52cc8a3a
Description: The web end of seafile server.
NOTE: in order to have better performance, language support is turned off by default.
Please set 'USE_I18N = True' in seahub_settings.py to support multiple languages.
Package: seafile-server
Version: 4.0.6-adf9a875a960c1471bf6c93fce397c576e985bb3
Depends: seafile-ccnet (=4.0.6-1e1aeae83cc33356ebd5f064f4a4c148186b814d), seafile-seahub (=4.0.6-739b32b02c4803448d5cb75b3e22ec0073930aed), libc, shadow-useradd, libarchive, libopenssl, glib2, libsearpc, seafile-ccnet, seafile-seahub, sqlite3-cli, python-mysql, jansson, libevent2, libevent2-openssl, zlib, libzdb, libsqlite3, libmysqlclient, libevhtp, libpthread, libuuid, bash, sudo, procps, procps-pkill
Source: feeds/packages/net/seafile-server
License: GPL-3.0
Section: net
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 418806
Filename: seafile-server_4.0.6-adf9a875a960c1471bf6c93fce397c576e985bb3_ramips_24kec.ipk
Size: 418204
MD5Sum: db3ac2321886e38ba443d839cfdc2a6b
SHA256sum: 58bacbc456d07198e0d5a7efcd5b9b37d42b68d68e6a2a6fa618b11bc8884a69
Description: Open source cloud storage with advanced features on privacy protection and teamwork.
Package: ser2net
Version: 2.10.0-1
Depends: libc
Source: feeds/packages/net/ser2net
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28176
Filename: ser2net_2.10.0-1_ramips_24kec.ipk
Size: 28994
MD5Sum: 4481fae5b91c17ba0a5747b6f2269c25
SHA256sum: f04313abfdaeeadd9f9976a662325d49299842152e259a9032ef92138e00d641
Description: This project provides a proxy that allows telnet/tcp connections to be made to
serial ports on a machine.
Package: serialconsole
Version: 0.95-1
Depends: libc
Source: feeds/packages/utils/serialconsole
Section: utils
Maintainer: Stefan Bethke <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5118
Filename: serialconsole_0.95-1_ramips_24kec.ipk
Size: 5860
MD5Sum: 50f1a8acc26dacf40e34db0887706c28
SHA256sum: 6fb5a0ccf55701fe65737273c5d2fb21302403a64b72b5b38d0a284fcbc09468
Description: serialconsole (sc) is a minimal terminal program allowing to use one machine
to access the serial console of another machine.
Package: shadow-chage
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16591
Filename: shadow-chage_4.2.1-4_ramips_24kec.ipk
Size: 17420
MD5Sum: 9c7a974fc7fef7973396b48cfedf610d
SHA256sum: 4a4fb12d0e2cd21b3d4c7d56baa628db3ebb712950b348dd3f887b800c10494d
Description: Full version of standard chage utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-common
Version: 4.2.1-4
Depends: libc
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4731
Filename: shadow-common_4.2.1-4_ramips_24kec.ipk
Size: 5503
MD5Sum: 8e30157be5e117f49ed273ba651b80c1
SHA256sum: 82be56381174933e3e4587433353130989abf1d539f7f0046c6ad0afd007cdb3
Description: Shared definitions for the PLD Linux shadow utilities
Package: shadow-groupadd
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14831
Filename: shadow-groupadd_4.2.1-4_ramips_24kec.ipk
Size: 15610
MD5Sum: c7b2183346ed6cf4de14ede99d233d8a
SHA256sum: 8ea0f1dcbe77c65f34525b1dccbb774fc36d4a1b722ced5ab1ec3846a3d9819a
Description: Full version of standard groupadd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-groupdel
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13282
Filename: shadow-groupdel_4.2.1-4_ramips_24kec.ipk
Size: 14027
MD5Sum: 407639a93fc9ef560ca6b604c03c1357
SHA256sum: a14e8848608cc3202ff45681b8d1803cc951f67aa1ed93d48adb1126fb818cb3
Description: Full version of standard groupdel utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-groupmod
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16483
Filename: shadow-groupmod_4.2.1-4_ramips_24kec.ipk
Size: 17257
MD5Sum: f731b8b95b5f8203288c05fd531d53a1
SHA256sum: 2c4b64e412296761db237ad12248a0815b739ef21e799e607106ebaa295e379d
Description: Full version of standard groupmod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-groups
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3147
Filename: shadow-groups_4.2.1-4_ramips_24kec.ipk
Size: 3973
MD5Sum: b18fbadc3034089e0893d1a10fe34dc9
SHA256sum: 63e8ffa8c8aba5655959b968bc8ed5303d289a6de83980176bf2a27f65db6b9d
Description: Full version of standard groups utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-passwd
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17234
Filename: shadow-passwd_4.2.1-4_ramips_24kec.ipk
Size: 17910
MD5Sum: ad710d84f94af55a42c19859261edcb4
SHA256sum: 624f9617a40630264f84879a855b8fbd20ff06a116c7b91ab732e78880dd4d7a
Description: Full version of standard passwd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-su
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17578
Filename: shadow-su_4.2.1-4_ramips_24kec.ipk
Size: 18344
MD5Sum: 1aae2bfbf7d016f399e46678a02dbc15
SHA256sum: 9f6d45f345a0eab4833da1910226e05a543f4cb1f1589a258a344e4c09883aad
Description: Full version of standard su utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-useradd
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27384
Filename: shadow-useradd_4.2.1-4_ramips_24kec.ipk
Size: 28168
MD5Sum: 960a658eaad99cf94cf6fb84b714682b
SHA256sum: af4a20a488ef924fe98fe6ccac423f0300c2eb7120cbba3b3434a045ffee5868
Description: Full version of standard useradd utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-userdel
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16716
Filename: shadow-userdel_4.2.1-4_ramips_24kec.ipk
Size: 17395
MD5Sum: 24f26886c20330b1cdd23b4ff34b580e
SHA256sum: 1bf39b6da26f8c3a6ad1aac747132f20fb85a0f2e3996c210ad71846ef6d389d
Description: Full version of standard userdel utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-usermod
Version: 4.2.1-4
Depends: libc, shadow-common
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27567
Filename: shadow-usermod_4.2.1-4_ramips_24kec.ipk
Size: 28133
MD5Sum: 75fb5f9e32e33643f3f6d88609f3b9da
SHA256sum: ded7552d9818a07dff96d4aff0667d1c494053371965de5f69f8fb0040c55a03
Description: Full version of standard usermod utility. Normally, you would not use this
package, since the functionality in BusyBox is more than sufficient.
Package: shadow-utils
Version: 4.2.1-4
Depends: libc
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: shadow-utils_4.2.1-4_ramips_24kec.ipk
Size: 905
MD5Sum: f694ba34ed6fb1e4ecc5f04a6af34234
SHA256sum: 5c6a5ff4b19a8f11d3d2d0dd09252dcff681f3904142a096a0116e3ca1080eb0
Description: Full versions of standard shadow utilities. Normally, you would not
use this package, since the functionality in BusyBox is more than
sufficient and much smaller.
Package: shadow
Version: 4.2.1-4
Depends: libc, shadow-chage, shadow-groupadd, shadow-groupdel, shadow-groupmod, shadow-groups, shadow-passwd, shadow-su, shadow-useradd, shadow-userdel, shadow-usermod
Source: feeds/packages/utils/shadow
License: BSD-3-Clause
Section: utils
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: shadow_4.2.1-4_ramips_24kec.ipk
Size: 958
MD5Sum: 9addd1d5f214f806bc61309f91006dfc
SHA256sum: 5a487b814fbfc247eedf46f3ca3d564809fd2511ee09179b70ec3426c9af905e
Description: Full versions of standard shadow utilities. Normally, you would not
use this package, since the functionality in BusyBox is more than
sufficient and much smaller.
Package: shadowsocks-client
Version: 0.5-d8ef02715f40de0fb7ba0f7267d3f8260f38ba80
Depends: libc, libopenssl
Source: feeds/packages/net/shadowsocks-client
License: MIT
LicenseFiles: COPYING
Section: net
Maintainer: Zhao, Gang <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12187
Filename: shadowsocks-client_0.5-d8ef02715f40de0fb7ba0f7267d3f8260f38ba80_ramips_24kec.ipk
Size: 12951
MD5Sum: 15ff9306d5b0437ab824b15d9dd035f5
SHA256sum: e349f4bbdf637aa7b3f4b54715b2d615b8b97b381bdc18cf538ad935b2dfbb2a
Description: shadowsocks client for router
Package: shairplay
Version: 2014-10-27-2
Depends: libc, libao, libavahi-compat-libdnssd, libltdl, libpthread
Source: feeds/packages/sound/shairplay
License: MIT
LicenseFiles: LICENSE
Section: sound
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44431
Filename: shairplay_2014-10-27-2_ramips_24kec.ipk
Size: 45255
MD5Sum: e324120c658d10435e4e14dc70c1d736
SHA256sum: 6f295b9474b439ce36277378b9afc5d732cc83e948b03443941b91bdff3a004e
Description: Free portable AirPlay server implementation similar to ShairPort.
Package: shairport-sync
Version: 2.1.15-1
Depends: libc, libpthread, libopenssl, libavahi-client, alsa-lib, libdaemon, libsoxr, libpopt
Source: feeds/packages/sound/shairport-sync
License: MIT
LicenseFiles: COPYING LICENSES shairport.c
Section: sound
Maintainer: Mike Brady <[email protected]>
Architecture: ramips_24kec
Installed-Size: 97976
Filename: shairport-sync_2.1.15-1_ramips_24kec.ipk
Size: 98446
MD5Sum: 8bcc30b9f4c7d682077ce8ef1b779328
SHA256sum: 9e155b643c90c022e7c5a9cc06d9e53aec27df80f753b02e1fe02f0f62a71c37
Description: Shairport Sync is server software that implements the Apple-originated RAOP protocol for
playback of audio from a compatible remote client such as the iPhone, iTunes, Apple TV, Quicktime Player or forked-daapd.
Shairport Sync implements audio synchronisation, supporting multi-room use.
Shairport Sync supports audio only.
Package: shairport
Version: 2014-10-28-2
Depends: libc, libpthread, libopenssl, libavahi-client, alsa-lib
Source: feeds/packages/sound/shairport
License: MIT
LicenseFiles: LICENSES
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36592
Filename: shairport_2014-10-28-2_ramips_24kec.ipk
Size: 37491
MD5Sum: 80d76e60e93da8c2f6b4f2e60cdf85cc
SHA256sum: fad158a7c3f00eaef0951b49cdefd1c70b67f610bdcb3f747927e02822cbf544
Description: This program emulates an AirPort Express for the purpose of streaming
music from iTunes and compatible iPods. It implements a server for the
Apple RAOP protocol.
ShairPort does not support AirPlay v2 (video and photo streaming).
It supports multiple simultaneous streams, if your audio output chain
(as detected by libao) does so.
Package: shine
Version: 3.1.0-1
Depends: libc
Source: feeds/packages/sound/shine
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32628
Filename: shine_3.1.0-1_ramips_24kec.ipk
Size: 33508
MD5Sum: 4a4991cc1b92b9a61da6a9fd9e44202a
SHA256sum: 2ec1374237d1076cd24d6e648124f9a205471bf8d832b21b1a02aa7970731fe9
Description: savonet/shine is a blazing fast mp3 encoding library implemented in fixed-point
arithmetic. The library can thus be used to perform super fast mp3 encoding on
architectures without a FPU, such as armel, etc.. It is also, however, also
super fast on architectures with a FPU!
Package: simplejson
Version: 3.6.5-1
Depends: libc, python
Source: feeds/packages/lang/simplejson
License: MIT
Section: lang
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48743
Filename: simplejson_3.6.5-1_ramips_24kec.ipk
Size: 49599
MD5Sum: f2f5109e86f7b4a23f2fcf9c07ffcb6b
SHA256sum: 1dc999ba33fb8118573d4b13cdad74cac6219a8be0be40cf16246d0320391522
Description: Simple, fast, extensible JSON encoder/decoder for Python
Package: sispmctl
Version: 3.1+20120206-1
Depends: libc, libusb-compat
Source: feeds/packages/utils/sispmctl
License: GPL-2.0+
Section: utils
Maintainer: Richard Kunze <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8211
Filename: sispmctl_3.1+20120206-1_ramips_24kec.ipk
Size: 9181
MD5Sum: 5dc0fa80892d3fbc8e3e6b2e36f130be
SHA256sum: b2cf24ea09ec5031a589a25b7c115a55324b602c013c153ea4ee9f19c9873a14
Description: The sispmctl tool can control Gembird SIS-PM Silver Shield
programmable power outlet strips (also known under the name
Revolt Intelli-Plug) from the command line.
.
It can be used to switch on or off any of the programmable
power sockets of the SIS-PM via USB. It can also show the
current status of each power socket, and it can handle
multiple SIS-PM devices, too.
Package: smartd
Version: 6.3-1
Depends: libc, uclibcxx
Source: feeds/packages/utils/smartmontools
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 145228
Filename: smartd_6.3-1_ramips_24kec.ipk
Size: 146151
MD5Sum: 49efc257ed86da18208cda9b2e029a67
SHA256sum: f7b737443d151bdcd689f97e4e80c06140d4fa3736d5563dfdbbe231645195c8
Description: smartmontools contains utility programs (smartd) to
control/monitor storage systems using the Self-Monitoring, Analysis
and Reporting Technology System (S.M.A.R.T.) built into most modern
ATA and SCSI disks. It is derived from smartsuite.
Package: smartmontools
Version: 6.3-1
Depends: libc, uclibcxx
Source: feeds/packages/utils/smartmontools
License: GPL-2.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 163969
Filename: smartmontools_6.3-1_ramips_24kec.ipk
Size: 164748
MD5Sum: 39b246bfa568775bab50ad595475928f
SHA256sum: ade457cb9fb0b95ecf6e9524c9dd0b202a83299b235148a312e4e7e8cbe80e63
Description: smartmontools contains utility programs (smartctl) to
control/monitor storage systems using the Self-Monitoring, Analysis
and Reporting Technology System (S.M.A.R.T.) built into most modern
ATA and SCSI disks. It is derived from smartsuite.
Package: smartsnmpd
Version: 2014-08-13-fb93473d895f058b2d8975d3cfa280ae2a8ae98d
Depends: libc, lua, liblua, libubox, libuci-lua, libubus-lua
Source: feeds/packages/net/smartsnmpd
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Xiongfei Guo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21009
Filename: smartsnmpd_2014-08-13-fb93473d895f058b2d8975d3cfa280ae2a8ae98d_ramips_24kec.ipk
Size: 21948
MD5Sum: 2ba548b652bc46a579ebbdd38f32070a
SHA256sum: 24a1d7fd6215b9c8feeb5aabc717410fb381a90d0d2ef6d36b7bf3843bf33833
Description: smartsnmpd is an implementation of SNMP Agent. Its goal is "Easily
writing boring SNMP MIB with Lua". This package add native support
for OpenWrt. Include using ubus and uci to get system info/status.
And, it use libubox/uloop as low level event-driven library.
Package: smstools3
Version: 3.1.15-1
Depends: libc, libiconv-full, iconv
Source: feeds/packages/utils/smstools3
License: GPL-2.0
LicenseFiles: LICENSE
Section: utils
Maintainer: Gérald Kerma <[email protected]>
Architecture: ramips_24kec
Installed-Size: 90298
Filename: smstools3_3.1.15-1_ramips_24kec.ipk
Size: 91067
MD5Sum: d733251155dc9ec8e36a5140c08ace6a
SHA256sum: aa5bd882846650e67e6abf257623e46937569a9157ea30b4cf247fdc085d3d97
Description: The SMS Server Tools 3 is a SMS Gateway software which can send and receive
short messages through GSM modems and mobile phones.
Package: snmp-utils
Version: 5.4.4-1
Depends: libc, libnetsnmp
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16047
Filename: snmp-utils_5.4.4-1_ramips_24kec.ipk
Size: 16917
MD5Sum: 6ab2b5ea8bdafa792026487357dc4105
SHA256sum: 604ea4ed7ab6cd61a2c87b2c670bb8a896c5daff659313a944ee0efdda8c3cd2
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains SNMP client utilities.
Package: snmpd-static
Version: 5.4.4-1
Depends: libc
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 302341
Filename: snmpd-static_5.4.4-1_ramips_24kec.ipk
Size: 302938
MD5Sum: b2d6166f99b7202752be0cc04874e6cc
SHA256sum: 15e364e9c1cc416079d98dc9db1ca7c23697a00150fc76aa7e1440b19c28a35c
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains the SNMP agent, statically linked.
Package: snmpd
Version: 5.4.4-1
Depends: libc, libnetsnmp
Source: feeds/packages/net/net-snmp
License: MIT BSD-3-Clause-Clear
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9035
Filename: snmpd_5.4.4-1_ramips_24kec.ipk
Size: 10056
MD5Sum: a9a28c6ccbeac67235cb86ff68a3ce25
SHA256sum: 1dab3aec6c030be5b56b9065f7fc8899351d5cd81977b2fa930627aa796c5b3e
Description: Simple Network Management Protocol (SNMP) is a widely used protocol for
monitoring the health and welfare of network equipment (eg. routers),
computer equipment and even devices like UPSs. Net-SNMP is a suite of
applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
IPv4 and IPv6.
.
This package contains the SNMP agent, dynamically linked.
Package: snort-mysql
Version: 2.9.7.2-1
Depends: libc, libdaq, libdnet, libopenssl, libpcap, libpcre, libpthread, libuuid, zlib, libmysqlclient
Source: feeds/packages/net/snort
Section: net
Architecture: ramips_24kec
Installed-Size: 833043
Filename: snort-mysql_2.9.7.2-1_ramips_24kec.ipk
Size: 827986
MD5Sum: c8afd88c51fe2edce95aadb5fdf6016f
SHA256sum: 79944db1e11bbd519e8bb7823a27b67cedf153941c3affb878312f6ee9161266
Description: Snort is an open source network intrusion detection and prevention system.
It is capable of performing real-time traffic analysis, alerting, blocking
and packet logging on IP networks. It utilizes a combination of protocol
analysis and pattern matching in order to detect anomalies, misuse and
attacks.
This package contains snort with support for logging to a MySQL database.
Package: snort-pgsql
Version: 2.9.7.2-1
Depends: libc, libdaq, libdnet, libopenssl, libpcap, libpcre, libpthread, libuuid, zlib, libpq, libuuid
Source: feeds/packages/net/snort
Section: net
Architecture: ramips_24kec
Installed-Size: 833043
Filename: snort-pgsql_2.9.7.2-1_ramips_24kec.ipk
Size: 828450
MD5Sum: f482cf04284bb3a9c64bbf304338a137
SHA256sum: 3bb2a29533312b2566efe8d90c7f74a7f61de7bb92dfcc8e02126e7748405620
Description: Snort is an open source network intrusion detection and prevention system.
It is capable of performing real-time traffic analysis, alerting, blocking
and packet logging on IP networks. It utilizes a combination of protocol
analysis and pattern matching in order to detect anomalies, misuse and
attacks.
This package contains snort with support for logging to a PostgreSQL database.
Package: snort
Version: 2.9.7.2-1
Depends: libc, libdaq, libdnet, libopenssl, libpcap, libpcre, libpthread, libuuid, zlib
Source: feeds/packages/net/snort
Section: net
Architecture: ramips_24kec
Installed-Size: 833057
Filename: snort_2.9.7.2-1_ramips_24kec.ipk
Size: 827562
MD5Sum: 43a6c84c4c95ad13f030212466b8237c
SHA256sum: 2fa476ecb0d8a080ef37e7adeaadcc9d2262ed18fb70ce831f50c69821084623
Description: Snort is an open source network intrusion detection and prevention system.
It is capable of performing real-time traffic analysis, alerting, blocking
and packet logging on IP networks. It utilizes a combination of protocol
analysis and pattern matching in order to detect anomalies, misuse and
attacks.
Package: socat
Version: 1.7.3.0-1
Depends: libc, libpthread, librt
Source: feeds/packages/net/socat
License: GPL-2.0 OpenSSL
LicenseFiles: COPYING COPYING.OpenSSL
Section: net
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87281
Filename: socat_1.7.3.0-1_ramips_24kec.ipk
Size: 87959
MD5Sum: 443c5647f95f5b7c7be9a1f0c1572843
SHA256sum: 5af554607c76a2bbe116fef9a5d08edbdf68537817ba8300a91d58236611b261
Description: SoCat (for SOcket CAT) establishes two bidirectional byte streams and
transfers data between them.
Data channels may be files, pipes, devices (terminal or modem, etc.), or
sockets (Unix, IPv4, IPv6, raw, UDP, TCP, SSL). It provides forking,
logging and tracing, different modes for interprocess communication and
many more options.
Package: sockread
Version: 1.0-1
Depends: libc
Source: feeds/packages/utils/sockread
License: CC0-1.0
Section: utils
Maintainer: Moritz Warning <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2063
Filename: sockread_1.0-1_ramips_24kec.ipk
Size: 2844
MD5Sum: 9b9f379bec2c70ded6127ec12976afbe
SHA256sum: 82c27251c053bda55c85fad65171a3e5ab9e9b3c129b807904191b24c6e45f9a
Description: sockread writes and reads data from a Unix domain socket
represented as a special file on the file system.
Package: softflowd
Version: 0.9.9-1
Depends: libc, libpcap
Source: feeds/packages/net/softflowd
License: BSD-3-Clause
Section: net
Maintainer: Ross Vandegrift <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20474
Filename: softflowd_0.9.9-1_ramips_24kec.ipk
Size: 21253
MD5Sum: 8e2f3b4bb9227089a79721a10abe3b9d
SHA256sum: 836c8ffe259f943d6a1ea8b1d9d9e4068ced9d8a860c658aa81253f88b28012b
Description: Software netflow exporter
Package: sox
Version: 14.4.1-3
Depends: libc, lame-lib, libmad, libid3tag, libvorbis, libvorbisidec, alsa-lib, libsndfile, libflac, libmagic, libpng, libffmpeg
Source: feeds/packages/sound/sox
License: LGPL-2.1 GPL-2.0
LicenseFiles: COPYING LICENSE.LGPL LICENSE.GPL
Section: sound
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 310534
Filename: sox_14.4.1-3_ramips_24kec.ipk
Size: 310416
MD5Sum: 239d8df7caa295f1bd9d825115c2d8a1
SHA256sum: 82b39531bb4f1b692f78bad027e7bcaef07fa00fdd55bba7047f226c59d5dd87
Description: SoX is a command line utility that can convert various formats
of computer audio files in to other formats. It can also apply
various effects to these sound files during the conversion.
As an added bonus, SoX can play and record audio files on
several unix-style platforms.
Package: sqlite3-cli
Version: 3080803-1
Depends: libc, libsqlite3, libncurses, libreadline
Source: feeds/packages/libs/sqlite3
License: PUBLICDOMAIN
Section: utils
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27358
Filename: sqlite3-cli_3080803-1_ramips_24kec.ipk
Size: 28283
MD5Sum: 4f79a6d78249c37c3e10a849933fe6c0
SHA256sum: 78310b523c4483dccfa781268ce8660c31d707b985d20f372227e197dd477c5d
Description: SQLite is a small C library that implements a self-contained, embeddable,
zero-configuration SQL database engine.
This package contains a terminal-based front-end to the SQLite (v3.x) library
that can evaluate queries interactively and display the results in multiple
formats.
Package: sqm-scripts
Version: 8-2
Depends: libc, tc, kmod-sched, kmod-ifb, iptables, ip, iptables-mod-filter, iptables-mod-ipopt, iptables-mod-conntrack-extra
Source: feeds/packages/net/sqm-scripts
License: GPLv2
Section: net
Maintainer: Toke Høiland-Jørgensen <[email protected]>
Architecture: all
Installed-Size: 11389
Filename: sqm-scripts_8-2_all.ipk
Size: 12206
MD5Sum: 2f9f9dd84a8fdb0252ca835ac1c80db5
SHA256sum: 4601114cec9bd705d756a436f2cb81664060a9559e5a7d5777f4a8988ad8f6a7
Description: A set of scripts that does simple SQM configuration.
Package: squid-mod-cachemgr
Version: 3.5.2-2
Depends: libc, squid
Source: feeds/packages/net/squid
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 23643
Filename: squid-mod-cachemgr_3.5.2-2_ramips_24kec.ipk
Size: 24382
MD5Sum: 473b9e76bbe7a4d5033f46860825423b
SHA256sum: 9325ef2a48cc5a694f1388ca62d9bcfe61b898c8a3ad76bb3c191321e30b64be
Description: Web based proxy manager and reporting tool
Package: squid
Version: 3.5.2-2
Depends: libc, libopenssl, libpthread, librt, libltdl, libstdcpp, libgnutls
Source: feeds/packages/net/squid
License: GPL-2.0
Section: net
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1582281
Filename: squid_3.5.2-2_ramips_24kec.ipk
Size: 1580246
MD5Sum: db802b78a70d41c67b2eb721fe5f1830
SHA256sum: 0f1226b4a1cb6d925036c9ca17c4c3a526a516cf7b8b83783dc5da11a24d2ce7
Description: Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more.
It reduces bandwidth and improves response times by caching and reusing
frequently-requested web pages.
Package: sshfs
Version: 2.5-1
Depends: libc, libfuse, fuse-utils, glib2, libpthread
Source: feeds/packages/net/sshfs
License: GPL-2.0
Section: net
Maintainer: Zoltan HERPAI <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22894
Filename: sshfs_2.5-1_ramips_24kec.ipk
Size: 23543
MD5Sum: 029d250adf05f9a537f8b397ac5dbf28
SHA256sum: 478a4fc476a99323ecdd188c39087e10bd6d2c3a674994f676da2a45e70df82a
Description: Mount remote system over sftp.
Package: sshtunnel
Version: 3-3
Depends: libc, openssh-client
Source: feeds/packages/net/sshtunnel
License: GPL-2.0+
Section: net
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3266
Filename: sshtunnel_3-3_ramips_24kec.ipk
Size: 4123
MD5Sum: 70e7de134ef1d20f0a04ba70c9ff9703
SHA256sum: 337d2e5a7e459ccf84f04e95caa5cf65f454da007ad12600a7e07370e128b26c
Description: Creates openssh ssh(1) Local and Remote tunnels configured in UCI file. Can be used to allow remote connections, possibly over NATed connections or without public IP/DNS
Package: sslh
Version: v1.17-1
Depends: libc
Source: feeds/packages/net/sslh
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 10214
Filename: sslh_v1.17-1_ramips_24kec.ipk
Size: 10953
MD5Sum: 55f23a2f3a078d5405e6a9d3fffd7de2
SHA256sum: 702048a6a7f92d614cdb838adc472133445c41c5be856e0a879a6b7f72b8dc22
Description: SSL/SSH multiplexer
Package: ssmtp
Version: 2.64-1.1
Depends: libc, libopenssl
Source: feeds/packages/mail/ssmtp
License: GPL-2.0+
Section: mail
Maintainer: Dirk Brenken <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11718
Filename: ssmtp_2.64-1.1_ramips_24kec.ipk
Size: 12737
MD5Sum: 5e30a108b4911bf093da32fa2f3818dd
SHA256sum: 56df55546b6aab9de5bce5c6d4c441d3a5a58043cbedc9590bff52aa57f59210
Description: A secure, effective and simple way of getting mail off a system to your
mail hub. It contains no suid-binaries or other dangerous things - no
mail spool to poke around in, and no daemons running in the background.
Mail is simply forwarded to the configured mailhost. Extremely easy
configuration.
Package: sstp-client
Version: 1.0.9-1
Depends: libc, libevent2, libopenssl, ppp
Source: feeds/packages/net/sstp-client
License: GPLv2
Section: net
Maintainer: Federico Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28106
Filename: sstp-client_1.0.9-1_ramips_24kec.ipk
Size: 29011
MD5Sum: 02dcde8c329cdce98d6887960482011e
SHA256sum: 3eba2fe6adac3e1f872eb46b6f445b9c7976c82c784557f3b6397f04a801f040
Description: It can be used instead of PPTP or L2TP, and is only available with Windows Vista/7 connecting to a Windows 2008 Server. The advantage of SSTP compared to PPTP and L2TP is that it cannot be easily blocked by firewalls since the traffic is transmitted over HTTPS on port 443.
Windows Vista/7 uses SSTP whenever PPTP or L2TP cannot be established. For further information on SSTP check out wikipedia's article on Secure Socket Tunneling Protocol.
Package: stm32flash
Version: 0.4-1
Depends: libc
Source: feeds/packages/utils/stm32flash
License: GPL-2.0+
LicenseFiles: gpl-2.0.txt
Section: utils
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15623
Filename: stm32flash_0.4-1_ramips_24kec.ipk
Size: 16382
MD5Sum: 6d37094f70037fa81b254cc98b9001b4
SHA256sum: e5adbc3ca696524eff2a257e05f91bc966fdd75c53e8628807f9308d62c43ccc
Description: This tool can be used to burn firmware images to STM32 ARM processors
using the built-in serial bootloader.
Package: stoken
Version: 0.8-1
Depends: libc, libstoken
Source: feeds/packages/utils/stoken
License: LGPL-2.1
Section: utils
Maintainer: Florian Fainelli <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3514
Filename: stoken_0.8-1_ramips_24kec.ipk
Size: 4280
MD5Sum: b54b1bc034e78bfb32b04322cce5abe6
SHA256sum: 9734b132d61e8053472c4b4748325df4e68ceff34423ddbc20904e426d515a7d
Description: stoken is a tokencode generator compatible with RSA SecurID 128-bit (AES). This package contains the cli
Package: str2str
Version: 2.4.2_p9
Depends: libc, libpthread, librt
Source: feeds/packages/utils/rtklib
License: BSD-2-Clause
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 460352
Filename: str2str_2.4.2_p9_ramips_24kec.ipk
Size: 460509
MD5Sum: ae306ea5bb3b78c2642c2d36679aa0ad
SHA256sum: 11b2ef45a62070fde1f49efa3a4461f0bfebce08493105b846a9ee73fb69564c
Description: Communication Server
Package: strongswan-charon
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 171900
Filename: strongswan-charon_5.2.2-2_ramips_24kec.ipk
Size: 172382
MD5Sum: c1cd7f0c752fcbfc7a4046872209a1f8
SHA256sum: 395939b00df9e3d4ac21862bc6d5d4ab3dda0568e5cfb45204467a85fe4f4b8f
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This package contains charon, an IKEv2 keying daemon.
Package: strongswan-default
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-charon, strongswan-mod-aes, strongswan-mod-attr, strongswan-mod-constraints, strongswan-mod-des, strongswan-mod-dnskey, strongswan-mod-fips-prf, strongswan-mod-gmp, strongswan-mod-hmac, strongswan-mod-kernel-netlink, strongswan-mod-md5, strongswan-mod-nonce, strongswan-mod-pem, strongswan-mod-pgp, strongswan-mod-pkcs1, strongswan-mod-pubkey, strongswan-mod-random, strongswan-mod-resolve, strongswan-mod-revocation, strongswan-mod-sha1, strongswan-mod-sha2, strongswan-mod-socket-default, strongswan-mod-stroke, strongswan-mod-updown, strongswan-mod-x509, strongswan-mod-xauth-generic, strongswan-mod-xcbc, strongswan-utils
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 105
Filename: strongswan-default_5.2.2-2_ramips_24kec.ipk
Size: 1075
MD5Sum: 591e951021f3dad3d9706f2ca3e57485
SHA256sum: 62b7726c5b54af4542ac6011e09463b87bc3e98d5383f80e9ee10361db8731c7
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This meta-package contains only dependencies to match upstream defaults.
Package: strongswan-full
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-charon, strongswan-mod-addrblock, strongswan-mod-aes, strongswan-mod-af-alg, strongswan-mod-agent, strongswan-mod-attr, strongswan-mod-attr-sql, strongswan-mod-blowfish, strongswan-mod-ccm, strongswan-mod-cmac, strongswan-mod-constraints, strongswan-mod-coupling, strongswan-mod-ctr, strongswan-mod-curl, strongswan-mod-des, strongswan-mod-dhcp, strongswan-mod-dnskey, strongswan-mod-duplicheck, strongswan-mod-eap-identity, strongswan-mod-eap-md5, strongswan-mod-eap-mschapv2, strongswan-mod-eap-radius, strongswan-mod-farp, strongswan-mod-fips-prf, strongswan-mod-gcm, strongswan-mod-gcrypt, strongswan-mod-gmp, strongswan-mod-ha, strongswan-mod-hmac, strongswan-mod-kernel-netlink, strongswan-mod-ldap, strongswan-mod-led, strongswan-mod-load-tester, strongswan-mod-nonce, strongswan-mod-md4, strongswan-mod-md5, strongswan-mod-mysql, strongswan-mod-openssl, strongswan-mod-pem, strongswan-mod-pgp, strongswan-mod-pkcs1, strongswan-mod-pkcs8, strongswan-mod-pkcs11, strongswan-mod-pubkey, strongswan-mod-random, strongswan-mod-resolve, strongswan-mod-revocation, strongswan-mod-sha1, strongswan-mod-sha2, strongswan-mod-smp, strongswan-mod-socket-default, strongswan-mod-sql, strongswan-mod-sqlite, strongswan-mod-stroke, strongswan-mod-test-vectors, strongswan-mod-uci, strongswan-mod-unity, strongswan-mod-updown, strongswan-mod-whitelist, strongswan-mod-x509, strongswan-mod-xauth-eap, strongswan-mod-xauth-generic, strongswan-mod-xcbc, strongswan-utils
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: strongswan-full_5.2.2-2_ramips_24kec.ipk
Size: 1318
MD5Sum: ed6954666585b0bc7963eb0b28b4d942
SHA256sum: ff4bfe93fa248385bfceff758656dbbb2e35ea0d69771aaa665c3c7139d1b0a2
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This meta-package contains dependencies for all of the strongswan plugins
except kernel-libipsec,
socket-dynamic and which are ommitted in favor of the kernel-netlink and
socket-default plugins.
Package: strongswan-minimal
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-charon, strongswan-mod-aes, strongswan-mod-gmp, strongswan-mod-hmac, strongswan-mod-kernel-netlink, strongswan-mod-nonce, strongswan-mod-pubkey, strongswan-mod-random, strongswan-mod-sha1, strongswan-mod-socket-default, strongswan-mod-stroke, strongswan-mod-updown, strongswan-mod-x509, strongswan-mod-xcbc
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: strongswan-minimal_5.2.2-2_ramips_24kec.ipk
Size: 1002
MD5Sum: 9bf65eac2ddb903906ff86f79277116b
SHA256sum: 8ee2007a7b4f7ee98958fded05e1efa536b3d67431d9f5158e89952a9202df25
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This meta-package contains only dependencies for a minimal IKEv2 setup.
Package: strongswan-mod-addrblock
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2815
Filename: strongswan-mod-addrblock_5.2.2-2_ramips_24kec.ipk
Size: 3569
MD5Sum: 2763596b8871f7e8f32cf54ee9d8aad3
SHA256sum: b81b210640d6153d8ee55e45d45da649ef7cf0a21fbef069a19a42eecc1085af
Description: StrongSwan RFC 3779 address block constraint support plugin
Package: strongswan-mod-aes
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15807
Filename: strongswan-mod-aes_5.2.2-2_ramips_24kec.ipk
Size: 15490
MD5Sum: bb38edb23e6bb6fd663e6b71e2b69c3d
SHA256sum: ff6416e072f8d8faa4c8129f1bec16ec1e8bf571feb8b9f3b2dc4af25f3a39b0
Description: StrongSwan AES crypto plugin
Package: strongswan-mod-af-alg
Version: 5.2.2-2
Depends: libc, strongswan, kmod-crypto-user
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5423
Filename: strongswan-mod-af-alg_5.2.2-2_ramips_24kec.ipk
Size: 6185
MD5Sum: 4312ff53e0e626d9e54b7830f8932e2b
SHA256sum: cdbb40d9a46628a4ce9120108d4be8fbf741450c6873ec459983f6f8151926a4
Description: StrongSwan AF_ALG crypto interface to Linux Crypto API plugin
Package: strongswan-mod-agent
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3916
Filename: strongswan-mod-agent_5.2.2-2_ramips_24kec.ipk
Size: 4648
MD5Sum: 3a9508b1e748b83663d57cdf8af8bbbe
SHA256sum: b4fb9a8612110ba44db572e66a07cce36b5a4cf5bac25863705d5b102368ed6d
Description: StrongSwan SSH agent signing plugin
Package: strongswan-mod-attr-sql
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sql
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17189
Filename: strongswan-mod-attr-sql_5.2.2-2_ramips_24kec.ipk
Size: 17963
MD5Sum: 40ac17e3d15c1e51bc673f4cf9cc0035
SHA256sum: 06cc42c6f05c50ae1c9dbd9b0faf740f7afbee4dff7831040e29f2382ee98772
Description: StrongSwan SQL based config plugin
Package: strongswan-mod-attr
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3833
Filename: strongswan-mod-attr_5.2.2-2_ramips_24kec.ipk
Size: 4566
MD5Sum: 158140a5476dd6ccc0797da75dccb195
SHA256sum: 8df3ce7f6543684d9fe580533337e6c8e48b5d28f3e9310272dd831c89eca503
Description: StrongSwan file based config plugin
Package: strongswan-mod-blowfish
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7901
Filename: strongswan-mod-blowfish_5.2.2-2_ramips_24kec.ipk
Size: 8691
MD5Sum: a2d0ff7339b3e62179df72ce18807908
SHA256sum: 535bda49a28e9dc3c27b01081a97ee4a22b81997508ccbee37a61a3f700bb883
Description: StrongSwan Blowfish crypto plugin
Package: strongswan-mod-ccm
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3618
Filename: strongswan-mod-ccm_5.2.2-2_ramips_24kec.ipk
Size: 4346
MD5Sum: 62ab12816e2a0c077140c45142b179f0
SHA256sum: 9e5047a3955ad349f9842b8fe6d957814003482119963ec298b8b4720831f19b
Description: StrongSwan CCM AEAD wrapper crypto plugin
Package: strongswan-mod-cmac
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3288
Filename: strongswan-mod-cmac_5.2.2-2_ramips_24kec.ipk
Size: 4020
MD5Sum: b292815d14ef9c237492020ed00a3ae6
SHA256sum: 3a684c84d3982d3c9cb5915b4eefef665d6c01a2c359535a13cb25f588ea8abc
Description: StrongSwan CMAC crypto plugin
Package: strongswan-mod-constraints
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4658
Filename: strongswan-mod-constraints_5.2.2-2_ramips_24kec.ipk
Size: 5397
MD5Sum: cc25aeaa5bb436270bb5515544af37c4
SHA256sum: 5cb60f07fc5955a90c3bb227ad09c5b8e5b77c76080d43a05a7f9d6995c2d1d1
Description: StrongSwan advanced X509 constraint checking plugin
Package: strongswan-mod-coupling
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3275
Filename: strongswan-mod-coupling_5.2.2-2_ramips_24kec.ipk
Size: 4041
MD5Sum: 357de9e06dc441956e289a1556937d6b
SHA256sum: f35f140de6c8c134020a3e7dacc8947b518f77498dca40aa75947cb1f653f34d
Description: StrongSwan IKEv2 plugin to couple peer certificates permanently to authentication plugin
Package: strongswan-mod-ctr
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2477
Filename: strongswan-mod-ctr_5.2.2-2_ramips_24kec.ipk
Size: 3214
MD5Sum: 37635895bc6dcef5a3acfd7df80389bc
SHA256sum: 1ec9426e8c2115b229c45e3199df853ce46346ec0ee424cb914eae823c41a6fa
Description: StrongSwan Counter Mode wrapper crypto plugin
Package: strongswan-mod-curl
Version: 5.2.2-2
Depends: libc, strongswan, libcurl
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3673
Filename: strongswan-mod-curl_5.2.2-2_ramips_24kec.ipk
Size: 4402
MD5Sum: 9cb0588da485e2cb42c5932b0c7797c3
SHA256sum: c1d98a522f7b1594703aaaf42b7dbdbbb4cbf4b419c6b5ae17f62aa0967b644b
Description: StrongSwan cURL fetcher plugin plugin
Package: strongswan-mod-des
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8566
Filename: strongswan-mod-des_5.2.2-2_ramips_24kec.ipk
Size: 9314
MD5Sum: 1268ebabab30445203a7e919c6befca4
SHA256sum: be49abaeadc0dc07244e6575895195cb615cfff6cfbf8c6b0ec58cc375dc47ee
Description: StrongSwan DES crypto plugin
Package: strongswan-mod-dhcp
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7245
Filename: strongswan-mod-dhcp_5.2.2-2_ramips_24kec.ipk
Size: 8012
MD5Sum: 6e4d205fb6f9467d1a3f12a4c20601f0
SHA256sum: 0c7cd46f333b0fec82bbb9af4d93eec6ab97310227eebf2c444c8bfa6c74cc5b
Description: StrongSwan DHCP based attribute provider plugin
Package: strongswan-mod-dnskey
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2636
Filename: strongswan-mod-dnskey_5.2.2-2_ramips_24kec.ipk
Size: 3378
MD5Sum: 3e9d2a7d3f2a6916c96441cdc40bd0b0
SHA256sum: 30520f6d4b17b2eb9060037bb6e3cc7f8e3d598a10c20a12b52fcf32f0990288
Description: StrongSwan DNS RR key decoding plugin
Package: strongswan-mod-duplicheck
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5307
Filename: strongswan-mod-duplicheck_5.2.2-2_ramips_24kec.ipk
Size: 6069
MD5Sum: e928f307dfb6eca3fca73c5581e48c54
SHA256sum: 2acbf62dbcd5cf58d8d3f8abb76eea58abab4d383b1567688c54447f8231264a
Description: StrongSwan advanced duplicate checking plugin
Package: strongswan-mod-eap-identity
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2346
Filename: strongswan-mod-eap-identity_5.2.2-2_ramips_24kec.ipk
Size: 3082
MD5Sum: 4f345000da2621b15e724814705d4ede
SHA256sum: 9f7e29f77c17a103726d78c1a6df555d50f3e81b76f74201b2882ce09ac8c9f3
Description: StrongSwan EAP identity helper plugin
Package: strongswan-mod-eap-md5
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3214
Filename: strongswan-mod-eap-md5_5.2.2-2_ramips_24kec.ipk
Size: 3950
MD5Sum: a9e67501e64edf2ae27145f0303c9b1a
SHA256sum: cebd39c1fce296f28b88edd68282dea51c2c2cdf50e91d7b2d28ec1c543d4e39
Description: StrongSwan EAP MD5 (CHAP) EAP auth plugin
Package: strongswan-mod-eap-mschapv2
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-md4, strongswan-mod-des
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8458
Filename: strongswan-mod-eap-mschapv2_5.2.2-2_ramips_24kec.ipk
Size: 9243
MD5Sum: c37e4019902c09ee90fd7d21d7fe8953
SHA256sum: 713f367a215d1ccf804048a6367d2fb0a0c25c3368285322c09bd8926b30cb7b
Description: StrongSwan EAP MS-CHAPv2 EAP auth plugin
Package: strongswan-mod-eap-radius
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26737
Filename: strongswan-mod-eap-radius_5.2.2-2_ramips_24kec.ipk
Size: 27528
MD5Sum: ce7f7095dc1606a53fb972ed37490494
SHA256sum: 2867a372e489128536661a68c869ff960a9f79375e07665934f5ed5aeb30c202
Description: StrongSwan EAP RADIUS auth plugin
Package: strongswan-mod-farp
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3345
Filename: strongswan-mod-farp_5.2.2-2_ramips_24kec.ipk
Size: 4081
MD5Sum: e94d0b5425d477315595285258f91b34
SHA256sum: 1df7de6f4d130bd6547b2dd1cf867e08254fa6975492d468ae539e556ab7a209
Description: StrongSwan fake arp respsonses plugin
Package: strongswan-mod-fips-prf
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sha1
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2611
Filename: strongswan-mod-fips-prf_5.2.2-2_ramips_24kec.ipk
Size: 3352
MD5Sum: a6c1086382656a24adf09bcd1b428af2
SHA256sum: 8a67f0da2c18f67820dee3952e9d8569f7637a6ed10d8dc387b83b65a9606e99
Description: StrongSwan FIPS PRF crypto plugin
Package: strongswan-mod-gcm
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3763
Filename: strongswan-mod-gcm_5.2.2-2_ramips_24kec.ipk
Size: 4503
MD5Sum: fd97b0b87b310f088bc53d7cc9baed8d
SHA256sum: c93d529aeb67aa6c8bd03aaf4219d01f26655972ea1e889c1d148972761a8591
Description: StrongSwan GCM AEAD wrapper crypto plugin
Package: strongswan-mod-gcrypt
Version: 5.2.2-2
Depends: libc, strongswan, libgcrypt
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10183
Filename: strongswan-mod-gcrypt_5.2.2-2_ramips_24kec.ipk
Size: 10901
MD5Sum: 73b4e6ebc420fb7f2d8834836aea242c
SHA256sum: 215ca4c71df59b957416c60c3ff196159fd1190e05ee61bfdf8f6f0a0799a189
Description: StrongSwan libgcrypt plugin
Package: strongswan-mod-gmp
Version: 5.2.2-2
Depends: libc, strongswan, libgmp
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9787
Filename: strongswan-mod-gmp_5.2.2-2_ramips_24kec.ipk
Size: 10543
MD5Sum: 1ea270ceb0e0a574489b0a2b3de26504
SHA256sum: c2e4dc8a1807dc7912a19a4e1718ba4bbe7b323397fdc14391d5870e281dfc30
Description: StrongSwan libgmp plugin
Package: strongswan-mod-ha
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20537
Filename: strongswan-mod-ha_5.2.2-2_ramips_24kec.ipk
Size: 21288
MD5Sum: b6b73fdac40c41798f289ef87629dc6d
SHA256sum: 8cea6953e4e1c39e46f59309bba35ff6a22ffe5bb59dd2d816a83dedab1be7e9
Description: StrongSwan high availability cluster plugin
Package: strongswan-mod-hmac
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2567
Filename: strongswan-mod-hmac_5.2.2-2_ramips_24kec.ipk
Size: 3296
MD5Sum: ad67be9ecfdb31c6018a7a5bb37ecda4
SHA256sum: 28f50f4330efe7640fed63444df8917402c87f774e6f2bdd8c02296c212c1bc9
Description: StrongSwan HMAC crypto plugin
Package: strongswan-mod-kernel-libipsec
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18879
Filename: strongswan-mod-kernel-libipsec_5.2.2-2_ramips_24kec.ipk
Size: 19650
MD5Sum: e97e64b303c18c1226f8673a673c239b
SHA256sum: 61183edbd370c2205417056d5e97e64c9dc9ba2306e064d4abe065cffda5827d
Description: StrongSwan libipsec kernel interface plugin
Package: strongswan-mod-kernel-netlink
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28046
Filename: strongswan-mod-kernel-netlink_5.2.2-2_ramips_24kec.ipk
Size: 28757
MD5Sum: c1cc5fe6aa7cf10bdabf02c59b0f1595
SHA256sum: d000d1e0ef2f38030cb1222c735d871932e21a68ed1014b980427c5d996e6411
Description: StrongSwan netlink kernel interface plugin
Package: strongswan-mod-ldap
Version: 5.2.2-2
Depends: libc, strongswan, libopenldap
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2802
Filename: strongswan-mod-ldap_5.2.2-2_ramips_24kec.ipk
Size: 3530
MD5Sum: 078e34da803adf7fca092d51dd6564e7
SHA256sum: 575ec8ac54b0a7443c04b7fa7ecbe0a99f938b8213e6dd973af7b7961ca8cdd9
Description: StrongSwan LDAP plugin
Package: strongswan-mod-led
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2948
Filename: strongswan-mod-led_5.2.2-2_ramips_24kec.ipk
Size: 3686
MD5Sum: 7e76017f7b55d88505dc8e88514d3af1
SHA256sum: d48452f4e5d0af483889d87466becd13d200309e6bb6c16d5ed1084f50bf0bbd
Description: StrongSwan LED blink on IKE activity plugin
Package: strongswan-mod-load-tester
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12946
Filename: strongswan-mod-load-tester_5.2.2-2_ramips_24kec.ipk
Size: 13704
MD5Sum: 25a51f4f3ddc64abf281ce7ff524033e
SHA256sum: 7147d372215f832f140d9868aa7e1f7e4333e41bb6936b3b24c096d139f3adfe
Description: StrongSwan load testing plugin
Package: strongswan-mod-md4
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3210
Filename: strongswan-mod-md4_5.2.2-2_ramips_24kec.ipk
Size: 3930
MD5Sum: 618bbd6fc8cacc13e5c73837fa4b3ea1
SHA256sum: 882e25526671b2e55995ac964fd62c3c576a4775ee6521f68a9fd5a1ae37a954
Description: StrongSwan MD4 crypto plugin
Package: strongswan-mod-md5
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4256
Filename: strongswan-mod-md5_5.2.2-2_ramips_24kec.ipk
Size: 4984
MD5Sum: af3a5c40d6c01b10b6eb2711366a9d66
SHA256sum: da1c627d3e85911dc78f1ff83bcc3371bfb4beb455285965589ac6e22c57fa2d
Description: StrongSwan MD5 crypto plugin
Package: strongswan-mod-mysql
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sql, libmysqlclient-r
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5447
Filename: strongswan-mod-mysql_5.2.2-2_ramips_24kec.ipk
Size: 6221
MD5Sum: 0b1ba0da5e2d253410b9dacd0b8102d2
SHA256sum: 0f493a002fc0682bfca6ccd81ce895d0de962799da0521d7909b5221640ffdc7
Description: StrongSwan MySQL database interface plugin
Package: strongswan-mod-nonce
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1797
Filename: strongswan-mod-nonce_5.2.2-2_ramips_24kec.ipk
Size: 2564
MD5Sum: 57e04e992fe01a81d3a8a1afb7ece398
SHA256sum: 5b53f83c872830fcba283acbfa872235c09c5ad848807fc560e6bbf8c72aac8a
Description: StrongSwan nonce genereation plugin
Package: strongswan-mod-openssl
Version: 5.2.2-2
Depends: libc, strongswan, libopenssl
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 26749
Filename: strongswan-mod-openssl_5.2.2-2_ramips_24kec.ipk
Size: 27453
MD5Sum: 0e55b1140a51e79caba14a5dc82b403a
SHA256sum: 289b0ee398da3aeac069057d2d739199ad2330a76487c87ac7ac3a7fd899a32a
Description: StrongSwan OpenSSL crypto plugin
Package: strongswan-mod-pem
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5917
Filename: strongswan-mod-pem_5.2.2-2_ramips_24kec.ipk
Size: 6664
MD5Sum: 1062f43e72ca5c1afe3997cc8f0fa97c
SHA256sum: 146bd02f40a0193a04e4832a5f95bbb80bc4f811eacc7a8793083bc1c1e9ed70
Description: StrongSwan PEM decoding plugin
Package: strongswan-mod-pgp
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6031
Filename: strongswan-mod-pgp_5.2.2-2_ramips_24kec.ipk
Size: 6781
MD5Sum: 8fdd251f918b3259f01ea3a1fcabce3b
SHA256sum: 56f974ba8dcdfff6ef66c5b32889f2e48d7556f2ca6fabe0f21b8509f21c6b46
Description: StrongSwan PGP key decoding plugin
Package: strongswan-mod-pkcs11
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22207
Filename: strongswan-mod-pkcs11_5.2.2-2_ramips_24kec.ipk
Size: 22748
MD5Sum: e40f7bcd7a0503e4f90b3af102881625
SHA256sum: 3266ed48d85b9afc69f0e5e742df9252319f25a91db546455ee52e2c41ed7329
Description: StrongSwan PKCS11 key decoding plugin
Package: strongswan-mod-pkcs1
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4235
Filename: strongswan-mod-pkcs1_5.2.2-2_ramips_24kec.ipk
Size: 4967
MD5Sum: d055d5369841fbf3dc8e432ba4459219
SHA256sum: b375486b78d3fd06ff57d2540354f6b8ae8476428fb10e1f1792f523f928ae17
Description: StrongSwan PKCS1 key decoding plugin
Package: strongswan-mod-pkcs8
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2725
Filename: strongswan-mod-pkcs8_5.2.2-2_ramips_24kec.ipk
Size: 3463
MD5Sum: 35acfad6de9fb30e206df9d18b453f82
SHA256sum: ce2ed77d7ced5c317537370f5037bb0e31837585df27dd34fa111d6463a09fe1
Description: StrongSwan PKCS8 key decoding plugin
Package: strongswan-mod-pubkey
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2766
Filename: strongswan-mod-pubkey_5.2.2-2_ramips_24kec.ipk
Size: 3490
MD5Sum: fa660df2a9dae93b1261ac313ca97eeb
SHA256sum: 7d31bab6cf987f64d31fe6941fe2114e350e2615ed2918e5eb5282e194f4c81b
Description: StrongSwan raw public key plugin
Package: strongswan-mod-random
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2757
Filename: strongswan-mod-random_5.2.2-2_ramips_24kec.ipk
Size: 3482
MD5Sum: 84f881c5d4b8ff755ac8eeaa6e4ef3db
SHA256sum: c0ccef12e9ad2be1da82d43f538dd68f195f0db9081726a7ac0d2d061bb43425
Description: StrongSwan RNG plugin
Package: strongswan-mod-resolve
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3558
Filename: strongswan-mod-resolve_5.2.2-2_ramips_24kec.ipk
Size: 4285
MD5Sum: 98fd950f186ce99ff35b7989cf3d7830
SHA256sum: e3733309d47204da157cb4350b4a5d85ca495e105041539bd6571ed0e031b993
Description: StrongSwan DNS resolver plugin
Package: strongswan-mod-revocation
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5520
Filename: strongswan-mod-revocation_5.2.2-2_ramips_24kec.ipk
Size: 6274
MD5Sum: f69957dfaa6203f57989392f8599042f
SHA256sum: ae9ce11ccd33d7c0d8093867357930bbe0db0ba2a3a91eea7c1cc3157b209710
Description: StrongSwan X509 CRL/OCSP revocation plugin
Package: strongswan-mod-sha1
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4880
Filename: strongswan-mod-sha1_5.2.2-2_ramips_24kec.ipk
Size: 5592
MD5Sum: c35a7e4c826261542099dcec5a7c5f09
SHA256sum: 96e083d17b12df86404b3b9e206cf22be999a4ef485f5c520ee2d5a912b8930c
Description: StrongSwan SHA1 crypto plugin
Package: strongswan-mod-sha2
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5656
Filename: strongswan-mod-sha2_5.2.2-2_ramips_24kec.ipk
Size: 6400
MD5Sum: 25b830cfaad20a203a5fb0fb62fd765e
SHA256sum: 8676d50a76ccc5153fb2b69a7e39b705944fcfbfb77de50e09b8d6cbdcb1310b
Description: StrongSwan SHA2 crypto plugin
Package: strongswan-mod-smp
Version: 5.2.2-2
Depends: libc, strongswan, libxml2
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6305
Filename: strongswan-mod-smp_5.2.2-2_ramips_24kec.ipk
Size: 7085
MD5Sum: 533fa94b3936f6ee4a90b07fd4397547
SHA256sum: dfa60bb4d0e803f9b44b505468bc3b84f81b44532b19f22db12d9dccbd39b07a
Description: StrongSwan SMP configuration and control interface plugin
Package: strongswan-mod-socket-default
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5261
Filename: strongswan-mod-socket-default_5.2.2-2_ramips_24kec.ipk
Size: 6010
MD5Sum: 904104135453ab971131d2b66624dfc4
SHA256sum: 54c797f22221683324b436e528620e0665cc4824d97934e9bc505b5fc13d941c
Description: StrongSwan default socket implementation for charon plugin
Package: strongswan-mod-socket-dynamic
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4737
Filename: strongswan-mod-socket-dynamic_5.2.2-2_ramips_24kec.ipk
Size: 5479
MD5Sum: aba17641a024e2c803fb38e0a43f424e
SHA256sum: 3db60d3bb35174429c7d93670a390ca9b7df80062745744ff7f01d6448401792
Description: StrongSwan dynamic socket implementation for charon plugin
Package: strongswan-mod-sql
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7465
Filename: strongswan-mod-sql_5.2.2-2_ramips_24kec.ipk
Size: 8243
MD5Sum: bbccfb21641de92b7bcc507f6467cbc4
SHA256sum: ecd5e0b58f8a88a55f4ee6822f01a657b1563bbba63192260724dac5ea6316a2
Description: StrongSwan SQL database interface plugin
Package: strongswan-mod-sqlite
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-mod-sql, libsqlite3
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3899
Filename: strongswan-mod-sqlite_5.2.2-2_ramips_24kec.ipk
Size: 4653
MD5Sum: faa61f26a73c19be583544371b2e8ac9
SHA256sum: 1738ca53f8695c1663caaed7bc3c64300c8b1738286690bbed3c2f442d690b69
Description: StrongSwan SQLite database interface plugin
Package: strongswan-mod-stroke
Version: 5.2.2-2
Depends: libc, strongswan, strongswan-utils
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 68118
Filename: strongswan-mod-stroke_5.2.2-2_ramips_24kec.ipk
Size: 68916
MD5Sum: f51c5280d7b0e8e3462997a7145c7765
SHA256sum: 74c4f9e3141d1afeeff7b1c29fc34265015665118f48a12b76b83aea82aacde0
Description: StrongSwan Stroke plugin
Package: strongswan-mod-test-vectors
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19062
Filename: strongswan-mod-test-vectors_5.2.2-2_ramips_24kec.ipk
Size: 19654
MD5Sum: 42c2559820aed59cb1aa6d64b0f3019b
SHA256sum: a67da103fdf2043912c21a8e5ef1be7c82df0d67915de3102561b2c27f7dc27b
Description: StrongSwan crypto test vectors plugin
Package: strongswan-mod-uci
Version: 5.2.2-2
Depends: libc, strongswan, libuci
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6279
Filename: strongswan-mod-uci_5.2.2-2_ramips_24kec.ipk
Size: 7080
MD5Sum: 496b493e7fd36391d82e55501c9abeaf
SHA256sum: 157480bb8923d83c91d8fad2dc3f371b2b08cbd3c17dfb79773f75420b43c95a
Description: StrongSwan UCI config interface plugin
Package: strongswan-mod-unity
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5737
Filename: strongswan-mod-unity_5.2.2-2_ramips_24kec.ipk
Size: 6473
MD5Sum: 252a5e9f47bd280f06ef819cd4647529
SHA256sum: db4423695560361d4a854e7ffa872047f1f562ff8e21c63c6cd8d69fe39d7665
Description: StrongSwan Cisco Unity extension plugin
Package: strongswan-mod-updown
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10777
Filename: strongswan-mod-updown_5.2.2-2_ramips_24kec.ipk
Size: 11522
MD5Sum: 982b9b0a7c714fdb1278037236ce4281
SHA256sum: 8329d5a0b30e0f6b197898575a03e00b6b7a3a3978b534f598b828fb1a55957d
Description: StrongSwan updown firewall plugin
Package: strongswan-mod-whitelist
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6002
Filename: strongswan-mod-whitelist_5.2.2-2_ramips_24kec.ipk
Size: 6757
MD5Sum: 8f1e363342bc5b3d0b75df215a5c9963
SHA256sum: 9fd8261bfb42a4b7ad465ca7f13e5e6b604ceee06bda02e3ec62d657253d244d
Description: StrongSwan peer identity whitelisting plugin
Package: strongswan-mod-x509
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27716
Filename: strongswan-mod-x509_5.2.2-2_ramips_24kec.ipk
Size: 28123
MD5Sum: 832767e8d942d42528be020df38c0136
SHA256sum: 085f1e10dad6ac6eb9648f10d45a2058cd973ba88d0e720755a58af6413a3d0d
Description: StrongSwan x509 certificate plugin
Package: strongswan-mod-xauth-eap
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3161
Filename: strongswan-mod-xauth-eap_5.2.2-2_ramips_24kec.ipk
Size: 3899
MD5Sum: a4cfd26422a2ab8c8afb47b0f38e16e0
SHA256sum: 39a4ce2635ddac7149ed105445eeecd276e90381ffcb339dc29c49318365cc32
Description: StrongSwan EAP XAuth backend plugin
Package: strongswan-mod-xauth-generic
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3148
Filename: strongswan-mod-xauth-generic_5.2.2-2_ramips_24kec.ipk
Size: 3889
MD5Sum: f8468e11bd04ac4f7e33d54a18416928
SHA256sum: 61aad178b512b7a591c9de9b1b7fed19bf410c62324d2ebc846d4410cc98c789
Description: StrongSwan generic XAuth backend plugin
Package: strongswan-mod-xcbc
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3238
Filename: strongswan-mod-xcbc_5.2.2-2_ramips_24kec.ipk
Size: 3968
MD5Sum: 8e65f5038ee39e1ec7a89bc32af9cec8
SHA256sum: e1faf757a32adb455aca0c468bc64b3e40b3db3adf907b3d91caf66d2cae00f7
Description: StrongSwan xcbc crypto plugin
Package: strongswan-utils
Version: 5.2.2-2
Depends: libc, strongswan
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 37799
Filename: strongswan-utils_5.2.2-2_ramips_24kec.ipk
Size: 38705
MD5Sum: 3f3c97e17fea0b40bb75d6eabb469052
SHA256sum: 617e993a3538868bc574a74cc2b640cb60bdb0e084b477b149709869dd250a86
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This package contains the pki & scepclient utilities.
Package: strongswan
Version: 5.2.2-2
Depends: libc, libpthread, ip, kmod-crypto-authenc, kmod-ipsec, kmod-ipsec4, kmod-ipsec6, kmod-ipt-ipsec, iptables-mod-ipsec
Source: feeds/packages/net/strongswan
License: GPL-2.0+
Section: net
Maintainer: Steven Barth <[email protected]>
Architecture: ramips_24kec
Installed-Size: 129630
Filename: strongswan_5.2.2-2_ramips_24kec.ipk
Size: 130211
MD5Sum: 33cae69ac75621d8ee2399ce283adc64
SHA256sum: adb576b24fd8f96d6fc8c3a3fbfd59748dc382b14280c5261fe92e00d96b63e6
Description: StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
This package contains shared libraries and scripts.
Package: stunnel
Version: 5.10-1
Depends: libc, libopenssl
Source: feeds/packages/net/stunnel
License: GPL-2.0+
LicenseFiles: COPYING COPYRIGHT.GPL
Section: net
Maintainer: Michael Haas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 59409
Filename: stunnel_5.10-1_ramips_24kec.ipk
Size: 60284
MD5Sum: f638b9b0b4e678e2298ebda3157eb727
SHA256sum: b39b9da327e82370d88bc49d2dfe1c5b7a8e0ede9848f1b301651ac9f6dfae9e
Description: Stunnel is a program that allows you to encrypt arbitrary TCP
connections inside SSL (Secure Sockets Layer) available on both Unix
and Windows. Stunnel can allow you to secure non-SSL aware daemons and
protocols (like POP, IMAP, LDAP, etc) by having Stunnel provide the
encryption, requiring no changes to the daemon's code.
Package: sudo
Version: 1.8.12-1
Depends: libc
Source: feeds/packages/admin/sudo
License: ISC
LicenseFiles: doc/LICENSE
Section: admin
Maintainer: Gergely Kiss <[email protected]>
Architecture: ramips_24kec
Installed-Size: 233656
Filename: sudo_1.8.12-1_ramips_24kec.ipk
Size: 234066
MD5Sum: ecf3469993e4e55281a8ac2c1fccfc3f
SHA256sum: a20781aaad8b035ca61bd92da04c9f1c14d9e629505ee986d562303bfb85e07d
Description: Sudo (su "do") allows a system administrator to delegate authority to
give certain users (or groups of users) the ability to run some (or
all) commands as root or another user while providing an audit trail of
the commands and their arguments.
Package: sumo
Version: 0.22.0-1
Depends: libc, libstdcpp, libxerces-c
Source: feeds/packages/utils/sumo
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3782159
Filename: sumo_0.22.0-1_ramips_24kec.ipk
Size: 3774778
MD5Sum: 1bf6c27836e3309fb6ae06d27cd7bc95
SHA256sum: 229d72baf143143e987441d576f9d0adba38e9cf46ad9f5e9a14c7b44cd0ed34
Description: SUMO is a free and open traffic simulation suite which is available since 2001.
SUMO allows modelling of intermodal traffic systems including road vehicles,
public transport and pedestrians. Included with SUMO is a wealth of supporting
tools which handle tasks such as route finding, visualization, network import
and emission calculation. SUMO can be enhanced with custom models and provides
various APIs to remotely control the simulation.
Package: svox
Version: 1.0+git20130326-2
Depends: libc, libpopt
Source: feeds/packages/sound/svox
License: Apache-2.0
Section: sound
Maintainer: Alessandro Di Marco <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4809443
Filename: svox_1.0+git20130326-2_ramips_24kec.ipk
Size: 4806452
MD5Sum: 01a1a2d481203031555d5a920c668ffa
SHA256sum: 7250bd24c699cf7857da240a615d1074be5a9b888d66b839b076b032fceffb1e
Description: SVOX is an embedded speech technology company founded in 2000 and
headquartered in Zurich, Switzerland. SVOX was acquired by Nuance
Communications in 2011. Company's products included Automated Speech
Recognition (ASR), Text-to-Speech (TTS) and Speech Dialog systems,
with customers mostly being manufacturers and system integrators in
automotive and mobile device industries.
SVOX TTS technology is characterized by natural and clear sound as well
as unique polyglot capability - the same voice can speak multiple
languages like a native speaker.
Package: tar
Version: 1.28-2
Depends: libc, bzip2, libacl, libattr
Source: feeds/packages/utils/tar
License: GPL-3.0
LicenseFiles: COPYING
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 178126
Filename: tar_1.28-2_ramips_24kec.ipk
Size: 178789
MD5Sum: d7b7929dafd571fefc02e40c9a831499
SHA256sum: 12842af12bb5577c441c3d6455d24d6156d6dad8b3f8f8ee54e8f8c25540a858
Description: Tar is a program for packaging a set of files as a
single archive in tar format.
Package: taskwarrior
Version: 2.4.1-1
Depends: libc, libstdcpp, libuuid, libgnutls
Source: feeds/packages/utils/taskwarrior
License: MIT
Section: utils
Maintainer: Luka Perkov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 393583
Filename: taskwarrior_2.4.1-1_ramips_24kec.ipk
Size: 393413
MD5Sum: cfb636ac4a121490d31b3aaf15f360d3
SHA256sum: 182e274f2a2428c31dfdfc3ac7f20020556b52d206c4e0de13d80556e1f3d767
Description: taskwarrior is a command-line todo list manager
Package: tayga
Version: 0.9.2-2
Depends: libc, ip, kmod-ipv6, kmod-tun
Source: feeds/packages/ipv6/tayga
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Ondrej Caletka <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18356
Filename: tayga_0.9.2-2_ramips_24kec.ipk
Size: 19202
MD5Sum: dffd0c0726f7dd969a883be2dbc075cc
SHA256sum: d19781b4ffa092dcf3f5d16a8d3bcfb07b6af5e0c2cb0ed5af17d90553f7f20e
Description: TAYGA is an out-of-kernel stateless NAT64 implementation for
Linux. It uses the TUN driver to exchange packets with the
kernel, which is the same driver used by OpenVPN and QEMU/KVM.
Package: tcpproxy
Version: 1.1-1
Depends: libc
Source: feeds/packages/net/tcpproxy
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17593
Filename: tcpproxy_1.1-1_ramips_24kec.ipk
Size: 18485
MD5Sum: 9329656baef16bcc0dccf46c10d50909
SHA256sum: 85abd90b28dac31b97630ffebfb78d8e14652c4dadb3c6f6cbc27c90daadccf8
Description: tcpproxy is a simple tcp connection proxy which combines the features of rinetd and 6tunnel.
tcpproxy supports IPv4 and IPv6 and also supports connections from IPv6 to IPv4 endpoints and vice versa.
Package: tcsh
Version: 6.18.01-1
Depends: libc, libncurses
Source: feeds/packages/utils/tcsh
License: BSD-4-Clause-UC
LicenseFiles: Copyright
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 153346
Filename: tcsh_6.18.01-1_ramips_24kec.ipk
Size: 154281
MD5Sum: 09dd00c0a0e2f77253c57af5c327a054
SHA256sum: bc2a7d37f70af5f618e0b9d9d291a962d042e9cfdca2590d15af4b510aafcd9f
Description: Tcsh is an enhanced, but completely compatible
version of the Berkeley UNIX C shell (csh). It
is a command language interpreter usable both
as an interactive login shell and a shell
script command processor. It includes a
command-line editor, programmable word
completion, spelling correction, a history
mechanism, job control and a C-like syntax.
Package: tdb
Version: 1.0.6-1
Depends: libc
Source: feeds/packages/libs/tdb
License: GPL-2.0
Section: libs
Maintainer: Dmitry V. Zimin <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25615
Filename: tdb_1.0.6-1_ramips_24kec.ipk
Size: 26093
MD5Sum: 922a9e84f86107f0bd8978b56d9f730c
SHA256sum: 99972164d5d96b6d1ba435e270175fab8c24c64412b3935625a2f182dd3504a1
Description: TDB is a Trivial Database. In concept, it is very much like GDBM,
and BSD's DB except that it allows multiple simultaneous writers
and uses locking internally to keep writers from trampling on
each other. TDB is also extremely small.
Package: tgt
Version: 1.0.53-3
Depends: libc, libpthread, libaio
Source: feeds/packages/net/tgt
License: GPL-2.0
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 131197
Filename: tgt_1.0.53-3_ramips_24kec.ipk
Size: 132207
MD5Sum: 25cc05cce24c236c92f0b14270ef2288
SHA256sum: 70e96e083d03351305e2054945c8a3b0cf63c8a3e8bc35474a50740dfe503ce9
Description: Linux SCSI target framework (tgt) aims to simplify various SCSI target driver (iSCSI, Fibre Channel, SRP, etc) creation and maintenance.
Key goals of the project are the clean integration into the scsi-mid layer and implementing a great portion of tgt in user space.
Tgt consists of kernel-space and user-space code. The kernel-space component is included in upstream as of 2.6.20.
Note that if you are interested in only iSCSI (probably you are), you need only the user-space code (any kernel version is fine).
Package: tiff-utils
Version: 4.0.3-4
Depends: libc, libtiff
Source: feeds/packages/libs/tiff
License: BSD
LicenseFiles: COPYRIGHT
Section: utils
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 174094
Filename: tiff-utils_4.0.3-4_ramips_24kec.ipk
Size: 174828
MD5Sum: 1ad6634e04f7dd50ffe72a112388f35c
SHA256sum: de5a1cadbbcd0e976ab2c3c859e68256f0b7c6ea6b3fe3831a480133e9f05253
Description: TIFF utilities
Package: tinc
Version: 1.0.25-1
Depends: libc, liblzo, libopenssl, kmod-tun
Source: feeds/packages/net/tinc
Section: net
Maintainer: Saverio Proto <[email protected]>
Architecture: ramips_24kec
Installed-Size: 62264
Filename: tinc_1.0.25-1_ramips_24kec.ipk
Size: 63083
MD5Sum: 82255d8a9a3b2452f50cb5a115c3c840
SHA256sum: 8ce6c9d5e745cdfd72240ae72648b903122d62ce967bf9f28786d6c1443149d8
Description: tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and
encryption to create a secure private network between hosts on the Internet.
Package: tinyproxy
Version: 1.8.3-2
Depends: libc
Source: feeds/packages/net/tinyproxy
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29228
Filename: tinyproxy_1.8.3-2_ramips_24kec.ipk
Size: 29944
MD5Sum: 07aba386295cf2e0d2fe09d7b7ed9ef3
SHA256sum: c16ef97ffa65ce3d1caa631d1b101864891d4e4cc7e8f6cd25f6448300772022
Description: Tinyproxy is a lightweight HTTP and HTTPS proxy
Package: tmux
Version: 1.9a-1
Depends: libc, libncurses, libevent2, libpthread, librt
Source: feeds/packages/utils/tmux
License: ISC
LicenseFiles: COPYING
Section: utils
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 158263
Filename: tmux_1.9a-1_ramips_24kec.ipk
Size: 158467
MD5Sum: b60fdc499b718f5f8ddd13be9d90540e
SHA256sum: cde3f934af6ee265edae626f11485b7114a202fe2b03d4ee51c05792cfc57b79
Description: tmux is a modern, BSD-licensed alternative to GNU screen.
Package: tracertools
Version: 20141027-9ba70d1fe4f3c0f24d565d98c79fee71711823f0
Depends: libc
Source: feeds/packages/utils/tracertools
License: GPL-3.0
Section: utils
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4986
Filename: tracertools_20141027-9ba70d1fe4f3c0f24d565d98c79fee71711823f0_ramips_24kec.ipk
Size: 5737
MD5Sum: 035a6fac1b4a325211ac7fd502c8522f
SHA256sum: e79980f5d6396bd1a9923cd3ae43b66d33d65d63f9bf99b21cf436e59af450fe
Description: Tools for the Tracer MPPT solar charge controller.
Package: transmission-cli
Version: 2.84-1
Depends: libc, transmission-daemon
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 742020
Filename: transmission-cli_2.84-1_ramips_24kec.ipk
Size: 740609
MD5Sum: f726a0c2a790ec3510a4f7df5f13c74e
SHA256sum: 663a46ab47f19f033a747164808e9c868f3efda361fb74d27226b5d215a30456
Description: CLI utilities for transmission.
Package: transmission-daemon
Version: 2.84-1
Depends: libc, libcurl, libopenssl, libpthread, libevent2, librt
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 189892
Filename: transmission-daemon_2.84-1_ramips_24kec.ipk
Size: 190176
MD5Sum: a27898456fa7885f04b1a3265ddc1216
SHA256sum: cb50f3774f8ea97bd09aabd09fdb596e97807636d20f2870f2b7e4787b60ae85
Description: Transmission is a simple BitTorrent client.
It features a very simple, intuitive interface
on top on an efficient, cross-platform back-end.
This package contains the daemon itself.
Package: transmission-remote
Version: 2.84-1
Depends: libc, libcurl, libopenssl, libpthread, libevent2, librt
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 197232
Filename: transmission-remote_2.84-1_ramips_24kec.ipk
Size: 197453
MD5Sum: 8eb5ede69e926788771049a1923295b5
SHA256sum: bc79272a34689367bb4b0c4a69ac14028a1e324cd3be655737ea92f17de1ec02
Description: CLI remote interface for transmission.
Package: transmission-web
Version: 2.84-1
Depends: libc, transmission-daemon
Source: feeds/packages/net/transmission
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 205362
Filename: transmission-web_2.84-1_ramips_24kec.ipk
Size: 206232
MD5Sum: bfd036cb2027574568378d3e6a371e32
SHA256sum: 19020577bfe231571f490b5a2f0ad8146ace5949d9736bb0be8e642129ad84fd
Description: Webinterface resources for transmission.
Package: triggerhappy
Version: 0.3.4-2
Depends: libc
Source: feeds/packages/utils/triggerhappy
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15250
Filename: triggerhappy_0.3.4-2_ramips_24kec.ipk
Size: 15925
MD5Sum: 66578baa0194e35f34c4ce6800463961
SHA256sum: 221b6f882843798f0fd072d5c534f98a71fdb800012716f81733034bffa6e3fb
Description: triggerhappy - handle input events and run configured programs
The daemon thd can handle hotplugged input devices and is configured through
simple configuration files in /etc/triggerhappy/triggers.d/.
Package: uanytun-nettle
Version: 0.3.5-1
Depends: libc, kmod-tun, libnettle
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21101
Filename: uanytun-nettle_0.3.5-1_ramips_24kec.ipk
Size: 22272
MD5Sum: 9cb0695e71f9a7ba3c6403d9fe3887c5
SHA256sum: ae15e942db24e59f79bc22b01de2c1b769942cae4eaf185f745d9c71ddfa528c
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: uanytun-nocrypt
Version: 0.3.5-1
Depends: libc, kmod-tun
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16840
Filename: uanytun-nocrypt_0.3.5-1_ramips_24kec.ipk
Size: 18008
MD5Sum: 27ff63418c9f0ff723fd82d83a28f438
SHA256sum: b904a7cf36bb4034d31428b850bd547b85928c55c9450952cdf4320aa1bc27c7
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: uanytun-sslcrypt
Version: 0.3.5-1
Depends: libc, kmod-tun, libopenssl
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21111
Filename: uanytun-sslcrypt_0.3.5-1_ramips_24kec.ipk
Size: 22296
MD5Sum: d4f16f5fade48fe200adb36fe008b04f
SHA256sum: 2e5daa99f9e0d0b649741b4c27d835debd9ef3ae8c306383e479cede762e0a17
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: uanytun
Version: 0.3.5-1
Depends: libc, kmod-tun, libgcrypt
Source: feeds/packages/net/uanytun
License: GPL-3.0+
LicenseFiles: LICENSE
Section: net
Maintainer: Christian Pointner <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21531
Filename: uanytun_0.3.5-1_ramips_24kec.ipk
Size: 22712
MD5Sum: 4332937e8a810b0338730c170e844eae
SHA256sum: 6fd08cb67e4a16d539ad439655e90d50dfb82d2192a0e502bff3fc5bf4248c66
Description: uAnytun is a tiny implementation of SATP the secure anycast tunneling protocol.
SATP defines a protocol used for communication between any combination of
unicast and anycast tunnel endpoints. It has less protocol overhead than
IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g.
ethernet, ip, arp ...). SATP directly includes cryptography and message
authentication based on the methods used by SRTP. It is intended to deliver
a generic, scaleable and secure solution for tunneling and relaying of packets
of any protocol.
Unlike Anytun which is a full featured implementation uAnytun has no support
for multiple connections or synchronisation. It is a small single threaded
implementation intended to act as a client on small platforms.
Package: udpxy
Version: 2015-03-08-c045a1e855a8033c5d70ab3e42271ba5636eb520-1
Depends: libc
Source: feeds/packages/net/udpxy
License: GPL-3.0
LicenseFiles: gpl.txt
Section: net
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31338
Filename: udpxy_2015-03-08-c045a1e855a8033c5d70ab3e42271ba5636eb520-1_ramips_24kec.ipk
Size: 32335
MD5Sum: 701b39499b01fdbed2cfe1d245718a5c
SHA256sum: 8606f22cb715f2bfbca0ba2a50940e292826cb9a6bd6b9ebf1cc062536c16c71
Description: udproxy makes it possible to convert UDP IPTV streams into HTTP
streams which can be viewed even over WLANs. HTTP streams do
not generate huge amounts of multicast traffic, so a sd stream
only takes about 300k. Interesting for peoply who have IPTV at
home and do not want to rent multiple decoders from their
provider but just use their own streaming client (for example
popcornhour/mediatomb/vlc).
Package: ulogd-mod-dbi
Version: 2.0.4-1
Depends: libc, ulogd, libdbi
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6617
Filename: ulogd-mod-dbi_2.0.4-1_ramips_24kec.ipk
Size: 7405
MD5Sum: 8772feab98c520fda98fd6c27503846c
SHA256sum: 98fcb17ec62037d50881ba4bdb3ee0a7b628f65d4c405bcf3b1357e68e3fc0fa
Description: Output plugin for logging to a database using libdbi
Package: ulogd-mod-extra
Version: 2.0.4-1
Depends: libc, ulogd
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21135
Filename: ulogd-mod-extra_2.0.4-1_ramips_24kec.ipk
Size: 21830
MD5Sum: 52ed7aa15891841d73f814950e05bebc
SHA256sum: 7e2aad3f9a84188a0bc6de28130deeff295856f192774a25dc79b39534394e94
Description: Extra plugins
Package: ulogd-mod-mysql
Version: 2.0.4-1
Depends: libc, ulogd, libmysqlclient
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6233
Filename: ulogd-mod-mysql_2.0.4-1_ramips_24kec.ipk
Size: 7052
MD5Sum: 4f0b2f92b8e3bb167318ab75e72f3ed7
SHA256sum: 6a4eed10cbadff7b7f221bfc4d7f19766560b6ada8c25d0fd17eaf12beeaef9d
Description: Output plugin for logging to a MySQL database
Package: ulogd-mod-nfacct
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-acct
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3031
Filename: ulogd-mod-nfacct_2.0.4-1_ramips_24kec.ipk
Size: 3783
MD5Sum: 5e864cd58305a31501c2217fe0e59c07
SHA256sum: 4521abee013b7d99098025201a3a27ffee8ae189b3af5aa9ff7e00eae7ba2139
Description: Input plugin for flow-based logging (accounting)
Package: ulogd-mod-nfct
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-conntrack
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7973
Filename: ulogd-mod-nfct_2.0.4-1_ramips_24kec.ipk
Size: 8760
MD5Sum: 50ed358d31dd8f50aa39b96ed90223e6
SHA256sum: f28e00bfdcdf8a51d5b2d4664be80a6f92ff913a6822d6b6aac8655d5fa6e34c
Description: Input plugin for flow-based logging (conntracking)
Package: ulogd-mod-nflog
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-log
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4447
Filename: ulogd-mod-nflog_2.0.4-1_ramips_24kec.ipk
Size: 5205
MD5Sum: b2e89757d2edeb41618543317105395f
SHA256sum: 7a607abc63e08068a8f61fab342d6d0ddbbcc5adb832e3e518b738f1a8346efc
Description: Input plugin using NFLOG
Package: ulogd-mod-pcap
Version: 2.0.4-1
Depends: libc, ulogd, libpcap
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2322
Filename: ulogd-mod-pcap_2.0.4-1_ramips_24kec.ipk
Size: 3096
MD5Sum: c31fbd3e1a1dfe2c8412f4358cd70825
SHA256sum: 1e557843af4959daf0bfb16afb8d1da3226be8758a4f14bd7eb84535e17dcc6c
Description: Output plugin for logging in pcap format
Package: ulogd-mod-pgsql
Version: 2.0.4-1
Depends: libc, ulogd, libpq
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7158
Filename: ulogd-mod-pgsql_2.0.4-1_ramips_24kec.ipk
Size: 7946
MD5Sum: 8f15fb3bf51c0b4762700430f95cc504
SHA256sum: 7e9b7d1e953281a2ba62472c1cd22eac8ed9c3340fb81e2aaa4b9d7a1d2a9ea8
Description: Output plugin for logging to a PostgreSQL database
Package: ulogd-mod-sqlite
Version: 2.0.4-1
Depends: libc, ulogd, libsqlite3
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6952
Filename: ulogd-mod-sqlite_2.0.4-1_ramips_24kec.ipk
Size: 7768
MD5Sum: cf1ebff332b5a328f45ebaf48a48874d
SHA256sum: ea6c966b2942995694925ed2ee0ca2e4aa66847b472e93245de4da826e504ada
Description: Output plugin for logging to an SQLite database
Package: ulogd-mod-syslog
Version: 2.0.4-1
Depends: libc, ulogd
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2060
Filename: ulogd-mod-syslog_2.0.4-1_ramips_24kec.ipk
Size: 2823
MD5Sum: d090365030dd29b0c766f19a35a6d318
SHA256sum: 0e2f782963772fb268e82fcb176f7f1f09f239738081d206c635a0e6cb27329c
Description: Syslog output plugin
Package: ulogd-mod-xml
Version: 2.0.4-1
Depends: libc, ulogd, libnetfilter-acct, libnetfilter-conntrack, libnetfilter-log
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2758
Filename: ulogd-mod-xml_2.0.4-1_ramips_24kec.ipk
Size: 3541
MD5Sum: 22e4a0f807d59826a96dad4f17ca75e4
SHA256sum: 9729e6bd01e51c213ebf357592c602daf71eeb039b81d83113bbb2efe29d2c42
Description: XML output plugin
Package: ulogd
Version: 2.0.4-1
Depends: libc, libmnl, libnfnetlink, libpthread
Source: feeds/packages/net/ulogd
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Maintainer: Nicolas Thill <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20336
Filename: ulogd_2.0.4-1_ramips_24kec.ipk
Size: 21142
MD5Sum: b064efd939948bfd211bacc75d96e211
SHA256sum: 8e3a99f41f574c4b30aa2eb43fbb543f41e283510340f25b482726c5d1c35459
Description: Netfilter userspace logging daemon
Package: umurmur-openssl
Version: 0.2.15-1
Depends: libc, libconfig, libprotobuf-c, libopenssl
Source: feeds/packages/net/umurmur
License: BSD-3-Clause
Section: net
Maintainer: Martin Johansson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36167
Filename: umurmur-openssl_0.2.15-1_ramips_24kec.ipk
Size: 36772
MD5Sum: b61b61470eeb92d8c0da1a90fd4e4994
SHA256sum: 7570e790eeab577fcc6e964cc3dd4d8ed551a1d96ba6dd38ee3a07f32d8a36d5
Description: Minimalistic Mumble server daemon.
Uses OpenSSL library for SSL and crypto.
Package: umurmur-polarssl
Version: 0.2.15-1
Depends: libc, libconfig, libprotobuf-c, libpolarssl
Source: feeds/packages/net/umurmur
License: BSD-3-Clause
Section: net
Maintainer: Martin Johansson <[email protected]>
Architecture: ramips_24kec
Installed-Size: 34761
Filename: umurmur-polarssl_0.2.15-1_ramips_24kec.ipk
Size: 35230
MD5Sum: fceaa1a7548b2cf4a487fd651fd192c1
SHA256sum: 7bdbde3a2e7bb201b4686eddea4926434fdf06c5bcbf093c6972eace0c41ec7b
Description: Minimalistic Mumble server daemon.
Uses the PolarSSL library for SSL and crypto.
Package: unbound-anchor
Version: 1.5.1-1
Depends: libc, libopenssl, unbound, libexpat
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19019
Filename: unbound-anchor_1.5.1-1_ramips_24kec.ipk
Size: 19667
MD5Sum: f3626ea4a70deaf3060622735f443403
SHA256sum: b0a6b3b2728b4fe02f32a44cb08daa412fd87e7e799577207914545f808f8d8d
Description: This package contains the Unbound anchor utility.
Package: unbound-control-setup
Version: 1.5.1-1
Depends: libc, libopenssl, unbound-control, openssl-util
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2361
Filename: unbound-control-setup_1.5.1-1_ramips_24kec.ipk
Size: 3157
MD5Sum: 21943e50b7c6635cf651b974eab906b2
SHA256sum: 65dcc122e6cec111d370029d0c0b9447db0e632670e8b46209061716542885fc
Description: This package contains the Unbound control setup utility.
Package: unbound-control
Version: 1.5.1-1
Depends: libc, libopenssl, unbound
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42506
Filename: unbound-control_1.5.1-1_ramips_24kec.ipk
Size: 42957
MD5Sum: f47e2dbb91624fdeee599ee24745c9dc
SHA256sum: 920e624586dde3e317f14769279fbf71291e623216a04746c47be6dc7df90b10
Description: This package contains the Unbound control utility.
Package: unbound-host
Version: 1.5.1-1
Depends: libc, libopenssl, libunbound
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 36560
Filename: unbound-host_1.5.1-1_ramips_24kec.ipk
Size: 37118
MD5Sum: 86b548eb8a6db3626b42cac65d220fe7
SHA256sum: 12dc6856d1cef30271215fc284904d5a3f4c6e58da913db36b3c7c1d615cfb50
Description: This package contains the Unbound DNS lookup utility.
Package: unbound
Version: 1.5.1-1
Depends: libc, libopenssl, libunbound
Source: feeds/packages/net/unbound
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: net
Maintainer: Michael Hanselmann <[email protected]>
Architecture: ramips_24kec
Installed-Size: 122428
Filename: unbound_1.5.1-1_ramips_24kec.ipk
Size: 122006
MD5Sum: 3eb67d004566d54fe3f7433fc3b94483
SHA256sum: 8aad571db62406a598f4606b03a9226516ed072231cdfe38addccbc4acf17a09
Description: This package contains the Unbound daemon.
Package: unixodbc-tools
Version: 2.3.2-1
Depends: libc, unixodbc, libncurses, libreadline
Source: feeds/packages/libs/unixodbc
License: prog GPL libs LGPL
Section: utils
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25896
Filename: unixodbc-tools_2.3.2-1_ramips_24kec.ipk
Size: 26607
MD5Sum: 44a12b535b7f74fbc053d1c9c84ba681
SHA256sum: 8c6ab07be23501365ade4e0562d7e19a74336a40ab0037755201430565a081f4
Description: Command Line Tools to help install a driver and work with SQL.
Package: unixodbc
Version: 2.3.2-1
Depends: libc, libltdl, libpthread
Source: feeds/packages/libs/unixodbc
License: prog GPL libs LGPL
Section: libs
Maintainer: Thomas Heil <[email protected]>
Architecture: ramips_24kec
Installed-Size: 181634
Filename: unixodbc_2.3.2-1_ramips_24kec.ipk
Size: 182064
MD5Sum: 59b742ca3095612c4eb05248433db3a0
SHA256sum: b0f5dbd9e3ce8a20b07684c0597fb34fae539003022ab933946aa5686aded60a
Description: unixODBC is an Open Source ODBC sub-system and an ODBC SDK for Linux,
Mac OSX, and UNIX.
Package: unrar
Version: 5.2.6-1
Depends: libc, uclibcxx, libpthread
Source: feeds/packages/utils/unrar
License: UnRAR
LicenseFiles: license.txt
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 119699
Filename: unrar_5.2.6-1_ramips_24kec.ipk
Size: 120419
MD5Sum: a301975a27b391031136268a6dca7a72
SHA256sum: 595a4ef0bace618da1645a4c994fa69d5c73dd1b096470b67c49f0771a3770aa
Description: UnRAR is an application that can decompress files and archives created using
the RAR compression scheme
Package: unzip
Version: 6.0-2
Depends: libc
Source: feeds/packages/utils/unzip
License: BSD-4-Clause
LicenseFiles: LICENSE
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 163029
Filename: unzip_6.0-2_ramips_24kec.ipk
Size: 163825
MD5Sum: 1e137ca9aa3617660d990e5a32ad4a46
SHA256sum: 4e92f17a34b07f3d5f13996b90a7e5f8c328e7a24cdf8b923985765550318a93
Description: InfoZIP's unzip program. With the exception of multi-volume archives
(ie, .ZIP files that are split across several disks using PKZIP's /& option),
this can handle any file produced either by PKZIP, or the corresponding
InfoZIP zip program.
Package: upmpdcli
Version: 0.9.0-2
Depends: libc, libupnpp, libmpdclient
Source: feeds/packages/sound/upmpdcli
License: GPL-2.0
LicenseFiles: COPYING
Section: sound
Require-User: upmpdcli=89:upmpdcli=89
Maintainer: Petko Bordjukov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106005
Filename: upmpdcli_0.9.0-2_ramips_24kec.ipk
Size: 106452
MD5Sum: bea84d7336f7421c9802a3ec3f43c0a4
SHA256sum: c705329c7092883596a8f6b8a9255c3b0776c30e98a82bdbe8c05ba6ab6dc08f
Description: upmpdcli implements an UPnP Media Renderer, using MPD to perform the real work.
Package: usbmuxd
Version: 1.1.1-2
Depends: libc, librt, libusb-1.0, libusbmuxd, libcrypto, libopenssl, libimobiledevice
Source: feeds/packages/utils/usbmuxd
License: GPL-2.0
LicenseFiles: COPYING.GPLv2
Section: utils
Maintainer: Lukasz Baj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28136
Filename: usbmuxd_1.1.1-2_ramips_24kec.ipk
Size: 29099
MD5Sum: a97cccf6c3a93a93be69adbeed3964e3
SHA256sum: c7456b1fda05139795beed570311a9c3b5bb2923ad3c0f9019c946fbae932c92
Description: This daemon is in charge of multiplexing connections over USB to an iPhone or
iPod touch. To users, it means you can sync your music, contacts, photos, etc.
over USB. To developers, it means you can connect to any listening localhost
socket on the device. usbmuxd is not used for tethering data transfer, which
uses a dedicated USB interface as a virtual network device.
Package: uuid
Version: 0.2.0-1
Depends: libc, lua, luasocket
Source: feeds/packages/lang/uuid
License: Apache-2.0
Section: lang
Maintainer: Amr Hassan <[email protected]>
Architecture: ramips_24kec
Installed-Size: 3219
Filename: uuid_0.2.0-1_ramips_24kec.ipk
Size: 3936
MD5Sum: 7d0a2f75cea20294ba706218d7f6570d
SHA256sum: f139de1b9dd5c9132d424b355c94ab769c16e1caa14cb5f738fe0721f46ca71f
Description: A pure Lua uuid generator
Package: uvcdynctrl
Version: 0.2.4
Depends: libc, libwebcam
Source: feeds/packages/utils/uvcdynctrl
Section: utils
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 20290
Filename: uvcdynctrl_0.2.4_ramips_24kec.ipk
Size: 20902
MD5Sum: f98b0cdc48309bc55a53f5653978493f
SHA256sum: c2ffb7d2112dc4b771dfe2a9f9f9444d8998d7b2e5875904926938c07894ca65
Description: The webcam-tools package contains the following two components:
- libwebcam: Webcam Library (LGPL)
- uvcdynctrl: Manage dynamic controls in uvcvideo (GPL)
Package: v4l-utils
Version: 1.6.2-1
Depends: libc, libv4l, uclibcxx
Source: feeds/packages/libs/libv4l
License: GPL-2.0 LGPL-2.1
LicenseFiles: COPYING COPYING.libv4l
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 222780
Filename: v4l-utils_1.6.2-1_ramips_24kec.ipk
Size: 223729
MD5Sum: 07faf126813ed0473d7f96c5efbf84da
SHA256sum: 8b5e3583c430e6d226c796c6063cc00f2837607b943f017fdc3d0cb613c9b1fa
Description: libv4l is a collection of libraries which adds a thin abstraction layer on
top of video4linux2 devices. The purpose of this (thin) layer is to make it
easy for application writers to support a wide variety of devices without
having to write separate code for different devices in the same class. libv4l
consists of 3 different libraries: libv4lconvert, libv4l1 and libv4l2.
libv4l1 offers the (deprecated) v4l1 API on top of v4l2 devices, independent
of the drivers for those devices supporting v4l1 compatibility (which many
v4l2 drivers do not).
libv4l2 offers the v4l2 API on top of v4l2 devices, while adding for the
application transparent libv4lconvert conversion where necessary.
This package contains the video4linux utilities.
Package: vim-full
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 750567
Filename: vim-full_7.4-2_ramips_24kec.ipk
Size: 750921
MD5Sum: 73f753da1a2ac65465dd0f883c09a592
SHA256sum: 9686168effdc98f1da8f07d91379193661b7d91c85dca4d67669952448aed2d1
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Normal build)
Package: vim-help
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1875083
Filename: vim-help_7.4-2_ramips_24kec.ipk
Size: 1875511
MD5Sum: 4c6bc91a1da260dfe5119fad7ece169a
SHA256sum: b3530da84aa66e5b295706133eeb3b8b0f2a4e3f4d80d46f7e141f7104ce2cca
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Help files)
Package: vim-runtime
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1763542
Filename: vim-runtime_7.4-2_ramips_24kec.ipk
Size: 1760200
MD5Sum: c7428d2e0d5e656c6955ca05de3358c6
SHA256sum: 3d9b61b22e16f010b4979816a3e84d93b0dca3bf858f0f50b30ce2fec44c6a92
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Runtime files)
Package: vim
Version: 7.4-2
Depends: libc, libncurses
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 266366
Filename: vim_7.4-2_ramips_24kec.ipk
Size: 267037
MD5Sum: 5004f63fa6af880a6f599c019179d80a
SHA256sum: 8fa8fe84c54137c5c63e8e910f9da70b3c2e80fe8bb248161bb48ebe6e977a24
Description: Vim is an almost compatible version of the UNIX editor Vi.
(Tiny build)
Package: vips
Version: 7.42.1-1
Depends: libc, glib2, libexif, libjpeg, libpng, libxml2
Source: feeds/packages/libs/vips
Section: multimedia
Maintainer: W. Michael Petullo <[email protected]>
Architecture: ramips_24kec
Installed-Size: 476264
Filename: vips_7.42.1-1_ramips_24kec.ipk
Size: 473518
MD5Sum: 738fac02a79fbb892c3abe15f24d77aa
SHA256sum: e004fce92a55cf3a8953ea130e3372f3a86790780cb1455dfb4cd7511caebcbc
Description: An image manipulation library
Package: vnstat
Version: 1.12-1
Depends: libc
Source: feeds/packages/net/vnstat
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 65646
Filename: vnstat_1.12-1_ramips_24kec.ipk
Size: 66432
MD5Sum: 4fa7c75b404f0166321c389cacdbba32
SHA256sum: 362c0ff62a7e1dc55ea0b103edd924315415bfc8a3824ad2ddc5b9a13077ab08
Description: vnStat is a network traffic monitor for Linux that keeps a log of daily
network traffic for the selected interface(s). vnStat isn't a packet
sniffer. The traffic information is analyzed from the /proc -filesystem,
so vnStat can be used without root permissions.
Package: vnstati
Version: 1.12-1
Depends: libc, vnstat, libgd
Source: feeds/packages/net/vnstat
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32124
Filename: vnstati_1.12-1_ramips_24kec.ipk
Size: 32889
MD5Sum: 998076fc9d5afcda91c38d8cac3a6413
SHA256sum: ba27d8329f66e4d24a9ce4a8d05ed927d3c00af370336c9284cb14169b2e93cb
Description: The purpose of vnstati is to provide image output support for statistics
collected using vnstat(1). However, the image file format is limited to
png. All basic outputs of vnStat are supported excluding live traffic
features. The image can be outputted either to a file or to standard
output.
Package: vpnc-scripts
Version: 20150116-1
Depends: libc
Source: feeds/packages/net/vpnc-scripts
Section: net
Maintainer: Nikos Mavrogiannopoulos <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2173
Filename: vpnc-scripts_20150116-1_ramips_24kec.ipk
Size: 2958
MD5Sum: 1ea42195efe37395be3a1f0567fe229c
SHA256sum: ef4f2136132516ebc0d8bf45c7be76958622c90125394e7700a08522e81aee03
Description: This package contains the vpnc-script which is used by vpnc
and OpenConnect to configure the tunnel interface.
Package: vpnc
Version: 0.5.3.r550-1
Depends: libc, libgpg-error, libgcrypt, kmod-tun, libgnutls, vpnc-scripts, resolveip
Source: feeds/packages/net/vpnc
License: VARIOUS
LicenseFiles: COPYING
Section: net
Maintainer: Daniel Gimpelevich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 48720
Filename: vpnc_0.5.3.r550-1_ramips_24kec.ipk
Size: 49621
MD5Sum: d236e3cbfe57c4c56e90b481303cf0b7
SHA256sum: b13898e0e18ea1aa08c6bedc095c09621c36110ea69e58d02268858e5e4ae018
Description: A VPN client compatible with Cisco's EasyVPN equipment.
Supports IPSec (ESP) with Mode Configuration and Xauth. Supports only
shared-secret IPSec authentication with Xauth, AES (256, 192, 128),
3DES, 1DES, MD5, SHA1, DH1/2/5 and IP tunneling.
Package: vsftpd-tls
Version: 3.0.2-4
Depends: libc, libopenssl
Source: feeds/packages/net/vsftpd
License: GPLv2
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44991
Filename: vsftpd-tls_3.0.2-4_ramips_24kec.ipk
Size: 45831
MD5Sum: 1476e1690160d922ce0b1e7f4006b9be
SHA256sum: 14c8bc88bef34edd12751b203206520d945c1ed269b30e5ef28ccf9fae5c0e99
Description: A fast and secure FTP server (TLS)
Package: vsftpd
Version: 3.0.2-4
Depends: libc
Source: feeds/packages/net/vsftpd
License: GPLv2
Section: net
Maintainer: Cezary Jackiewicz <[email protected]>
Architecture: ramips_24kec
Installed-Size: 42190
Filename: vsftpd_3.0.2-4_ramips_24kec.ipk
Size: 42971
MD5Sum: 265513f7791f910ee5fde6276db1f136
SHA256sum: ab447fa6f79ee411abd46d2d662c3d3ea4b4cd5d7f5dddf3da79a9acadc4910f
Description: A fast and secure FTP server (no TLS)
Package: watchcat
Version: 1-5
Depends: libc
Source: feeds/packages/utils/watchcat
License: GPL-2.0
Section: utils
Maintainer: Roger D <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2138
Filename: watchcat_1-5_ramips_24kec.ipk
Size: 2926
MD5Sum: b911781dbea19a1ed16ea8f5758f9e86
SHA256sum: 04eea89533913e764b3791eafa002356b8b6cb1ce95d76edb4d9921793cb224d
Description: Allows to configure a periodically reboot, or after loosing internet connectivity. Configured trough UCI /etc/config/system.
Package: wavemon
Version: 0.7.6-1
Depends: libc, libncurses, libpthread
Source: feeds/packages/net/wavemon
License: GPL-2.0+
LicenseFiles: COPYING
Section: net
Architecture: ramips_24kec
Installed-Size: 31542
Filename: wavemon_0.7.6-1_ramips_24kec.ipk
Size: 32268
MD5Sum: 3189da416bc73b0fb61876509630cf02
SHA256sum: 7e7115679eb66db20e5397dd6bdc5d88d8d2a3952a562355d9c8e7d723e2136e
Description: wavemon is a ncurses-based monitoring application for wireless network
devices. It currently works under Linux with devices that are supported
by the wireless extensions by Jean Tourrilhes (included in Kernel 2.4
and higher), e.g. the Lucent Orinoco cards.
Package: wget-nossl
Version: 1.16.2-1
Depends: libc, libpcre, zlib
Source: feeds/packages/net/wget
License: GPL-3.0+
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 179818
Filename: wget-nossl_1.16.2-1_ramips_24kec.ipk
Size: 180114
MD5Sum: 0b04b46f4a2f8eb66e2761ba74f0cd6d
SHA256sum: 4005eb39cf5f1b2c586b912d28e52a0d36b8dc3a335be70575ff57883f403b9f
Description: Wget is a network utility to retrieve files from the Web using http
and ftp, the two most widely used Internet protocols. It works
non-interactively, so it will work in the background, after having
logged off. The program supports recursive retrieval of web-authoring
pages as well as ftp sites -- you can use wget to make mirrors of
archives and home pages or to travel the Web like a WWW robot.
This package is built without SSL support.
Package: wget
Version: 1.16.2-1
Depends: libc, libpcre, libopenssl, librt
Source: feeds/packages/net/wget
License: GPL-3.0+
LicenseFiles: COPYING
Section: net
Maintainer: Maxim Storchak <[email protected]>
Architecture: ramips_24kec
Installed-Size: 186085
Filename: wget_1.16.2-1_ramips_24kec.ipk
Size: 186563
MD5Sum: ffb7e096eb42b981538a0658b10284b6
SHA256sum: 00a6f3d440a693cdfff0b34085391ce413669df2689f2400767cea9d93cdde96
Description: Wget is a network utility to retrieve files from the Web using http
and ftp, the two most widely used Internet protocols. It works
non-interactively, so it will work in the background, after having
logged off. The program supports recursive retrieval of web-authoring
pages as well as ftp sites -- you can use wget to make mirrors of
archives and home pages or to travel the Web like a WWW robot.
This package is built with SSL support.
Package: wifitoggle
Version: 1-4
Depends: libc
Source: feeds/packages/utils/wifitoggle
License: GPL-2.0+
Section: utils
Maintainer: Nuno Goncalves <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1526
Filename: wifitoggle_1-4_ramips_24kec.ipk
Size: 2387
MD5Sum: 88d17b52faa5048ae403919fec0e57f1
SHA256sum: dced7861d753f591cc34e74fb3eb1f023cf5e10c11cb0d466d88bffe7512b53f
Description: Very versatile script to toggle Wi-Fi with a button. Allows to set
timeouts, persist changes after boot, and set LEDs according to the state.
Package: wshaper
Version: 1.1a-1
Depends: libc, kmod-sched, tc
Source: feeds/packages/net/wshaper
Section: net
Maintainer: Jo-Philipp Wich <[email protected]>
Architecture: all
Installed-Size: 2171
Filename: wshaper_1.1a-1_all.ipk
Size: 3060
MD5Sum: 1da727db77e34bce8e8d0190a84cae9c
SHA256sum: 2a3c64908e3ac0d0fc975e52d791e43dc47d91e62531b78c83cdc4eb76d5dda5
Description: A script to do traffing shaping with the HTB algorithm.
Wshaper attempts to:
* Maintain low latency for interfactive traffic at all times
* Allow 'surfing' at reasonable speeds while up or downloading
* Make sure uploads don't harm downloads, and the other way around
Package: xinetd
Version: 2.3.15-3
Depends: libc
Source: feeds/packages/net/xinetd
License: xinetd
LicenseFiles: COPYRIGHT
Section: net
Architecture: ramips_24kec
Installed-Size: 58197
Filename: xinetd_2.3.15-3_ramips_24kec.ipk
Size: 59038
MD5Sum: e2d46d08f885f108223352a5e0a771b9
SHA256sum: bcb52e8b68ca55b111c87c784c8d7f6ecc629681dce6032ad368cd48cc708d2c
Description: xinetd has access control mechanisms, extensive logging capabilities,
the ability to make services available based on time, can place limits
on the number of servers that can be started, and has deployable
defence mechanisms to protect against port scanners, among other
things.
Package: xl2tpd
Version: 1.3.6-5619e1771048e74b729804e8602f409af0f3faea
Depends: libc, ppp-mod-pppol2tp, ip, resolveip
Source: feeds/packages/net/xl2tpd
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Daniel Golle <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44755
Filename: xl2tpd_1.3.6-5619e1771048e74b729804e8602f409af0f3faea_ramips_24kec.ipk
Size: 45670
MD5Sum: c134cc7966083c40a97f2b56331c0f71
SHA256sum: f6992c9b236c338e3e0b38cc8c7a6e928155f4b83691e940543d717c945b1345
Description: l2tpd is the open source implementation of the L2TP tunneling protocol (RFC2661).
It does implement both LAC and LNS role in a L2TP networking architecture. The
main goal of this protocol is to tunnel PPP frame trough an IP network.
Package: xmlrpc-c-client
Version: 1.39.0-1
Depends: libc, xmlrpc-c, libcurl
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 98552
Filename: xmlrpc-c-client_1.39.0-1_ramips_24kec.ipk
Size: 99306
MD5Sum: 0e3b6a8b362a2b80771230ad97b87456
SHA256sum: aae20bcdf14948d6cb530a4b64d71385a92cf0da6d98d27212a04e6f2a1480c4
Description: XML-RPC library - client
Package: xmlrpc-c-common
Version: 1.39.0-1
Depends: libc, libpthread
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7313
Filename: xmlrpc-c-common_1.39.0-1_ramips_24kec.ipk
Size: 8229
MD5Sum: 7edf3f228e727673e201ec6e5521c85c
SHA256sum: ccdaac92b68b423d5852e4b880dd66752f58e052204cc3d1ede76fcf3925a78b
Description: Programming library for writing an XML-RPC server or client in C or C++.
XML-RPC is a standard network protocol to allow a client program to make
a simple remote procedure call (RPC) type request of a server.
Package: xmlrpc-c-internal
Version: 1.39.0-1
Depends: libc, xmlrpc-c-common
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 71888
Filename: xmlrpc-c-internal_1.39.0-1_ramips_24kec.ipk
Size: 72686
MD5Sum: be9700b70fd25b9368c31bc67dcff29c
SHA256sum: 8151920bb3da86582f0edd98462216ce35926d720947b81ef50e8ec8ba37ccd3
Description: Programming library for writing an XML-RPC server or client in C or C++.
XML-RPC is a standard network protocol to allow a client program to make
a simple remote procedure call (RPC) type request of a server. Uses internal expat variant (stripped down)
Package: xmlrpc-c-server
Version: 1.39.0-1
Depends: libc, xmlrpc-c
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 8009
Filename: xmlrpc-c-server_1.39.0-1_ramips_24kec.ipk
Size: 8783
MD5Sum: b63ea7caa7a1d5c81afc4f7d8103e8ea
SHA256sum: 31d780d03497fc64baf68f0fbf72393adf9912e272e4fed23ca57c04a67043eb
Description: XML-RPC library - server
Package: xmlrpc-c
Version: 1.39.0-1
Depends: libc, xmlrpc-c-internal
Source: feeds/packages/libs/xmlrpc-c
License: VARIOUS
LicenseFiles: doc/COPYING
Section: libs
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 106
Filename: xmlrpc-c_1.39.0-1_ramips_24kec.ipk
Size: 868
MD5Sum: 88f7803e7a54b82ae9c55a1cf916c8bd
SHA256sum: fb0828a1402d01caa6eacc333b7dc820e29c24a96c2075d1b835fae16dc41c2a
Description: XML-RPC library (uses internal expat variant)
Package: xsltproc
Version: 1.1.28-2
Depends: libc, libxml2, libxslt, libexslt
Source: feeds/packages/libs/libxslt
License: MIT
LicenseFiles: COPYING
Section: utils
Maintainer: Jiri Slachta <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7545
Filename: xsltproc_1.1.28-2_ramips_24kec.ipk
Size: 8317
MD5Sum: 358546be5c014ed5e882d6e13e6d9d5d
SHA256sum: 62e968989e9f65a48c7a6421854bf1128075b7cb0b2ec115734ad11ed3ae9e27
Description: XSLT XML transformation utility.
Package: xupnpd
Version: 404-1
Depends: libc, liblua
Source: feeds/packages/multimedia/xupnpd
Section: multimedia
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 117174
Filename: xupnpd_404-1_ramips_24kec.ipk
Size: 118165
MD5Sum: 76b69b7fb99a8aa7a9244a9b983854de
SHA256sum: 6eaf0c52438da02d7768afdadc22e3fbe92757ac81d814ef65abe7a3b66afc59
Description: xupnpd - eXtensible UPnP agent
This program is a light DLNA Media Server which provides ContentDirectory:1 service for sharing IPTV unicast streams over local area network (with udpxy for multicast to HTTP unicast conversion).
The program shares UTF8-encoded M3U playlists with links over local area network as content of the directory.
You can watch HDTV broadcasts (multicast or unicast) and listen Internet Radio in IP network without transcoding and PC.
Package: xxd
Version: 7.4-2
Depends: libc
Source: feeds/packages/utils/vim
Section: utils
Maintainer: Marko Ratkaj <[email protected]>
Architecture: ramips_24kec
Installed-Size: 5816
Filename: xxd_7.4-2_ramips_24kec.ipk
Size: 6588
MD5Sum: c9a413878b45ff78aa594e013ed72779
SHA256sum: 62d065702916a5cd90dee400bd825c3703b02f0ee26e1f211ea56317faa91c2a
Description: xxd creates a hex dump of a given file or standard input, it can also convert
a hex dump back to its original binary form.
Package: zabbix-agent
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 87533
Filename: zabbix-agent_2.4.4-1_ramips_24kec.ipk
Size: 88340
MD5Sum: 600c6e23857a2409ed13d9732f0bbb15
SHA256sum: 65d01065862d4fea082944a003662d29772d617d46817529edec280192129f81
Description: Zabbix agent
Package: zabbix-agentd
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 107636
Filename: zabbix-agentd_2.4.4-1_ramips_24kec.ipk
Size: 108268
MD5Sum: 63d12caf621ace758ffceb6e7cae6ebf
SHA256sum: 204a94c588979e51bdd993bce927aed5456e44312716982395f23d8903255125
Description: Zabbix agentd
Package: zabbix-extra-mac80211
Version: 2.4.4-1
Depends: libc, zabbix-agentd
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 2756
Filename: zabbix-extra-mac80211_2.4.4-1_ramips_24kec.ipk
Size: 3661
MD5Sum: 87222dcd6d6bb63742ea4095c476a0d3
SHA256sum: 4453f4da2164dcebe04cab3cb61b20cf86ba08f926aafed58508527f59716b14
Description: An extra package for zabbix-agentd that adds a discovery rule for mac80211 wifi phy and many userparameters.
It contains an suid helper to allow zabbix-agentd to still run as zabbix user and not as root.
See http://wiki.openwrt.org/doc/howto/zabbix for ready to use zabbix templates.
Package: zabbix-extra-network
Version: 2.4.4-1
Depends: libc, zabbix-agentd, libuci-lua, lua
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 522
Filename: zabbix-extra-network_2.4.4-1_ramips_24kec.ipk
Size: 1462
MD5Sum: c7c80dabe7e45f8966571901cbe56594
SHA256sum: 387059e2f49e15bd854186043f5d9b483e511ca157567c87f5d8a807a27c7b34
Description: An extra package for zabbix-agentd that adds a discovery rule for openwrt network interfaces.
The idea here is to discover only interfaces listed in /etc/config/network (discover br-lan and not eth0.1 and wlan0)
See http://wiki.openwrt.org/doc/howto/zabbix for ready to use zabbix templates.
Package: zabbix-extra-wifi
Version: 2.4.4-1
Depends: libc, zabbix-agentd, libiwinfo-lua, libuci-lua, lua
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1135
Filename: zabbix-extra-wifi_2.4.4-1_ramips_24kec.ipk
Size: 2082
MD5Sum: 678a8d3c1adfbcc78b71c5664f47f8b0
SHA256sum: 03a3172ba10ba9c8f5b0aa90b3c4914afa4fd012a81e4c6fe568cc601f1d4a2d
Description: An extra package for zabbix-agentd that adds a discovery rule for wifi interfaces and many userparameters.
As it uses libiwinfo, it works with all wifi devices supported by openwrt.
See http://wiki.openwrt.org/doc/howto/zabbix for ready to use zabbix templates.
Package: zabbix-get
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 33744
Filename: zabbix-get_2.4.4-1_ramips_24kec.ipk
Size: 34546
MD5Sum: 5b06e7eaf5322aa3c5d594270dd1e439
SHA256sum: d92c3d57fd1bf671fe3ce9bf408443bd687ed03807fc0e53a80a63b3f08a47f1
Description: Zabbix get
Package: zabbix-proxy
Version: 2.4.4-1
Depends: libc, libsqlite3
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 281098
Filename: zabbix-proxy_2.4.4-1_ramips_24kec.ipk
Size: 281135
MD5Sum: 0f8c556ec6ea6e4a72d9e205677a6fa1
SHA256sum: ce6e855c4fe3731d5c6f0009afa56463a290e0747a0612d1b766ee3067eb7802
Description: Zabbix proxy
Package: zabbix-sender
Version: 2.4.4-1
Depends: libc
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 40684
Filename: zabbix-sender_2.4.4-1_ramips_24kec.ipk
Size: 41291
MD5Sum: 56fcd7a205502ac8d033e3b9ddc30c37
SHA256sum: 0c2d4ca173a6bc9b3d38a3a1c268443d4ae96fc004ab8cae0231b2daf663f2ab
Description: Zabbix sender
Package: zabbix-server
Version: 2.4.4-1
Depends: libc, libsqlite3
Source: feeds/packages/admin/zabbix
License: GPL-2.0
LicenseFiles: COPYING
Section: admin
Require-User: zabbix=53:zabbix=53
Maintainer: Etienne CHAMPETIER <[email protected]>
Architecture: ramips_24kec
Installed-Size: 308912
Filename: zabbix-server_2.4.4-1_ramips_24kec.ipk
Size: 309169
MD5Sum: 57d2cf0b62b1f29d60fad56fb741c3a9
SHA256sum: 86c31c139fd913d4a067f912bf98c15a65f87388fae9710e4cb98aa7c2b86771
Description: Zabbix server
Package: zile
Version: 2.3.24-1
Depends: libc, libncursesw
Source: feeds/packages/utils/zile
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: Ted Hess <[email protected]>
Architecture: ramips_24kec
Installed-Size: 94889
Filename: zile_2.3.24-1_ramips_24kec.ipk
Size: 95451
MD5Sum: 3d071f73a60f147694ed482ab7395299
SHA256sum: 6a3fc28d4b0450173a801cc2961947ceca67e66a567b0f5b6554d4664822ac94
Description: Zile is a small Emacs clone. Zile is a customizable, self-documenting
real-time display editor. Zile was written to be as similar as possible
to Emacs; every Emacs user should feel at home with Zile.
Package: zip
Version: 3.0-1
Depends: libc
Source: feeds/packages/utils/zip
License: BSD-4-Clause
LicenseFiles: LICENSE
Section: utils
Maintainer: Álvaro Fernández Rojas <[email protected]>
Architecture: ramips_24kec
Installed-Size: 189733
Filename: zip_3.0-1_ramips_24kec.ipk
Size: 190586
MD5Sum: 52e8fcb8e14ca1164b219d8ed61f3922
SHA256sum: c5e26e872333728355c8bf1049decb7e6b7156ba2abd05d7002f3e1080134c2e
Description: This is InfoZIP's zip program. It produces files that are fully
compatible with the popular PKZIP program; however, the command line
options are not identical. In other words, the end result is the same,
but the methods differ.
Package: znc-mod-adminlog
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16509
Filename: znc-mod-adminlog_1.4-2_ramips_24kec.ipk
Size: 17323
MD5Sum: 45c3e2a867013f0995924b73270891e8
SHA256sum: 868d2dce63c03e1c0e5ed42c6fecd35116e1c8bfc097d7f6de41709177862154
Description: Log user connects and disconnects and failed logins to file or syslog.
Package: znc-mod-autoattach
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17526
Filename: znc-mod-autoattach_1.4-2_ramips_24kec.ipk
Size: 18328
MD5Sum: 04a9eafb21e96e7312852bca147669de
SHA256sum: 0fcf6ad4d9205e72ac03070cb732e304bbebfccafa7f77419e89e97ac4865150
Description: Reattaches you to channels on activity.
Package: znc-mod-autocycle
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16366
Filename: znc-mod-autocycle_1.4-2_ramips_24kec.ipk
Size: 17133
MD5Sum: f8ad1041ac334cbd03b59df51d10fcba
SHA256sum: 3cab499bb4fd32145074ed9d7e2a9b3df9553dbb91cde0744d731a410eba0dc4
Description: Cycles a channel when you are the only one in there and you don't have op.
Package: znc-mod-autoop
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 25807
Filename: znc-mod-autoop_1.4-2_ramips_24kec.ipk
Size: 26551
MD5Sum: aaceea82ea3a9d57f0b36b42f2516afc
SHA256sum: 4ec1a069517947fcc8274afcce3d8da478fc6e270c3197806499a692f29fb48a
Description: Auto op the good guys.
Package: znc-mod-autoreply
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11516
Filename: znc-mod-autoreply_1.4-2_ramips_24kec.ipk
Size: 12319
MD5Sum: bad4999b905282c9f803040856ec379f
SHA256sum: e44b79f248852bb4b125afb83767cc7f8dbf9940a03907c2a7639e32fe882d10
Description: Gives a automatic reply if someone messages you if you are away.
Package: znc-mod-autovoice
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 19712
Filename: znc-mod-autovoice_1.4-2_ramips_24kec.ipk
Size: 20516
MD5Sum: a5cc87341004f576d156bfc348e894f4
SHA256sum: fad9477dbc5cf4443a8f68bedda4545a91d63bcd1ec3d5351b754606c29aaeaf
Description: Autovoices everyone who joins some channel.
Package: znc-mod-awaynick
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11174
Filename: znc-mod-awaynick_1.4-2_ramips_24kec.ipk
Size: 11936
MD5Sum: 8b8006c453b0e38a9a98ecb902a1c829
SHA256sum: 07df87cd7a4ba338a44b1051bab857b007ffd2f1b13010f5fdcc9f2305b3d8ca
Description: Change your nick while you are away.
Package: znc-mod-awaystore
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24119
Filename: znc-mod-awaystore_1.4-2_ramips_24kec.ipk
Size: 24849
MD5Sum: 3017e4a2dcae7fd170e78c640560247c
SHA256sum: 0051c70a5962cafb866158e944f804f1f109c19418713fe37cad4336add7a6c1
Description: Stores messages while away, also auto away.
Package: znc-mod-block-motd
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7106
Filename: znc-mod-block-motd_1.4-2_ramips_24kec.ipk
Size: 7899
MD5Sum: 08a51b527afc1f330fcd2f32d56cf70e
SHA256sum: 607343d66efd90cb4d20d3a917c94f6c60006fc484e0993424326a02a2332241
Description: This module blocks the server's Message of the Day.
Package: znc-mod-blockuser
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 18555
Filename: znc-mod-blockuser_1.4-2_ramips_24kec.ipk
Size: 19379
MD5Sum: 41ff4c650e1e5d3d2e802510c60b46db
SHA256sum: 84ed832331033aa68b66fcb12558ac4b1b4ddf270dc00d5f8eddc533097c2ea8
Description: Blocks certain users from using ZNC saying their account was disabled.
Package: znc-mod-bouncedcc
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29307
Filename: znc-mod-bouncedcc_1.4-2_ramips_24kec.ipk
Size: 30090
MD5Sum: a9046ffc127e0fbf5d29ab95a637b430
SHA256sum: 2933da09d0156bd59da7dc6533b7a0d9a75473d3061f47eca2180811d62349c1
Description: Bounces dcc transfers through the znc server instead of sending them directly to the user.
Package: znc-mod-buffextras
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11417
Filename: znc-mod-buffextras_1.4-2_ramips_24kec.ipk
Size: 12188
MD5Sum: 92939e87a9b212b2c3975b04f916475a
SHA256sum: bb757837be0878d3ef8b5f01aa3029bf0cd73d15959bdf50b600ec48b8274a14
Description: Add nick changes, joins, parts, topic changes etc. to your playback buffer.
Package: znc-mod-cert
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11486
Filename: znc-mod-cert_1.4-2_ramips_24kec.ipk
Size: 12281
MD5Sum: fe73c564885d289379f957aa254bb121
SHA256sum: 093c875cc77605fddad19160008386da9319368885f3b27553b8026463385e01
Description: Use a SSL certificate for connecting to a server.
Package: znc-mod-certauth
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21136
Filename: znc-mod-certauth_1.4-2_ramips_24kec.ipk
Size: 21919
MD5Sum: 18155ca86c66026aa9374cb64b8ad3ca
SHA256sum: 58acfbe822391486b9a3e07a6ad71ad76a30d50d9bafa530846fddfa44c89c78
Description: This module allows users to log in to ZNC via SSL client keys.
Package: znc-mod-chansaver
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6847
Filename: znc-mod-chansaver_1.4-2_ramips_24kec.ipk
Size: 7629
MD5Sum: 539cd7b358f311312334ceb2e8820308
SHA256sum: 32bb5644584820e7e5c08f1124dbf4d314c95710ba017865417df789dc71e0a2
Description: Keeping config up to date when user joins and parts.
Package: znc-mod-clearbufferonmsg
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6491
Filename: znc-mod-clearbufferonmsg_1.4-2_ramips_24kec.ipk
Size: 7289
MD5Sum: 65712b4beed5215676070e1abc215bad
SHA256sum: 29481c5c56cfe0f73cdc44960042b51c0d37073a193ced3b97a4481bb012f9e5
Description: This module keeps the buffer until the next message from the client.
Package: znc-mod-clientnotify
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11401
Filename: znc-mod-clientnotify_1.4-2_ramips_24kec.ipk
Size: 12189
MD5Sum: e0367e3a4857900f18f32534cfba5677
SHA256sum: ff0067c3d2ba02815fce490b873609bff76ecaade69b780a0d9ff7135bed5c61
Description: Notify about new incoming connections to your user.
Package: znc-mod-controlpanel
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 44613
Filename: znc-mod-controlpanel_1.4-2_ramips_24kec.ipk
Size: 45386
MD5Sum: 246d7c111d5c732b8966523def3f8d37
SHA256sum: c3102df85bfd32b6d4df719878c6f1256e0c35acd3629c3b18fa9bd19f0933ee
Description: Allows you to add/remove/edit users and settings on the fly via IRC messages.
Package: znc-mod-crypt
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13727
Filename: znc-mod-crypt_1.4-2_ramips_24kec.ipk
Size: 14468
MD5Sum: 2f8c26b7a66b7628d4c063643db6aeb7
SHA256sum: 1de14b92088c4c79917632d4017ad159ad7fc1e7c97e34f0bb2b91c52530a12b
Description: Encryption for channel/private messages.
Package: znc-mod-ctcpflood
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 10773
Filename: znc-mod-ctcpflood_1.4-2_ramips_24kec.ipk
Size: 11541
MD5Sum: a1fc8c975397cde814a83d28de2f02a5
SHA256sum: 0bb481efab968e009fb7b2281688e12c159c8ca87a1ad6713a7669e24e13dfd9
Description: This module tries to block ctcp floods.
Package: znc-mod-dcc
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27466
Filename: znc-mod-dcc_1.4-2_ramips_24kec.ipk
Size: 28220
MD5Sum: 6a2fac105d0df6cf71f07387b3facdc5
SHA256sum: 457462aed375522b38be68d6c14e3951d029bb9a582db1db818fb2f47ca36228
Description: Allows you to transfer files to and from ZNC.
Package: znc-mod-disconkick
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6744
Filename: znc-mod-disconkick_1.4-2_ramips_24kec.ipk
Size: 7570
MD5Sum: a1148c04d09394db63686874ceda09f4
SHA256sum: d67144a928c51c1fe8c74093fef9ef47376e31a1b0a75dd58a704c35c4d2fb59
Description: This module will kick your client from all channels where you are, in case if ZNC disconnects from server.
Package: znc-mod-fail2ban
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11576
Filename: znc-mod-fail2ban_1.4-2_ramips_24kec.ipk
Size: 12321
MD5Sum: 996a6adf9c0002b24c0559b7a79d64cf
SHA256sum: f94df8a5ac6f9775db25ceffc34c45dd71eb7df1dbc8fc3c30f13b61aef43920
Description: Block IPs for some time after a failed login.
Package: znc-mod-flooddetach
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12790
Filename: znc-mod-flooddetach_1.4-2_ramips_24kec.ipk
Size: 13574
MD5Sum: 97b2429678282e011455d57f1f8c2716
SHA256sum: 4c3548f7ef8605a842b7eea84c42a2e1c092662106aa9b2e6b3e15bff8403026
Description: This module detaches you from channels which are flooded.
Package: znc-mod-identfile
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15881
Filename: znc-mod-identfile_1.4-2_ramips_24kec.ipk
Size: 16604
MD5Sum: a856efd323bfa9d4f016fb05c94ed925
SHA256sum: 00552a5853fe9a1b7eaeb59ac14979d7ef3c31d410bbcb457c434e56fb18f0da
Description: Places the ident of a user to a file when they are trying to connect.
Package: znc-mod-keepnick
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11240
Filename: znc-mod-keepnick_1.4-2_ramips_24kec.ipk
Size: 12002
MD5Sum: 6380ea8cd04c7d813381239546824833
SHA256sum: a13480a09e02e0ea6aff48fd48e1e478e3388d58e6df34ccca633fb0233820a3
Description: Tries to get you your primary nick.
Package: znc-mod-kickrejoin
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 9588
Filename: znc-mod-kickrejoin_1.4-2_ramips_24kec.ipk
Size: 10377
MD5Sum: 2fa4db800583ed376734545275d2c3fa
SHA256sum: 9e8653ed25c38e3c219470f611ec0cff8942fedac3c772e7d5b16ca1277c5ede
Description: Implements auto-rejoin-on-kick.
Package: znc-mod-lastseen
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 13317
Filename: znc-mod-lastseen_1.4-2_ramips_24kec.ipk
Size: 14050
MD5Sum: 61880daf44a4ff8351e06b0bdd6d6a16
SHA256sum: a3c77df17181bc4acd0a5ed32e6ed69b4dec6bad5e590d4603039a105ef61536
Description: Logs when a user last logged in to ZNC.
Package: znc-mod-listsockets
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16551
Filename: znc-mod-listsockets_1.4-2_ramips_24kec.ipk
Size: 17326
MD5Sum: 22d5fe3b18ca4b2b2728df4a15fc27ef
SHA256sum: 2903bd4ecef1acaf5bac059aaf31e8c0b9bff1830ffb7147915837bbf945a258
Description: This module displays a list of all open sockets in ZNC.
Package: znc-mod-log
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16115
Filename: znc-mod-log_1.4-2_ramips_24kec.ipk
Size: 16827
MD5Sum: 3d2b92b82f2838eea5b8f4ab489cae20
SHA256sum: 4f52d3733750eaf026e680b1b2c911d3010389184edadb30c54ea6e0b0c26ce5
Description: Log conversations to file.
Package: znc-mod-modules_online
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 11303
Filename: znc-mod-modules_online_1.4-2_ramips_24kec.ipk
Size: 12096
MD5Sum: 876262a89c5e821b58adee181f4ec669
SHA256sum: d5c3638620af7fd05a6721fd2fa8c3d4a63e762ff1a436bc85c06a2f37ca1439
Description: This module fakes the online status of ZNC-*users.
Package: znc-mod-nickserv
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16620
Filename: znc-mod-nickserv_1.4-2_ramips_24kec.ipk
Size: 17291
MD5Sum: 148a7c8b62c2afab0058890b3dd49618
SHA256sum: 02c0f3467952305d1da6b2ad7245add08cfab6c1c4e12db7e6338fe6a8ba60d3
Description: Auths you with NickServ.
Package: znc-mod-notes
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17810
Filename: znc-mod-notes_1.4-2_ramips_24kec.ipk
Size: 18612
MD5Sum: 84f7ab8c10a6f1b4a1e3a84e951c5def
SHA256sum: 598f163e6560ea4bc08e26b3cf74baf3db1b07adb798485494e23d1f631b4938
Description: This modules stores and displays short notes using a key/note pairs and shows them to you on connect.
Package: znc-mod-notify-connect
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6704
Filename: znc-mod-notify-connect_1.4-2_ramips_24kec.ipk
Size: 7495
MD5Sum: 9a60a23071b3cc482ac130393e8bbe8a
SHA256sum: ce7b39ead74e50e3743743496bf3a1344b4f56d81dd261d31f35af84d89550a0
Description: Sends a notice to all admins when a user logs in or out.
Package: znc-mod-partyline
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 31623
Filename: znc-mod-partyline_1.4-2_ramips_24kec.ipk
Size: 32382
MD5Sum: 8b4598811935c381ea3cc4ed0ca3d62b
SHA256sum: 6b60e3fc2da2895f584d806bed981c876efd4c7d396dd8e3c87ce0b4b23263b5
Description: Allows ZNC users to join internal channels and query other ZNC users on the same ZNC.
Package: znc-mod-perform
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17276
Filename: znc-mod-perform_1.4-2_ramips_24kec.ipk
Size: 18008
MD5Sum: 8555a5af9e72e3438ed0a3e84935af88
SHA256sum: 4734e8a1ea239b62ea730e53696b883b2ebe70e74ee11ecfab0cf7ffc21b6382
Description: Performs commands on connect.
Package: znc-mod-q
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 28172
Filename: znc-mod-q_1.4-2_ramips_24kec.ipk
Size: 28904
MD5Sum: fd15ef9df22660025354902de4a08dcc
SHA256sum: d7ff7cb413ea4b044341f5e4514eeaedff87192498448a91d197eb2980aff8c9
Description: Auths you with Q (and a little more).
Package: znc-mod-raw
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6736
Filename: znc-mod-raw_1.4-2_ramips_24kec.ipk
Size: 7504
MD5Sum: e64a7a1d77afd8f5226b2610d5676cbd
SHA256sum: 41f3080cdc04173415ddaccceeec66e44bf5aa8872e3266dd197f4bd1a315a63
Description: View all of the raw traffic.
Package: znc-mod-route-replies
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16098
Filename: znc-mod-route-replies_1.4-2_ramips_24kec.ipk
Size: 16878
MD5Sum: 2208ee5f7b656816ef224dc99459f6a6
SHA256sum: 1145b5e16e8bb3a993583f515230df8c1a2e4248ecfc3a5f2aedc2880a94ec7b
Description: Routes back answers to the right client when connected with multiple clients.
Package: znc-mod-sasl
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 24220
Filename: znc-mod-sasl_1.4-2_ramips_24kec.ipk
Size: 24977
MD5Sum: cd8eb63a9a3cde07870d7e3438498d96
SHA256sum: 844b2228940ac195524bf84e0d3e10ff677a63f939940fc295c8982e93fcd9f6
Description: The SASL module allows you to authenticate to an IRC network via SASL.
Package: znc-mod-savebuff
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16222
Filename: znc-mod-savebuff_1.4-2_ramips_24kec.ipk
Size: 17012
MD5Sum: f2ea21eb0f76bc0744b9ac9724a7c1e9
SHA256sum: c1d62a6e24e2c877d2b02924d98ef76cdddca16cbc105bbd4739bc1dc47554a8
Description: Saves your channel buffers into an encrypted file so they can survive restarts and reboots.
Package: znc-mod-schat
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 27234
Filename: znc-mod-schat_1.4-2_ramips_24kec.ipk
Size: 28026
MD5Sum: 92231acf022d699b1f488d5be62e4b6f
SHA256sum: 5add386d2f2fc77d4b4c1bc9156416ae1a18909a9477ecf424f09260fbe17edc
Description: SSL (encrypted) DCC chats.
Package: znc-mod-send-raw
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 15818
Filename: znc-mod-send-raw_1.4-2_ramips_24kec.ipk
Size: 16572
MD5Sum: 7816f5cf62e21c5d5bec7d0e20c17d76
SHA256sum: 3fec4911d896a4f8e6cef2a65faedf0cece639f0b83062b44124bcc158590672
Description: Allows you to send raw traffic to IRC from other users.
Package: znc-mod-shell
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 12279
Filename: znc-mod-shell_1.4-2_ramips_24kec.ipk
Size: 13089
MD5Sum: 36020c6b57698e67d078543f175faa3d
SHA256sum: b50945ae13f1734624d7ed82d5d6afa9c8669542abb42461acae532e27be3f9e
Description: Have your unix shell in a query window right inside of your IRC client.
Package: znc-mod-simple-away
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 14945
Filename: znc-mod-simple-away_1.4-2_ramips_24kec.ipk
Size: 15741
MD5Sum: ee4e51631b1d94e6fdf99f41c2f2443d
SHA256sum: 8c0d3b53866ca201f4dcbda8e3ae181aa87266d195c2ded5a82b006aa95f4798
Description: This module will automatically set you away on IRC while you are disconnected from the bouncer.
Package: znc-mod-stickychan
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 16493
Filename: znc-mod-stickychan_1.4-2_ramips_24kec.ipk
Size: 17260
MD5Sum: 7397e7886946760bedb205d303bd34e7
SHA256sum: 1d28b211e5acbc217146979bc19cf82db968f99f43537138d461e2d17f7e7aa2
Description: Keeps you sticked to specific channels.
Package: znc-mod-watch
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 29122
Filename: znc-mod-watch_1.4-2_ramips_24kec.ipk
Size: 29916
MD5Sum: 3686c6ad0e9591d9150087eaf9893dd9
SHA256sum: 92b013d1ff1fac59e26b96dd8b90aea84de4ec0e8d35405a5c856a2ae7628b71
Description: Monitor activity for specific text patterns from specific users and have the text sent to a special query window.
Package: znc-mod-webadmin
Version: 1.4-2
Depends: libc, znc
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 79435
Filename: znc-mod-webadmin_1.4-2_ramips_24kec.ipk
Size: 80239
MD5Sum: 669447ddff47a53c7bcfd7023a44b672
SHA256sum: 3eeb34d38245b9d10d7b8322a5e7338662f0db975d3118f547157d73a94036a7
Description: Allows you to add/remove/edit users and settings on the fly via a web browser.
Package: znc-webskin-dark-clouds
Version: 1.4-2
Depends: libc, znc-mod-webadmin
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 32461
Filename: znc-webskin-dark-clouds_1.4-2_ramips_24kec.ipk
Size: 33323
MD5Sum: 79410ec332ef2b5dbe31c4ebf1ba3239
SHA256sum: 8454527ed47c63c0a8cab710e7411efa5098c9b0f23d7274bbd76580c088c415
Description: dark-clouds webskin for webadmin
Package: znc-webskin-forest
Version: 1.4-2
Depends: libc, znc-mod-webadmin
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 220964
Filename: znc-webskin-forest_1.4-2_ramips_24kec.ipk
Size: 221839
MD5Sum: c568cdd519d5f712d56aba84720c9dd0
SHA256sum: 396730fe89d742be3d3194bb3da790f9b7dd87ea6e273c2da7fcda6aebb3f972
Description: forest webskin for webadmin
Package: znc-webskin-ice
Version: 1.4-2
Depends: libc, znc-mod-webadmin
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4509
Filename: znc-webskin-ice_1.4-2_ramips_24kec.ipk
Size: 5236
MD5Sum: a3f6b822773305a3d64c2ea0dd42e0de
SHA256sum: eac800f7f54c79164d91ddf77bab4f8c8eaef3a4f92498625a201e9e8544247a
Description: ice webskin for webadmin
Package: znc
Version: 1.4-2
Depends: libc, libopenssl, libpthread, libstdcpp
Source: feeds/packages/net/znc
License: Apache-2.0
LicenseFiles: LICENSE
Section: net
Maintainer: Jonas Gorski <[email protected]>
Architecture: ramips_24kec
Installed-Size: 476286
Filename: znc_1.4-2_ramips_24kec.ipk
Size: 476559
MD5Sum: de265ebdfbb7640f324493b056856b57
SHA256sum: 6480f7d25987b65ac37c29600d8a5dfc3c593a399266b2103d19194e4d67f933
Description: ZNC is an IRC bouncer with many advanced features like detaching,
multiple users, per channel playback buffer, SSL, IPv6, transparent DCC
bouncing, and c++ module support to name a few.
Package: zoneinfo-africa
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 7691
Filename: zoneinfo-africa_2015a-1_ramips_24kec.ipk
Size: 8422
MD5Sum: 519318ad829351bbd9da7e915c7f9584
SHA256sum: fa0ef66928b146cf1cc211df9bfd27f1d31c23e120e575f4959b1067918a44fb
Description: Zone Information (Africa)
Package: zoneinfo-asia
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 30201
Filename: zoneinfo-asia_2015a-1_ramips_24kec.ipk
Size: 30654
MD5Sum: 3c5c8c43a01dfbcb970d204815c765d6
SHA256sum: dbbd1cda9151d41c418caaeb21421aa9923205d8f98731fe1165c0474bae44bc
Description: Zone Information (Asia)
Package: zoneinfo-atlantic
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6081
Filename: zoneinfo-atlantic_2015a-1_ramips_24kec.ipk
Size: 6780
MD5Sum: 51a0101e491d666727e618f75ad41b8c
SHA256sum: ab36f54940c988e94d0392f59080319f586a2f83bf6342383dfcae465b8e1bcb
Description: Zone Information (Atlantic)
Package: zoneinfo-australia-nz
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6591
Filename: zoneinfo-australia-nz_2015a-1_ramips_24kec.ipk
Size: 7208
MD5Sum: 52367e3028650c3bb3cb733e6057aa29
SHA256sum: a55928d705e335ade64561c318a463c0864ba12da8ff3506d820ba00e7397050
Description: Zone Information (Australia-NZ)
Package: zoneinfo-core
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 21013
Filename: zoneinfo-core_2015a-1_ramips_24kec.ipk
Size: 21606
MD5Sum: 47406cdfd3609ae699ed038bd141b2ab
SHA256sum: aceba6a22c0117e61117f831c2393f3e14a8b05f6e8b5f677f61ee0153f4df04
Description: Zone Information (core)
Package: zoneinfo-europe
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 22837
Filename: zoneinfo-europe_2015a-1_ramips_24kec.ipk
Size: 23366
MD5Sum: df6647aa28ea6144a44ca9edbda624b0
SHA256sum: 1b080ec5406e98a22ca3da2a470fff282ca537e068fb9f4374bd608749be579d
Description: Zone Information (Europe)
Package: zoneinfo-india
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 985
Filename: zoneinfo-india_2015a-1_ramips_24kec.ipk
Size: 1728
MD5Sum: 9c251b85790db5e9177262a4d08e1bfc
SHA256sum: 98bb95d13c218b112071f612e52b85603569ff5f73f33ad17fca48418454b0a2
Description: Zone Information (India)
Package: zoneinfo-northamerica
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 83873
Filename: zoneinfo-northamerica_2015a-1_ramips_24kec.ipk
Size: 83881
MD5Sum: 5c43d82c13d42eea86db9e8b4a7972cc
SHA256sum: dc02a40089eb1dab1abeaf6092a5112ffb0b64cb488d255195a87525457f2833
Description: Zone Information (NorthAmerica)
Package: zoneinfo-pacific
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 6295
Filename: zoneinfo-pacific_2015a-1_ramips_24kec.ipk
Size: 6992
MD5Sum: 8e046c5a3c4fb01bcaa26a8346bea3b0
SHA256sum: d61e102be78a749b047eaa2386f92039401cf0b9a52fae3f7e46a97e1fdc9258
Description: Zone Information (Pacific)
Package: zoneinfo-poles
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4665
Filename: zoneinfo-poles_2015a-1_ramips_24kec.ipk
Size: 5399
MD5Sum: 828d5b6c93595d5dbd576585c1282393
SHA256sum: 9d8d5cb71d1de890426f315757b6f83f727b13b7b066b93bd5ff33e37bd1c92b
Description: Zone Information (Arctic, Antarctic)
Package: zoneinfo-simple
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 17364
Filename: zoneinfo-simple_2015a-1_ramips_24kec.ipk
Size: 17878
MD5Sum: 95e6ee71079494b878b472f36cf8c653
SHA256sum: 236dfe7d2a1c7ec4ca6e4ff342bf99f7f88fe1e9a613078ca2fdc1b3cb92ce2f
Description: Zone Information (simple)
Package: zoneinfo-southamerica
Version: 2015a-1
Depends: libc
Source: feeds/packages/utils/zoneinfo
License: Public Domain
Section: utils
Maintainer: Vladimir Ulrich <[email protected]>
Architecture: ramips_24kec
Installed-Size: 4980
Filename: zoneinfo-southamerica_2015a-1_ramips_24kec.ipk
Size: 5679
MD5Sum: 6415a40f52a2203f668b564cc0a864cf
SHA256sum: 33bbd8ca3c0d994ce0f548ec4d153c3cf02e862e179a7f136c7b5c93c3860623
Description: Zone Information (SouthAmerica)
Package: zsh
Version: 5.0.6-1
Depends: libc, libncurses, libncursesw, libpcre, librt
Source: feeds/packages/utils/zsh
License: ZSH
Section: utils
Maintainer: Vadim A. Misbakh-Soloviov <[email protected]>
Architecture: ramips_24kec
Installed-Size: 1276952
Filename: zsh_5.0.6-1_ramips_24kec.ipk
Size: 1277335
MD5Sum: 621ac9e38c4264f66d66bf42a0dac5c3
SHA256sum: 67e23c7a2ee923595329d9b0385ade54228d40115038d7fc6e23ac961350d19f
Description: Zsh is a UNIX command interpreter (shell) usable as an interactive
login shell and as a shell script command processor. Of the standard
shells, zsh most closely resembles ksh but includes many enhancements.
Zsh has command line editing, builtin spelling correction, programmable
command completion, shell functions (with autoloading), a history
mechanism, and a host of other features.
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Various photos of the HT-TM02 board. Most important are the photos of the serial
connections.
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
This folder contains sample configuration files for the HT-TM02. These were
created using the luci configuration backup function and may be restored using
luci but you may be better off to extract them and use only those which may be
of interest and modify to your needs.
FILE DESCRIPTIONS
backup-Hootoo0-2014-09-28.tar.gz -
This is a full blown configuration with network, wireless, samba, and vsftpd.
The network is configured for a routed client with relayd. The root password is
"11111111".
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
HooToo-Tripmate-HT-TM02-OpenWRT
===============================
UBoot image compatible with OpenWRT on the RT5350 platform
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
#!/bin/sh
#nmkhtimage.sh
# Copyright Ron Curry, InSyte Technologies 2015 [email protected]
# This software is licensed under the
# Creative Commons Attribution-ShareAlike 3.0 Unported License
# http://creativecommons.org/licenses/by-sa/3.0/
#
# You are free to:
# Share — copy and redistribute the material in any medium or format
# Adapt — remix, transform, and build upon the material
# for any purpose, even commercially.
#
# Under the following terms:
# Attribution — You must give appropriate credit, provide a link to the
# license, and indicate if changes were made. You may do so in any
# reasonable manner, but not in any way that suggests the licensor
# endorses you or your use.
#
# ShareAlike — If you remix, transform, or build upon the material,
# you must distribute your contributions under the same license as the original.
#
# No additional restrictions — You may not apply legal terms or
# technological measures that legally restrict others from doing
# anything the license permits.
# Constants
UBOOT_INPUT=$1
FIRMWARE_INPUT=$2
REVISION=$3
TMPDIR="htimagetmp"
LOADER_FILE="htloader.tmp"
UBOOT_FILE="uboot.bin"
FIRMWARE_FILE="firmware.bin"
PAYLOAD_FILE="firmware"
OUTPUT_FILE="openwrt-ramips-rt305x-ht-tm02-squashfs-factory"
SKIP=147
# ============= Functions ============
cleanup() {
rm -rf $TMPDIR
return 0
}
#=============== Main =================
# Make sure we have all the correct arguments and then execute or print usage
if [ -n "$1" ]; then
if [ -n "$2" ]; then
if [ -n "$3" ]; then
# Clean up any mess from any previously aborted attempts
cleanup
# Create a temporary working directory
mkdir $TMPDIR >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "ERROR - Cannot create temporary workspace. Aborting..."
cleanup
exit 1
fi
# Copy the input files to temporaries with standardized names
cp $UBOOT_INPUT "$TMPDIR/$UBOOT_FILE" >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "ERROR - Cannot create temporary uboot file. Aborting..."
cleanup
exit 1
fi
cp $FIRMWARE_INPUT "$TMPDIR/$FIRMWARE_FILE" >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "ERROR - Cannot create temporary sysupgrade file. Aborting..."
cleanup
exit 1
fi
echo "\nCreating Payload ..."
cd $TMPDIR
tar -czf "$PAYLOAD_FILE.tar.gz" "$UBOOT_FILE" "$FIRMWARE_FILE"
# gzip "$TMPDIR/$PAYLOAD_FILE.tar"
cd ..
if [ $? -ne 0 ]; then
echo "ERROR - Cannot create payload. Aborting..."
cleanup
exit 1
fi
echo "Creating HooToo loader ..."
#Split out the loader
tail -n +$SKIP $0 > "$TMPDIR/$LOADER_FILE"
if [ $? -ne 0 ]; then
echo "ERROR - Could not create loader. Check that tail is present and in your path"
cleanuup
exit 1
fi
echo "Assembling HooToo upgrade binary ..."
cat "$TMPDIR/$LOADER_FILE" "$TMPDIR/$PAYLOAD_FILE.tar.gz" > "$TMPDIR/$OUTPUT_FILE.tmp"
if [ $? -ne 0 ]; then
echo "ERROR - Cannot create HooToo upgrade file. Aborting..."
cleanup
exit 1
fi
CRCSUM=`sed '1,3d' "$TMPDIR/$OUTPUT_FILE.tmp" | cksum |sed -e 's/ /Z/' -e 's/ /Z/' | cut -dZ -f1`
if [ $? -ne 0 ]; then
echo "ERROR - Could not calculate crcsum. Check that cksum and sed are present and in your path"
cleanuup
exit 1
fi
echo "Writing CRCSUM ..."
sed 's:^CRCSUM=[0-9]*:CRCSUM='$CRCSUM':' "$TMPDIR/$OUTPUT_FILE.tmp" > "$OUTPUT_FILE-$REVISION.bin"
if [ $? -ne 0 ]; then
echo "ERROR - Could not write crcsum. sed had an error while writing final image file"
cleanuup
exit 1
fi
echo "Cleaning up ..."
cleanup
echo "Success - Created OpenWRT Factory Sysupgrade: "$OUTPUT_FILE-$REVISION.bin"\n\n"
exit 0
fi
fi
fi
cleanup
echo "\nUsage: $0 uboot_binary openwrt_sysupgrade_binary revision\n\n"
exit 1
END_OF_MKHTIMAGE
#=============== Loader Code ========================
# Loader code starts at the "shebang" line
# ---- Modifications WILL break things ----
: <<"END_OF_STUB"
#!/bin/sh
# constants
CRCSUM=3192244707
OEM=POWER7
VERSION=r42649
VENDOR=HooToo
PRODUCTLINE=WiFiPort
SKIP=166
TARGET_OS="linux"
TARGET_ARCH="arm"
DEVICE_TYPE=TM02
CPU=5350
FWPT="/data/UsbDisk1/Volume1/.vst"
HTUSB="/data/UsbDisk1/Volume1"
USBDIR="HT-Flash"
#HTUSB="/Volumes/SanDisk8g"
SRVLIST="mlnet.sh ftp.sh nfs.sh smb.sh xl.sh ushare.sh mt-daapd.sh ddns.sh serverdev.sh fileserv.sh upnpc.sh ntp.sh web upnpd.sh upnpc.sh nasclient.sh"
SPELIST="vst_daemon etc_tools web ioos"
TMPDIR="tmp"
#TMPDIR="tmp"
MTDPRE="/dev"
#MTDPRE="/Users/recurry/HooToo_Firmware/test_dir/mtd"
ALLMTD="$MTDPRE/mtd0"
BOOTMTD="$MTDPRE/mtd1"
CONFMTD="$MTDPRE/mtd2"
FACTMTD="$MTDPRE/mtd3"
KERNMTD="$MTDPRE/mtd4"
PARAMTD="$MTDPRE/mtd5"
UBKUPMTD="$MTDPRE/mtd6"
USERMTD="$MTDPRE/mtd7"
ROOTFSMTD="$MTDPRE/mtd7"
OBOOTFILE="Bootloader.bin"
UBOOTFILE="uboot.bin"
CONFFILE="Config.bin"
FACTFILE="Factory.bin"
KERNFILE="Kernel_RootFS.bin"
PARAFILE="params.bin"
UBKUPFILE="user_backup.bin"
USERFILE="user.bin"
ROOTFILE="Rootfs.bin"
FIRMFILE="firmware.bin"
FIRMGZ="firmware.tar.gz"
FIRMTAR="firmware.tar"
ALLFILE="ALL.bin"
NEWFILE="openwrt.bin"
# =========== Functions ============
# Copy the MTD partitions to the flash drive
makecopy() {
cp $BOOTMTD "$HTUSB/$USBDIR/$OBOOTFILE"
cp $CONFMTD "$HTUSB/$USBDIR/$CONFFILE"
cp $FACTMTD "$HTUSB/$USBDIR/$FACTFILE"
cp $KERNMTD "$HTUSB/$USBDIR/$KERNFILE"
cp $PARAMTD "$HTUSB/$USBDIR/$PARAFILE"
cp $UBKUPMTD "$HTUSB/$USBDIR/$UBKUPFILE"
cp $USERMTD "$HTUSB/$USBDIR/$USERFILE"
cp $ROOTFSMTD "$HTUSB/$USBDIR/$ROOTFILE"
cp $ALLMTD "$HTUSB/$USBDIR/$ALLFILE"
sync
sync
}
# Make a backup copy of the factory firmware if USB flash stick present
makeusbcopy() {
if [ -e $HTUSB ]; then
if [ -e "$HTUSB/$USBDIR" ]; then
rm -rf "$HTUSB/$USBDIR"
mkdir "$HTUSB/$USBDIR"
makecopy
else
mkdir "$HTUSB/$USBDIR"
makecopy
fi
fi
}
# ========= Main ==========
# ====== Close services so we free up RAM and don't have interference
# wait web
sleep 5
echo "close services, waiting ..."
for ser in $SRVLIST
do
if [ -e /etc/init.d/$ser ]; then
/etc/init.d/$ser stop > /dev/null 2>&1
fi
done
# close spe service
for spefile in $SPELIST
do
rm -f /var/run/$spefile* > /dev/null 2>&1
done
spepid=`pidof $SPELIST`
for pid in $spepid
do
kill -9 $pid > /dev/null 2>&1
done
echo "services closed"
# ===== Backup the factory firmware
makeusbcopy
# ===== untar new uboot and openwrt upgrade file
echo "unzip firmware package"
#Split out the firmware payload
/usr/bin/tail -n +$SKIP $0 > "$HTUSB/$USBDIR/$FIRMGZ"
if [ $? -ne 0 ]; then
exit 1
fi
cd "$HTUSB/$USBDIR"
/bin/gunzip $FIRMGZ
/bin/tar -xf $FIRMTAR
# ====== Make sure firmware and uboot file exists and program them if they do
if [ -f "$FIRMFILE" ];then
if [ -f "$UBOOTFILE" ];then
# No need for tar file now
rm -f $FIRMTAR
# Make the new "ALL" image file and program it
cat $UBOOTFILE $CONFMTD $FACTMTD $FIRMFILE > "$NEWFILE"
if [ -f $NEWFILE ]; then
# Delete some stuff so we don't run out of room
rm -f $UBOOTFILE
rm -f $FIRMFILE
#Now program the flash
/bin/mtd_write write $NEWFILE $ALLMTD
else
echo "Image was not made - aborting..."
exit 1
fi
else
exit 1
fi
else
exit 1
fi
# ====== Successs!
sync
sync
reboot
exit 0
END_OF_STUB
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Files:
-nmkhtimage
This tool creates a HooToo compatible "factory" image which can be used to
upgrade a fresh HooToo TM02 with factor software to OpenWRT. It requires:
1. A ramips rt305x squashfs-sysupgrade binary
2. An rt305x uboot binary (available on this site under "uboot").
This is a tool for advanced users.
I'm providing this tool to help those that wish to create their own OpenWRT
"factory" images using the OpenWRT system builder or their imagebuilder. The
tool requires OSX or Linux. SED and the chksum utilities. Run the tool without
arguments for the command line format.
nmkhtimage is released under the Open Commons license. | {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
diff --git a/target/linux/ramips/base-files/etc/board.d/01_leds b/target/linux/ramips/base-files/etc/board.d/01_leds
index bf646ed..4cf49b5 100755
--- a/target/linux/ramips/base-files/etc/board.d/01_leds
+++ b/target/linux/ramips/base-files/etc/board.d/01_leds
@@ -112,6 +112,10 @@ case $board in
hlk-rm04)
set_wifi_led "rt2800pci-phy0::radio"
;;
+ ht-tm02)
+ ucidef_set_led_netdev "eth" "ETH" "ht-tm02:white:status" "eth0"
+ set_wifi_led "ht-tm02:blue:wifi"
+ ;;
all0239-3g|\
hw550-3g)
set_usb_led "hw550-3g:green:usb"
diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network
index e027b3b..c462fd8 100755
--- a/target/linux/ramips/base-files/etc/board.d/02_network
+++ b/target/linux/ramips/base-files/etc/board.d/02_network
@@ -97,6 +97,12 @@ ramips_setup_interfaces()
ucidef_add_switch_vlan "switch0" "2" "4 9t"
;;
+ ht-tm02)
+ ucidef_set_interface_lan "eth0.1"
+ ucidef_add_switch "switch0" "1" "1"
+ ucidef_add_switch_vlan "switch0" "1" "4 6t"
+ ;;
+
3g-6200n | \
dir-610-a1 | \
dir-300-b7 | \
@@ -253,6 +259,7 @@ ramips_setup_macs()
hlk-rm04 | \
mpr-a1 | \
mpr-a2 | \
+ ht-tm02 | \
dir-300-b7 | \
dir-320-b1 | \
psr-680w |\
diff --git a/target/linux/ramips/base-files/etc/diag.sh b/target/linux/ramips/base-files/etc/diag.sh
index 9ad7ccb..9752eb2 100755
--- a/target/linux/ramips/base-files/etc/diag.sh
+++ b/target/linux/ramips/base-files/etc/diag.sh
@@ -63,6 +63,9 @@ get_status_led() {
hlk-rm04)
status_led="hlk-rm04:red:power"
;;
+ ht-tm02)
+ status_led="ht-tm02:white:status"
+ ;;
all0239-3g|\
hw550-3g)
status_led="hw550-3g:green:status"
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh
index bb42ace..68ff509 100755
--- a/target/linux/ramips/base-files/lib/ramips.sh
+++ b/target/linux/ramips/base-files/lib/ramips.sh
@@ -157,6 +157,9 @@ ramips_board_detect() {
*"HILINK HLK-RM04")
name="hlk-rm04"
;;
+ *"HOOTOO HT-TM02")
+ name="ht-tm02"
+ ;;
*"HAME MPR-A1")
name="mpr-a1"
;;
diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh
index 407c218..4aec780 100755
--- a/target/linux/ramips/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh
@@ -52,6 +52,7 @@ platform_check_image() {
hw550-3g | \
hg255d | \
hlk-rm04 | \
+ ht-tm02 | \
ip2202 | \
m3 | \
m4 | \
diff --git a/target/linux/ramips/dts/HT-TM02.dts b/target/linux/ramips/dts/HT-TM02.dts
new file mode 100644
index 0000000..1f456f0
--- /dev/null
+++ b/target/linux/ramips/dts/HT-TM02.dts
@@ -0,0 +1,104 @@
+/dts-v1/;
+
+/include/ "rt5350.dtsi"
+
+/ {
+ compatible = "HT-TM02", "ralink,rt5350-soc";
+ model = "HOOTOO HT-TM02";
+
+ palmbus@10000000 {
+
+ gpio0: gpio@600 {
+ status = "okay";
+ };
+
+ spi@b00 {
+ status = "okay";
+ m25p80@0 {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "mx25l6405d";
+ reg = <0 0>;
+ linux,modalias = "m25p80", "mx25l6405d";
+ spi-max-frequency = <10000000>;
+
+ partition@0 {
+ label = "u-boot";
+ reg = <0x0 0x30000>;
+ read-only;
+ };
+
+ partition@30000 {
+ label = "u-boot-env";
+ reg = <0x30000 0x10000>;
+ read-only;
+ };
+
+ factory: partition@40000 {
+ label = "factory";
+ reg = <0x40000 0x10000>;
+ read-only;
+ };
+
+ partition@50000 {
+ label = "firmware";
+ reg = <0x50000 0x7b0000>;
+ };
+ };
+ };
+ };
+
+ pinctrl {
+ state_default: pinctrl0 {
+ gpio {
+ ralink,group = "i2c", "jtag", "uartf";
+ ralink,function = "gpio";
+ };
+ };
+ };
+
+ ethernet@10100000 {
+ mtd-mac-address = <&factory 0x4>;
+ };
+
+ esw@10110000 {
+ ralink,portmap = <0x3f>;
+ };
+
+ wmac@10180000 {
+ ralink,mtd-eeprom = <&factory 0>;
+ };
+
+ ehci@101c0000 {
+ status = "okay";
+ };
+
+ ohci@101c1000 {
+ status = "okay";
+ };
+
+ gpio-leds {
+ compatible = "gpio-leds";
+ wifi {
+ label = "ht-tm02:blue:wifi";
+ gpios = <&gpio0 7 1>;
+ };
+ status {
+ label = "ht-tm02:yellow:status";
+ gpios = <&gpio0 12 1>;
+ };
+
+ };
+
+ gpio-keys-polled {
+ compatible = "gpio-keys-polled";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ poll-interval = <20>;
+ wps {
+ label = "reset";
+ gpios = <&gpio0 10 1>;
+ linux,code = <0x198>;
+ };
+ };
+};
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile
index 35057e4..c365d9d 100644
--- a/target/linux/ramips/image/Makefile
+++ b/target/linux/ramips/image/Makefile
@@ -434,6 +434,8 @@ define BuildFirmware/HLKRM04/initramfs
endef
Image/Build/Profile/HLKRM04=$(call BuildFirmware/HLKRM04/$(1),$(1),hlk-rm04,HLKRM04,HLK-RM02)
+Image/Build/Profile/HT-TM02=$(call BuildFirmware/Default8M/$(1),$(1),ht-tm02,HT-TM02)
+
Image/Build/Profile/M3=$(call BuildFirmware/Poray4M/$(1),$(1),m3,M3)
Image/Build/Profile/M4=$(call BuildFirmware/PorayDualSize/$(1),$(1),m4,M4)
@@ -598,6 +600,7 @@ define Image/Build/Profile/Default
$(call Image/Build/Profile/FREESTATION5,$(1))
# $(call Image/Build/Profile/HG255D,$(1))
$(call Image/Build/Profile/HLKRM04,$(1))
+ $(call Image/Build/Profile/HT-TM02,$(1))
$(call Image/Build/Profile/HW550-3G,$(1))
$(call Image/Build/Profile/IP2202,$(1))
$(call Image/Build/Profile/M3,$(1))
diff --git a/target/linux/ramips/rt305x/profiles/hootoo.mk b/target/linux/ramips/rt305x/profiles/hootoo.mk
new file mode 100644
index 0000000..bbb8143
--- /dev/null
+++ b/target/linux/ramips/rt305x/profiles/hootoo.mk
@@ -0,0 +1,28 @@
+#
+# Copyright (C) 2013 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+
+define Profile/HT-TM02
+ NAME:=HOOTOO HT-TM02
+ PACKAGES:=\
+ wpad-mini \
+ kmod-ledtrig-netdev kmod-ledtrig-timer kmod-leds-gpio kmod-ledtrig-default-on \
+ kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-net usbutils \
+ kmod-scsi-core kmod-scsi-generic kmod-fs-ext4 \
+ kmod-usb-storage kmod-usb-storage-extras block-mount \
+ kmod-usb-serial kmod-usb-serial-ftdi kmod-gpio-button-hotplug \
+ kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-utf8 luci luci-mod-admin-full \
+ kmod-app-samba luci-theme-openwrt luci-proto-relay relayd nano \
+ fstools
+endef
+
+define Profile/HT-TM02/Description
+ Package set for HOOTOO HT-TM02 board
+endef
+
+$(eval $(call Profile,HT-TM02))
+
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
diff --git a/target/linux/ramips/base-files/etc/board.d/01_leds b/target/linux/ramips/base-files/etc/board.d/01_leds
index 01e2363..4cf49b5 100755
--- a/target/linux/ramips/base-files/etc/board.d/01_leds
+++ b/target/linux/ramips/base-files/etc/board.d/01_leds
@@ -112,6 +112,10 @@ case $board in
hlk-rm04)
set_wifi_led "rt2800pci-phy0::radio"
;;
+ ht-tm02)
+ ucidef_set_led_netdev "eth" "ETH" "ht-tm02:white:status" "eth0"
+ set_wifi_led "ht-tm02:blue:wifi"
+ ;;
all0239-3g|\
hw550-3g)
set_usb_led "hw550-3g:green:usb"
diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network
index e027b3b..c462fd8 100755
--- a/target/linux/ramips/base-files/etc/board.d/02_network
+++ b/target/linux/ramips/base-files/etc/board.d/02_network
@@ -97,6 +97,12 @@ ramips_setup_interfaces()
ucidef_add_switch_vlan "switch0" "2" "4 9t"
;;
+ ht-tm02)
+ ucidef_set_interface_lan "eth0.1"
+ ucidef_add_switch "switch0" "1" "1"
+ ucidef_add_switch_vlan "switch0" "1" "4 6t"
+ ;;
+
3g-6200n | \
dir-610-a1 | \
dir-300-b7 | \
@@ -253,6 +259,7 @@ ramips_setup_macs()
hlk-rm04 | \
mpr-a1 | \
mpr-a2 | \
+ ht-tm02 | \
dir-300-b7 | \
dir-320-b1 | \
psr-680w |\
diff --git a/target/linux/ramips/base-files/etc/diag.sh b/target/linux/ramips/base-files/etc/diag.sh
index 9ad7ccb..9752eb2 100755
--- a/target/linux/ramips/base-files/etc/diag.sh
+++ b/target/linux/ramips/base-files/etc/diag.sh
@@ -63,6 +63,9 @@ get_status_led() {
hlk-rm04)
status_led="hlk-rm04:red:power"
;;
+ ht-tm02)
+ status_led="ht-tm02:white:status"
+ ;;
all0239-3g|\
hw550-3g)
status_led="hw550-3g:green:status"
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh
index bb42ace..68ff509 100755
--- a/target/linux/ramips/base-files/lib/ramips.sh
+++ b/target/linux/ramips/base-files/lib/ramips.sh
@@ -157,6 +157,9 @@ ramips_board_detect() {
*"HILINK HLK-RM04")
name="hlk-rm04"
;;
+ *"HOOTOO HT-TM02")
+ name="ht-tm02"
+ ;;
*"HAME MPR-A1")
name="mpr-a1"
;;
diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh
index 407c218..4aec780 100755
--- a/target/linux/ramips/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh
@@ -52,6 +52,7 @@ platform_check_image() {
hw550-3g | \
hg255d | \
hlk-rm04 | \
+ ht-tm02 | \
ip2202 | \
m3 | \
m4 | \
diff --git a/target/linux/ramips/dts/HT-TM02.dts b/target/linux/ramips/dts/HT-TM02.dts
new file mode 100644
index 0000000..1f456f0
--- /dev/null
+++ b/target/linux/ramips/dts/HT-TM02.dts
@@ -0,0 +1,104 @@
+/dts-v1/;
+
+/include/ "rt5350.dtsi"
+
+/ {
+ compatible = "HT-TM02", "ralink,rt5350-soc";
+ model = "HOOTOO HT-TM02";
+
+ palmbus@10000000 {
+
+ gpio0: gpio@600 {
+ status = "okay";
+ };
+
+ spi@b00 {
+ status = "okay";
+ m25p80@0 {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "mx25l6405d";
+ reg = <0 0>;
+ linux,modalias = "m25p80", "mx25l6405d";
+ spi-max-frequency = <10000000>;
+
+ partition@0 {
+ label = "u-boot";
+ reg = <0x0 0x30000>;
+ read-only;
+ };
+
+ partition@30000 {
+ label = "u-boot-env";
+ reg = <0x30000 0x10000>;
+ read-only;
+ };
+
+ factory: partition@40000 {
+ label = "factory";
+ reg = <0x40000 0x10000>;
+ read-only;
+ };
+
+ partition@50000 {
+ label = "firmware";
+ reg = <0x50000 0x7b0000>;
+ };
+ };
+ };
+ };
+
+ pinctrl {
+ state_default: pinctrl0 {
+ gpio {
+ ralink,group = "i2c", "jtag", "uartf";
+ ralink,function = "gpio";
+ };
+ };
+ };
+
+ ethernet@10100000 {
+ mtd-mac-address = <&factory 0x4>;
+ };
+
+ esw@10110000 {
+ ralink,portmap = <0x3f>;
+ };
+
+ wmac@10180000 {
+ ralink,mtd-eeprom = <&factory 0>;
+ };
+
+ ehci@101c0000 {
+ status = "okay";
+ };
+
+ ohci@101c1000 {
+ status = "okay";
+ };
+
+ gpio-leds {
+ compatible = "gpio-leds";
+ wifi {
+ label = "ht-tm02:blue:wifi";
+ gpios = <&gpio0 7 1>;
+ };
+ status {
+ label = "ht-tm02:yellow:status";
+ gpios = <&gpio0 12 1>;
+ };
+
+ };
+
+ gpio-keys-polled {
+ compatible = "gpio-keys-polled";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ poll-interval = <20>;
+ wps {
+ label = "reset";
+ gpios = <&gpio0 10 1>;
+ linux,code = <0x198>;
+ };
+ };
+};
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile
index 35057e4..c365d9d 100644
--- a/target/linux/ramips/image/Makefile
+++ b/target/linux/ramips/image/Makefile
@@ -434,6 +434,8 @@ define BuildFirmware/HLKRM04/initramfs
endef
Image/Build/Profile/HLKRM04=$(call BuildFirmware/HLKRM04/$(1),$(1),hlk-rm04,HLKRM04,HLK-RM02)
+Image/Build/Profile/HT-TM02=$(call BuildFirmware/Default8M/$(1),$(1),ht-tm02,HT-TM02)
+
Image/Build/Profile/M3=$(call BuildFirmware/Poray4M/$(1),$(1),m3,M3)
Image/Build/Profile/M4=$(call BuildFirmware/PorayDualSize/$(1),$(1),m4,M4)
@@ -598,6 +600,7 @@ define Image/Build/Profile/Default
$(call Image/Build/Profile/FREESTATION5,$(1))
# $(call Image/Build/Profile/HG255D,$(1))
$(call Image/Build/Profile/HLKRM04,$(1))
+ $(call Image/Build/Profile/HT-TM02,$(1))
$(call Image/Build/Profile/HW550-3G,$(1))
$(call Image/Build/Profile/IP2202,$(1))
$(call Image/Build/Profile/M3,$(1))
diff --git a/target/linux/ramips/rt305x/profiles/hootoo.mk b/target/linux/ramips/rt305x/profiles/hootoo.mk
new file mode 100644
index 0000000..27c6b9a
--- /dev/null
+++ b/target/linux/ramips/rt305x/profiles/hootoo.mk
@@ -0,0 +1,24 @@
+#
+# Copyright (C) 2013 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+
+define Profile/HT-TM02
+ NAME:=HOOTOO HT-TM02
+ PACKAGES:=\
+ wpad-mini \
+ kmod-ledtrig-netdev kmod-ledtrig-timer kmod-leds-gpio \
+ kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-net \
+ kmod-scsi-core kmod-scsi-generic kmod-fs-ext4 \
+ kmod-usb-storage kmod-usb-storage-extras block-mount
+endef
+
+define Profile/HT-TM02/Description
+ Package set for HOOTOO HT-TM02 board
+endef
+
+$(eval $(call Profile,HT-TM02))
+
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
Two versions of patches here:
"basic" contains just the basics to fully enable the hardware + luci. Support
for block storage and serial on USB
"full" contains a more robust configuration with samba, ftp and a few others.
This one is compatible with the luci backup available in the sample_configs
folder.
I suggest using the "basic" and then adding whatever packages you desire.
| {
"repo_name": "wingspinner/HooToo-Tripmate-HT-TM02-OpenWRT",
"stars": "70",
"repo_language": "Max",
"file_name": "README.md",
"mime_type": "text/plain"
} |
# react-faux-dom changes
## v4.5.0
* Merge [#148](https://github.com/Olical/react-faux-dom/pull/148) - Add `node.compareDocumentPosition` support.
## v4.4.1
* Replace a couple of `let` keywords with `var` because it was breaking some older environments and tools. See [#147](https://github.com/Olical/react-faux-dom/issues/147) for example.
## v4.4.0
* Merge [#145](https://github.com/Olical/react-faux-dom/pull/145) - Copy static properties through the higher order component.
## v4.3.0
* Merge [#143](https://github.com/Olical/react-faux-dom/pull/143) - Support D3 selection cloning.
## v4.2.0
* Merge [#133](https://github.com/Olical/react-faux-dom/pull/133) - Clean up HOC timers on unmount.
## v4.1.0
* Merge [#123](https://github.com/Olical/react-faux-dom/pull/123) - Expose drawFauxDOM in HOC.
* Merge [#116](https://github.com/Olical/react-faux-dom/pull/116) - Support independent documents with a factory.
## v4.0.5
* Merge [#115](https://github.com/Olical/react-faux-dom/pull/115) - Update a bunch of things.
## v4.0.4
* Merge [#114](https://github.com/Olical/react-faux-dom/pull/114) - Move React to dev dependencies.
## v4.0.3
This should have been v4.0.0 really, I sincerely apologise for breaking the previous three releases.
* Merge [#102](https://github.com/Olical/react-faux-dom/pull/102) - Redesign and fix the withFauxDOM HOC.
withFauxDOM now passes the methods you need through the props. The documentation has been updated. For reasoning, see [#96](https://github.com/Olical/react-faux-dom/issues/96).
## v4.0.2 - broken
Same as v4.0.1 but under the normal `latest` tag.
* Merge [#100](https://github.com/Olical/react-faux-dom/pull/100) - Change the `withFauxDOM` HOC so it only uses ES5 features. Fixes issues around uglifyjs after the v4.0.0 release.
## v4.0.1 (under `next` tag) - broken
Pre-release to confirm [#100](https://github.com/Olical/react-faux-dom/pull/100) works as expected.
## v4.0.0 - broken
* Merge [#91](https://github.com/Olical/react-faux-dom/pull/91) - Replace mixins with higher order components.
* Merge [#88](https://github.com/Olical/react-faux-dom/pull/88) - Add CDNJS version to README.md.
* Merge [#89](https://github.com/Olical/react-faux-dom/pull/89) - Add option to discard the existing node in connectFauxDom.
* Merge [#95](https://github.com/Olical/react-faux-dom/pull/95) - Alias style.getPropertyValue to style.getProperty, D3 requires it now.
* Commit [1c3a9ee](https://github.com/Olical/react-faux-dom/commit/1c3a9ee872ccddca49efd8a24b4f419c24da199b) - Only set the parentNode on faux DOM nodes, not React nodes.
## v3.1.0
* Revert [#75](https://github.com/Olical/react-faux-dom/issues/75). It caused issues in some cases.
* Merge [#85](https://github.com/Olical/react-faux-dom/pull/85) - Reuse the DOM in updates when using the mixin.
## v3.0.1
* Fix builds, as reported by [#81](https://github.com/Olical/react-faux-dom/issues/81) - It used to use a tool I built, bastion, but npm@3+ broke that. Uses webpack directly now.
* Add a bind where there could be potential issues. Fixes [#75](https://github.com/Olical/react-faux-dom/issues/75).
* Merge [#65](https://github.com/Olical/react-faux-dom/pull/65) - Documentation improvements.
## v3.0.0
* Merge [#69](https://github.com/Olical/react-faux-dom/pull/69) - Return an empty string from style getters by default. From issue [#68](https://github.com/Olical/react-faux-dom/issues/68).
* Merge [#71](https://github.com/Olical/react-faux-dom/pull/71) - Changes npmcdn URLs to unpkg. Not sure why they're doing this but oh well.
Breaking change because of the following:
* The default return type of the style functions have changed from `undefined` to `string`.
* The unpkg build (previously npmcdn) exports to the global `ReactFauxDOM` instead of `react-faux-dom`.
## v2.7.1
* Merge [#59](https://github.com/Olical/react-faux-dom/pull/59) - Updates D3 to v4 (a `devDependency`) and makes sure the tests work fine.
## v2.7.0
* Merge [#52](https://github.com/Olical/react-faux-dom/pull/52) - Add support for `getBoundingClientRect`, thanks to [@alexyuly](https://github.com/alexyuly)!
## v2.6.2
* REALLY fix `package.json`, just realised I don't need to publish to test this :(
Sorry about v2.6.{0,1,2}, my bad.
## v2.6.1
* Fix `package.json` files array by removing it. Trying to get `dist` in npm.
## v2.6.0
* Merge [#53](https://github.com/Olical/react-faux-dom/pull/53) (just my approach to [#48](https://github.com/Olical/react-faux-dom/pull/48)) - Provide a UMD build in a CDN.
## v2.5.0
* Merge [#41](https://github.com/Olical/react-faux-dom/pull/41) - Adding mixin with animation support (thanks [@krawaller](https://github.com/krawaller)!)
## v2.4.0
* Merge [#37](https://github.com/Olical/react-faux-dom/pull/37) - Replace lodash dependencies with in house functions
* Throw when `querySelector(All)` does not receive an argument
* Return null when `querySelector` does not find a match
## v2.3.0
* Merge [#38](https://github.com/Olical/react-faux-dom/pull/38) - Fix vendor prefixes for already camelCased style names
## v2.2.0
* Merge [#35](https://github.com/Olical/react-faux-dom/pull/35) - Define `childNodes` in `Element`
* Some small README improvements
## v2.1.1
* Merge [#26](https://github.com/Olical/react-faux-dom/pull/26) - Documentation
* Merge [#27](https://github.com/Olical/react-faux-dom/pull/27) - Cache some RegExps and make a section of code more DRY
## v2.1.0
* Merge [#23](https://github.com/Olical/react-faux-dom/pull/23) - Support data and aria attributes
* Merge [#25](https://github.com/Olical/react-faux-dom/pull/25) which fixes [#19](https://github.com/Olical/react-faux-dom/issues/19) - On click not passing through D3 datum
## v2.0.1
* Fix [#10](https://github.com/Olical/react-faux-dom/issues/10) - Vendor prefixed styles are camel cased incorrectly
## v2.0.0
* Fix [#9](https://github.com/Olical/react-faux-dom/issues/9) - Make events work like the normal DOM
This should contribute to fixing [#4](https://github.com/Olical/react-faux-dom/issues/4) (Support for Brush) too. The reason that this is a breaking change (a major version bump) is that the event object you receive in event listeners is now the actual native event, not a React synthetic event. If you want the synthetic event use the `syntheticEvent` property. This should help even more d3 code just work out of the box.
## v1.1.0
* Fix [#7](https://github.com/Olical/react-faux-dom/issues/7) - toReact mutates the faux element
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
This library allows you to instantiate a fairly lightweight object that behaves (sort of) like a regular DOM element from your browser. It does not support the whole DOM API, you'll probably want [jsdom][] for that. Instead, it supports a subset which was initially just enough to satisfy [D3][] but this can be expanded easily as desired. Things like jQuery and Backbone can also be used, it just may require some up front tweaking.
Why do this though? This allows us to take a stateful library that mutates DOM structures, such as D3, and make it entirely stateless. From there we can render our charts and other such DOM trees into React components without dropping out of the component life cycle. This is even more important with the introduction of stateless components (which are just simple functions!), you no longer want to be messing around with life cycle hooks, we should just be returning React DOM structures.
The best documentation will always be the source and tests, but I will try to give you an overview of usage and the high level API below.
## Usage
### Creating elements
You can create an element by instantiating `ReactFauxDOM.Element` like so.
```javascript
import ReactFauxDOM from 'react-faux-dom'
const someDiv = new ReactFauxDOM.Element('div')
```
### Children
If you don't want to call things like `appendChild` then you can instantiate an element as a child of another by passing the parent as the second argument to the constructor.
```javascript
const paragraph = new ReactFauxDOM.Element('p', someDiv)
paragraph.appendChild(someFauxDOMElement)
paragraph.appendChild(someReactElement)
```
As you can see, you can embed React components into the faux DOM seamlessly. Mutating those children obviously won't work, but it allows you to optimise your rendering significantly.
### Manipulating
You can pass these elements to things like D3 and then use that library as you normally would. All they do is call the underlying DOM manipulation methods I have implemented so far like this.
```javascript
paragraph.textContent = 'Hello, World!'
paragraph.style = 'color:red'
```
### To React!
Obviously this little DOM like data structure can't actually be rendered, that's why you have to call `toReact` on it. This will return a regular React element for you to return from your render function or nestle alongside other React elements and components.
```javascript
render () {
return (
<div>
{paragraph.toReact()}
</div>
)
}
```
## DOM support
### `ReactFauxDOM` (document)
* `defaultView`
* `createElement`
* `compareDocumentPosition` - Always returns 8, for selector engines
### `ReactFauxDOM.Window`
* `getComputedStyle` - Just uses `el.style.getProperty`
### `ReactFauxDOM.Element`
* `style.setProperty`
* `style.getProperty`
* `style.getPropertyValue`
* `style.removeProperty`
* `style.* = '...'`
* `style = '...'`
* `setAttribute`
* `getAttribute`
* `getAttributeNode`
* `removeAttribute`
* `addEventListener`
* `removeEventListener`
* `appendChild`
* `insertBefore`
* `removeChild`
* `querySelector`
* `querySelectorAll`
* `getElementsByTagName`
* `getElementById`
* `nextSibling`
* `previousSibling`
* `innerHTML`
* `textContent`
* `getBoundingClientRect`
[jsdom]: https://github.com/tmpvar/jsdom
[d3]: http://d3js.org/
## React Higher-Order Component (HOC)
You also have access to an **higher-order component** which makes it easy to render faux nodes, and to animate them while they're being mutated by a DOM library like for example D3.
To use it, simply import it with `import {withFauxDOM} from 'react-faux-dom'` or require it with `var withFauxDOM = require('react-faux-dom').withFauxDOM`, and then apply it to your component with `withFauxDOM(MyComponent)`.
The `withFauxDOM()` HOC passes the following methods to your component via props:
* **`connectFauxDOM(node, name)`**: This will store the `node` element and make it available via `this.props[name]`. It also makes an asynchronous call to `drawFauxDOM`. The node can be a faux element or a string, in which case a faux element is instantiated. The node is returned for convenience. A component can have multiple connected nodes. If the node already exists, it will be reused by default. If you need to force a new node, use the form `connectFauxDOM(node, name, discardNode)` setting the optional third argument `discardNode` to `true`.
* **`drawFauxDOM()`**: Render the fauxDOM to the virtual DOM with no animation.
* **`animateFauxDOM(duration)`**: This will make a call to `drawFauxDOM` every 16 milliseconds until the duration has expired.
* **`stopAnimatingFauxDOM()`**: Cancels eventual ongoing animation
* **`isAnimatingFauxDOM()`**: Returns true or false depending on whether an animation is ongoing.
Internally, the HOC uses **`drawFauxDOM()`** to render the fauxDOM to the virtual DOM. This method updates the component props (causing a render) with virtual DOM (through `node.toReact()`) for all previously `connect`ed faux nodes. Each node's representation will be on `this.props[name]`, where `name` is the one used in the `connect` call.
The HOC will also take care of the necessary setup and teardown. To see it in action, check out the `animate-d3-with-hoc` ([source][hoc-animate-example], [sandbox][hoc-animate-sandbox]) and `update-d3-with-hoc` ([source][hoc-update-example], [sandbox][hoc-update-sandbox]) mini-apps.
[hoc-animate-example]: https://github.com/tibotiber/rfd-animate-example
[hoc-animate-sandbox]: https://codesandbox.io/s/github/tibotiber/rfd-animate-example/tree/master/
[hoc-update-example]: https://github.com/tibotiber/rfd-update-example
[hoc-update-sandbox]: https://codesandbox.io/s/github/tibotiber/rfd-update-example/tree/master/ | {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
.PHONY: default bootstrap test test-watch build
bin = ./node_modules/.bin
default: bootstrap test
bootstrap:
npm install
test:
npm test
test-watch:
./node_modules/.bin/nodemon --exec "npm test"
build:
$(bin)/webpack
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
const path = require('path')
const webpack = require('webpack')
const config = {
entry: './lib/ReactFauxDOM.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'ReactFauxDOM.min.js',
library: 'ReactFauxDOM',
libraryTarget: 'umd'
},
module: {
rules: [
{test: /\.(js|jsx)$/, use: 'babel-loader'}
]
},
plugins: [
new webpack.optimize.UglifyJsPlugin(),
new webpack.optimize.OccurrenceOrderPlugin()
],
externals: [
{
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
}
}
]
}
module.exports = config
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
# react-faux-dom [](http://badge.fury.io/js/react-faux-dom) [](https://cdnjs.com/libraries/react-faux-dom) [](https://travis-ci.org/Olical/react-faux-dom) [](https://github.com/feross/standard) [](https://gitter.im/Olical/react-faux-dom?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
DOM like data structure to be mutated by [D3][] et al, then rendered to [React][] elements.
ReactFauxDOM supports a wide range of DOM operations and will fool most libraries but it isn't exhaustive (the full DOM API is ludicrously large). It supports enough to work with D3 but will require you to fork and add to the project if you encounter something that's missing.
You can think of this as a bare bones [jsdom][] that's built to bridge the gap between the declarative React and the imperative JavaScript world. We just need to expand it as we go along since jsdom is a huge project that solves different problems.
I'm trying to keep it light so as not to slow down your render function. I want efficient, declarative and stateless code, but I don't want to throw away previous tools to get there.
## Example
### Default
This style of calling `createElement` and `toReact` is the default API, it's easy to use and fits into the normal React flow but won't allow you to perform animations or D3 force layouts, for example.
```javascript
class SomeChart extends React.Component {
render () {
// Create your element.
var el = ReactFauxDOM.createElement('div')
// Change stuff using actual DOM functions.
// Even perform CSS selections!
el.style.setProperty('color', 'red')
el.setAttribute('class', 'box')
// Render it to React elements.
return el.toReact()
}
}
// Yields: <div style='color: red;' class='box'></div>
```
### With animation helper
Complex usage with [D3][], ES6 modules and animations. Clone it from [here][minimal-example-source], or try on in [codesandbox][minimal-example-sandbox].
```javascript
import React from 'react'
import * as d3 from 'd3'
import {withFauxDOM} from 'react-faux-dom'
class MyReactComponent extends React.Component {
componentDidMount () {
const faux = this.props.connectFauxDOM('div', 'chart')
d3.select(faux)
.append('div')
.html('Hello World!')
this.props.animateFauxDOM(800)
}
render () {
return (
<div>
<h2>Here is some fancy data:</h2>
<div className='renderedD3'>
{this.props.chart}
</div>
</div>
)
}
}
MyReactComponent.defaultProps = {
chart: 'loading'
}
export default withFauxDOM(MyReactComponent)
```
## Limitations
This library is intended to be used to build a React DOM tree from some mutable intermediate value which is then thrown away inside a `render` function. This means things that require mutation of the DOM, such as D3's animations, zooming, dragging and brushing will not work.
Static charts will work fine out of the box, you can use this tool to translate SVG tools into DOM managed by React easily. If you wish to start adding in animations you'll have to use the `withFauxDOM` higher order component mentioned above and in a few of the examples.
Before you go to use this tool, stop and think:
* Am I trying to build static DOM within a render method? - This is fine.
* Am I trying to hook up timers and event listeners with a 3rd party tool to manipulate some DOM after I have inserted it into the page? - This is not going to work.
## Installation
You can install the package `react-faux-dom` from npm as you usually would. Then use webpack or browserify (etc) to bundle the source into your build. If you need a pre-built UMD version you can use [unpkg][].
You can find the latest version of the UMD version at https://unpkg.com/react-faux-dom/dist/ReactFauxDOM.min.js
### Independent documents
By default all Elements share an emulated `window` at
`el.ownerDocument.defaultView` you can create independent documents with:
```javascript
import React from 'react'
import rfdFactory from 'react-faux-dom/lib/factory'
function getParagraph() {
const ReactFauxDOM = rfdFactory();
return new ReactFauxDOM.Element('p', someDiv);
}
const p1 = getParagraph();
const p2 = getParagraph();
assert(p1.ownerDocument !== p2.ownerDocument);
```
### More usage info:
* Full [documentation][] with current DOM API coverage
* An example static chart ([source][lab-chart-source], [article][lab-chart])
* An "hello world" example using the HOC ([source][minimal-example-source], [sandbox][minimal-example-sandbox])
* An example animated chart using the HOC ([source][hoc-animate-example], [sandbox][hoc-animate-sandbox])
* An example chart with D3 updates using the HOC ([source][hoc-update-example], [sandbox][hoc-update-sandbox])
* A simple example using state and events ([source][lab-state-source], [article][lab-state])
* A d3 sankey diagram builder ([source][sankey-app-source], [demo][sankey-app])
* `d3-react-sparkline`, a small component I built at [Qubit][] ([source][d3-react-sparkline])
* `component-kit`, "UI-Kit for Rapidly Creating Dashboards" ([source][component-kit])
* A demo dashboard with multiple charts ([source][rd3-source], [demo][rd3-demo])
### Related articles:
* [D3 within React the right way][Olical-post]
* [React + D3.js: Balancing Performance & Developer Experience][tibotiber-post]
* [A starting point on using D3 with React][AdilBaaj-post]
## Development
```bash
# Fetch the dependencies
make bootstrap
# Test
make test
# Test continually
make test-watch
```
## Maintainers
This project is actively maintained by the following developers. Feel free to reach out if you'd like to join us and help out!
* [@Olical](https://github.com/Olical)
* [@tibotiber](https://github.com/tibotiber)
## Unlicenced
Find the full [unlicense][] in the `UNLICENSE` file, but here's a snippet.
>This is free and unencumbered software released into the public domain.
>
>Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
Do what you want. Learn as much as you can. Unlicense more software.
[unlicense]: http://unlicense.org/
[d3]: http://d3js.org/
[react]: http://facebook.github.io/react/
[jsdom]: https://github.com/tmpvar/jsdom
[lab-chart]: http://lab.oli.me.uk/d3-to-react-again/
[lab-chart-source]: https://github.com/Olical/lab/blob/gh-pages/js/d3-to-react-again/main.js
[lab-state]: http://lab.oli.me.uk/react-faux-dom-state/
[lab-state-source]: https://github.com/Olical/lab/blob/gh-pages/js/react-faux-dom-state/main.js
[d3-react-sparkline]: https://github.com/QubitProducts/d3-react-sparkline
[qubit]: http://www.qubit.com/
[documentation]: ./DOCUMENTATION.md
[react-motion]: https://github.com/chenglou/react-motion
[sankey-app]: http://nick.balestra.ch/sankey/
[sankey-app-source]: https://github.com/nickbalestra/sankey
[hoc-animate-example]: https://github.com/tibotiber/rfd-animate-example
[hoc-animate-sandbox]: https://codesandbox.io/s/github/tibotiber/rfd-animate-example/tree/master/
[hoc-update-example]: https://github.com/tibotiber/rfd-update-example
[hoc-update-sandbox]: https://codesandbox.io/s/github/tibotiber/rfd-update-example/tree/master/
[component-kit]: https://github.com/kennetpostigo/component-kit
[unpkg]: https://unpkg.com/
[Olical-post]: http://oli.me.uk/2015/09/09/d3-within-react-the-right-way/
[tibotiber-post]: https://medium.com/@tibotiber/react-d3-js-balancing-performance-developer-experience-4da35f912484
[rd3-demo]: https://rd3.now.sh
[rd3-source]: https://github.com/tibotiber/rd3
[AdilBaaj-post]: https://blog.sicara.com/a-starting-point-on-using-d3-with-react-869fdf3dfaf
[minimal-example-source]: https://github.com/tibotiber/rfd-min-example
[minimal-example-sandbox]: https://codesandbox.io/s/github/tibotiber/rfd-min-example/tree/master/
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
function window () {
var Window = {
getComputedStyle: function (node) {
return {
getPropertyValue: node.style.getProperty
}
}
}
return Window
}
module.exports = window
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var React = require('react')
var styleAttr = require('style-attr')
var querySelectorAll = require('query-selector')
var camelCase = require('./utils/camelCase')
var isString = require('./utils/isString')
var isUndefined = require('./utils/isUndefined')
var assign = require('./utils/assign')
var mapValues = require('./utils/mapValues')
var styleCamelCase = require('./utils/styleCamelCase')
function element () {
function Element (nodeName, parentNode) {
this.nodeName = nodeName
this.parentNode = parentNode
this.childNodes = []
this.eventListeners = {}
this.text = ''
var self = this
var props = this.props = {
ref: function (component) {
self.component = component
},
style: {
setProperty: function (name, value) {
props.style[styleCamelCase(name)] = value
},
getProperty: function (name) {
return props.style[styleCamelCase(name)] || ''
},
getPropertyValue: function (name) {
return props.style.getProperty(name)
},
removeProperty: function (name) {
delete props.style[styleCamelCase(name)]
}
}
}
this.style = props.style
}
Element.ELEMENT_NODE = 1
Element.DOCUMENT_POSITION_DISCONNECTED = 1
Element.DOCUMENT_POSITION_PRECEDING = 2
Element.DOCUMENT_POSITION_FOLLOWING = 4
Element.DOCUMENT_POSITION_CONTAINS = 8
Element.DOCUMENT_POSITION_CONTAINED_BY = 16
Element.prototype.nodeType = 1
// This was easy to do with Vim.
// Just saying.
Element.prototype.eventNameMappings = {
'blur': 'onBlur',
'change': 'onChange',
'click': 'onClick',
'contextmenu': 'onContextMenu',
'copy': 'onCopy',
'cut': 'onCut',
'doubleclick': 'onDoubleClick',
'drag': 'onDrag',
'dragend': 'onDragEnd',
'dragenter': 'onDragEnter',
'dragexit': 'onDragExit',
'dragleave': 'onDragLeave',
'dragover': 'onDragOver',
'dragstart': 'onDragStart',
'drop': 'onDrop',
'error': 'onError',
'focus': 'onFocus',
'input': 'onInput',
'keydown': 'onKeyDown',
'keypress': 'onKeyPress',
'keyup': 'onKeyUp',
'load': 'onLoad',
'mousedown': 'onMouseDown',
'mouseenter': 'onMouseEnter',
'mouseleave': 'onMouseLeave',
'mousemove': 'onMouseMove',
'mouseout': 'onMouseOut',
'mouseover': 'onMouseOver',
'mouseup': 'onMouseUp',
'paste': 'onPaste',
'scroll': 'onScroll',
'submit': 'onSubmit',
'touchcancel': 'onTouchCancel',
'touchend': 'onTouchEnd',
'touchmove': 'onTouchMove',
'touchstart': 'onTouchStart',
'wheel': 'onWheel'
}
Element.prototype.skipNameTransformationExpressions = [
/^data-/,
/^aria-/
]
Element.prototype.attributeNameMappings = {
'class': 'className'
}
Element.prototype.attributeToPropName = function (name) {
var skipTransformMatches = this.skipNameTransformationExpressions.map(function (expr) {
return expr.test(name)
})
if (skipTransformMatches.some(Boolean)) {
return name
} else {
return this.attributeNameMappings[name] || camelCase(name)
}
}
Element.prototype.setAttribute = function (name, value) {
if (name === 'style' && isString(value)) {
var styles = styleAttr.parse(value)
for (var key in styles) {
this.style.setProperty(key, styles[key])
}
} else {
this.props[this.attributeToPropName(name)] = value
}
}
Element.prototype.getAttribute = function (name) {
return this.props[this.attributeToPropName(name)]
}
Element.prototype.getAttributeNode = function (name) {
var value = this.getAttribute(name)
if (!isUndefined(value)) {
return {
value: value,
specified: true
}
}
}
Element.prototype.removeAttribute = function (name) {
delete this.props[this.attributeToPropName(name)]
}
Element.prototype.eventToPropName = function (name) {
return this.eventNameMappings[name] || name
}
Element.prototype.addEventListener = function (name, fn) {
var prop = this.eventToPropName(name)
this.eventListeners[prop] = this.eventListeners[prop] || []
this.eventListeners[prop].push(fn)
}
Element.prototype.removeEventListener = function (name, fn) {
var listeners = this.eventListeners[this.eventToPropName(name)]
if (listeners) {
var match = listeners.indexOf(fn)
if (match !== -1) {
listeners.splice(match, 1)
}
}
}
Element.prototype.appendChild = function (el) {
if (el instanceof Element) {
el.parentNode = this
}
this.childNodes.push(el)
return el
}
Element.prototype.insertBefore = function (el, before) {
var index = this.childNodes.indexOf(before)
el.parentNode = this
if (index !== -1) {
this.childNodes.splice(index, 0, el)
} else {
this.childNodes.push(el)
}
return el
}
Element.prototype.removeChild = function (child) {
var target = this.childNodes.indexOf(child)
this.childNodes.splice(target, 1)
}
Element.prototype.querySelector = function () {
return this.querySelectorAll.apply(this, arguments)[0] || null
}
Element.prototype.querySelectorAll = function (selector) {
if (!selector) {
throw new Error('Not enough arguments')
}
return querySelectorAll(selector, this)
}
Element.prototype.getElementsByTagName = function (nodeName) {
var children = this.children
if (children.length === 0) {
return []
} else {
var matches
if (nodeName !== '*') {
matches = children.filter(function (el) {
return el.nodeName === nodeName
})
} else {
matches = children
}
var childMatches = children.map(function (el) {
return el.getElementsByTagName(nodeName)
})
return matches.concat.apply(matches, childMatches)
}
}
Element.prototype.getElementById = function (id) {
var children = this.children
if (children.length === 0) {
return null
} else {
var match = children.filter(function (el) {
return el.getAttribute('id') === id
})[0]
if (match) {
return match
} else {
var childMatches = children.map(function (el) {
return el.getElementById(id)
})
return childMatches.filter(function (match) {
return match !== null
})[0] || null
}
}
}
Element.prototype.getBoundingClientRect = function () {
if (!this.component) {
return undefined
}
return this.component.getBoundingClientRect()
}
Element.prototype.cloneNode = function (deep) {
// if deep is not provided, it default to true
if (deep === undefined) {
deep = true
}
var el = new Element(this.nodeName, this.parentNode)
// copy nodeType
if (this.nodeType) {
el.nodeType = this.nodeType
}
var k
// copy the props
for (k in this.props) {
if (this.props.hasOwnProperty(k) && k !== 'ref' && k !== 'style') {
el.props[k] = this.props[k]
}
}
// copy the styles
for (k in this.style) {
if (this.style.hasOwnProperty(k) && [
'setProperty',
'getProperty',
'getPropertyValue',
'removeProperty'
].indexOf(k) === -1) {
el.style[k] = this.style[k]
}
}
if (deep) {
el.childNodes = this.childNodes.map(function (childEl) {
if (!childEl.nodeType) {
// It's a React element, let React clone it
return React.cloneElement(childEl)
}
// either Element or true dom element
childEl = childEl.cloneNode(true)
// if a faux dom element, modify parentNode
if (childEl instanceof Element) {
childEl.parentNode = el
}
return childEl
})
}
return el
}
Element.prototype.toReact = function (index) {
index = index || 0
var props = assign({}, this.props)
props.style = assign({}, props.style)
var originalElement = this
function uniqueKey () {
return 'faux-dom-' + index
}
if (isUndefined(props.key)) {
props.key = uniqueKey()
}
delete props.style.setProperty
delete props.style.getProperty
delete props.style.getPropertyValue
delete props.style.removeProperty
assign(props, mapValues(this.eventListeners, function (listeners) {
return function (syntheticEvent) {
var event
if (syntheticEvent) {
event = syntheticEvent.nativeEvent
event.syntheticEvent = syntheticEvent
}
mapValues(listeners, function (listener) {
listener.call(originalElement, event)
})
}
}))
return React.createElement(this.nodeName, props, this.text || this.children.map(function (el, i) {
if (el instanceof Element) {
return el.toReact(i)
} else {
return el
}
}))
}
Element.prototype.compareDocumentPosition = function (other) {
function getFirstNodeByOrder (nodes, nodeOne, nodeTwo) {
return nodes.reduce(function (result, node) {
if (result !== false) {
return result
} else if (node === nodeOne) {
return nodeOne
} else if (node === nodeTwo) {
return nodeTwo
} else if (node.childNodes) {
return getFirstNodeByOrder(node.childNodes, nodeOne, nodeTwo)
} else {
return false
}
}, false)
}
function isAncestor (source, target) {
while (target.parentNode) {
target = target.parentNode
if (target === source) {
return true
}
}
return false
}
function eitherContains (left, right) {
return isAncestor(left, right)
? Element.DOCUMENT_POSITION_CONTAINED_BY + Element.DOCUMENT_POSITION_FOLLOWING
: isAncestor(right, left)
? Element.DOCUMENT_POSITION_CONTAINS + Element.DOCUMENT_POSITION_PRECEDING
: false
}
function getRootNode (node) {
while (node.parentNode) {
node = node.parentNode
}
return node
}
if (this === other) {
return 0
}
var referenceRoot = getRootNode(this)
var otherRoot = getRootNode(other)
if (referenceRoot !== otherRoot) {
return Element.DOCUMENT_POSITION_DISCONNECTED
}
var result = eitherContains(this, other)
if (result) {
return result
}
var first = getFirstNodeByOrder([referenceRoot], this, other)
return first === this
? Element.DOCUMENT_POSITION_FOLLOWING
: first === other
? Element.DOCUMENT_POSITION_PRECEDING
: Element.DOCUMENT_POSITION_DISCONNECTED
}
Object.defineProperties(Element.prototype, {
nextSibling: {
get: function () {
var siblings = this.parentNode.children
var me = siblings.indexOf(this)
return siblings[me + 1]
}
},
previousSibling: {
get: function () {
var siblings = this.parentNode.children
var me = siblings.indexOf(this)
return siblings[me - 1]
}
},
innerHTML: {
get: function () {
return this.text
},
set: function (text) {
this.text = text
}
},
textContent: {
get: function () {
return this.text
},
set: function (text) {
this.text = text
}
},
children: {
get: function () {
// So far nodes created by this library are all of nodeType 1 (elements),
// but this could change in the future.
return this.childNodes.filter(function (el) {
if (!el.nodeType) {
// It's a React element, we always add it
return true
}
// It's a HTML node. We want to filter to have only nodes with type 1
return el.nodeType === 1
})
}
}
})
// These NS methods are called by things like D3 if it spots a namespace.
// Like xlink:href. I don't care about namespaces, so these functions have NS aliases created.
var namespaceMethods = [
'setAttribute',
'getAttribute',
'getAttributeNode',
'removeAttribute',
'getElementsByTagName',
'getElementById'
]
namespaceMethods.forEach(function (name) {
var fn = Element.prototype[name]
Element.prototype[name + 'NS'] = function () {
return fn.apply(this, Array.prototype.slice.call(arguments, 1))
}
})
return Element
}
module.exports = element
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var rfd = require('./ReactFauxDOM')
module.exports = rfd.withFauxDOM
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var element = require('./_element')
var window = require('./_window')
var withFauxDOM = require('./_withFauxDOM')
function factory () {
var Element = element()
var Window = window()
var ReactFauxDOM = {
Element: Element,
defaultView: Window,
withFauxDOM: withFauxDOM(Element),
createElement: function (nodeName) {
return new Element(nodeName)
},
createElementNS: function (namespace, nodeName) {
return this.createElement(nodeName)
},
compareDocumentPosition: function () {
// The selector engine tries to validate with this, but we don't care.
// 8 = DOCUMENT_POSITION_CONTAINS, so we say all nodes are in this document.
return 8
}
}
Element.prototype.ownerDocument = ReactFauxDOM
return ReactFauxDOM
}
module.exports = factory
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var rfd = require('./ReactFauxDOM')
module.exports = rfd.Window
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var factory = require('./factory')
module.exports = factory()
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var rfd = require('./ReactFauxDOM')
module.exports = rfd.Element
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var React = require('react')
var createReactClass = require('create-react-class')
var mapValues = require('./utils/mapValues')
var hoistNonReactStatics = require('hoist-non-react-statics')
function withFauxDOMFactory (Element) {
function withFauxDOM (WrappedComponent) {
var WithFauxDOM = createReactClass({
componentWillMount: function () {
this.connectedFauxDOM = {}
this.animateFauxDOMUntil = 0
},
componentWillUnmount: function () {
this.stopAnimatingFauxDOM()
this.stopDrawFauxDOM()
},
connectFauxDOM: function (node, name, discardNode) {
if (!this.connectedFauxDOM[name] || discardNode) {
this.connectedFauxDOM[name] = typeof node !== 'string' ? node : new Element(node)
this.drawFauxDOMTimeout = setTimeout(this.drawFauxDOM)
}
return this.connectedFauxDOM[name]
},
drawFauxDOM: function () {
var virtualDOM = mapValues(this.connectedFauxDOM, function (n) {
return n.toReact()
})
this.setState(virtualDOM)
},
animateFauxDOM: function (duration) {
this.animateFauxDOMUntil = Math.max(Date.now() + duration, this.animateFauxDOMUntil)
if (!this.fauxDOMAnimationInterval) {
this.fauxDOMAnimationInterval = setInterval(function () {
if (Date.now() < this.animateFauxDOMUntil) {
this.drawFauxDOM()
} else {
this.stopAnimatingFauxDOM()
}
}.bind(this), 16)
}
},
stopAnimatingFauxDOM: function () {
this.fauxDOMAnimationInterval = clearInterval(this.fauxDOMAnimationInterval)
this.animateFauxDOMUntil = 0
},
stopDrawFauxDOM: function () {
this.drawFauxDOMTimeout = clearTimeout(this.drawFauxDOMTimeout)
},
isAnimatingFauxDOM: function () {
return !!this.fauxDOMAnimationInterval
},
render: function () {
var props = Object.assign({}, this.props, this.state, {
connectFauxDOM: this.connectFauxDOM,
drawFauxDOM: this.drawFauxDOM,
animateFauxDOM: this.animateFauxDOM,
stopAnimatingFauxDOM: this.stopAnimatingFauxDOM,
isAnimatingFauxDOM: this.isAnimatingFauxDOM
})
return React.createElement(WrappedComponent, props)
}
})
WithFauxDOM.displayName = 'WithFauxDOM(' + getDisplayName(WrappedComponent) + ')'
hoistNonReactStatics(WithFauxDOM, WrappedComponent)
return WithFauxDOM
}
return withFauxDOM
}
function getDisplayName (WrappedComponent) {
return WrappedComponent.displayName || WrappedComponent.name || 'Component'
}
module.exports = withFauxDOMFactory
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
function isString (value) {
return typeof value === 'string'
}
module.exports = isString
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
function mapValues (source, fn) {
var destination = {}
for (var key in source) {
if (source.hasOwnProperty(key)) {
destination[key] = fn(source[key])
}
}
return destination
}
module.exports = mapValues
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
function assign (dest) {
var args = arguments
var source
for (var i = 1; i < args.length; i++) {
source = args[i]
for (var key in source) {
dest[key] = source[key]
}
}
return dest
}
module.exports = assign
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var hyphenExpression = /-+([a-z])/gi
function upperCaseFirstMatch (match, c, offset) {
if (offset !== 0) {
return c.toUpperCase()
} else {
return c
}
}
function camelCase (str) {
var camelCased = str.replace(hyphenExpression, upperCaseFirstMatch)
hyphenExpression.lastIndex = 0
return camelCased
}
module.exports = camelCase
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
var camelCase = require('./camelCase')
function styleCamelCase (name) {
var camel = camelCase(name)
// Detect if the style property is already camelCased
// To not convert Webkit*, Moz* and O* to lowercase
if (camel.charAt(0).toUpperCase() === name.charAt(0)) {
return name.charAt(0) + camel.slice(1)
}
if (name.charAt(0) === '-') {
return camel.indexOf('ms') === 0 ? camel
: camel.charAt(0).toUpperCase() + camel.slice(1)
} else {
return camel
}
}
module.exports = styleCamelCase
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
function isUndefined (value) {
return typeof value === 'undefined'
}
module.exports = isUndefined
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import test from 'tape'
import ReactFauxDOM from '..'
import Comp from './test-utils/component'
import compareReactElements from './test-utils/compareReactElements'
import sinon from 'sinon'
var Elem = ReactFauxDOM.createElement
test('isAnimatingFauxDOM works as expected', function (t) {
t.plan(2)
var comp = Comp()
t.equal(comp.isAnimatingFauxDOM(), false)
comp.fauxDOMAnimationInterval = true
t.equal(comp.isAnimatingFauxDOM(), true)
})
test('drawing and connecting works as expected', function (t) {
t.plan(16)
var comp = Comp()
comp.connectFauxDOM('div', 'a_div')
comp.connectFauxDOM(Elem('span'), 'a_span')
comp.drawFauxDOM()
t.equal(comp.setState.callCount, 1)
var drew = comp.setState.args[0][0]
var drewExpected = {
a_div: Elem('div').toReact(),
a_span: Elem('span').toReact()
}
compareReactElements(t, drew.a_div, drewExpected.a_div)
compareReactElements(t, drew.a_span, drewExpected.a_span)
setTimeout(function () {
// should have made one additional draw call per connection
t.equal(comp.setState.callCount, 3)
t.deepEqual(drew, comp.setState.args[1][0])
t.deepEqual(drew, comp.setState.args[2][0])
}, 100)
})
test('animateFauxDOM works as expected', function (t) {
t.plan(16)
var comp = Comp()
var elem = Elem('div')
var framecount = 0
elem.toReact = function () {
return ++framecount
}
comp.connectFauxDOM(elem, 'a_div')
comp.connectFauxDOM('span', 'a_span')
comp.animateFauxDOM(1000)
t.ok(comp.animateFauxDOMUntil > Date.now() + 950 && comp.animateFauxDOMUntil < Date.now() + 1050)
// now setting limit to just 200ms from now to see if it is respected
comp.animateFauxDOMUntil = Date.now() + 200
// 200 ms should equal around 200/16 = 12.5 frames
setTimeout(function () {
t.ok(framecount > 8 && framecount < 15)
var actual1 = comp.setState.args[5][0]
var expected1 = {
a_div: 6,
a_span: Elem('span').toReact()
}
t.equal(actual1.a_div, expected1.a_div)
compareReactElements(t, actual1.a_span, expected1.a_span)
var actual2 = comp.setState.args[framecount - 1][0]
var expected2 = {
a_div: framecount,
a_span: Elem('span').toReact()
}
t.equal(actual2.a_div, expected2.a_div)
compareReactElements(t, actual2.a_span, expected2.a_span)
}, 500)
})
test('animateFauxDOM doesnt overwrite existing longer duration', function (t) {
t.plan(1)
var comp = Comp()
comp.animateFauxDOM(1000)
comp.animateFauxDOM(100)
t.ok(comp.animateFauxDOMUntil > Date.now() + 950 && comp.animateFauxDOMUntil < Date.now() + 1050)
})
test('stopAnimatingFauxDOM works as expected', function (t) {
t.plan(3)
var comp = Comp()
var elem = Elem('div')
var framecount = 0
elem.toReact = function () {
return ++framecount
}
comp.connectFauxDOM(elem, 'a_div')
comp.animateFauxDOM(500)
setTimeout(function () {
t.ok(comp.animateFauxDOMUntil > 0)
comp.stopAnimatingFauxDOM()
t.equal(comp.animateFauxDOMUntil, 0)
}, 200)
setTimeout(function () {
t.ok(framecount > 8 && framecount < 15) // should not have run for 500 ms
}, 500)
})
test('stopDrawFauxDOM works as expected', function (t) {
t.plan(1)
var comp = Comp()
comp.drawFauxDOM = sinon.spy()
comp.connectFauxDOM('div', 'a_div')
comp.stopDrawFauxDOM()
setTimeout(function () {
t.ok(comp.drawFauxDOM.notCalled)
})
})
test('componentWillMount initialises correctly', function (t) {
t.plan(2)
var comp = Comp(true)
comp.componentWillMount()
t.deepEqual(comp.connectedFauxDOM, {})
t.deepEqual(comp.animateFauxDOMUntil, 0)
})
test('componentWillUnmount cleans up correctly', function (t) {
t.plan(2)
var comp = Comp()
comp.stopAnimatingFauxDOM = sinon.spy()
comp.stopDrawFauxDOM = sinon.spy()
comp.componentWillUnmount()
t.ok(comp.stopAnimatingFauxDOM.calledOnce)
t.ok(comp.stopDrawFauxDOM.calledOnce)
})
test('hoist non-react statics', function (t) {
t.plan(1)
var Component = Object.getPrototypeOf(Comp()).constructor
t.deepEqual(Component.someStatics, { foo: 'bar' })
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import test from 'tape'
import mk from './test-utils/mk'
test('simple node', function (t) {
var el = mk().node()
var tree = el.toReact()
t.plan(1)
t.equal(tree.type, 'div')
})
test('nested text', function (t) {
var el = mk()
el.append('p').text('one')
el.append('p').text('two')
el.append('p').text('three')
var tree = el.node().toReact()
t.plan(4)
t.equal(tree.type, 'div')
t.equal(tree.props.children.length, 3)
t.equal(tree.props.children[1].type, 'p')
t.equal(tree.props.children[1].props.children, 'two')
})
test('auto default keys', function (t) {
var el = mk()
el.append('p')
el.append('p').attr('key', 'testing')
el.append('p').attr('foo', 'bar')
var tree = el.node().toReact()
t.plan(5)
t.equal(tree.key, 'faux-dom-0')
t.equal(tree.props.children[0].key, 'faux-dom-0')
t.equal(tree.props.children[1].key, 'testing')
t.equal(tree.props.children[2].key, 'faux-dom-2')
t.equal(tree.props.children[2].props.foo, 'bar')
})
test('pre-built React elements are rendered into the tree', function (t) {
var el = mk().node()
var sub = mk()
.attr('foo', 'bar')
.node()
.toReact()
el.appendChild(sub)
var tree = el.toReact()
t.plan(1)
t.equal(tree.props.children[0].props.foo, 'bar')
})
test('React elements customize data-* attributes are rendered into the tree', function (t) {
var el = mk().node()
var sub = mk()
.attr('data-foo', 'bar')
.node()
.toReact()
el.appendChild(sub)
var tree = el.toReact()
t.plan(1)
t.equal(tree.props.children[0].props['data-foo'], 'bar')
})
test('React elements aria-* attributes are rendered into the tree', function (t) {
var el = mk().node()
var sub = mk()
.attr('aria-hidden', 'true')
.node()
.toReact()
el.appendChild(sub)
var tree = el.toReact()
t.plan(1)
t.equal(tree.props.children[0].props['aria-hidden'], 'true')
})
test('toReact does not mutate the state', function (t) {
var el = mk().node()
t.plan(2)
t.equal(typeof el.props.style.setProperty, 'function')
el.toReact()
t.equal(typeof el.props.style.setProperty, 'function')
})
test('React elements have a ref attribute', function (t) {
var el = mk().node()
var tree = el.toReact()
t.plan(4)
t.equal(typeof tree.ref, 'function')
t.equal(el.getBoundingClientRect(), undefined)
var fakeClientRect = {}
var fakeComponent = {
getBoundingClientRect: function () {
return fakeClientRect
}
}
tree.ref(fakeComponent)
t.equal(el.component, fakeComponent)
t.equal(el.getBoundingClientRect(), fakeClientRect)
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import test from 'tape'
import mk from './test-utils/mk'
test('simple style string sets the property', function (t) {
var el = mk().node()
el.setAttribute('style', 'color:red')
t.plan(1)
t.equal(el.style.color, 'red')
})
test('setting a complex style string', function (t) {
var el = mk().node()
el.setAttribute('style', 'color: red; height: 300px; width: 200px; text-align: left')
t.plan(4)
t.equal(el.style.color, 'red')
t.equal(el.style.height, '300px')
t.equal(el.style.width, '200px')
t.equal(el.style.textAlign, 'left')
})
test('setting a property appears in React', function (t) {
var el = mk().node()
el.style.backgroundColor = 'red'
var r = el.toReact()
t.plan(1)
t.equal(r.props.style.backgroundColor, 'red')
})
test('style object methods do not leak through', function (t) {
var el = mk().node()
el.style.backgroundColor = 'red'
var r = el.toReact()
t.plan(3)
t.equal(typeof r.props.style.setProperty, 'undefined')
t.equal(typeof r.props.style.getProperty, 'undefined')
t.equal(typeof r.props.style.removeProperty, 'undefined')
})
test('when using a key the style object is still cleaned', function (t) {
var el = mk().node()
el.setAttribute('key', 'test')
el.style.backgroundColor = 'red'
var r = el.toReact()
t.plan(3)
t.equal(typeof r.props.style.setProperty, 'undefined')
t.equal(typeof r.props.style.getProperty, 'undefined')
t.equal(typeof r.props.style.removeProperty, 'undefined')
})
test('vendor prefixed styles are correctly camel-cased', function (t) {
var el = mk().node()
el.setAttribute('style', '-webkit-transition: opacity 100ms ease')
t.plan(1)
t.equal(el.style.WebkitTransition, 'opacity 100ms ease')
})
test('pascal-cased, vendor prefixed styles are not camel-cased', function (t) {
var el = mk().node()
el.setAttribute('style', 'WebkitTransition: opacity 100ms ease')
t.plan(1)
t.equal(el.style.WebkitTransition, 'opacity 100ms ease')
})
test('-ms- and ms* vendor prefixed styles are supported', function (t) {
t.plan(2)
var el = mk().node()
el.setAttribute('style', 'msTransform: opacity 100ms ease; -ms-animation: 1s ease popIn')
t.equal(el.style.msTransform, 'opacity 100ms ease')
t.equal(el.style.msAnimation, '1s ease popIn')
})
test('getPropertyValue is the same as getProperty', function (t) {
t.plan(2)
var el = mk().node()
el.setAttribute('style', 'width: 10px;')
t.equal(el.style.getProperty('width'), '10px')
t.equal(el.style.getPropertyValue('width'), '10px')
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import test from 'tape'
import factory from '../lib/factory'
test('factory creates Element classes with different ownerDocuments', function (t) {
const od1 = factory().Element.prototype.ownerDocument
const od2 = factory().Element.prototype.ownerDocument
t.plan(1)
t.notEqual(od1, od2)
})
test('factory creates rfds with different windows', function (t) {
const win1 = factory().defaultView
const win2 = factory().defaultView
t.plan(1)
t.notEqual(win1, win2)
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import test from 'tape'
import ReactFauxDOM from '..'
import Element from '../lib/Element'
test('has a create method', function (t) {
t.plan(1)
t.equal(typeof ReactFauxDOM.createElement, 'function')
})
test('creates an element instance with a nodeName', function (t) {
t.plan(2)
var el = ReactFauxDOM.createElement('div')
t.ok(el instanceof ReactFauxDOM.Element)
t.equal(el.nodeName, 'div')
})
test('hyphenated properties are camel cased', function (t) {
var el = ReactFauxDOM.createElement('div')
el.setAttribute('text-align', 'right')
t.plan(3)
t.equal(el.getAttribute('text-align'), 'right')
t.equal(el.getAttribute('textAlign'), 'right')
t.equal(el.toReact().props.textAlign, 'right')
})
test('children and childNodes behave properly', function (t) {
var parentEl = ReactFauxDOM.createElement('div')
var el = ReactFauxDOM.createElement('div')
var elReact = ReactFauxDOM.createElement('div').toReact()
var textNode = ReactFauxDOM.createElement('TextElement')
textNode.nodeType = 3
parentEl.appendChild(el)
parentEl.appendChild(elReact)
parentEl.appendChild(textNode)
t.plan(5)
t.equal(parentEl.childNodes.length, 3)
t.equal(parentEl.children.length, 2)
t.ok(parentEl.childNodes[0] instanceof Element)
t.equal(parentEl.childNodes[1].type, el.nodeName)
t.equal(parentEl.childNodes[2].nodeType, 3)
})
test('cloneNode', function (t) {
var parentEl = ReactFauxDOM.createElement('div')
var el = ReactFauxDOM.createElement('div')
var elReact = ReactFauxDOM.createElement('div').toReact()
var textNode = ReactFauxDOM.createElement('TextElement')
textNode.nodeType = 3
parentEl.style.setProperty('width', '100px')
parentEl.style.setProperty('height', '200px')
parentEl.setAttribute('data-foo', 'foo')
parentEl.appendChild(el)
parentEl.appendChild(elReact)
parentEl.appendChild(textNode)
var cloneParentEl = parentEl.cloneNode()
t.plan(9)
t.equal(cloneParentEl.getAttribute('data-foo'), 'foo')
t.equal(cloneParentEl.style.getProperty('width'), '100px')
t.equal(cloneParentEl.style.getProperty('height'), '200px')
t.equal(cloneParentEl.nodeName, 'div')
t.equal(cloneParentEl.children.length, 2)
t.equal(cloneParentEl.childNodes.length, 3)
t.ok(cloneParentEl.childNodes[0] instanceof Element)
t.equal(cloneParentEl.childNodes[1].type, el.nodeName)
t.equal(cloneParentEl.childNodes[2].nodeType, 3)
})
test('compareDocumentPosition', function (t) {
/*
* DOM-structure
* <documentEl>
* <parentEl>
* <siblingOne />
* <siblingTwo />
* </parentEl>
* <otherEl>
* <siblingThree />
* </otherEl>
* </documentEl>
* ---
* <otherDocumentEl />
*/
var documentEl = ReactFauxDOM.createElement('div')
var parentEl = ReactFauxDOM.createElement('div')
var siblingOne = ReactFauxDOM.createElement('div')
var siblingTwo = ReactFauxDOM.createElement('div')
var otherEl = ReactFauxDOM.createElement('div')
var siblingThree = ReactFauxDOM.createElement('div')
var otherDocumentEl = ReactFauxDOM.createElement('div')
documentEl.appendChild(parentEl)
documentEl.appendChild(otherEl)
parentEl.appendChild(siblingOne)
parentEl.appendChild(siblingTwo)
otherEl.appendChild(siblingThree)
t.plan(10)
t.equal(
siblingOne.compareDocumentPosition(siblingTwo) & Element.DOCUMENT_POSITION_FOLLOWING,
Element.DOCUMENT_POSITION_FOLLOWING
)
t.equal(
siblingTwo.compareDocumentPosition(siblingOne) & Element.DOCUMENT_POSITION_PRECEDING,
Element.DOCUMENT_POSITION_PRECEDING
)
t.equal(
parentEl.compareDocumentPosition(siblingOne) & Element.DOCUMENT_POSITION_FOLLOWING,
Element.DOCUMENT_POSITION_FOLLOWING
)
t.equal(
parentEl.compareDocumentPosition(siblingOne) & Element.DOCUMENT_POSITION_CONTAINED_BY,
Element.DOCUMENT_POSITION_CONTAINED_BY
)
t.equal(
siblingTwo.compareDocumentPosition(siblingThree),
Element.DOCUMENT_POSITION_FOLLOWING
)
t.equal(
siblingTwo.compareDocumentPosition(parentEl) & Element.DOCUMENT_POSITION_PRECEDING,
Element.DOCUMENT_POSITION_PRECEDING
)
t.equal(
siblingTwo.compareDocumentPosition(parentEl) & Element.DOCUMENT_POSITION_CONTAINS,
Element.DOCUMENT_POSITION_CONTAINS
)
t.equal(
siblingTwo.compareDocumentPosition(otherEl) & Element.DOCUMENT_POSITION_FOLLOWING,
Element.DOCUMENT_POSITION_FOLLOWING
)
t.equal(
documentEl.compareDocumentPosition(otherDocumentEl) & Element.DOCUMENT_POSITION_DISCONNECTED,
Element.DOCUMENT_POSITION_DISCONNECTED
)
t.equal(documentEl.compareDocumentPosition(documentEl), 0)
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import test from 'tape'
import mk from './test-utils/mk'
function getListNode () {
var el = mk()
var list = el.append('ul')
list.append('li')
list.append('li')
list.append('li')
return el.node()
}
test('selecting an element', function (t) {
t.plan(1)
var node = getListNode()
var actual = node.querySelector('ul').nodeName
var expected = 'ul'
t.strictEqual(actual, expected)
})
test('selecting a missing element', function (t) {
t.plan(1)
var node = getListNode()
var actual = node.querySelector('nope')
var expected = null
t.strictEqual(actual, expected)
})
test('selecting an element with all', function (t) {
t.plan(2)
var node = getListNode()
var res = node.querySelectorAll('ul')
t.strictEqual(res[0].nodeName, 'ul')
t.strictEqual(res.length, 1)
})
test('selecting elements with all', function (t) {
t.plan(2)
var node = getListNode()
var res = node.querySelectorAll('li')
t.strictEqual(res[0].nodeName, 'li')
t.strictEqual(res.length, 3)
})
test('selecting missing elements with all', function (t) {
t.plan(2)
var node = getListNode()
var res = node.querySelectorAll('nope')
t.ok(res instanceof Array)
t.strictEqual(res.length, 0)
})
test('selecting one with no argument throws', function (t) {
t.plan(1)
var node = getListNode()
t.throws(function () {
node.querySelector()
}, /Not enough arguments/)
})
test('selecting many with no argument throws', function (t) {
t.plan(1)
var node = getListNode()
t.throws(function () {
node.querySelectorAll()
}, /Not enough arguments/)
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
import { event } from 'd3'
import test from 'tape'
import sinon from 'sinon'
import mk from './test-utils/mk'
var lastEvent
function mkWithEvents () {
var clickEvent = sinon.spy(function () {
lastEvent = event
})
var mousedownEvent = sinon.spy()
var el = mk()
el.on('click', clickEvent)
el.node().addEventListener('mousedown', mousedownEvent)
return {
el: el,
clickEvent: clickEvent,
mousedownEvent: mousedownEvent
}
}
test('adding listeners', function (t) {
var node = mkWithEvents().el.node()
var eventListeners = node.eventListeners
t.plan(3)
t.equal(eventListeners.onClick.length, 1)
t.ok(eventListeners.onClick instanceof Array)
t.equal(typeof eventListeners.onClick[0], 'function')
})
test('executing listeners', function (t) {
var out = mkWithEvents()
var clickEvent = out.clickEvent
var node = out.el.node()
var props = node.toReact().props
t.plan(2)
t.equal(typeof props.onClick, 'function')
props.onClick()
t.ok(clickEvent.calledOnce)
})
test('executed with native event (which contains synthetic)', function (t) {
var node = mkWithEvents().el.node()
var props = node.toReact().props
var syntheticEvent = {
isSynthetic: true,
nativeEvent: {
isNative: true
}
}
props.onClick(syntheticEvent)
t.plan(2)
t.ok(lastEvent.isNative)
t.ok(lastEvent.syntheticEvent.isSynthetic)
})
test('removing listeners', function (t) {
var node = mkWithEvents().el.node()
var eventListeners = node.eventListeners
node.removeEventListener('click', eventListeners.onClick[0])
t.plan(1)
t.equal(eventListeners.onClick.length, 0)
})
test('event listeners on children', function (t) {
var el = mk()
var datum = { property: 'value' }
var clickValue = 'initial'
var join = el.selectAll('.foo').data([datum])
join.enter()
.append('svg:rect')
.classed('foo', true)
.attr('id', 'foo')
.on('click', function (d) { clickValue = d })
el.node().getElementById('foo').toReact().props.onClick()
t.plan(1)
t.equal(clickValue, datum)
})
| {
"repo_name": "Olical/react-faux-dom",
"stars": "1209",
"repo_language": "JavaScript",
"file_name": "isUndefined.js",
"mime_type": "text/plain"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.