summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Martinez2022-03-30 17:27:39 -0500
committerLuis Martinez2022-03-30 17:27:39 -0500
commit6de3554d339e04da186609bb33f4301e4b63e447 (patch)
treebf02d3070b0dd8cef797eb748b60c4af1b0cfe0a
parent50d2a3d28836ff45900cec0a962363775b140738 (diff)
downloadaur-libmrss.tar.gz
package cleanup
-rw-r--r--.SRCINFO18
-rw-r--r--CHANGELOG90
-rw-r--r--PKGBUILD22
3 files changed, 108 insertions, 22 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d77850d6d14d..9947052320a7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,18 +1,14 @@
-# Generated by mksrcinfo v8
-# Fri Feb 26 06:59:26 UTC 2016
pkgbase = libmrss
pkgdesc = C library for parsing, writing and creating RSS/ATOM files or streams
pkgver = 0.19.2
- pkgrel = 3
- url = http://www.autistici.org/bakunin/libmrss/
- arch = i686
+ pkgrel = 4
+ url = https://github.com/bakulf/libmrss
+ changelog = CHANGELOG
arch = x86_64
- license = LGPL2
- depends = curl
+ license = LGPL2.1
+ depends = libcurl.so
depends = libnxml
- options = !libtool
- source = http://www.autistici.org/bakunin/libmrss/libmrss-0.19.2.tar.gz
- md5sums = a6f66b72898d27270e3a68007f90d62b
+ source = libmrss-0.19.2.tar.gz::https://www.autistici.org/bakunin/libmrss/libmrss-0.19.2.tar.gz
+ sha256sums = 071416adcae5c1a9317a4a313f2deb34667e3cc2be4487fb3076528ce45b210b
pkgname = libmrss
-
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 000000000000..076729510309
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,90 @@
+2008-08-21 libmrss 0.19.2
+ Gregor Herrmann's patch about signals and curl
+
+2008-02-26 libmrss 0.19.1
+ OpenEmbedded Project's patch applied (transfer buffer)
+ Andreas Krennmair's patch applied (ATOM string)
+
+2008-01-25 libmrss 0.19.0
+ atom type for the string tags (title, datatypes,..)
+
+2007-07-08 libmrss 0.18.0
+ a new release with a new version number
+
+2007-06-10 libmrss 0.17.4
+ curl code with an error
+
+2007-06-09 libmrss 0.17.3
+ locale check
+ jerome's patch about INCLUDE and srcdir
+ Holger Freyther's patch about atom writting
+ CURLcode error, mrss_curl_strerror and
+ mrss_parse_url_with_options_and_error function
+
+2007-05-02 libmrss 0.17.2
+ patch about tm_mon - 1
+ patch 27: mrss_get_last_modified_with_options ignores proxy settings
+ patch 26: mrss_free does not check for NULL mrss_t pointer
+
+2007-04-02 libmrss 0.17.1
+ 2 memory leaks fixed
+ locale about the datatime in atom feed
+ Holger Freyther's patches
+
+2007-02-10 libmrss 0.17
+ other_tags and attributes
+ atom supported
+
+2006-12-29 libmrss 0.16
+ libnxml 0.16 updated
+
+2006-11-22 libmrss 0.15
+ libnxml 0.15 with cacert support
+ php updated
+
+2006-10-28 libmrss 0.14
+ libnxml 0.14 updated
+
+2006-09-11 libmrss 0.13
+ options struct for timeout, proxy and certficate.
+ removed mrss_set/get_timeout.
+
+2006-06-12 libmrss 0.12
+ mrss.pc updated
+
+2006-03-21 libmrss 0.11
+ copyright updates
+ enclouse with only argoments support for podcast
+
+2006-03-07 libmrss 0.10
+ some memory leaks
+
+2006-02-27 libmrss 0.9
+ mrss_write_url php bug fixes
+
+2006-02-06 libmrss 0.8
+ encoding in mrss_t
+
+2005-01-20 libmrss 0.7
+ mrss_get_last_modified
+ a new test (time.c)
+ doxygen mainpage
+
+2005-01-14 libmrss 0.6
+ bug fixes in the write function
+
+2006-01-04 libmrss 0.5
+ GPL -> LGPL
+
+2005-12-15 libmrss 0.4
+ mrss_set_timeout
+ mrss_get_timeout
+
+2005-11-01 libmrss 0.3
+ libxml2 -> libnxml
+ rss 1.0
+
+
+2005-07-27 libmrss 0.2
+ phpsupport
+ doxygen
diff --git a/PKGBUILD b/PKGBUILD
index 49bfa3e1b1b0..dfe18b81b41b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,28 +1,28 @@
# Maintainer: Joris Steyn <jorissteyn@gmail.com>
# Contributor: AndreasBWagner
# Contributor: Bernhard Walle <bernhard.walle@gmx.de>
+
pkgname=libmrss
pkgver=0.19.2
-pkgrel=3
+pkgrel=4
pkgdesc="C library for parsing, writing and creating RSS/ATOM files or streams"
-url="http://www.autistici.org/bakunin/libmrss/"
-license=("LGPL2")
-depends=('curl' 'libnxml')
-arch=('i686' 'x86_64')
-options=('!libtool')
-source=("http://www.autistici.org/bakunin/$pkgname/$pkgname-$pkgver.tar.gz")
-md5sums=('a6f66b72898d27270e3a68007f90d62b')
+url='https://github.com/bakulf/libmrss'
+license=('LGPL2.1')
+depends=('libcurl.so' 'libnxml')
+arch=('x86_64')
+changelog=CHANGELOG
+source=("$pkgname-$pkgver.tar.gz::https://www.autistici.org/bakunin/$pkgname/$pkgname-$pkgver.tar.gz")
+sha256sums=('071416adcae5c1a9317a4a313f2deb34667e3cc2be4487fb3076528ce45b210b')
build() {
- cd "$srcdir"/$pkgname-$pkgver
+ cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
- cd "$srcdir"/$pkgname-$pkgver
+ cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
-