[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/, dev-libs/http-fetcher/files/

2022-10-12 Thread Sam James
commit: c62cc75cdbc276c37bf8d2c2af9b2cbbe88928a1
Author: Sam James  gentoo  org>
AuthorDate: Thu Oct 13 02:09:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Oct 13 02:09:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c62cc75c

dev-libs/http-fetcher: fix underquoted http-fetcher.m4 macro again

Bug: https://bugs.gentoo.org/299940
Closes: https://bugs.gentoo.org/876911
Fixes: 9c3bfee419467b417400fe45921205b502e17d68
Signed-off-by: Sam James  gentoo.org>

 .../http-fetcher-1.1.0-underquoted-http-fetcher-macro.patch | 13 +
 ...fetcher-1.1.0-r1.ebuild => http-fetcher-1.1.0-r2.ebuild} | 11 +++
 2 files changed, 20 insertions(+), 4 deletions(-)

diff --git 
a/dev-libs/http-fetcher/files/http-fetcher-1.1.0-underquoted-http-fetcher-macro.patch
 
b/dev-libs/http-fetcher/files/http-fetcher-1.1.0-underquoted-http-fetcher-macro.patch
new file mode 100644
index ..2135de07851e
--- /dev/null
+++ 
b/dev-libs/http-fetcher/files/http-fetcher-1.1.0-underquoted-http-fetcher-macro.patch
@@ -0,0 +1,13 @@
+https://bugs.gentoo.org/876911
+https://bugs.gentoo.org/299940
+--- a/http-fetcher.m4
 b/http-fetcher.m4
+@@ -10,7 +10,7 @@ dnl  understanding is that this should only be done if 
necessary.
+ dnl  The macro also adds the appropriate -L and -I values to CFLAGS so that
+ dnl  headers are found and libraries are linked.
+ dnl
+-AC_DEFUN(AC_PATH_HFETCHER,
++AC_DEFUN([AC_PATH_HFETCHER],
+ [dnl
+ 
+ darwin=no;

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0-r2.ebuild
similarity index 84%
rename from dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
rename to dev-libs/http-fetcher/http-fetcher-1.1.0-r2.ebuild
index 0d694ccc9dd4..97ad5484327a 100644
--- a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 inherit autotools
 
@@ -10,14 +10,18 @@ MY_P="${P/-/_}"
 DESCRIPTION="Library for downloading files via HTTP using the GET method"
 HOMEPAGE="http://http-fetcher.sourceforge.net;
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-LICENSE="LGPL-2.1"
 
+LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~alpha amd64 ppc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${MY_P}"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1.0-underquoted-http-fetcher-macro.patch
+)
+
 src_prepare() {
default
eautoreconf
@@ -26,7 +30,6 @@ src_prepare() {
 src_configure() {
econf \
--disable-strict \
-   --disable-static \
$(use_enable debug)
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2018-04-13 Thread Patrice Clement
commit: e824acab3957b1d933e2428d52ff3be18cb40727
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Apr 13 08:03:09 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Apr 13 08:03:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e824acab

dev-libs/http-fetcher: clean up old.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild | 34 -
 1 file changed, 34 deletions(-)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild
deleted file mode 100644
index 9d13b8c338f..000
--- a/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-MY_P="${P/-/_}"
-S="${WORKDIR}/${MY_P}"
-DESCRIPTION="Library for downloading files via HTTP using the GET method"
-HOMEPAGE="http://http-fetcher.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc x86"
-IUSE="debug"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   sed -r '/AC_DEFUN/s/(AC_PATH_HFETCHER)/[\1]/' -i \
-   http-fetcher.m4
-}
-
-src_compile() {
-   econf \
-   --disable-strict \
-   $(use_enable debug) \
-   || die
-   emake || die "emake failed"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "make install failed"
-   dohtml -r docs/index.html docs/html
-   dodoc README ChangeLog CREDITS INSTALL
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2018-04-07 Thread Sergei Trofimovich
commit: c3d9dbb3f1543b2210ae0efd33f7a1c47e0ff972
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Apr  7 22:12:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr  7 22:12:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d9dbb3

dev-libs/http-fetcher: stable 1.1.0-r1 for ppc, bug #647516

Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
index b55698fa999..f8cfc283904 100644
--- a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 LICENSE="LGPL-2.1"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~ppc ~x86"
+KEYWORDS="alpha amd64 ppc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2018-03-31 Thread Tobias Klausmann
commit: d6bc9f42c0a3436338fc91c7a7b6cb1aca49281b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Mar 31 15:38:17 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Mar 31 15:38:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6bc9f42

dev-libs/http-fetcher-1.1.0-r1: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/647516

 dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
index a992789..b55698fa999 100644
--- a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 LICENSE="LGPL-2.1"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~x86"
+KEYWORDS="alpha amd64 ~ppc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2018-03-20 Thread Agostino Sarubbo
commit: b90e8b4d2e1c14bcaed9f0ad8749a2f83fb5cb44
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 20 10:00:00 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 20 10:00:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90e8b4d

dev-libs/http-fetcher: amd64 stable wrt bug #647516

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64"

 dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
index 82fa74245a7..a992789 100644
--- a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 LICENSE="LGPL-2.1"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2017-05-06 Thread David Seifert
commit: f278d2ac737a545c3dea24aa95d868237a20d3f9
Author: Harri Nieminen  gmail  com>
AuthorDate: Sat May  6 17:14:31 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat May  6 22:19:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f278d2ac

dev-libs/http-fetcher: Fix toolong DESCRIPTION

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4517

 dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild
index b5b9972023f..9d13b8c338f 100644
--- a/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 MY_P="${P/-/_}"
 S="${WORKDIR}/${MY_P}"
-DESCRIPTION="small, robust, flexible library for downloading files via HTTP 
using the GET method"
+DESCRIPTION="Library for downloading files via HTTP using the GET method"
 HOMEPAGE="http://http-fetcher.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2017-03-08 Thread Patrice Clement
commit: 9c3bfee419467b417400fe45921205b502e17d68
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar  5 15:37:05 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 22:48:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3bfee4

dev-libs/http-fetcher: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild | 35 ++
 1 file changed, 35 insertions(+)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
new file mode 100644
index 000..82fa74245a7
--- /dev/null
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+MY_P="${P/-/_}"
+
+DESCRIPTION="Library for downloading files via HTTP using the GET method"
+HOMEPAGE="http://http-fetcher.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+LICENSE="LGPL-2.1"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+IUSE="debug"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-strict \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   dodoc -r docs/html/*.html docs/index.html README ChangeLog CREDITS 
INSTALL
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2017-03-08 Thread Patrice Clement
commit: acc04f1321e042bc184d9f4c1a5cebd4d559e0a0
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar  5 15:37:28 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 22:48:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc04f13

dev-libs/http-fetcher: take over maintainership.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/http-fetcher/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/http-fetcher/metadata.xml 
b/dev-libs/http-fetcher/metadata.xml
index 5210c6b4072..a4818674ffd 100644
--- a/dev-libs/http-fetcher/metadata.xml
+++ b/dev-libs/http-fetcher/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   monsie...@gentoo.org
+   Patrice Clement
+   

http-fetcher